Revision: 4013
Author: jussi.ao.malinen
Date: Tue Aug 31 07:31:40 2010
Log: Finalizing 2.5.3
http://code.google.com/p/robotframework/source/detail?r=4013

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

=======================================
--- /tags/robotframework-2.5.3/doc/libraries/BuiltIn.html Wed Aug 25 05:35:34 2010 +++ /tags/robotframework-2.5.3/doc/libraries/BuiltIn.html Tue Aug 31 07:31:40 2010
@@ -86,7 +86,7 @@
 </head>
 <body>
 <h1>BuiltIn</h1>
-<b>Version:</b> trunk 20100712<br>
+<b>Version:</b> 2.5.3<br>
 <b>Scope:</b> global<br>
 <b>Named arguments: </b>
 supported
@@ -127,6 +127,8 @@
 &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>
@@ -529,6 +531,27 @@
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 />
@@ -1723,9 +1746,9 @@
 </tr>
 </table>
 <p id="footer">
-Altogether 77 keywords.<br />
+Altogether 78 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-08-31 17:30:47.
 </p>
 </body>
 </html>
=======================================
--- /tags/robotframework-2.5.3/doc/libraries/Collections.html Mon Jun 7 08:51:52 2010 +++ /tags/robotframework-2.5.3/doc/libraries/Collections.html Tue Aug 31 07:31:40 2010
@@ -86,7 +86,7 @@
 </head>
 <body>
 <h1>Collections</h1>
-<b>Version:</b> trunk 20100607<br>
+<b>Version:</b> 2.5.3<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-08-31 17:30:48.
 </p>
 </body>
 </html>
=======================================
--- /tags/robotframework-2.5.3/doc/libraries/Dialogs.html Mon Jun 7 08:51:52 2010 +++ /tags/robotframework-2.5.3/doc/libraries/Dialogs.html Tue Aug 31 07:31:40 2010
@@ -86,7 +86,7 @@
 </head>
 <body>
 <h1>Dialogs</h1>
-<b>Version:</b> trunk 20100607<br>
+<b>Version:</b> 2.5.3<br>
 <b>Scope:</b> global<br>
 <b>Named arguments: </b>
 supported
@@ -154,7 +154,7 @@
 <p id="footer">
 Altogether 5 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-08-31 17:30:49.
 </p>
 </body>
 </html>
=======================================
--- /tags/robotframework-2.5.3/doc/libraries/OperatingSystem.html Mon Jun 7 08:51:52 2010 +++ /tags/robotframework-2.5.3/doc/libraries/OperatingSystem.html Tue Aug 31 07:31:40 2010
@@ -86,7 +86,7 @@
 </head>
 <body>
 <h1>OperatingSystem</h1>
-<b>Version:</b> trunk 20100607<br>
+<b>Version:</b> 2.5.3<br>
 <b>Scope:</b> global<br>
 <b>Named arguments: </b>
 supported
@@ -1266,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-06-07 18:50:53.
+on 2010-08-31 17:30:49.
 </p>
 </body>
 </html>
=======================================
--- /tags/robotframework-2.5.3/doc/libraries/Screenshot.html Mon Jun 7 08:51:52 2010 +++ /tags/robotframework-2.5.3/doc/libraries/Screenshot.html Tue Aug 31 07:31:40 2010
@@ -86,7 +86,7 @@
 </head>
 <body>
 <h1>Screenshot</h1>
-<b>Version:</b> trunk 20100607<br>
+<b>Version:</b> 2.5.3<br>
 <b>Scope:</b> test suite<br>
 <b>Named arguments: </b>
 supported
@@ -223,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-06-07 18:50:53.
+on 2010-08-31 17:30:50.
 </p>
 </body>
 </html>
=======================================
--- /tags/robotframework-2.5.3/doc/libraries/String.html Mon Jun 7 08:51:52 2010 +++ /tags/robotframework-2.5.3/doc/libraries/String.html Tue Aug 31 07:31:40 2010
@@ -86,7 +86,7 @@
 </head>
 <body>
 <h1>String</h1>
-<b>Version:</b> trunk 20100607<br>
+<b>Version:</b> 2.5.3<br>
 <b>Scope:</b> global<br>
 <b>Named arguments: </b>
 supported
@@ -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-08-31 17:30:50.
 </p>
 </body>
 </html>
=======================================
--- /tags/robotframework-2.5.3/doc/libraries/Telnet.html Mon Jun 7 08:51:52 2010 +++ /tags/robotframework-2.5.3/doc/libraries/Telnet.html Tue Aug 31 07:31:40 2010
@@ -86,7 +86,7 @@
 </head>
 <body>
 <h1>Telnet</h1>
