woolfel     2004/01/12 20:38:13

  Modified:    xdocs/usermanual glossary.xml remote-test.xml functions.xml
  Log:
  updated the section numbers
  
  peter lin
  
  CVS: ----------------------------------------------------------------------
  CVS: PR:
  CVS:   If this change addresses a PR in the problem report tracking
  CVS:   database, then enter the PR number(s) here.
  CVS: Obtained from:
  CVS:   If this change has been taken from another system, such as NCSA,
  CVS:   then name the system in this line, otherwise delete it.
  CVS: Submitted by:
  CVS:   If this code has been contributed to Apache by someone else; i.e.,
  CVS:   they sent us a patch or a new module, then include their name/email
  CVS:   address here. If this is your work then delete this line.
  CVS: Reviewed by:
  CVS:   If we are doing pre-commit code reviews and someone else has
  CVS:   reviewed your changes, include their name(s) here.
  CVS:   If you have not had it reviewed then delete this line.
  
  Revision  Changes    Path
  1.6       +2 -2      jakarta-jmeter/xdocs/usermanual/glossary.xml
  
  Index: glossary.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-jmeter/xdocs/usermanual/glossary.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- glossary.xml      11 Jun 2003 15:49:30 -0000      1.5
  +++ glossary.xml      13 Jan 2004 04:38:12 -0000      1.6
  @@ -7,7 +7,7 @@
   
   <body>
   
  -<section name="15. Glossary" anchor="glossary">
  +<section name="16. Glossary" anchor="glossary">
   </section>
   
   </body>
  
  
  
  1.14      +3 -3      jakarta-jmeter/xdocs/usermanual/remote-test.xml
  
  Index: remote-test.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-jmeter/xdocs/usermanual/remote-test.xml,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- remote-test.xml   20 Jun 2003 14:33:47 -0000      1.13
  +++ remote-test.xml   13 Jan 2004 04:38:13 -0000      1.14
  @@ -7,7 +7,7 @@
   
   <body>
   
  -<section name="10. Remote Testing">
  +<section name="11. Remote Testing">
   
   <p>In the event that your JMeter client machine is unable, performance-wise, to 
simulate 
   enough users to stress your server, an option exists to control multiple, remote 
JMeter
  @@ -51,7 +51,7 @@
   normal JMeter start and stop menu items.</p>
   <p><img src="../images/screenshots/remote/run-menu00.gif" width="232" 
height="156"></img>
   <br>Figure 1 - Run Menu</br></p>
  -<subsection name="10.1 Doing it Manually" anchor="detail_instructions">
  +<subsection name="11.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>
   <p><b>Step 1a: Start the RMI Registry</b></p>
   <p>JMeter uses Remote Method Invocation (RMI) as the remote communication 
mechanism.  Therefore, you need
  
  
  
  1.9       +18 -18    jakarta-jmeter/xdocs/usermanual/functions.xml
  
  Index: functions.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-jmeter/xdocs/usermanual/functions.xml,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- functions.xml     13 Jan 2004 01:27:48 -0000      1.8
  +++ functions.xml     13 Jan 2004 04:38:13 -0000      1.9
  @@ -7,7 +7,7 @@
   
   <body>
   
  -<section name="14. Functions" anchor="functions">
  +<section name="15. Functions" anchor="functions">
   <p>
   JMeter functions are special values that can populate fields of any Sampler or 
other configuration
   element in a test tree.  A function looks like this:</p>
  @@ -20,7 +20,7 @@
   is wrapped in ${}.</p>
   
   
  -<subsection name="14.1 What can functions do" anchor="what_can_do">
  +<subsection name="15.1 What can functions do" anchor="what_can_do">
   <p>There are two kinds of functions: user-defined static values, and built-in 
functions.<br/>
   User-defined static values allow the user to define variables to be replaced with 
their static value when
   a test tree is compiled and submitted to be run.  This replacement happens once at 
the beginning of the test
  @@ -36,7 +36,7 @@
   request throughout the course of the test. </p>
   </subsection>
   
  -<subsection name="14.2 Where can functions be used?" anchor="where">
  +<subsection name="15.2 Where can functions be used?" anchor="where">
   <p>A user-defined function can be written into any field of any test component.  
Some fields do not allow random strings 
   because they are expecting numbers, and thus will not accept a function.  However, 
most fields will allow
   functions.</p>
  @@ -44,7 +44,7 @@
   Samplers, Timers, Listeners, Modifiers, Assertions, Pre-Processors, Post-Processors 
and Config Elements.</p>
   </subsection>
   
  -<subsection name="14.3 Writing the function string" anchor="how">
  +<subsection name="15.3 Writing the function string" anchor="how">
   <p>User-defined functions take the form: <code>${varName}</code>.  In the TestPlan 
