[Python-checkins] r82428 - tracker/instances/python-dev/html/issue.item.html

ezio.melotti python-checkins at python.org
Thu Jul 1 22:26:54 CEST 2010


Author: ezio.melotti
Date: Thu Jul  1 22:26:54 2010
New Revision: 82428

Log:
Remove trailing whitespace and add a missing colon after "Keywords".

Modified:
   tracker/instances/python-dev/html/issue.item.html

Modified: tracker/instances/python-dev/html/issue.item.html
==============================================================================
--- tracker/instances/python-dev/html/issue.item.html	(original)
+++ tracker/instances/python-dev/html/issue.item.html	Thu Jul  1 22:26:54 2010
@@ -116,8 +116,8 @@
         tal:attributes="href string:issue${sup/id}; title sup/title;"></a> -->
    <br><span i18n:translate="">View</span>:
      <a tal:content="context/superseder/id"
-        tal:attributes="href string:issue${context/superseder/id}; title context/superseder/title;"></a> 
-  </span> 
+        tal:attributes="href string:issue${context/superseder/id}; title context/superseder/title;"></a>
+  </span>
  </td>
  </tr>
  <tr>
@@ -126,7 +126,7 @@
   <select name="assignee">
    <option value="-1">nobody</option>
    <tal:block tal:repeat="userdata python:db._db.user.filter_sql('select id,_username from _user where _roles like \'%Developer%\' order by _username')">
-    <option tal:attributes="value python:userdata[0]; 
+    <option tal:attributes="value python:userdata[0];
                             selected python:str(userdata[0]) == context.assignee._value"
             tal:content="python:userdata[1]"></option>
    </tal:block>
@@ -153,7 +153,7 @@
    <span tal:replace="structure python:db.priority.classhelp('id,name,description',label='Priority')" />:
  </th>
  <td tal:content="structure context/priority/menu">priority</td>
- <th tal:content="structure python:db.keyword.classhelp('id,name,description',label='Keywords')" />
+ <th tal:content="structure python:db.keyword.classhelp('id,name,description',label='Keywords:')" />
  <td tal:content="structure python:context['keywords'].menu(height=5)">keywords</td>
 
 
@@ -242,7 +242,7 @@
  <tal:block tal:repeat="msg python:context.messages.sorted('creation')">
   <tr>
     <th tal:define="mid string:msg${msg/id}">
-     <a tal:content="mid" tal:attributes="id mid; 
+     <a tal:content="mid" tal:attributes="id mid;
         href string:#$mid;"></a> - <a tal:attributes="href mid">(view)</a></th>
    <th i18n:translate="">Author: <tal:x replace="python:msg.author.realname.plain(unchecked=1)"
        i18n:name="author" /> (<tal:x replace="msg/author"/>)


More information about the Python-checkins mailing list