4 new revisions:

Revision: 3ee3c2abaefe
Branch:   default
Author:   Pekka Klärck
Date:     Fri Jan 31 15:21:56 2014 UTC
Log: report: set table background, not only table row background, to avoid ...
http://code.google.com/p/robotframework/source/detail?r=3ee3c2abaefe

Revision: 600fa95ccbca
Branch:   default
Author:   Pekka Klärck
Date:     Fri Jan 31 15:22:45 2014 UTC
Log:      UG: added missing and
http://code.google.com/p/robotframework/source/detail?r=600fa95ccbca

Revision: 3fed0bff5b4b
Branch:   default
Author:   Pekka Klärck
Date:     Fri Jan 31 15:23:55 2014 UTC
Log:      report: Added tag search help....
http://code.google.com/p/robotframework/source/detail?r=3fed0bff5b4b

Revision: 574e8313b0bc
Branch:   default
Author:   Pekka Klärck
Date:     Fri Jan 31 15:24:03 2014 UTC
Log:      Automated merge with https://code.google.com/p/robotframework/
http://code.google.com/p/robotframework/source/detail?r=574e8313b0bc

==============================================================================
Revision: 3ee3c2abaefe
Branch:   default
Author:   Pekka Klärck
Date:     Fri Jan 31 15:21:56 2014 UTC
Log: report: set table background, not only table row background, to avoid body background leaking

New issue
Summary: Report background color sometimes leaks through tables
Status: Done
Owner: pekka.klarck
Labels: Target-2.8.4 Priority-Low Type-Defect
Report background sometimes leaks through summary and details tables that have white background. This seems to occur most often with Chrome.

The problem was that only row background was set to white and table background inherited transparent background (i.e. had same background as the page below them). In theory rows should cover the whole table, but my guess is that there are rounding errors which cause table to be shown between rows. Anyway, this is easy to fix by setting the table background explicitly.
http://code.google.com/p/robotframework/source/detail?r=3ee3c2abaefe

Modified:
 /src/robot/htmldata/rebot/report.css

=======================================
--- /src/robot/htmldata/rebot/report.css        Mon Feb 18 13:50:21 2013 UTC
+++ /src/robot/htmldata/rebot/report.css        Fri Jan 31 15:21:56 2014 UTC
@@ -1,6 +1,7 @@
 /* Generic table styles */
 table {
     margin: 0 1px;
+    background: white;
 }
 tr {
     background: white;

==============================================================================
Revision: 600fa95ccbca
Branch:   default
Author:   Pekka Klärck
Date:     Fri Jan 31 15:22:45 2014 UTC
Log:      UG: added missing and
http://code.google.com/p/robotframework/source/detail?r=600fa95ccbca

Modified:
 /doc/userguide/src/ExecutingTestCases/BasicUsage.rst

=======================================
--- /doc/userguide/src/ExecutingTestCases/BasicUsage.rst Sat Jan 25 22:23:45 2014 UTC +++ /doc/userguide/src/ExecutingTestCases/BasicUsage.rst Fri Jan 31 15:22:45 2014 UTC
@@ -182,8 +182,8 @@
--exclude xxNOTyyNOTzz # Matches tests containing tag 'xx' but not tag 'yy' or tag 'zz'.

 Mixed
-   The above operators can also be used together. In that case the operator
- precedence, from highest to lowest, is :code:`AND`, :code:`OR` :code:`NOT`.
+   The above operators can also be used together. The operator precedence,
+   from highest to lowest, is :code:`AND`, :code:`OR` and :code:`NOT`.

    ::


==============================================================================
Revision: 3fed0bff5b4b
Branch:   default
Author:   Pekka Klärck
Date:     Fri Jan 31 15:23:55 2014 UTC
Log:      report: Added tag search help.

Update issue 1634
Added help. I consider tag search now done.
http://code.google.com/p/robotframework/source/detail?r=3fed0bff5b4b

Modified:
 /src/robot/htmldata/rebot/report.css
 /src/robot/htmldata/rebot/report.html

=======================================
--- /src/robot/htmldata/rebot/report.css        Fri Jan 31 15:21:56 2014 UTC
+++ /src/robot/htmldata/rebot/report.css        Fri Jan 31 15:23:55 2014 UTC
@@ -38,6 +38,46 @@
 #print-selector {
     display: none;
 }
