Revision: 4503
Author: janne.t.harkonen
Date: Fri Dec 10 02:58:38 2010
Log: Finalzing 2.5.5
http://code.google.com/p/robotframework/source/detail?r=4503

Modified:
 /tags/robotframework-2.5.5/doc/libraries/BuiltIn.html
 /tags/robotframework-2.5.5/doc/libraries/Collections.html
 /tags/robotframework-2.5.5/doc/libraries/Dialogs.html
 /tags/robotframework-2.5.5/doc/libraries/OperatingSystem.html
 /tags/robotframework-2.5.5/doc/libraries/Screenshot.html
 /tags/robotframework-2.5.5/doc/libraries/String.html
 /tags/robotframework-2.5.5/doc/libraries/Telnet.html
 /tags/robotframework-2.5.5/doc/userguide/RobotFrameworkUserGuide.html
 /tags/robotframework-2.5.5/src/robot/version.py
 /tags/robotframework-2.5.5/tools/fileviewer/doc/fileviewer.html
 /tags/robotframework-2.5.5/tools/fixml/doc/fixml.html
 /tags/robotframework-2.5.5/tools/libdoc/doc/libdoc.html
/tags/robotframework-2.5.5/tools/oneclickinstaller/doc/oneclickinstaller.html
 /tags/robotframework-2.5.5/tools/ristopy/doc/ristopy.html
 /tags/robotframework-2.5.5/tools/robotdiff/doc/robotdiff.html
 /tags/robotframework-2.5.5/tools/statuschecker/doc/statuschecker.html
 /tags/robotframework-2.5.5/tools/testdoc/doc/testdoc.html
 /tags/robotframework-2.5.5/tools/times2csv/doc/times2csv.html

=======================================
--- /tags/robotframework-2.5.5/doc/libraries/BuiltIn.html Wed Aug 25 05:35:34 2010 +++ /tags/robotframework-2.5.5/doc/libraries/BuiltIn.html Fri Dec 10 02:58:38 2010
@@ -86,7 +86,7 @@
 </head>
 <body>
 <h1>BuiltIn</h1>
-<b>Version:</b> trunk 20100712<br>
+<b>Version:</b> 2.5.5<br>
 <b>Scope:</b> global<br>
 <b>Named arguments: </b>
 supported
@@ -127,12 +127,16 @@
 &nbsp;&middot;&nbsp;
<a href="#Get Length" title="Returns and logs the length of the given item.">Get&nbsp;Length</a>
 &nbsp;&middot;&nbsp;
+<a href="#Get Library Instance" title="Returns the currently active instance of the specified test library.">Get&nbsp;Library&nbsp;Instance</a>
+&nbsp;&middot;&nbsp;
<a href="#Get Time" title="Returns the given time in the requested format.">Get&nbsp;Time</a>
 &nbsp;&middot;&nbsp;
<a href="#Get Variables" title="Returns a dictionary containing all variables in the current scope.">Get&nbsp;Variables</a>
 &nbsp;&middot;&nbsp;
<a href="#Import Library" title="Imports a library with the given name and optional arguments.">Import&nbsp;Library</a>
 &nbsp;&middot;&nbsp;
+<a href="#Import Resource" title="Imports a resource file with the given path.">Import&nbsp;Resource</a>
+&nbsp;&middot;&nbsp;
<a href="#Import Variables" title="Imports a variable file with the given path and optional arguments.">Import&nbsp;Variables</a>
 &nbsp;&middot;&nbsp;
<a href="#Length Should Be" title="Verifies that the length of the given item is correct.">Length&nbsp;Should&nbsp;Be</a>
@@ -529,13 +533,34 @@
The keyword first tries to get the length with the Python function 'len', which calls the item's '__len__' method internally. If that fails, the keyword tries to call the item's 'length' and 'size' methods directly. The final attempt is trying to get the value of the item's 'length' attribute. If all these attempts are unsuccessful, the keyword fails.</td>
 </tr>
 <tr>
+ <td class="kw"><a name="Get Library Instance"></a>Get Library Instance</td>
+  <td class="arg">name</td>
+ <td class="doc">Returns the currently active instance of the specified test library.<br />
+<br />
+This keyword makes it easy for test libraries to interact with other test libraries that have state. This is illustrated by the Python example below:<br />
+<br />
+<table border="1" class="doc">
+<tr>
+<td>from robot.libraries.BuiltIn import BuiltIn</td>
+</tr>
+</table>
+| def title_should_start_with(expected):<br />
+| &nbsp; &nbsp; seleniumlib = BuiltIn().get_library_instance('SeleniumLibrary')<br />
+| &nbsp; &nbsp; title = seleniumlib.get_title()<br />
+| &nbsp; &nbsp; if not title.startswith(expected):<br />
+| &nbsp; &nbsp; &nbsp; &nbsp; raise AssertionError("Title '%s' did not start with '%s'"<br /> +| &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;% (title, expected))<br />
+<br />
+It is also possible to use this keyword in the test data and pass the returned library instance to another keyword. If a library is imported with a custom name, the <span class="name">name</span> used to get the instance must be that name and not the original library name.</td>
+</tr>
+<tr>
   <td class="kw"><a name="Get Time"></a>Get Time</td>
   <td class="arg">format=timestamp, time=NOW</td>
   <td class="doc">Returns the given time in the requested format.<br />
 <br />
