Skip to content
This repository has been archived by the owner on Dec 17, 2020. It is now read-only.

Commit

Permalink
fix tests after z3c.table sort CSS class added
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Groszer committed Aug 25, 2012
1 parent 56c1db3 commit e23e8a6
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions src/z3c/tabular/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -134,18 +134,18 @@ a link which knows hot to select the item:
<table class="contents">
<thead>
<tr>
<th>Name</th>
<th class="sorted-on ascending">Name</th>
</tr>
</thead>
<tbody>
<tr class="even">
<td><a href="http://127.0.0.1/container/view.html?subFormTable-selectedItem-0-selectedItems=first">first</a></td>
<td class="sorted-on ascending"><a href="http://127.0.0.1/container/view.html?subFormTable-selectedItem-0-selectedItems=first">first</a></td>
</tr>
<tr class="odd">
<td><a href="http://127.0.0.1/container/view.html?subFormTable-selectedItem-0-selectedItems=second">second</a></td>
<td class="sorted-on ascending"><a href="http://127.0.0.1/container/view.html?subFormTable-selectedItem-0-selectedItems=second">second</a></td>
</tr>
<tr class="even">
<td><a href="http://127.0.0.1/container/view.html?subFormTable-selectedItem-0-selectedItems=third">third</a></td>
<td class="sorted-on ascending"><a href="http://127.0.0.1/container/view.html?subFormTable-selectedItem-0-selectedItems=third">third</a></td>
</tr>
</tbody>
</table>
Expand Down Expand Up @@ -196,18 +196,18 @@ set the relevant data in the request:
<table class="contents">
<thead>
<tr>
<th>Name</th>
<th class="sorted-on ascending">Name</th>
</tr>
</thead>
<tbody>
<tr class="even">
<td><a href="http://127.0.0.1/container/view.html?subFormTable-selectedItem-0-selectedItems=first">first</a></td>
<td class="sorted-on ascending"><a href="http://127.0.0.1/container/view.html?subFormTable-selectedItem-0-selectedItems=first">first</a></td>
</tr>
<tr class="selected odd">
<td><a href="http://127.0.0.1/container/view.html?subFormTable-selectedItem-0-selectedItems=second">second</a></td>
<td class="sorted-on ascending"><a href="http://127.0.0.1/container/view.html?subFormTable-selectedItem-0-selectedItems=second">second</a></td>
</tr>
<tr class="even">
<td><a href="http://127.0.0.1/container/view.html?subFormTable-selectedItem-0-selectedItems=third">third</a></td>
<td class="sorted-on ascending"><a href="http://127.0.0.1/container/view.html?subFormTable-selectedItem-0-selectedItems=third">third</a></td>
</tr>
</tbody>
</table>
Expand Down Expand Up @@ -287,18 +287,18 @@ Clicking the ``Edit`` button at the same time should hold the same result:
<table class="contents">
<thead>
<tr>
<th>Name</th>
<th class="sorted-on ascending">Name</th>
</tr>
</thead>
<tbody>
<tr class="even">
<td><a href="http://127.0.0.1/container/view.html?subFormTable-selectedItem-0-selectedItems=first">first</a></td>
<td class="sorted-on ascending"><a href="http://127.0.0.1/container/view.html?subFormTable-selectedItem-0-selectedItems=first">first</a></td>
</tr>
<tr class="selected odd">
<td><a href="http://127.0.0.1/container/view.html?subFormTable-selectedItem-0-selectedItems=second">second</a></td>
<td class="sorted-on ascending"><a href="http://127.0.0.1/container/view.html?subFormTable-selectedItem-0-selectedItems=second">second</a></td>
</tr>
<tr class="even">
<td><a href="http://127.0.0.1/container/view.html?subFormTable-selectedItem-0-selectedItems=third">third</a></td>
<td class="sorted-on ascending"><a href="http://127.0.0.1/container/view.html?subFormTable-selectedItem-0-selectedItems=third">third</a></td>
</tr>
</tbody>
</table>
Expand Down Expand Up @@ -381,18 +381,18 @@ In this case the editform won't appear.
<table class="contents">
<thead>
<tr>
<th>Name</th>
<th class="sorted-on ascending">Name</th>
</tr>
</thead>
<tbody>
<tr class="even">
<td><a href="http://127.0.0.1/container/view.html?subFormTable-selectedItem-0-selectedItems=first">first</a></td>
<td class="sorted-on ascending"><a href="http://127.0.0.1/container/view.html?subFormTable-selectedItem-0-selectedItems=first">first</a></td>
</tr>
<tr class="selected odd">
<td><a href="http://127.0.0.1/container/view.html?subFormTable-selectedItem-0-selectedItems=second">second</a></td>
<td class="sorted-on ascending"><a href="http://127.0.0.1/container/view.html?subFormTable-selectedItem-0-selectedItems=second">second</a></td>
</tr>
<tr class="even">
<td><a href="http://127.0.0.1/container/view.html?subFormTable-selectedItem-0-selectedItems=third">third</a></td>
<td class="sorted-on ascending"><a href="http://127.0.0.1/container/view.html?subFormTable-selectedItem-0-selectedItems=third">third</a></td>
</tr>
</tbody>
</table>
Expand Down

0 comments on commit e23e8a6

Please sign in to comment.