Revision: 2357
Author: pekka.klarck
Date: Thu Oct 22 07:12:23 2009
Log: regen
http://code.google.com/p/robotframework/source/detail?r=2357
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 Wed Aug 12 04:50:20 2009
+++ /trunk/doc/libraries/BuiltIn.html Thu Oct 22 07:12:23 2009
@@ -79,7 +79,7 @@
</head>
<body>
<h1>BuiltIn - Documentation</h1>
-<p><b>Version:</b> trunk 20090811</p>
+<p><b>Version:</b> trunk 20091020</p>
<h2 id="introduction">Introduction</h2>
<p class='libdoc'>An always available standard library with often needed
keywords.<br />
@@ -131,7 +131,7 @@
<a href="#Set Suite Variable" title="Makes a variable available everywhere
within the scope of the current
suite.">Set Suite Variable</a>
<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 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 argument which can then
be assigned to a variable.">Set Variable</a>
+<a href="#Set Variable" title="Returns the given values which can then be
assigned to a variables.">Set Variable</a>
<a href="#Set Variable If" title="Sets variable based on the given
condition.">Set Variable If</a>
<a href="#Should Be Empty" title="Verifies that the given item is
empty.">Should Be Empty</a>
<a href="#Should Be Equal" title="Fails if the given objects are
unequal.">Should Be Equal</a>
@@ -1005,11 +1005,9 @@
<tr>
<td class="kw"><a name="Set Variable"></a>Set Variable</td>
<td class="arg">*values</td>
- <td class="doc">Returns the given argument which can then be assigned to
a variable.<br />
+ <td class="doc">Returns the given values which can then be assigned to a
variables.<br />
<br />
-This keyword is mainly used for setting scalar variables. Additionally it
can be used for converting a scalar variable containing a list to a list
variable or to multiple scalar variables.<br />
-<br />
-Using this keyword with more (or less) than one value has been deprecated
in Robot Framework 2.1 and that usage will be removed in 2.2 version.<br />
+This keyword is mainly used for setting scalar variables. Additionally it
can be used for converting a scalar variable containing a list to a list
variable or to multiple scalar variables. It is recommended to use `Create
List' when creating new lists.<br />
<br />
Examples:<br />
<table border="1" class="doc">
@@ -1018,24 +1016,35 @@
<td>Set Variable</td>
<td>Hello, world!</td>
<td></td>
+<td></td>
</tr>
<tr>
<td>${hi2} =</td>
<td>Set Variable</td>
<td>I said: ${hi}</td>
<td></td>
+<td></td>
+</tr>
+<tr>
+<td>${var1}</td>
+<td>${var2} =</td>
+<td>Set Variable</td>
+<td>Hello</td>
+<td>world</td>
</tr>
<tr>
<td>@{list} =</td>
<td>Set Variable</td>
<td>${list with some items}</td>
<td></td>
+<td></td>
</tr>
<tr>
<td>${item1}</td>
<td>${item2} =</td>
<td>Set Variable</td>
<td>${list with 2 items}</td>
+<td></td>
</tr>
</table>
<br />
@@ -1518,7 +1527,7 @@
<p class="footer">
Altogether 72 keywords.<br />
Generated by <a
href="http://code.google.com/p/robotframework/wiki/LibraryDocumentationTool">libdoc.py</a>
-on 2009-08-12 14:49:07.
+on 2009-10-22 17:11:08.
</p>
</body>
</html>
=======================================
--- /trunk/doc/libraries/Collections.html Sun Apr 12 14:40:42 2009
+++ /trunk/doc/libraries/Collections.html Thu Oct 22 07:12:23 2009
@@ -79,7 +79,7 @@
</head>
<body>
<h1>Collections - Documentation</h1>
-<p><b>Version:</b> trunk 20090408</p>
+<p><b>Version:</b> trunk 20091020</p>
<h2 id="introduction">Introduction</h2>
<p class='libdoc'>A test library providing keywords for handling lists and
dictionaries.<br />
@@ -801,7 +801,7 @@
<p class="footer">
Altogether 36 keywords.<br />
Generated by <a
href="http://code.google.com/p/robotframework/wiki/LibraryDocumentationTool">libdoc.py</a>
-on 2009-04-13 00:38:35.
+on 2009-10-22 17:11:08.
</p>
</body>
</html>
=======================================
--- /trunk/doc/libraries/Dialogs.html Sun Apr 12 14:40:42 2009
+++ /trunk/doc/libraries/Dialogs.html Thu Oct 22 07:12:23 2009
@@ -79,7 +79,7 @@
</head>
<body>
<h1>Dialogs - Documentation</h1>
-<p><b>Version:</b> trunk 20090408</p>
+<p><b>Version:</b> trunk 20091020</p>
<h2 id="introduction">Introduction</h2>
<p class='libdoc'>A test library providing dialogs for interacting with
users.<br />
@@ -90,6 +90,7 @@
<h2>Shortcuts</h2>
<div class='links'>
<a href="#Execute Manual Step" title="Pauses the test execution until user
sets the keyword status.">Execute Manual Step</a>
+<a href="#Get Selection From User" title="Pauses the test execution and
asks user to select value">Get Selection From User</a>
<a href="#Get Value From User" title="Pauses the test execution and asks
user to input a value.">Get Value From User</a>
<a href="#Pause Execution" title="Pauses the test execution and shows
dialog with the text `message`.">Pause Execution</a>
</div>
@@ -109,11 +110,18 @@
<span class="name">message</span> is the instruction shown in the dialog.
User can select PASS or FAIL, and in the latter case an additional dialog
is opened for defining the error message. <span
class="name">default_error</span> is the possible default value shown in
the error message dialog.</td>
</tr>
<tr>
+ <td class="kw"><a name="Get Selection From User"></a>Get Selection From
User</td>
+ <td class="arg">message, *values</td>
+ <td class="doc">Pauses the test execution and asks user to select
value<br />
+<br />
+<span class="name">message</span> is the instruction shown in the dialog.
and <span class="name">values</span> are the options given to the user.
Selecting 'Cancel' fails the keyword.</td>
+</tr>
+<tr>
<td class="kw"><a name="Get Value From User"></a>Get Value From User</td>
<td class="arg">message, default_value=</td>
<td class="doc">Pauses the test execution and asks user to input a
value.<br />
<br />
-<span class="name">message</span> is the instruction shown in the dialog.
<span class="name">default_value</span> is the possible default value shown
in the input field.</td>
+<span class="name">message</span> is the instruction shown in the dialog.
<span class="name">default_value</span> is the possible default value shown
in the input field. Selecting 'Cancel' fails the keyword.</td>
</tr>
<tr>
<td class="kw"><a name="Pause Execution"></a>Pause Execution</td>
@@ -122,9 +130,9 @@
</tr>
</table>
<p class="footer">
-Altogether 3 keywords.<br />
+Altogether 4 keywords.<br />
Generated by <a
href="http://code.google.com/p/robotframework/wiki/LibraryDocumentationTool">libdoc.py</a>
-on 2009-04-13 00:38:35.
+on 2009-10-22 17:11:08.
</p>
</body>
</html>
=======================================
--- /trunk/doc/libraries/OperatingSystem.html Tue Apr 14 04:35:07 2009
+++ /trunk/doc/libraries/OperatingSystem.html Thu Oct 22 07:12:23 2009
@@ -79,7 +79,7 @@
</head>
<body>
<h1>OperatingSystem - Documentation</h1>
-<p><b>Version:</b> trunk 20090408</p>
+<p><b>Version:</b> trunk 20091020</p>
<h2 id="introduction">Introduction</h2>
<p class='libdoc'>A test library providing keywords for OS related
tasks.<br />
@@ -893,7 +893,9 @@
<tr>
<td class="kw"><a name="Set Environment Variable"></a>Set Environment
Variable</td>
<td class="arg">name, value</td>
- <td class="doc">Sets an environment variable to a specified value.</td>
+ <td class="doc">Sets an environment variable to a specified value.<br />
+<br />
+Starting from Robot Framework 2.1.1, values are converted to strings
automatically.</td>
</tr>
<tr>
<td class="kw"><a name="Set Modified Time"></a>Set Modified Time</td>
@@ -1204,7 +1206,7 @@
<p class="footer">
Altogether 55 keywords.<br />
Generated by <a
href="http://code.google.com/p/robotframework/wiki/LibraryDocumentationTool">libdoc.py</a>
-on 2009-04-14 14:34:52.
+on 2009-10-22 17:11:08.
</p>
</body>
</html>
=======================================
--- /trunk/doc/libraries/Screenshot.html Sun Apr 12 14:40:42 2009
+++ /trunk/doc/libraries/Screenshot.html Thu Oct 22 07:12:23 2009
@@ -79,7 +79,7 @@
</head>
<body>
<h1>Screenshot - Documentation</h1>
-<p><b>Version:</b> trunk 20090408</p>
+<p><b>Version:</b> trunk 20091020</p>
<h2 id="introduction">Introduction</h2>
<p class='libdoc'>A test library for taking full-screen screenshots of the
desktop.<br />
@@ -210,7 +210,7 @@
<p class="footer">
Altogether 4 keywords.<br />
Generated by <a
href="http://code.google.com/p/robotframework/wiki/LibraryDocumentationTool">libdoc.py</a>
-on 2009-04-13 00:38:36.
+on 2009-10-22 17:11:09.
</p>
</body>
</html>
=======================================
--- /trunk/doc/libraries/String.html Tue Oct 20 05:14:38 2009
+++ /trunk/doc/libraries/String.html Thu Oct 22 07:12:23 2009
@@ -79,7 +79,7 @@
</head>
<body>
<h1>String - Documentation</h1>
-<p><b>Version:</b> trunk 20090816</p>
+<p><b>Version:</b> trunk 20091020</p>
<h2 id="introduction">Introduction</h2>
<p class='libdoc'>A test library for string manipulation and
verification.<br />
@@ -613,7 +613,7 @@
<p class="footer">
Altogether 19 keywords.<br />
Generated by <a
href="http://code.google.com/p/robotframework/wiki/LibraryDocumentationTool">libdoc.py</a>
-on 2009-10-20 15:10:58.
+on 2009-10-22 17:11:09.
</p>
</body>
</html>
=======================================
--- /trunk/doc/libraries/Telnet.html Sun Apr 12 14:40:42 2009
+++ /trunk/doc/libraries/Telnet.html Thu Oct 22 07:12:23 2009
@@ -79,7 +79,7 @@
</head>
<body>
<h1>Telnet - Documentation</h1>
-<p><b>Version:</b> trunk 20090408</p>
+<p><b>Version:</b> trunk 20091020</p>
<h2 id="introduction">Introduction</h2>
<p class='libdoc'>A test library providing communication over Telnet
connections.<br />
@@ -569,7 +569,7 @@
<p class="footer">
Altogether 17 keywords.<br />
Generated by <a
href="http://code.google.com/p/robotframework/wiki/LibraryDocumentationTool">libdoc.py</a>
-on 2009-04-13 00:38:36.
+on 2009-10-22 17:11:09.
</p>
</body>
</html>