Author: sebb
Date: Wed Apr 9 08:11:19 2008
New Revision: 646397
URL: http://svn.apache.org/viewvc?rev=646397&view=rev
Log:
Minor documentation updates
Modified:
jakarta/jmeter/trunk/docs/changes.html
jakarta/jmeter/trunk/docs/index.html
jakarta/jmeter/trunk/docs/usermanual/component_reference.html
jakarta/jmeter/trunk/xdocs/changes.xml
jakarta/jmeter/trunk/xdocs/index.xml
jakarta/jmeter/trunk/xdocs/usermanual/component_reference.xml
Modified: jakarta/jmeter/trunk/docs/changes.html
URL:
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/docs/changes.html?rev=646397&r1=646396&r2=646397&view=diff
==============================================================================
--- jakarta/jmeter/trunk/docs/changes.html (original)
+++ jakarta/jmeter/trunk/docs/changes.html Wed Apr 9 08:11:19 2008
@@ -170,7 +170,11 @@
</p>
<p >
- Fixes Clear
Cookie each iteration bug (unfortunately introduced in 2.3.1)
+
+JMeter 2.3.1 introduced a bug in the Cookie Manager
+- if "Clear Cookie each iteration" was selected, all threads would see the
same cookies.
+This bug has been corrected.
+
</p>
<p >
Switch
Controller now works properly with functions and variables,
@@ -178,11 +182,30 @@
Simple Controller now works properly under a While Controller
</p>
<p >
- CSV fields can
now contain delimiters.
+ CSV fields in
JTL files can now contain delimiters.
CSV and XML files can now contain additional variables (define the JMeter
property sample_variables).
</p>
<p >
- Response
Assertion can now match on substrings
+ Response
Assertion can now match on substrings (i.e. not regular expression).
+Regex extractor can operate on variables.
+ </p>
+
<p >
+
+XPath processing is improved; Tidy errors are handled better.
+
+ </p>
+
<p >
+ Save Table Data
buttons added to Summary and Aggregate reports to allow easy saving of the
calculated data.
+ </p>
+
<p >
+ HTTP(S)
samplers can now save just the MD5 hash of responses, rather than the entire
response.
+ </p>
+
<p >
+
+View Results Tree Listener now uses Tidy to display XML.
+This should allow more content to be displayed succesfully.
+It also avoids the need to download remote DTD files, which can slow the
rendering considerably.
+
</p>
<p >
Number of
classes loaded in non-GUI mode is much reduced.
@@ -214,6 +237,11 @@
<li >
The reference
value parameter for intSum() is now optional.
As a consequence, if a variable name is used, it must not be a valid integer.
+ </li>
+
+
+
<li >
+ The
ant-jmeter.jar is no longer shipped with JMeter. See extras/build.xml for how
to aquire it.
</li>
Modified: jakarta/jmeter/trunk/docs/index.html
URL:
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/docs/index.html?rev=646397&r1=646396&r2=646397&view=diff
==============================================================================
--- jakarta/jmeter/trunk/docs/index.html (original)
+++ jakarta/jmeter/trunk/docs/index.html Wed Apr 9 08:11:19 2008
@@ -163,8 +163,44 @@
<li >
- Can load and
performance test HTTP and FTP servers as well as
- arbitrary database queries (via JDBC)
+ Can load and
performance test many different server types:
+
+
<ul >
+
+
+
<li >
+ Web - HTTP,
HTTPS
+ </li>
+
+
+
<li >
+ SOAP
+ </li>
+
+
+
<li >
+ Database via
JDBC
+ </li>
+
+
+
<li >
+ LDAP
+ </li>
+
+
+
<li >
+ JMS
+ </li>
+
+
+
<li >
+ Mail - POP3
+ </li>
+
+
+ </ul>
+
+
</li>
@@ -216,7 +252,10 @@
<li >
- Highly
Extensible:
+
<b >
+ Highly
Extensible:
+ </b>
+
<ul >
Modified: jakarta/jmeter/trunk/docs/usermanual/component_reference.html
URL:
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/docs/usermanual/component_reference.html?rev=646397&r1=646396&r2=646397&view=diff
==============================================================================
--- jakarta/jmeter/trunk/docs/usermanual/component_reference.html (original)
+++ jakarta/jmeter/trunk/docs/usermanual/component_reference.html Wed Apr 9
08:11:19 2008
@@ -8066,7 +8066,23 @@
<p >
The response
assertion control panel lets you add pattern strings to be compared against
various
fields of the response.
- The pattern strings are Perl5-style regular expressions.
+ The pattern strings are:
+
+
<ul >
+
+
+
<li >
+ Contains,
Matches: Perl5-style regular expressions
+ </li>
+
+
+
<li >
+ Equals,
Substring: plain text, case-sensitive
+ </li>
+
+
+ </ul>
+
</p>
@@ -8206,6 +8222,7 @@
</ul>
+ Equals and Substring patterns are plain strings, not regular
expressions.
NOT may also be selected to invert the result of the check.
</td>
<td>
@@ -10502,6 +10519,7 @@
<tr>
<td>Use Namespace?</td>
<td>
+
If checked, then the XML parser will use namespace resolution.
Note that currently only namespaces declared on the root element will
be recognised.
A later version of JMeter may support user-definition of additional
workspace names.
Modified: jakarta/jmeter/trunk/xdocs/changes.xml
URL:
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/xdocs/changes.xml?rev=646397&r1=646396&r2=646397&view=diff
==============================================================================
--- jakarta/jmeter/trunk/xdocs/changes.xml (original)
+++ jakarta/jmeter/trunk/xdocs/changes.xml Wed Apr 9 08:11:19 2008
@@ -44,16 +44,35 @@
All other types are now assumed to be text.
</p>
-<p>Fixes Clear Cookie each iteration bug (unfortunately introduced in
2.3.1)</p>
+<p>
+JMeter 2.3.1 introduced a bug in the Cookie Manager
+- if "Clear Cookie each iteration" was selected, all threads would see the
same cookies.
+This bug has been corrected.
+</p>
<p>Switch Controller now works properly with functions and variables,
and the condition can now be a name instead of a number.
Simple Controller now works properly under a While Controller</p>
-<p>CSV fields can now contain delimiters.
+<p>CSV fields in JTL files can now contain delimiters.
CSV and XML files can now contain additional variables (define the JMeter
property sample_variables).</p>
-<p>Response Assertion can now match on substrings</p>
+<p>Response Assertion can now match on substrings (i.e. not regular
expression).
+Regex extractor can operate on variables.</p>
+
+<p>
+XPath processing is improved; Tidy errors are handled better.
+</p>
+
+<p>Save Table Data buttons added to Summary and Aggregate reports to allow
easy saving of the calculated data.</p>
+
+<p>HTTP(S) samplers can now save just the MD5 hash of responses, rather than
the entire response.</p>
+
+<p>
+View Results Tree Listener now uses Tidy to display XML.
+This should allow more content to be displayed succesfully.
+It also avoids the need to download remote DTD files, which can slow the
rendering considerably.
+</p>
<p>Number of classes loaded in non-GUI mode is much reduced.</p>
@@ -73,6 +92,7 @@
</li>
<li>The reference value parameter for intSum() is now optional.
As a consequence, if a variable name is used, it must not be a valid
integer.</li>
+<li>The ant-jmeter.jar is no longer shipped with JMeter. See extras/build.xml
for how to aquire it.</li>
</ul>
<h4>Bug fixes</h4>
Modified: jakarta/jmeter/trunk/xdocs/index.xml
URL:
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/xdocs/index.xml?rev=646397&r1=646396&r2=646397&view=diff
==============================================================================
--- jakarta/jmeter/trunk/xdocs/index.xml (original)
+++ jakarta/jmeter/trunk/xdocs/index.xml Wed Apr 9 08:11:19 2008
@@ -42,8 +42,16 @@
<h2>What does it do?</h2>
<p>Apache JMeter features include:</p>
<ul>
- <li>Can load and performance test HTTP and FTP servers as well as
- arbitrary database queries (via JDBC)</li>
+ <li>Can load and performance test many different server types:
+ <ul>
+ <li>Web - HTTP, HTTPS</li>
+ <li>SOAP</li>
+ <li>Database via JDBC</li>
+ <li>LDAP</li>
+ <li>JMS</li>
+ <li>Mail - POP3</li>
+ </ul>
+ </li>
<li>Complete portability and <b>100% Java purity</b>.</li>
<li>Full <b>Swing</b> and lightweight component support (precompiled
JAR uses packages
<code>javax.swing.*</code>).</li>
@@ -51,7 +59,7 @@
simultaneous sampling of different functions by seperate thread
groups.</li>
<li>Careful <b>GUI</b> design allows faster operation and more precise
timings.</li>
<li>Caching and offline analysis/replaying of test results.</li>
- <li> Highly Extensible:
+ <li><b>Highly Extensible:</b>
<ul>
<li>Pluggable Samplers allow unlimited testing
capabilities.</li>
<li>Several load statistics may be choosen with <b>pluggable
timers</b>.</li>
Modified: jakarta/jmeter/trunk/xdocs/usermanual/component_reference.xml
URL:
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/xdocs/usermanual/component_reference.xml?rev=646397&r1=646396&r2=646397&view=diff
==============================================================================
--- jakarta/jmeter/trunk/xdocs/usermanual/component_reference.xml (original)
+++ jakarta/jmeter/trunk/xdocs/usermanual/component_reference.xml Wed Apr 9
08:11:19 2008
@@ -2540,7 +2540,11 @@
<description><p>The response assertion control panel lets you add pattern
strings to be compared against various
fields of the response.
- The pattern strings are Perl5-style regular expressions.
+ The pattern strings are:
+ <ul>
+ <li>Contains, Matches: Perl5-style regular expressions</li>
+ <li>Equals, Substring: plain text, case-sensitive</li>
+ </ul>
</p>
<p>
A summary of the pattern matching characters can be found at <a
href="http://jakarta.apache.org/oro/api/org/apache/oro/text/regex/package-summary.html">http://jakarta.apache.org/oro/api/org/apache/oro/text/regex/package-summary.html</a>
@@ -2593,6 +2597,7 @@
<li>Equals - true if the whole text equals the pattern string
(case-sensitive)</li>
<li>Substring - true if the text contains the pattern string
(case-sensitive)</li>
</ul>
+ Equals and Substring patterns are plain strings, not regular
expressions.
NOT may also be selected to invert the result of the check.</property>
<property name="Patterns to Test" required="Yes">A list of patterns to
be tested.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]