How time is returned is determined based on the given <span class="name">format</span> string as follows. Note that all checks are case-insensitive.<br />
 <br />
-1) If <span class="name">format</span> contains the word 'epoch', the time is returned in seconds after the UNIX epoch. The return value is always an integer.<br /> +1) If <span class="name">format</span> contains the word 'epoch', the time is returned in seconds after the UNIX epoch (Jan 1, 1970 0:00:00). The return value is always an integer.<br />
 <br />
2) If <span class="name">format</span> contains any of the words 'year', 'month', 'day', 'hour', 'min', or 'sec', only the selected parts are returned. The order of the returned parts is always the one in the previous sentence and the order of words in <span class="name">format</span> is not significant. The parts are returned as zero-padded strings (e.g. May -&gt; '05').<br />
 <br />
@@ -543,7 +568,7 @@
 <br />
By default this keyword returns the current time, but that can be altered using <span class="name">time</span> argument as explained below. Notice that this argument is only available in Robot Framework 2.1.1 and newer.<br />
 <br />
-1) If <span class="name">time</span> is a floating point number, it is interpreted as seconds since epoch (Jan 1, 1970 0:00:00). This documentation is written about 1177654467 seconds since epoch.<br /> +1) If <span class="name">time</span> is a floating point number, it is interpreted as seconds since the epoch. This documentation is written about 1177654467 seconds after the epoch.<br />
 <br />
2) If <span class="name">time</span> is a valid timestamp, that time will be used. Valid timestamp formats are 'YYYY-MM-DD hh:mm:ss' and 'YYYYMMDD hhmmss'.<br />
 <br />
@@ -690,6 +715,28 @@
 </td>
 </tr>
 <tr>
+  <td class="kw"><a name="Import Resource"></a>Import Resource</td>
+  <td class="arg">path</td>
+  <td class="doc">Imports a resource file with the given path.<br />
+<br />
+Resources imported with this keyword are set into the test suite scope similarly when importing them in the Setting table using the Resource setting.<br />
+<br />
+The given path must be absolute. Forward slashes can be used as path separator regardless the operating system.<br />
+<br />
+Examples:<br />
+<table border="1" class="doc">
+<tr>
+<td>Import Resource</td>
+<td>${CURDIR}/resource.txt</td>
+</tr>
+<tr>
+<td>Import Resource</td>
+<td>${CURDIR}/../resources/resource.html</td>
+</tr>
+</table>
+</td>
+</tr>
+<tr>
   <td class="kw"><a name="Import Variables"></a>Import Variables</td>
   <td class="arg">path, *args</td>
<td class="doc">Imports a variable file with the given path and optional arguments.<br />
@@ -713,7 +760,8 @@
 <td>arg2</td>
 </tr>
 </table>
-</td>
+<br />
+New in Robot Framework 2.5.4</td>
 </tr>
 <tr>
   <td class="kw"><a name="Length Should Be"></a>Length Should Be</td>
@@ -1723,9 +1771,9 @@
 </tr>
 </table>
 <p id="footer">
-Altogether 77 keywords.<br />
+Altogether 79 keywords.<br />
Generated by <a href="http://code.google.com/p/robotframework/wiki/LibraryDocumentationTool";>libdoc.py</a>
-on 2010-08-25 15:33:51.
+on 2010-12-10 12:57:40.
 </p>
 </body>
 </html>
=======================================
--- /tags/robotframework-2.5.5/doc/libraries/Collections.html Mon Jun 7 08:51:52 2010 +++ /tags/robotframework-2.5.5/doc/libraries/Collections.html Fri Dec 10 02:58:38 2010
@@ -86,7 +86,7 @@
 </head>
 <body>
 <h1>Collections</h1>
-<b>Version:</b> trunk 20100607<br>
+<b>Version:</b> 2.5.5<br>
 <b>Scope:</b> global<br>
 <b>Named arguments: </b>
 supported
@@ -846,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-06-07 18:50:52.
+on 2010-12-10 12:57:40.
 </p>
 </body>
 </html>
=======================================
--- /tags/robotframework-2.5.5/doc/libraries/Dialogs.html Mon Oct 4 16:57:33 2010 +++ /tags/robotframework-2.5.5/doc/libraries/Dialogs.html Fri Dec 10 02:58:38 2010
@@ -86,7 +86,7 @@
 </head>
 <body>
 <h1>Dialogs</h1>
-<b>Version:</b> trunk 20101005<br>
+<b>Version:</b> 2.5.5<br>
 <b>Scope:</b> global<br>
 <b>Named arguments: </b>
 supported
@@ -149,7 +149,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-10-05 01:52:13.
+on 2010-12-10 12:57:41.
 </p>
 </body>
 </html>
=======================================
--- /tags/robotframework-2.5.5/doc/libraries/OperatingSystem.html Mon Jun 7 08:51:52 2010 +++ /tags/robotframework-2.5.5/doc/libraries/OperatingSystem.html Fri Dec 10 02:58:38 2010
@@ -86,7 +86,7 @@
 </head>
 <body>
 <h1>OperatingSystem</h1>
