You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by fs...@apache.org on 2016/11/08 16:38:31 UTC

svn commit: r1768727 - in /jmeter/trunk/xdocs/usermanual: build-ldap-test-plan.xml build-ldapext-test-plan.xml get-started.xml properties_reference.xml remote-test.xml

Author: fschumacher
Date: Tue Nov  8 16:38:30 2016
New Revision: 1768727

URL: http://svn.apache.org/viewvc?rev=1768727&view=rev
Log:
Add p tags to text nodes, so that they get rendered by vsl-templates.

Modified:
    jmeter/trunk/xdocs/usermanual/build-ldap-test-plan.xml
    jmeter/trunk/xdocs/usermanual/build-ldapext-test-plan.xml
    jmeter/trunk/xdocs/usermanual/get-started.xml
    jmeter/trunk/xdocs/usermanual/properties_reference.xml
    jmeter/trunk/xdocs/usermanual/remote-test.xml

Modified: jmeter/trunk/xdocs/usermanual/build-ldap-test-plan.xml
URL: http://svn.apache.org/viewvc/jmeter/trunk/xdocs/usermanual/build-ldap-test-plan.xml?rev=1768727&r1=1768726&r2=1768727&view=diff
==============================================================================
--- jmeter/trunk/xdocs/usermanual/build-ldap-test-plan.xml (original)
+++ jmeter/trunk/xdocs/usermanual/build-ldap-test-plan.xml Tue Nov  8 16:38:30 2016
@@ -136,7 +136,9 @@ properties</p>
             <li>Rename to "<code>Search</code>" this element</li>
             <li>Select the <code>Search Test</code> radio button in <code>Test Configuration</code> group</li>
         </ol>
+        <p>
         Next, add the Third LDAP Request and edit the following properties
+        </p>
                 <figure image="ldaptest/search.png">
                   Figure &sect-num;.4.2 LDAP Request for Inbuilt Search test</figure>
 
@@ -144,8 +146,9 @@ properties</p>
             <li>Rename to "<code>Modify</code>" this element</li>
             <li>Select the <code>Modify Test</code> radio button in <code>Test Configuration</code> group</li>
         </ol>
+        <p>
         Next, add the fourth LDAP Request and edit the following properties
-                
+        </p>
                 <figure image="ldaptest/modify.png">
                   Figure &sect-num;.4.3 LDAP Request for Inbuilt Modify test</figure>
 

Modified: jmeter/trunk/xdocs/usermanual/build-ldapext-test-plan.xml
URL: http://svn.apache.org/viewvc/jmeter/trunk/xdocs/usermanual/build-ldapext-test-plan.xml?rev=1768727&r1=1768726&r2=1768727&view=diff
==============================================================================
--- jmeter/trunk/xdocs/usermanual/build-ldapext-test-plan.xml (original)
+++ jmeter/trunk/xdocs/usermanual/build-ldapext-test-plan.xml Tue Nov  8 16:38:30 2016
@@ -61,7 +61,9 @@ Take care when using LDAP special charac
 distinguished name) you need to escape the character by adding an "<code>\</code>" sign before that character.
 Extra exception: if you want to add a <code>\</code> character in a distinguished name (in an add or rename operation), you need to use 4 backslashes.
 </p>
+<p>
 Examples:
+</p>
 <dl>
 <dt><code>cn=dolf\+smits</code></dt><dd>to add/search an entry with the name like <code>cn=dolf+smits</code></dd>
 <dt><code>cn=dolf \\ smits</code></dt><dd>to search an entry with the name <code>cn=dolf \ smits</code></dd>

Modified: jmeter/trunk/xdocs/usermanual/get-started.xml
URL: http://svn.apache.org/viewvc/jmeter/trunk/xdocs/usermanual/get-started.xml?rev=1768727&r1=1768726&r2=1768727&view=diff
==============================================================================
--- jmeter/trunk/xdocs/usermanual/get-started.xml (original)
+++ jmeter/trunk/xdocs/usermanual/get-started.xml Tue Nov  8 16:38:30 2016
@@ -286,7 +286,9 @@ The <code>JVM_ARGS</code> environment va
 <source>
 JVM_ARGS="-Xms1024m -Xmx1024m" jmeter -t test.jmx [etc.]
 </source>
+<p>
 will override the HEAP settings in the script.
+</p>
 <subsection name="&sect-num;.4.1 JMeter's Classpath" anchor="classpath">
 <p>JMeter automatically finds classes from jars in the following directories:</p>
 <dl>

Modified: jmeter/trunk/xdocs/usermanual/properties_reference.xml
URL: http://svn.apache.org/viewvc/jmeter/trunk/xdocs/usermanual/properties_reference.xml?rev=1768727&r1=1768726&r2=1768727&view=diff
==============================================================================
--- jmeter/trunk/xdocs/usermanual/properties_reference.xml (original)
+++ jmeter/trunk/xdocs/usermanual/properties_reference.xml Tue Nov  8 16:38:30 2016
@@ -934,15 +934,21 @@ log_level.org.apache.http.client=DEBUG
 </properties>
 </section>
 <section name="&sect-num;.25 Remote batching configuration" anchor="remote_batching_config">
+    <p>
     Configure how SampleResults are sent from server to client when using distributed testing.
+    </p>
     <note>Note that the mode is currently resolved on the client, while other properties
     (e.g. <code>time_threshold</code>) are resolved on the server.</note>
+    <p>
     Since JMeter version 2.9, default is <code>StrippedBatch</code>, which returns samples in
     batch mode (every 100 samples or every minute by default).<br/>
     You can set mode by configuring:
+    </p>
     <source>mode=<em>one of the possible modes below</em></source>
     <note>StrippedBatch strips response data from SampleResult, so if you need the response data, change to another mode.</note>
+    <p>
     Possible modes are:
+    </p>
     <dl>
         <dt><code>Standard</code></dt>
         <dd>Sends SampleResult one by one</dd>

Modified: jmeter/trunk/xdocs/usermanual/remote-test.xml
URL: http://svn.apache.org/viewvc/jmeter/trunk/xdocs/usermanual/remote-test.xml?rev=1768727&r1=1768726&r2=1768727&view=diff
==============================================================================
--- jmeter/trunk/xdocs/usermanual/remote-test.xml (original)
+++ jmeter/trunk/xdocs/usermanual/remote-test.xml Tue Nov  8 16:38:30 2016
@@ -120,20 +120,23 @@ The command to do this is:</p>
 <source>
 jmeter -n -t script.jmx -r
 </source>
-or
+<p>or</p>
 <source>
 jmeter -n -t script.jmx -R server1,server2,&hellip;
 </source>
+<p>
 Other flags that may be useful:
+</p>
 <dl>
 <dt><code>-Gproperty=value</code></dt><dd>define a property in all the servers (may appear more than once)</dd>
 <dt><code>-X</code></dt><dd>Exit remote servers at the end of the test.</dd>
 </dl>
+<p>
 The first example will start the test on whatever servers are defined in the JMeter property <code>remote_hosts</code>;<br/>
 The second example will define <code>remote_hosts</code> from the list of servers and then start the test on the remote servers.
 <br/>
 The command-line client will exit when all the remote servers have stopped.
-
+</p>
 <subsection name="&sect-num;.1 Doing it Manually" anchor="detail_instructions">
 <p>In some cases, the jmeter-server script may not work for you (if you are using an OS platform not anticipated by the JMeter developers).
 Here is how to start the JMeter servers (step 1 above) with a more manual process:</p>