Code

- under the heading of "questionable whether it's a fix or not"
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Sun, 27 Apr 2003 02:44:59 +0000 (02:44 +0000)
committerrichard <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

CHANGES.txt
templates/classic/html/issue.index.html
templates/classic/html/style.css
templates/classic/html/user.index.html

index 0607b30e3f482c6e3bf4aeb06365e0124f05e5a5..cb161461277ecf1f6aa1d722f82f626a9f4dc329 100644 (file)
@@ -88,6 +88,8 @@ Fixed:
 - 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)
@@ -32,22 +32,29 @@ You are not allowed to view this page.
        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">&nbsp;</td>
+   <td tal:condition="request/show/id" tal:content="i/id">&nbsp;</td>
    <td nowrap tal:condition="request/show/creation"
-       tal:content="i/creation/reldate"></td>
+       tal:content="i/creation/reldate">&nbsp;</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">&nbsp;</td>
+   <td tal:condition="request/show/topic"
+       tal:content="python:i.topic.plain() or default">&nbsp;</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">&nbsp;</td>
+   <td tal:condition="request/show/creator"
+       tal:content="python:i.creator.plain() or default">&nbsp;</td>
+   <td tal:condition="request/show/assignedto"
+       tal:content="python:i.assignedto.plain() or default">&nbsp;</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)
@@ -128,19 +128,11 @@ table.list td {
   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)
@@ -25,10 +25,10 @@ You are not allowed to view this page.
   <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">&nbsp;</td>
+ <td tal:content="python:user.organisation.plain() or default">&nbsp;</td>
+ <td tal:content="python:user.address.email() or default">&nbsp;</td>
+ <td tal:content="python:user.phone.plain() or default">&nbsp;</td>
  <td tal:condition="context/is_edit_ok">
   <a tal:attributes="href string:user${user/id}?:action=retire&:template=index">
    retire</a>