-<b>Version:</b> trunk 20100607<br>
+<b>Version:</b> 2.5.5<br>
 <b>Scope:</b> global<br>
 <b>Named arguments: </b>
 supported
@@ -191,11 +191,11 @@
 &nbsp;&middot;&nbsp;
<a href="#Copy File" title="Copies the source file into a new destination.">Copy&nbsp;File</a>
 &nbsp;&middot;&nbsp;
-<a href="#Count Directories In Directory" title="Returns the number of subdirectories in the given directory.">Count&nbsp;Directories&nbsp;In&nbsp;Directory</a> +<a href="#Count Directories In Directory" title="A wrapper for `Count Items In Directory` returning only file count.">Count&nbsp;Directories&nbsp;In&nbsp;Directory</a>
 &nbsp;&middot;&nbsp;
-<a href="#Count Files In Directory" title="Returns the number of files in the given directory.">Count&nbsp;Files&nbsp;In&nbsp;Directory</a> +<a href="#Count Files In Directory" title="A wrapper for `Count Items In Directory` returning onlyt directory count.">Count&nbsp;Files&nbsp;In&nbsp;Directory</a>
 &nbsp;&middot;&nbsp;
-<a href="#Count Items In Directory" title="Returns the number of all items in the given directory.">Count&nbsp;Items&nbsp;In&nbsp;Directory</a> +<a href="#Count Items In Directory" title="Returns and logs the number of all items in the given directory.">Count&nbsp;Items&nbsp;In&nbsp;Directory</a>
 &nbsp;&middot;&nbsp;
<a href="#Create Directory" title="Creates the specified directory.">Create&nbsp;Directory</a>
 &nbsp;&middot;&nbsp;
@@ -225,6 +225,8 @@
 &nbsp;&middot;&nbsp;
<a href="#File Should Not Exist" title="Fails if the given path points to an existing file.">File&nbsp;Should&nbsp;Not&nbsp;Exist</a>
 &nbsp;&middot;&nbsp;
+<a href="#Get Binary File" title="Returns the contents of a specified file.">Get&nbsp;Binary&nbsp;File</a>
+&nbsp;&middot;&nbsp;
<a href="#Get Environment Variable" title="Returns the value of an environment variable with the given name.">Get&nbsp;Environment&nbsp;Variable</a>
 &nbsp;&middot;&nbsp;
<a href="#Get File" title="Returns the contents of a specified file.">Get&nbsp;File</a>
@@ -241,7 +243,7 @@
 &nbsp;&middot;&nbsp;
<a href="#List Directories In Directory" title="A wrapper for `List Directory` that returns only directories.">List&nbsp;Directories&nbsp;In&nbsp;Directory</a>
 &nbsp;&middot;&nbsp;
-<a href="#List Directory" title="Returns items from a directory, optionally filtered with `pattern`.">List&nbsp;Directory</a> +<a href="#List Directory" title="Returns and logs items in a directory, optionally filtered with `pattern`.">List&nbsp;Directory</a>
 &nbsp;&middot;&nbsp;
<a href="#List Files In Directory" title="A wrapper for `List Directory` that returns only files.">List&nbsp;Files&nbsp;In&nbsp;Directory</a>
 &nbsp;&middot;&nbsp;
@@ -333,23 +335,19 @@
 <tr>
<td class="kw"><a name="Count Directories In Directory"></a>Count Directories In Directory</td>
   <td class="arg">path, pattern=None</td>
- <td class="doc">Returns the number of subdirectories in the given directory.<br />
-<br />
-The arguments <span class="name">pattern</span> and <span class="name">pattern_type</span> have the same semantics as in the <a href="#List Directory" class="name">List Directory</a> keyword. The count is returned as an integer, so it must be checked e.g. with the built-in keyword <span class="name">Should Be Equal As Integers</span>.</td> + <td class="doc">A wrapper for <a href="#Count Items In Directory" class="name">Count Items In Directory</a> returning only file count.</td>
 </tr>
 <tr>
<td class="kw"><a name="Count Files In Directory"></a>Count Files In Directory</td>
   <td class="arg">path, pattern=None</td>
-  <td class="doc">Returns the number of files in the given directory.<br />
-<br />
-The arguments <span class="name">pattern</span> and <span class="name">pattern_type</span> have the same semantics as in the <a href="#List Directory" class="name">List Directory</a> keyword. The count is returned as an integer, so it must be checked e.g. with the built-in keyword <span class="name">Should Be Equal As Integers</span>.</td> + <td class="doc">A wrapper for <a href="#Count Items In Directory" class="name">Count Items In Directory</a> returning onlyt directory count.</td>
 </tr>
 <tr>
<td class="kw"><a name="Count Items In Directory"></a>Count Items In Directory</td>
   <td class="arg">path, pattern=None</td>
- <td class="doc">Returns the number of all items in the given directory.<br /> + <td class="doc">Returns and logs the number of all items in the given directory.<br />
 <br />
