summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1adc9d6)
raw | patch | inline | side by side (parent: 1adc9d6)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Sun, 27 Apr 2003 02:44:59 +0000 (02:44 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Sun, 27 Apr 2003 02:44:59 +0000 (02:44 +0000) |
(sf "bug" 621226 for the users of the "standards compliant" browser IE)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1690 57a73879-2fb5-44c3-a270-3262357dd7e2
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1690 57a73879-2fb5-44c3-a270-3262357dd7e2
diff --git a/CHANGES.txt b/CHANGES.txt
index 0607b30e3f482c6e3bf4aeb06365e0124f05e5a5..cb161461277ecf1f6aa1d722f82f626a9f4dc329 100644 (file)
--- a/CHANGES.txt
+++ b/CHANGES.txt
- fixed missing (pre-commit) journal entries in *dbm backends (sf bug 679217)
- URL cited in roundup email confusing dumb Email clients (sf bug 716585)
- set title on issues even when the email body is empty (sf bug 727430)
+- under the heading of "questionable whether it's a fix or not"
+ (sf "bug" 621226 for the users of the "standards compliant" browser IE)
2003-??-?? 0.5.7
index e830c44ec1388cfe48a954e81eadb27b6ab30beb..ae9480dd213f0366bc47e3bf6b36b2f0c672a6fd 100644 (file)
tal:content="python:i[request.group[1]]" class="group">
</th>
</tr>
- <tr tal:attributes="class python:['normal', 'alt'][repeat['i'].index%6/3]">
- <td tal:condition="request/show/priority" tal:content="i/priority"></td>
- <td tal:condition="request/show/id" tal:content="i/id"></td>
+
+ <tr>
+ <td tal:condition="request/show/priority"
+ tal:content="python:i.priority.plain() or default"> </td>
+ <td tal:condition="request/show/id" tal:content="i/id"> </td>
<td nowrap tal:condition="request/show/creation"
- tal:content="i/creation/reldate"></td>
+ tal:content="i/creation/reldate"> </td>
<td nowrap tal:condition="request/show/activity"
- tal:content="i/activity/reldate"></td>
- <td tal:condition="request/show/topic" tal:content="i/topic"></td>
+ tal:content="i/activity/reldate"> </td>
+ <td tal:condition="request/show/topic"
+ tal:content="python:i.topic.plain() or default"> </td>
<td tal:condition="request/show/title">
<a tal:attributes="href string:issue${i/id}"
tal:content="python:str(i.title.plain(hyperlink=0)) or '[no title]'">title</a>
</td>
- <td tal:condition="request/show/status" tal:content="i/status"></td>
- <td tal:condition="request/show/creator" tal:content="i/creator"></td>
- <td tal:condition="request/show/assignedto" tal:content="i/assignedto"></td>
+ <td tal:condition="request/show/status"
+ tal:content="python:i.status.plain() or default"> </td>
+ <td tal:condition="request/show/creator"
+ tal:content="python:i.creator.plain() or default"> </td>
+ <td tal:condition="request/show/assignedto"
+ tal:content="python:i.assignedto.plain() or default"> </td>
</tr>
+
</tal:block>
<tr class="navigation" tal:define="colspan python:len(request.columns)">
<th tal:attributes="colspan python:colspan/2">
index bec2a1c0ee9da77c3f0b88a457835b81f754a108..bfd49430a6715539bfb66ed461c3578f8e38f878 100644 (file)
padding: 0 4 0 4;
border: 1px solid white;
color: #404070;
- background-color: white;
+ background-color: #efefef;
vertical-align: top;
empty-cells: show;
}
-table.list tr.normal td {
- background-color: #efefef;
-}
-
-table.list tr.alt td {
- background-color: #efefef;
-}
-
table.list tr.navigation th {
text-align: right;
}
index 7c70042ae1ec69505526d3f8d22ae37738796d3b..136e5441deeca03b34bc54de00425a7ce8137b20 100644 (file)
<a tal:attributes="href string:user${user/id}"
tal:content="user/username">username</a>
</td>
- <td tal:content="user/realname">realname</td>
- <td tal:content="user/organisation">organisation</td>
- <td tal:content="python:user.address.email()">address</td>
- <td tal:content="user/phone">phone</td>
+ <td tal:content="python:user.realname.plain() or default"> </td>
+ <td tal:content="python:user.organisation.plain() or default"> </td>
+ <td tal:content="python:user.address.email() or default"> </td>
+ <td tal:content="python:user.phone.plain() or default"> </td>
<td tal:condition="context/is_edit_ok">
<a tal:attributes="href string:user${user/id}?:action=retire&:template=index">
retire</a>