-<b>Version:</b> trunk 20100607<br>
+<b>Version:</b> 2.5.3<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-08-31 17:30:50.
 </p>
 </body>
 </html>
=======================================
--- /tags/robotframework-2.5.3/doc/userguide/RobotFrameworkUserGuide.html Sat Aug 28 08:24:44 2010 +++ /tags/robotframework-2.5.3/doc/userguide/RobotFrameworkUserGuide.html Tue Aug 31 07:31:40 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 20100712</h2>
+<h2 class="subtitle" id="version-version">Version 2.5.3</h2>

 <!-- This data file has been placed in the public domain. -->
 <!-- Derived from the Unicode character mappings available from
@@ -13606,7 +13606,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-08-28 15:24 UTC.
+<p>Generated on: 2010-08-31 14:31 UTC.
 </p>

 </div>
=======================================
--- /tags/robotframework-2.5.3/src/robot/version.py     Mon Aug 30 03:37:56 2010
+++ /tags/robotframework-2.5.3/src/robot/version.py     Tue Aug 31 07:31:40 2010
@@ -2,9 +2,9 @@
 import sys


-VERSION = 'trunk'
-RELEASE = '20100830'
-TIMESTAMP = '20100830-133642'
+VERSION = '2.5.3'
+RELEASE = 'final'
+TIMESTAMP = '20100831-173029'

 def get_version(sep=' '):
     if RELEASE == 'final':
=======================================
--- /tags/robotframework-2.5.3/tools/fileviewer/doc/fileviewer.html Mon Sep 22 06:13:34 2008 +++ /tags/robotframework-2.5.3/tools/fileviewer/doc/fileviewer.html Tue Aug 31 07:31:40 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-08-31 14:30 UTC.

 </div>
 </body>
=======================================
--- /tags/robotframework-2.5.3/tools/fixml/doc/fixml.html Tue Feb 23 02:37:32 2010 +++ /tags/robotframework-2.5.3/tools/fixml/doc/fixml.html Tue Aug 31 07:31:40 2010
@@ -522,7 +522,7 @@
 </div>
 <div class="footer">
 <hr class="footer" />
-Generated on: 2010-02-23 10:35 UTC.
+Generated on: 2010-08-31 14:30 UTC.

 </div>
 </body>
=======================================
--- /tags/robotframework-2.5.3/tools/libdoc/doc/libdoc.html Fri Apr 16 15:29:44 2010 +++ /tags/robotframework-2.5.3/tools/libdoc/doc/libdoc.html Tue Aug 31 07:31:40 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-08-31 14:30 UTC.

 </div>
 </body>
=======================================
--- /tags/robotframework-2.5.3/tools/oneclickinstaller/doc/oneclickinstaller.html Mon Aug 3 03:32:50 2009 +++ /tags/robotframework-2.5.3/tools/oneclickinstaller/doc/oneclickinstaller.html Tue Aug 31 07:31:40 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-08-31 14:30 UTC.

 </div>
 </body>
=======================================
--- /tags/robotframework-2.5.3/tools/ristopy/doc/ristopy.html Mon Sep 22 06:13:34 2008 +++ /tags/robotframework-2.5.3/tools/ristopy/doc/ristopy.html Tue Aug 31 07:31:40 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-08-31 14:30 UTC.

 </div>
 </body>
=======================================
--- /tags/robotframework-2.5.3/tools/robotdiff/doc/robotdiff.html Mon Sep 22 06:13:34 2008 +++ /tags/robotframework-2.5.3/tools/robotdiff/doc/robotdiff.html Tue Aug 31 07:31:40 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-08-31 14:30 UTC.

 </div>
 </body>
=======================================
--- /tags/robotframework-2.5.3/tools/statuschecker/doc/statuschecker.html Wed Sep 24 09:49:34 2008 +++ /tags/robotframework-2.5.3/tools/statuschecker/doc/statuschecker.html Tue Aug 31 07:31:40 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-08-31 14:30 UTC.

 </div>
 </body>
=======================================
--- /tags/robotframework-2.5.3/tools/testdoc/doc/testdoc.html Fri Dec 19 12:28:52 2008 +++ /tags/robotframework-2.5.3/tools/testdoc/doc/testdoc.html Tue Aug 31 07:31:40 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-08-31 14:30 UTC.

 </div>
 </body>
=======================================
--- /tags/robotframework-2.5.3/tools/times2csv/doc/times2csv.html Mon Sep 22 06:13:34 2008 +++ /tags/robotframework-2.5.3/tools/times2csv/doc/times2csv.html Tue Aug 31 07:31:40 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-08-31 14:30 UTC.

 </div>
 </body>

Reply via email to