Revision: 3177
Author: pekka.klarck
Date: Wed May 5 03:36:55 2010
Log: regen
http://code.google.com/p/robotframework/source/detail?r=3177
Modified:
/trunk/doc/libraries/BuiltIn.html
/trunk/doc/libraries/Collections.html
/trunk/doc/libraries/Dialogs.html
/trunk/doc/libraries/OperatingSystem.html
/trunk/doc/libraries/Screenshot.html
/trunk/doc/libraries/String.html
/trunk/doc/libraries/Telnet.html
=======================================
--- /trunk/doc/libraries/BuiltIn.html Fri Apr 16 06:21:23 2010
+++ /trunk/doc/libraries/BuiltIn.html Wed May 5 03:36:55 2010
@@ -27,6 +27,7 @@
}
div.shortcuts a {
text-decoration: none;
+ color: black;
}
div.shortcuts a:hover {
text-decoration: underline;
@@ -85,8 +86,10 @@
</head>
<body>
<h1>BuiltIn</h1>
-<b>Version:</b> 2.1.3<br>
-<b>Scope:</b> global</p>
+<b>Version:</b> trunk 20100323<br>
+<b>Scope:</b> global<br>
+<b>Named arguments: </b>
+supported
<h2 id="introduction">Introduction</h2>
<p>An always available standard library with often needed keywords.<br />
@@ -148,6 +151,8 @@
·
<a href="#Run Keyword" title="Executes the given keyword with the given
arguments.">Run Keyword</a>
·
+<a href="#Run Keyword And Continue On Failure" title="Runs the keyword and
continues execution even if a failure
occurs.">Run Keyword And Continue On Failure</a>
+ ·
<a href="#Run Keyword And Expect Error" title="Runs the keyword and checks
that the expected error
occurred.">Run Keyword And Expect Error</a>
·
<a href="#Run Keyword And Ignore Error" title="Runs the given keyword with
the given arguments and ignores possible
error.">Run Keyword And Ignore Error</a>
@@ -180,6 +185,8 @@
·
<a href="#Set Tags" title="Adds given `tags` for the current test or all
tests in a suite.">Set Tags</a>
·
+<a href="#Set Test Message" title="Sets message for for the current
test.">Set Test Message</a>
+ ·
<a href="#Set Test Variable" title="Makes a variable available everywhere
within the scope of the current test.">Set Test Variable</a>
·
<a href="#Set Variable" title="Returns the given values which can then be
assigned to a variables.">Set Variable</a>
@@ -242,7 +249,7 @@
</div>
<h2>Keywords</h2>
-<table class="keywords">
+<table border="1" class="keywords">
<tr>
<th class="kw">Keyword</th>
<th class="arg">Arguments</th>
@@ -804,6 +811,29 @@
Because the name of the keyword to execute is given as an argument, it can
be a variable and thus set dynamically, e.g. from a return value of another
keyword or from the command line.</td>
</tr>
<tr>
+ <td class="kw"><a name="Run Keyword And Continue On Failure"></a>Run
Keyword And Continue On Failure</td>
+ <td class="arg">name, *args</td>
+ <td class="doc">Runs the keyword and continues execution even if a
failure occurs.<br />
+<br />
+The keyword name and arguments work as with <a href="#Run Keyword"
class="name">Run Keyword</a>.<br />
+<br />
+Example:<br />
+<table border="1" class="doc">
+<tr>
+<td>Run Keyword And Continue On Failure</td>
+<td>Fail</td>
+<td>This is a stupid example</td>
+</tr>
+<tr>
+<td>Log</td>
+<td>This keyword is executed</td>
+<td></td>
+</tr>
+</table>
+<br />
+This keyword was added in Robot Framework 2.5. Errors caused by invalid
syntax, timeouts, or fatal exceptions are not caught.</td>
+</tr>
+<tr>
<td class="kw"><a name="Run Keyword And Expect Error"></a>Run Keyword
And Expect Error</td>
<td class="arg">expected_error, name, *args</td>
<td class="doc">Runs the keyword and checks that the expected error
occurred.<br />
@@ -836,7 +866,8 @@
<td></td>
</tr>
</table>
-</td>
+<br />
+Starting from Robot Framework 2.5 errors caused by invalid syntax,
timeouts, or fatal exceptions are not caught by this keyword.</td>
</tr>
<tr>
<td class="kw"><a name="Run Keyword And Ignore Error"></a>Run Keyword
And Ignore Error</td>
@@ -845,7 +876,9 @@
<br />
This keyword returns two values, so that the first is either 'PASS'
or 'FAIL', depending on the status of the executed keyword. The second
value is either the return value of the keyword or the received error
message.<br />
<br />
-The keyword name and arguments work as in <a href="#Run Keyword"
class="name">Run Keyword</a>. See <a href="#Run Keyword If"
class="name">Run Keyword If</a> for a usage example.</td>
+The keyword name and arguments work as in <a href="#Run Keyword"
class="name">Run Keyword</a>. See <a href="#Run Keyword If"
class="name">Run Keyword If</a> for a usage example.<br />
+<br />
+Starting from Robot Framework 2.5 errors caused by invalid syntax,
timeouts, or fatal exceptions are not caught by this keyword.</td>
</tr>
<tr>
<td class="kw"><a name="Run Keyword If"></a>Run Keyword If</td>
@@ -1082,6 +1115,15 @@
See <a href="#Remove Tags" class="name">Remove Tags</a> for another
keyword to modify tags at test execution time.</td>
</tr>
<tr>
+ <td class="kw"><a name="Set Test Message"></a>Set Test Message</td>
+ <td class="arg">message</td>
+ <td class="doc">Sets message for for the current test.<br />
+<br />
+This is overridden by possible failure message, except when this keyword
is used in test case teardown. In test case teardown this overrides
messages even for failed tests.<br />
+<br />
+This keyword can not be used in suite setup or suite teardown.</td>
+</tr>
+<tr>
<td class="kw"><a name="Set Test Variable"></a>Set Test Variable</td>
<td class="arg">name, *values</td>
<td class="doc">Makes a variable available everywhere within the scope
of the current test.<br />
@@ -1604,13 +1646,14 @@
<td>arg2</td>
</tr>
</table>
-</td>
+<br />
+Starting from Robot Framework 2.5 errors caused by invalid syntax,
timeouts, or fatal exceptions are not caught by this keyword.</td>
</tr>
</table>
<p id="footer">
-Altogether 72 keywords.<br />
+Altogether 74 keywords.<br />
Generated by <a
href="http://code.google.com/p/robotframework/wiki/LibraryDocumentationTool">libdoc.py</a>
-on 2010-04-16 11:14:06.
+on 2010-05-05 13:36:41.
</p>
</body>
</html>
=======================================
--- /trunk/doc/libraries/Collections.html Fri Apr 16 06:36:57 2010
+++ /trunk/doc/libraries/Collections.html Wed May 5 03:36:55 2010
@@ -12,18 +12,25 @@
padding: 0.1em 0.5em;
}
a.name, span.name {
+ font-style: italic;
}
a, a:link, a:visited {
+ color: #c30;
}
a:hover, a:active {
+ text-decoration: underline;
+ color: black;
}
div.shortcuts {
margin: 1em 0em;
font-size: 0.9em;
}
div.shortcuts a {
+ text-decoration: none;
+ color: black;
}
div.shortcuts a:hover {
+ text-decoration: underline;
}
table.keywords {
border: 2px solid black;
@@ -79,8 +86,10 @@
</head>
<body>
<h1>Collections</h1>
-<b>Version:</b> 2.1.3<br>
-<b>Scope:</b> global</p>
+<b>Version:</b> trunk 20100323<br>
+<b>Scope:</b> global<br>
+<b>Named arguments: </b>
+supported
<h2 id="introduction">Introduction</h2>
<p>A test library providing keywords for handling lists and
dictionaries.<br />
@@ -225,7 +234,7 @@
</div>
<h2>Keywords</h2>
-<table class="keywords">
+<table border="1" class="keywords">
<tr>
<th class="kw">Keyword</th>
<th class="arg">Arguments</th>
@@ -837,7 +846,7 @@
<p id="footer">
Altogether 36 keywords.<br />
Generated by <a
href="http://code.google.com/p/robotframework/wiki/LibraryDocumentationTool">libdoc.py</a>
-on 2010-04-16 11:14:07.
+on 2010-05-05 13:36:42.
</p>
</body>
</html>
=======================================
--- /trunk/doc/libraries/Dialogs.html Fri Apr 16 01:19:54 2010
+++ /trunk/doc/libraries/Dialogs.html Wed May 5 03:36:55 2010
@@ -86,8 +86,10 @@
</head>
<body>
<h1>Dialogs</h1>
-<b>Version:</b> 2.1.3<br>
-<b>Scope:</b> global</p>
+<b>Version:</b> trunk 20100323<br>
+<b>Scope:</b> global<br>
+<b>Named arguments: </b>
+supported
<h2 id="introduction">Introduction</h2>
<p>A test library providing dialogs for interacting with users.<br />
@@ -107,7 +109,7 @@
</div>
<h2>Keywords</h2>
-<table class="keywords">
+<table border="1" class="keywords">
<tr>
<th class="kw">Keyword</th>
<th class="arg">Arguments</th>
@@ -145,7 +147,7 @@
<p id="footer">
Altogether 4 keywords.<br />
Generated by <a
href="http://code.google.com/p/robotframework/wiki/LibraryDocumentationTool">libdoc.py</a>
-on 2010-04-16 11:14:07.
+on 2010-05-05 13:36:42.
</p>
</body>
</html>
=======================================
--- /trunk/doc/libraries/OperatingSystem.html Fri Apr 16 01:19:54 2010
+++ /trunk/doc/libraries/OperatingSystem.html Wed May 5 03:36:55 2010
@@ -86,7 +86,10 @@
</head>
<body>
<h1>OperatingSystem</h1>
-<b>Scope:</b> global</p>
+<b>Version:</b> trunk 20100323<br>
+<b>Scope:</b> global<br>
+<b>Named arguments: </b>
+supported
<h2 id="introduction">Introduction</h2>
<p>A test library providing keywords for OS related tasks.<br />
@@ -294,7 +297,7 @@
</div>
<h2>Keywords</h2>
-<table class="keywords">
+<table border="1" class="keywords">
<tr>
<th class="kw">Keyword</th>
<th class="arg">Arguments</th>
@@ -1263,7 +1266,7 @@
<p id="footer">
Altogether 55 keywords.<br />
Generated by <a
href="http://code.google.com/p/robotframework/wiki/LibraryDocumentationTool">libdoc.py</a>
-on 2010-04-16 11:14:07.
+on 2010-05-05 13:36:42.
</p>
</body>
</html>
=======================================
--- /trunk/doc/libraries/Screenshot.html Fri Apr 16 01:19:54 2010
+++ /trunk/doc/libraries/Screenshot.html Wed May 5 03:36:55 2010
@@ -86,8 +86,10 @@
</head>
<body>
<h1>Screenshot</h1>
-<b>Version:</b> 2.1.3<br>
-<b>Scope:</b> test suite</p>
+<b>Version:</b> trunk 20100323<br>
+<b>Scope:</b> test suite<br>
+<b>Named arguments: </b>
+supported
<h2 id="introduction">Introduction</h2>
<p>A test library for taking full-screen screenshots of the desktop.<br />
@@ -95,7 +97,7 @@
<span class="name">Screenshot</span> is Robot Framework's standard library
that provides keywords to capture and store screenshots of the whole
desktop. This library is implemented with Java AWT APIs, so it can be used
only when running Robot Framework on Jython.</p>
<h2 id="importing">Importing</h2>
-<table class="keywords">
+<table border="1" class="keywords">
<tr>
<th class="arg">Arguments</th>
<th class="doc">Documentation</th>
@@ -153,7 +155,7 @@
</div>
<h2>Keywords</h2>
-<table class="keywords">
+<table border="1" class="keywords">
<tr>
<th class="kw">Keyword</th>
<th class="arg">Arguments</th>
@@ -221,7 +223,7 @@
<p id="footer">
Altogether 4 keywords.<br />
Generated by <a
href="http://code.google.com/p/robotframework/wiki/LibraryDocumentationTool">libdoc.py</a>
-on 2010-04-16 11:14:07.
+on 2010-05-05 13:36:43.
</p>
</body>
</html>
=======================================
--- /trunk/doc/libraries/String.html Fri Apr 16 06:21:23 2010
+++ /trunk/doc/libraries/String.html Wed May 5 03:36:55 2010
@@ -26,6 +26,8 @@
font-size: 0.9em;
}
div.shortcuts a {
+ text-decoration: none;
+ color: black;
}
div.shortcuts a:hover {
text-decoration: underline;
@@ -84,8 +86,10 @@
</head>
<body>
<h1>String</h1>
-<b>Version:</b> 2.1.3<br>
-<b>Scope:</b> global</p>
+<b>Version:</b> trunk 20100323<br>
+<b>Scope:</b> global<br>
+<b>Named arguments: </b>
+supported
<h2 id="introduction">Introduction</h2>
<p>A test library for string manipulation and verification.<br />
@@ -146,7 +150,7 @@
</div>
<h2>Keywords</h2>
-<table class="keywords">
+<table border="1" class="keywords">
<tr>
<th class="kw">Keyword</th>
<th class="arg">Arguments</th>
@@ -643,7 +647,7 @@
<p id="footer">
Altogether 19 keywords.<br />
Generated by <a
href="http://code.google.com/p/robotframework/wiki/LibraryDocumentationTool">libdoc.py</a>
-on 2010-04-16 11:14:07.
+on 2010-05-05 13:36:43.
</p>
</body>
</html>
=======================================
--- /trunk/doc/libraries/Telnet.html Fri Apr 16 15:36:02 2010
+++ /trunk/doc/libraries/Telnet.html Wed May 5 03:36:55 2010
@@ -3,12 +3,93 @@
<head>
<title>Telnet</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-
+<style media="all" type="text/css">
+body {
+ background: white;
+ color: black;
+ font-size: small;
+ font-family: sans-serif;
+ padding: 0.1em 0.5em;
+}
+a.name, span.name {
+ font-style: italic;
+}
+a, a:link, a:visited {
+ color: #c30;
+}
+a:hover, a:active {
+ text-decoration: underline;
+ color: black;
+}
+div.shortcuts {
+ margin: 1em 0em;
+ font-size: 0.9em;
+}
+div.shortcuts a {
+ text-decoration: none;
+ color: black;
+}
+div.shortcuts a:hover {
+ text-decoration: underline;
+}
+table.keywords {
+ border: 2px solid black;
+ border-collapse: collapse;
+ empty-cells: show;
+ margin: 0.3em 0em;
+ width: 100%;
+}
+table.keywords th, table.keywords td {
+ border: 2px solid black;
+ padding: 0.2em;
+ vertical-align: top;
+}
+table.keywords th {
+ background: #bbb;
+ color: black;
+}
+table.keywords td.kw {
+ width: 150px;
+ font-weight: bold;
+}
+table.keywords td.arg {
+ width: 300px;
+ font-style: italic;
+}
+table.doc {
+ border: 1px solid black;
+ background: transparent;
+ border-collapse: collapse;
+ empty-cells: show;
+ font-size: 0.85em;
+}
+table.doc td {
+ border: 1px solid black;
+ padding: 0.1em 0.3em;
+ height: 1.2em;
+
+}
+#footer {
+ font-size: 0.9em;
+}
+</style>
+<style media="print" type="text/css">
+body {
+ margin: 0px 1px;
+ padding: 0px;
+ font-size: 10px;
+}
+a {
+ text-decoration: none;
+}
+</style>
</head>
<body>
<h1>Telnet</h1>
-<b>Version:</b> 2.1.3<br>
-<b>Scope:</b> test suite</p>
+<b>Version:</b> trunk 20100323<br>
+<b>Scope:</b> test suite<br>
+<b>Named arguments: </b>
+not supported
<h2 id="introduction">Introduction</h2>
<p>A test library providing communication over Telnet connections.<br />
@@ -514,7 +595,7 @@
<p id="footer">
Altogether 17 keywords.<br />
Generated by <a
href="http://code.google.com/p/robotframework/wiki/LibraryDocumentationTool">libdoc.py</a>
-on 2010-04-17 01:35:17.
+on 2010-05-05 13:36:43.
</p>
</body>
</html>