-The arguments <span class="name">pattern</span> and <span class="name">pattern_type</span> have the same semantics as in the <a href="#List Directory" class="name">List Directory</a> keyword. The count is returned as an integer, so it must be checked e.g. with the built-in keyword <span class="name">Should Be Equal As Integers</span>.</td> +The argument <span class="name">pattern</span> has the same semantics as in the <a href="#List Directory" class="name">List Directory</a> keyword. The count is returned as an integer, so it must be checked e.g. with the built-in keyword <span class="name">Should Be Equal As Integers</span>.</td>
 </tr>
 <tr>
   <td class="kw"><a name="Create Directory"></a>Create Directory</td>
@@ -450,6 +448,15 @@
The path can be given as an exact path or as a glob pattern. The pattern matching syntax is explained in <a href="#introduction" class="name">introduction</a>. The default error message can be overridden with the <span class="name">msg</span> argument.</td>
 </tr>
 <tr>
+  <td class="kw"><a name="Get Binary File"></a>Get Binary File</td>
+  <td class="arg">path</td>
+  <td class="doc">Returns the contents of a specified file.<br />
+<br />
+This keyword reads the specified file and returns the contents as is. See also <a href="#Get File" class="name">Get File</a>.<br />
+<br />
+New in Robot Framework 2.5.5.</td>
+</tr>
+<tr>
<td class="kw"><a name="Get Environment Variable"></a>Get Environment Variable</td>
   <td class="arg">name, default=None</td>
<td class="doc">Returns the value of an environment variable with the given name.<br />
@@ -463,7 +470,9 @@
   <td class="arg">path, encoding=UTF-8</td>
   <td class="doc">Returns the contents of a specified file.<br />
 <br />
-This keyword reads the specified file and returns the contents. <span class="name">encoding</span> defines the encoding of the file. By default the value is 'UTF-8', which means that UTF-8 and ASCII-encoded files are read correctly.</td> +This keyword reads the specified file and returns the contents. Line breaks in content are converted to platform independent form. See also <a href="#Get Binary File" class="name">Get Binary File</a>.<br />
+<br />
+<span class="name">encoding</span> defines the encoding of the file. By default the value is 'UTF-8', which means that UTF-8 and ASCII-encoded files are read correctly.</td>
 </tr>
 <tr>
   <td class="kw"><a name="Get File Size"></a>Get File Size</td>
@@ -659,7 +668,7 @@
 <tr>
   <td class="kw"><a name="List Directory"></a>List Directory</td>
<td class="arg">path, pattern=None, absolute=False, deprecated_absolute=None</td> - <td class="doc">Returns items from a directory, optionally filtered with <span class="name">pattern</span>.<br /> + <td class="doc">Returns and logs items in a directory, optionally filtered with <span class="name">pattern</span>.<br />
 <br />
File and directory names are returned in case-sensitive alphabetical order, e.g. ['A Name', 'Second', 'a lower case name', 'one more']. Implicit directories '.' and '..' are not returned. The returned items are automatically logged.<br />
 <br />
@@ -1264,9 +1273,9 @@
 </tr>
 </table>
 <p id="footer">
-Altogether 55 keywords.<br />
+Altogether 56 keywords.<br />
Generated by <a href="http://code.google.com/p/robotframework/wiki/LibraryDocumentationTool";>libdoc.py</a>
-on 2010-06-07 18:50:53.
+on 2010-12-10 12:57:41.
 </p>
 </body>
 </html>
=======================================
--- /tags/robotframework-2.5.5/doc/libraries/Screenshot.html Thu Dec 9 08:58:45 2010 +++ /tags/robotframework-2.5.5/doc/libraries/Screenshot.html Fri Dec 10 02:58:38 2010
@@ -86,7 +86,7 @@
 </head>
 <body>
 <h1>Screenshot</h1>
-<b>Version:</b> trunk 20101201<br>
+<b>Version:</b> 2.5.5<br>
 <b>Scope:</b> test suite<br>
 <b>Named arguments: </b>
 supported
@@ -292,7 +292,7 @@
 <p id="footer">
 Altogether 7 keywords.<br />
Generated by <a href="http://code.google.com/p/robotframework/wiki/LibraryDocumentationTool";>libdoc.py</a>
-on 2010-12-09 18:58:28.
+on 2010-12-10 12:57:41.
 </p>
 </body>
 </html>
=======================================
--- /tags/robotframework-2.5.5/doc/libraries/String.html Mon Jun 7 08:51:52 2010 +++ /tags/robotframework-2.5.5/doc/libraries/String.html Fri Dec 10 02:58:38 2010
@@ -86,7 +86,7 @@
 </head>
 <body>
 <h1>String</h1>
-<b>Version:</b> trunk 20100607<br>
+<b>Version:</b> 2.5.5<br>
 <b>Scope:</b> global<br>
 <b>Named arguments: </b>
 supported
@@ -556,7 +556,7 @@
 </tr>
 </table>
 <br />
-See <a href="#Split String From Right" class="name">Split String From Right</a> if you want to start splitting from right, and <a href="#Fetch From Right" class="name">Fetch From Right</a> and <a href="#Fetch From Right" class="name">Fetch From Right</a> if you only want to get first/last part of the string.</td> +See <a href="#Split String From Right" class="name">Split String From Right</a> if you want to start splitting from right, and <a href="#Fetch From Left" class="name">Fetch From Left</a> and <a href="#Fetch From Right" class="name">Fetch From Right</a> if you only want to get first/last part of the string.</td>
 </tr>
 <tr>