+/* Search */
+#search td, #search th {
+    padding: 0 0.4em 0.4em 0.4em;
+}
+#search a:hover {
+    text-decoration: none;
+}
+#search-help div {
+    margin: 1em;
+    padding: 0.5em;
+    background: #ECECF7;
+    border: 1px solid #BCBCD7;
+    border-radius: 3px;
+}
+#search-help p {
+    margin: 0 0 0.7em 0;
+}
+#search-help table, #search-help tr, #search-help th, #search-help td {
+    background: transparent;
+    margin: 0;
+    padding: 0.1em 0.7em 0.1em 0;
+}
+#search-help table {
+    table-layout: auto;
+    width: 100%;
+}
+#search-help th {
+    font-weight: normal;
+    font-style: italic;
+    letter-spacing: 0.1em;
+}
+.help-item {
+    width: 10%;
+}
+.help-explanation {
+    width: 60%;
+}
+.help-examples {
+    width: 30%;
+}
 /* Tabs - adapted from http://www.htmldog.com/articles/tabs */
 #detail-tabs {
     list-style: none;
=======================================
--- /src/robot/htmldata/rebot/report.html       Fri Jan 31 11:48:06 2014 UTC
+++ /src/robot/htmldata/rebot/report.html       Fri Jan 31 15:23:55 2014 UTC
@@ -493,9 +493,65 @@
           <input id="search-field" type="text" value="{{html selected}}">
<input type="submit" value="Search" onclick="tagDetailSelected(util.escape($('#search-field').val()))"> <input type="button" value="Clear" onclick="$('#search-field').val('')">
+          <a href="javascript:void(0)" onclick="$('#search-help').toggle()"
+             title="Toggle search pattern help.">Help</a>
         </form>
       </td>
     </tr>
+    <tr id="search-help" style="display: none">
+      <th></th>
+      <td>
+        <div>
+          <p>
+ Search patterns support wildcards and combining operators explained
+            in the table below. Search is also case, space and underscore
+            insensitive. See <em>Tag patterns</em> section in
+ <a href="https://code.google.com/p/robotframework/wiki/UserGuide";>Robot
+            Framework User Guide</a> for more details.
+          </p>
+          <table>
+            <col class="help-item">
+            <col class="help-explanation">
+            <col class="help-examples>
+            <tr>
+              <th></th>
+              <th>Explanation</th>
+              <th>Examples</th>
+            </tr>
+            <tr>
+              <td>*</td>
+              <td>Matches anything, even an empty string.</td>
+              <td>f*, sprint-*, x*y*z</td>
+            </tr>
+            <tr>
+              <td>?</td>
+              <td>Matches any single character.</td>
+              <td>f??, sprint-??, x?y?z</td>
+            </tr>
+            <tr>
+              <td>AND</td>
+              <td>Matches if all patterns match.</td>
+              <td>fooANDbar, xANDy*ANDz??</td>
+            </tr>
+            <tr>
+              <td>OR</td>
+              <td>Matches if any pattern match.</td>
+              <td>fooORbar, xORy*ORz??</td>
+            </tr>
+            <tr>
+              <td>NOT</td>
+ <td>Matches if pattern before matches and pattern after does not.</td>
+              <td>fooNOTbar, *NOTowner-*</td>
+            </tr>
+            <tr>
+              <td>Mixed</td>
+ <td>The above operators can also be used together. The operator precedence, from highest to lowest, is AND, OR, and NOT.</td>
+              <td>xANDyORz, x*NOTyANDz</td>
+            </tr>
+          </table>
+        </div>
+      </td>
+    </tr>
   </table>
 </script>


==============================================================================
Revision: 574e8313b0bc
Branch:   default
Author:   Pekka Klärck
Date:     Fri Jan 31 15:24:03 2014 UTC
Log:      Automated merge with https://code.google.com/p/robotframework/
http://code.google.com/p/robotframework/source/detail?r=574e8313b0bc


--

--- You received this message because you are subscribed to the Google Groups "robotframework-commit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to robotframework-commit+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to