tree element, a two-column table
   of user-defined values is kept, matching up variable names with static values.  
Referencing the
   variable in a test element is done by bracketing the variable name with '${' and 
'}'.</p>
  @@ -58,7 +58,7 @@
   variable will override the built-in function.</note>
   </subsection>
   
  -<subsection name="14.4 The Function Helper Dialog" anchor="function_helper">
  +<subsection name="15.4 The Function Helper Dialog" anchor="function_helper">
   <p>The Function Helper dialog is available from JMeter's Tools menu.</p>
   <figure image="function_helper_dialog.png">Function Helper Dialog</figure>
   <p>Using the Function Helper, you can select a function from the pull down, and 
assign
  @@ -69,9 +69,9 @@
   for you to copy-paste into your test plan wherever you like.</p>
   </subsection>
   
  -<subsection name="14.5 Functions" anchor="functions">
  +<subsection name="15.5 Functions" anchor="functions">
   
  -<component index="14.5.1" name="__regexFunction">
  +<component index="15.5.1" name="__regexFunction">
   <description><p>The Regex Function is used to parse the previous response using any 
regular
   expression (provided by user).  The function returns the template string with 
variable values filled
   in.</p>
  @@ -118,7 +118,7 @@
   </properties>
   </component>
   
  -<component index="14.5.2" name="__counter">
  +<component index="15.5.2" name="__counter">
   <description><p>The counter generates a new number each time it is called, starting 
with 1
   and incrementing by +1 each time.  The counter can be configured to keep each 
simulated user's values
   separate, or to use the same counter for all user.  If each user's values is 
incremented separately,
  @@ -135,7 +135,7 @@
   </properties>
   </component>
   
  -<component index="14.5.3" name="__threadNum">
  +<component index="15.5.3" name="__threadNum">
   <description><p>The thread number function simply returns the number of the thread 
currently
   being executed.  These numbers are independent of ThreadGroup, meaning thread #1 in 
one threadgroup
   is indistinguishable from thread #1 in another threadgroup, from the point of view 
of this function.</p>
  @@ -144,7 +144,7 @@
   </description>
   </component>
   
  -<component index="14.5.4" name="__intSum">
  +<component index="15.5.4" name="__intSum">
   <description><p>The intsum function can be used to compute the sum of two or more 
integer values.
   </p></description>
   
  @@ -157,7 +157,7 @@
   </properties>
   </component>
   
  -<component index="14.5.5" name="_StringFromFile">
  +<component index="15.5.5" name="_StringFromFile">
   <description>
        <p>
        The StringFromFile function can be used to read strings from a text file. 
  @@ -186,7 +186,7 @@
   <p>The reference name parameter (if supplied) is resolved every time the function 
is executed.</p>
   </component>
   
  -<component index="14.5.6" name="__machineName">
  +<component index="15.5.6" name="__machineName">
   <description><p>The machineName function returns the local host 
name</p></description>
   
   <properties>
  @@ -195,7 +195,7 @@
   </properties>
   </component>
   
  -<component index="14.5.7" name="__javaScript">
  +<component index="15.5.7" name="__javaScript">
   <description><p>The javaScript function executes a piece of JavaScript (not Java!) 
code and returns its value</p>
        </description>
   
  @@ -214,7 +214,7 @@
   </properties>
   </component>
   
  -<component index="14.5.8" name="__Random">
  +<component index="15.5.8" name="__Random">
   <description><p>The random function returns a random number that lies between the 
given min and max values.</p></description>
   
   <properties>
  @@ -225,7 +225,7 @@
   </properties>
   </component>
   
  -<component index="14.5.8" name="__CSVRead">
  +<component index="15.5.8" name="__CSVRead">
   <description><p>The CSVFile function returns a string from a CSV file (c.f. <a 
href="#_StringFromFile">StringFromFile</a>)</p>
        <p>NOTE: Only the first filename encountered is opened. Subsequent filenames 
are silently ignored. [This may change in future.]</p></description>
   
  @@ -239,7 +239,7 @@
   </properties>
   </component>
   
  -<component index="14.5.9" name="__property">
  +<component index="15.5.9" name="__property">
   <description><p>The property function returns the value of a JMeter property. 
        If the property value cannot be found, and no default has been supplied, it 
returns the property name.
        When supplying a default value, there is no need to provide a function name - 
the parameter can be set to null, and it will be ignored.
  @@ -262,7 +262,7 @@
   </properties>
   </component>
   
  -<component index="14.5.10" name="__P">
  +<component index="15.5.10" name="__P">
   <description><p>This is a simplified property function which is
        intended for use with properties defined on the command line.
        If the property is not found, the default is returned.
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to