<td class="kw"><a name="Split String From Right"></a>Split String From Right</td>
@@ -647,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-06-07 18:50:53.
+on 2010-12-10 12:57:41.
 </p>
 </body>
 </html>
=======================================
--- /tags/robotframework-2.5.5/doc/libraries/Telnet.html Mon Jun 7 08:51:52 2010 +++ /tags/robotframework-2.5.5/doc/libraries/Telnet.html Fri Dec 10 02:58:38 2010
@@ -86,7 +86,7 @@
 </head>
 <body>
 <h1>Telnet</h1>
-<b>Version:</b> trunk 20100607<br>
+<b>Version:</b> 2.5.5<br>
 <b>Scope:</b> test suite<br>
 <b>Named arguments: </b>
 not supported
@@ -595,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-06-07 18:50:53.
+on 2010-12-10 12:57:42.
 </p>
 </body>
 </html>
=======================================
--- /tags/robotframework-2.5.5/doc/userguide/RobotFrameworkUserGuide.html Tue Dec 7 05:15:50 2010 +++ /tags/robotframework-2.5.5/doc/userguide/RobotFrameworkUserGuide.html Fri Dec 10 02:58:38 2010
@@ -488,7 +488,7 @@
 <body>
 <div class="document" id="robot-framework-user-guide">
 <h1 class="title">Robot Framework User Guide</h1>
-<h2 class="subtitle" id="version-version">Version trunk 20101201</h2>
+<h2 class="subtitle" id="version-version">Version 2.5.5</h2>

 <!-- This data file has been placed in the public domain. -->
 <!-- Derived from the Unicode character mappings available from
@@ -13772,7 +13772,7 @@
 <div class="footer">
 <hr class="footer" />
<p>Generated by <a class="reference external" href="http://docutils.sourceforge.net/rst.html";>reStructuredText</a>. Syntax highlighting by <a class="reference external" href="http://pygments.org/";>Pygments</a>.</p>
-<p>Generated on: 2010-12-07 13:11 UTC.
+<p>Generated on: 2010-12-10 10:58 UTC.
 </p>

 </div>
=======================================
--- /tags/robotframework-2.5.5/src/robot/version.py     Wed Dec  1 05:22:18 2010
+++ /tags/robotframework-2.5.5/src/robot/version.py     Fri Dec 10 02:58:38 2010
@@ -2,9 +2,9 @@

 import sys

-VERSION = 'trunk'
-RELEASE = '20101201'
-TIMESTAMP = '20101201-152028'
+VERSION = '2.5.5'
+RELEASE = 'final'
+TIMESTAMP = '20101210-125715'

 def get_version(sep=' '):
     if RELEASE == 'final':
=======================================
--- /tags/robotframework-2.5.5/tools/fileviewer/doc/fileviewer.html Mon Sep 22 06:13:34 2008 +++ /tags/robotframework-2.5.5/tools/fileviewer/doc/fileviewer.html Fri Dec 10 02:58:38 2010
@@ -3,7 +3,7 @@
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.5: http://docutils.sourceforge.net/"; /> +<meta name="generator" content="Docutils 0.6: http://docutils.sourceforge.net/"; />
 <title>fileviewer.py</title>
 <style type="text/css">

@@ -313,13 +313,14 @@
     text-align: left;
     padding-bottom: 0.5em;
     font-style: italic;
-    margin: 0.5em 2em;
+    font-size: 0.9em;
+    width: 100%;
 }
 table.example th, table.example td, table.tsv-example td {
     border: 1px solid #808080;
     font-family: arial,helvetica,sans-serif;
     height: 1.2em;
-    font-size: 0.85em;
+    font-size: 0.8em;
 }
 table.example th {
     padding: 0.1em 1em;
@@ -332,7 +333,7 @@
     border: 1px solid black;
     padding: 0.1em 0.3em;
     height: 1.2em;
-    font-size: 0.9em;
+    font-size: 0.8em;
 }
 table.messages {
     border: 1px solid gray;
@@ -391,13 +392,27 @@

 /* Overridden and modified styles */

+cite {
+    font-size: 0.95em;
+}
 div.admonition, div.attention, div.caution, div.danger, div.error,
 div.hint, div.important, div.note, div.tip, div.warning {
-    border: 2px solid gray;
+    border: 0.1em solid gray;
+    margin: 1em 2em;
+    padding: 0.7em 1em;
+    font-size: 0.9em;
 }
 pre.literal-block, pre.doctest-block {
     background: #f4f4f4;
 }
+li, li p.first {
+    margin-top: 0.3em;
+    margin-bottom: 0.3em;
+}
+div.contents li {
+    margin-top: 0em;
+    margin-bottom: 0em;
+}


 /* Pygments
@@ -502,7 +517,7 @@
 display as the debug file gets written, so that it is possible to
 scroll the file when it is being written to.</p>
 <p>To use the tool, you can either double-click the icon and click the
-<tt class="docutils literal"><span class="pre">Open</span></tt> button in the GUI to open the desired file, or you can start +<tt class="docutils literal">Open</tt> button in the GUI to open the desired file, or you can start
 the tool from the command line and give the path to the debug file as
 an argument, for example:</p>
 <pre class="literal-block">
@@ -516,7 +531,7 @@
 </div>
 <div class="footer">
 <hr class="footer" />
-Generated on: 2008-09-22 13:12 UTC.
+Generated on: 2010-12-10 10:57 UTC.

 </div>
 </body>
=======================================
--- /tags/robotframework-2.5.5/tools/fixml/doc/fixml.html Tue Feb 23 02:37:32 2010 +++ /tags/robotframework-2.5.5/tools/fixml/doc/fixml.html Fri Dec 10 02:58:38 2010
@@ -522,7 +522,7 @@
 </div>
 <div class="footer">
 <hr class="footer" />
-Generated on: 2010-02-23 10:35 UTC.
+Generated on: 2010-12-10 10:57 UTC.

 </div>
 </body>
=======================================
--- /tags/robotframework-2.5.5/tools/libdoc/doc/libdoc.html Fri Apr 16 15:29:44 2010 +++ /tags/robotframework-2.5.5/tools/libdoc/doc/libdoc.html Fri Dec 10 02:58:38 2010
@@ -588,7 +588,7 @@
 </tr>
<tr><td>&nbsp;</td><td>Overrides the default styles. If the given <cite>styles</cite>
 is a path to an existing files, styles will be read
-from it. If it is string <cite>NONE</cite>, no styles will be
+from it. If it is a string <cite>NONE</cite>, no styles will be
 used. Otherwise the given text is used as-is.</td></tr>
 <tr><td class="option-group" colspan="2">
<kbd><span class="option">-P</span>, <span class="option">--pythonpath <var>&lt;path&gt;</var></span></kbd></td>
@@ -922,7 +922,7 @@
 </div>
 <div class="footer">
 <hr class="footer" />
-Generated on: 2010-04-16 22:28 UTC.
+Generated on: 2010-12-10 10:57 UTC.

 </div>
 </body>
=======================================
--- /tags/robotframework-2.5.5/tools/oneclickinstaller/doc/oneclickinstaller.html Mon Aug 3 03:32:50 2009 +++ /tags/robotframework-2.5.5/tools/oneclickinstaller/doc/oneclickinstaller.html Fri Dec 10 02:58:38 2010
@@ -3,7 +3,7 @@
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.5: http://docutils.sourceforge.net/"; /> +<meta name="generator" content="Docutils 0.6: http://docutils.sourceforge.net/"; />
 <title>Robot Framework One Click Installer</title>
 <style type="text/css">

@@ -313,12 +313,14 @@
     text-align: left;
     padding-bottom: 0.5em;
     font-style: italic;
+    font-size: 0.9em;
+    width: 100%;
 }
 table.example th, table.example td, table.tsv-example td {
     border: 1px solid #808080;
     font-family: arial,helvetica,sans-serif;
     height: 1.2em;
-    font-size: 0.85em;
+    font-size: 0.8em;
 }
 table.example th {
     padding: 0.1em 1em;
@@ -331,7 +333,7 @@
     border: 1px solid black;
     padding: 0.1em 0.3em;
     height: 1.2em;
-    font-size: 0.9em;
+    font-size: 0.8em;
 }
 table.messages {
     border: 1px solid gray;
@@ -390,13 +392,27 @@

 /* Overridden and modified styles */

+cite {
+    font-size: 0.95em;
+}
 div.admonition, div.attention, div.caution, div.danger, div.error,
 div.hint, div.important, div.note, div.tip, div.warning {
-    border: 2px solid gray;
+    border: 0.1em solid gray;
+    margin: 1em 2em;
+    padding: 0.7em 1em;
+    font-size: 0.9em;
 }
 pre.literal-block, pre.doctest-block {
     background: #f4f4f4;
 }
+li, li p.first {
+    margin-top: 0.3em;
+    margin-bottom: 0.3em;
+}
+div.contents li {
+    margin-top: 0em;
+    margin-bottom: 0em;
+}


 /* Pygments
@@ -545,7 +561,7 @@
 </div>
 <div class="footer">
 <hr class="footer" />
-Generated on: 2009-08-03 10:21 UTC.
+Generated on: 2010-12-10 10:57 UTC.

 </div>
 </body>
=======================================
--- /tags/robotframework-2.5.5/tools/ristopy/doc/ristopy.html Mon Sep 22 06:13:34 2008 +++ /tags/robotframework-2.5.5/tools/ristopy/doc/ristopy.html Fri Dec 10 02:58:38 2010
@@ -3,7 +3,7 @@
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.5: http://docutils.sourceforge.net/"; /> +<meta name="generator" content="Docutils 0.6: http://docutils.sourceforge.net/"; />
 <title>risto.py -- Robot Framework's Historical Reporting Tool</title>
 <style type="text/css">

@@ -313,13 +313,14 @@
     text-align: left;
     padding-bottom: 0.5em;
     font-style: italic;
-    margin: 0.5em 2em;
+    font-size: 0.9em;
+    width: 100%;
 }
 table.example th, table.example td, table.tsv-example td {
     border: 1px solid #808080;
     font-family: arial,helvetica,sans-serif;
     height: 1.2em;
-    font-size: 0.85em;
+    font-size: 0.8em;
 }
 table.example th {
     padding: 0.1em 1em;
@@ -332,7 +333,7 @@
     border: 1px solid black;
     padding: 0.1em 0.3em;
     height: 1.2em;
-    font-size: 0.9em;
+    font-size: 0.8em;
 }
 table.messages {
     border: 1px solid gray;
@@ -391,13 +392,27 @@

 /* Overridden and modified styles */

+cite {
+    font-size: 0.95em;
+}
 div.admonition, div.attention, div.caution, div.danger, div.error,
 div.hint, div.important, div.note, div.tip, div.warning {
-    border: 2px solid gray;
+    border: 0.1em solid gray;
+    margin: 1em 2em;
+    padding: 0.7em 1em;
+    font-size: 0.9em;
 }
 pre.literal-block, pre.doctest-block {
     background: #f4f4f4;
 }
+li, li p.first {
+    margin-top: 0.3em;
+    margin-bottom: 0.3em;
+}
+div.contents li {
+    margin-top: 0em;
+    margin-bottom: 0em;
+}


 /* Pygments
@@ -749,7 +764,7 @@
 </div>
 <div class="footer">
 <hr class="footer" />
-Generated on: 2008-09-22 13:12 UTC.
+Generated on: 2010-12-10 10:57 UTC.

 </div>
 </body>
=======================================
--- /tags/robotframework-2.5.5/tools/robotdiff/doc/robotdiff.html Mon Sep 22 06:13:34 2008 +++ /tags/robotframework-2.5.5/tools/robotdiff/doc/robotdiff.html Fri Dec 10 02:58:38 2010
@@ -3,7 +3,7 @@
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.5: http://docutils.sourceforge.net/"; /> +<meta name="generator" content="Docutils 0.6: http://docutils.sourceforge.net/"; />
 <title>robotdiff.py</title>
 <style type="text/css">

@@ -313,13 +313,14 @@
     text-align: left;
     padding-bottom: 0.5em;
     font-style: italic;
-    margin: 0.5em 2em;
+    font-size: 0.9em;
+    width: 100%;
 }
 table.example th, table.example td, table.tsv-example td {
     border: 1px solid #808080;
     font-family: arial,helvetica,sans-serif;
     height: 1.2em;
-    font-size: 0.85em;
+    font-size: 0.8em;
 }
 table.example th {
     padding: 0.1em 1em;
@@ -332,7 +333,7 @@
     border: 1px solid black;
     padding: 0.1em 0.3em;
     height: 1.2em;
-    font-size: 0.9em;
+    font-size: 0.8em;
 }
 table.messages {
     border: 1px solid gray;
@@ -391,13 +392,27 @@

 /* Overridden and modified styles */

+cite {
+    font-size: 0.95em;
+}
 div.admonition, div.attention, div.caution, div.danger, div.error,
 div.hint, div.important, div.note, div.tip, div.warning {
-    border: 2px solid gray;
+    border: 0.1em solid gray;
+    margin: 1em 2em;
+    padding: 0.7em 1em;
+    font-size: 0.9em;
 }
 pre.literal-block, pre.doctest-block {
     background: #f4f4f4;
 }
+li, li p.first {
+    margin-top: 0.3em;
+    margin-bottom: 0.3em;
+}
+div.contents li {
+    margin-top: 0em;
+    margin-bottom: 0em;
+}


 /* Pygments
@@ -555,7 +570,7 @@
 </div>
 <div class="footer">
 <hr class="footer" />
-Generated on: 2008-09-22 13:12 UTC.
+Generated on: 2010-12-10 10:57 UTC.

 </div>
 </body>
=======================================
--- /tags/robotframework-2.5.5/tools/statuschecker/doc/statuschecker.html Wed Sep 24 09:49:34 2008 +++ /tags/robotframework-2.5.5/tools/statuschecker/doc/statuschecker.html Fri Dec 10 02:58:38 2010
@@ -3,7 +3,7 @@
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.5: http://docutils.sourceforge.net/"; /> +<meta name="generator" content="Docutils 0.6: http://docutils.sourceforge.net/"; />
 <title>statuschecker.py</title>
 <style type="text/css">

@@ -313,13 +313,14 @@
     text-align: left;
     padding-bottom: 0.5em;
     font-style: italic;
-    margin: 0.5em 2em;
+    font-size: 0.9em;
+    width: 100%;
 }
 table.example th, table.example td, table.tsv-example td {
     border: 1px solid #808080;
     font-family: arial,helvetica,sans-serif;
     height: 1.2em;
-    font-size: 0.85em;
+    font-size: 0.8em;
 }
 table.example th {
     padding: 0.1em 1em;
@@ -332,7 +333,7 @@
     border: 1px solid black;
     padding: 0.1em 0.3em;
     height: 1.2em;
-    font-size: 0.9em;
+    font-size: 0.8em;
 }
 table.messages {
     border: 1px solid gray;
@@ -391,13 +392,27 @@

 /* Overridden and modified styles */

+cite {
+    font-size: 0.95em;
+}
 div.admonition, div.attention, div.caution, div.danger, div.error,
 div.hint, div.important, div.note, div.tip, div.warning {
-    border: 2px solid gray;
+    border: 0.1em solid gray;
+    margin: 1em 2em;
+    padding: 0.7em 1em;
+    font-size: 0.9em;
 }
 pre.literal-block, pre.doctest-block {
     background: #f4f4f4;
 }
+li, li p.first {
+    margin-top: 0.3em;
+    margin-bottom: 0.3em;
+}
+div.contents li {
+    margin-top: 0em;
+    margin-bottom: 0em;
+}


 /* Pygments
@@ -721,7 +736,7 @@
 </div>
 <div class="footer">
 <hr class="footer" />
-Generated on: 2008-09-24 16:47 UTC.
+Generated on: 2010-12-10 10:57 UTC.

 </div>
 </body>
=======================================
--- /tags/robotframework-2.5.5/tools/testdoc/doc/testdoc.html Fri Dec 19 12:28:52 2008 +++ /tags/robotframework-2.5.5/tools/testdoc/doc/testdoc.html Fri Dec 10 02:58:38 2010
@@ -3,7 +3,7 @@
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.5: http://docutils.sourceforge.net/"; /> +<meta name="generator" content="Docutils 0.6: http://docutils.sourceforge.net/"; />
 <title>testdoc.py</title>
 <style type="text/css">

@@ -313,13 +313,14 @@
     text-align: left;
     padding-bottom: 0.5em;
     font-style: italic;
-    margin: 0.5em 2em;
+    font-size: 0.9em;
+    width: 100%;
 }
 table.example th, table.example td, table.tsv-example td {
     border: 1px solid #808080;
     font-family: arial,helvetica,sans-serif;
     height: 1.2em;
-    font-size: 0.85em;
+    font-size: 0.8em;
 }
 table.example th {
     padding: 0.1em 1em;
@@ -332,7 +333,7 @@
     border: 1px solid black;
     padding: 0.1em 0.3em;
     height: 1.2em;
-    font-size: 0.9em;
+    font-size: 0.8em;
 }
 table.messages {
     border: 1px solid gray;
@@ -391,13 +392,27 @@

 /* Overridden and modified styles */

+cite {
+    font-size: 0.95em;
+}
 div.admonition, div.attention, div.caution, div.danger, div.error,
 div.hint, div.important, div.note, div.tip, div.warning {
-    border: 2px solid gray;
+    border: 0.1em solid gray;
+    margin: 1em 2em;
+    padding: 0.7em 1em;
+    font-size: 0.9em;
 }
 pre.literal-block, pre.doctest-block {
     background: #f4f4f4;
 }
+li, li p.first {
+    margin-top: 0.3em;
+    margin-bottom: 0.3em;
+}
+div.contents li {
+    margin-top: 0em;
+    margin-bottom: 0em;
+}


 /* Pygments
@@ -589,7 +604,7 @@
 </div>
 <div class="footer">
 <hr class="footer" />
-Generated on: 2008-12-19 20:27 UTC.
+Generated on: 2010-12-10 10:57 UTC.

 </div>
 </body>
=======================================
--- /tags/robotframework-2.5.5/tools/times2csv/doc/times2csv.html Mon Sep 22 06:13:34 2008 +++ /tags/robotframework-2.5.5/tools/times2csv/doc/times2csv.html Fri Dec 10 02:58:38 2010
@@ -3,7 +3,7 @@
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.5: http://docutils.sourceforge.net/"; /> +<meta name="generator" content="Docutils 0.6: http://docutils.sourceforge.net/"; />
 <title>times2csv.py</title>
 <style type="text/css">

@@ -313,13 +313,14 @@
     text-align: left;
     padding-bottom: 0.5em;
     font-style: italic;
-    margin: 0.5em 2em;
+    font-size: 0.9em;
+    width: 100%;
 }
 table.example th, table.example td, table.tsv-example td {
     border: 1px solid #808080;
     font-family: arial,helvetica,sans-serif;
     height: 1.2em;
-    font-size: 0.85em;
+    font-size: 0.8em;
 }
 table.example th {
     padding: 0.1em 1em;
@@ -332,7 +333,7 @@
     border: 1px solid black;
     padding: 0.1em 0.3em;
     height: 1.2em;
-    font-size: 0.9em;
+    font-size: 0.8em;
 }
 table.messages {
     border: 1px solid gray;
@@ -391,13 +392,27 @@

 /* Overridden and modified styles */

+cite {
+    font-size: 0.95em;
+}
 div.admonition, div.attention, div.caution, div.danger, div.error,
 div.hint, div.important, div.note, div.tip, div.warning {
-    border: 2px solid gray;
+    border: 0.1em solid gray;
+    margin: 1em 2em;
+    padding: 0.7em 1em;
+    font-size: 0.9em;
 }
 pre.literal-block, pre.doctest-block {
     background: #f4f4f4;
 }
+li, li p.first {
+    margin-top: 0.3em;
+    margin-bottom: 0.3em;
+}
+div.contents li {
+    margin-top: 0em;
+    margin-bottom: 0em;
+}


 /* Pygments
@@ -521,7 +536,7 @@
 </div>
 <div class="footer">
 <hr class="footer" />
-Generated on: 2008-09-22 13:12 UTC.
+Generated on: 2010-12-10 10:57 UTC.

 </div>
 </body>

Reply via email to