[Python-checkins] r82425 - in tracker/instances/python-dev/html: issue.item.html issue.search.html page.html

ezio.melotti python-checkins at python.org
Thu Jul 1 22:10:47 CEST 2010


Author: ezio.melotti
Date: Thu Jul  1 22:10:47 2010
New Revision: 82425

Log:
#343: Remove the "(list)" for superseder and dependencies.

Modified:
   tracker/instances/python-dev/html/issue.item.html
   tracker/instances/python-dev/html/issue.search.html
   tracker/instances/python-dev/html/page.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:10:47 2010
@@ -93,8 +93,8 @@
 <tr tal:condition="context/id">
  <th>
   <tal:block i18n:translate="">Dependencies</tal:block>:
-  <span tal:condition="context/dependencies/is_edit_ok"
-        tal:replace="structure python:db.issue.classhelp('id,title,status', filter='status=0,1', property='dependencies')" />
+  <!-- <span tal:condition="context/dependencies/is_edit_ok"
+        tal:replace="structure python:db.issue.classhelp('id,title,status', filter='status=0,1', property='dependencies')" /> -->
  </th>
  <td>
   <span tal:replace="structure python:context.dependencies.field(showid=1,size=20)" />
@@ -104,8 +104,8 @@
  </td>
  <th i18n:translate="">
   <tal:block i18n:translate="">Superseder</tal:block>:
-  <span tal:condition="context/superseder/is_edit_ok"
-        tal:replace="structure python:db.issue.classhelp('id,title', filter='status=0,1', property='superseder')" />
+  <!-- <span tal:condition="context/superseder/is_edit_ok"
+        tal:replace="structure python:db.issue.classhelp('id,title', filter='status=0,1', property='superseder')" /> -->
  </th>
  <td>
   <span tal:replace="structure python:context.superseder.field(showid=1, size=20)" />

Modified: tracker/instances/python-dev/html/issue.search.html
==============================================================================
--- tracker/instances/python-dev/html/issue.search.html	(original)
+++ tracker/instances/python-dev/html/issue.search.html	Thu Jul  1 22:10:47 2010
@@ -42,6 +42,15 @@
   <td>&nbsp;</td>
 </tr>
 
+<tr tal:define="name string:ignore">
+  <th i18n:translate="">Ignore attachments:</th>
+  <td><input type="checkbox" checked="checked"
+             name="ignore" id="ignore" value="file:content"/></td>
+  <td>&nbsp;</td>
+  <td>&nbsp;</td>
+  <td>&nbsp;</td>
+</tr>
+
 <tr tal:define="name string:title">
   <th i18n:translate="">Title:</th>
   <td metal:use-macro="search_input"></td>

Modified: tracker/instances/python-dev/html/page.html
==============================================================================
--- tracker/instances/python-dev/html/page.html	(original)
+++ tracker/instances/python-dev/html/page.html	Thu Jul  1 22:10:47 2010
@@ -42,6 +42,7 @@
        <input type="hidden" name="@sort" value="-activity" />
        <input type="hidden" name="@filter" value="status"/>
        <input type="hidden" name="@action" value="searchid"/>
+       <input type="hidden" name="ignore" value="file:content"/>
        <input class="input-text" id="search-text" name="@search_text" size="10" />
        <input type="submit" id="submit" value="search" name="submit"
               class="input-button"/>
@@ -145,7 +146,8 @@
      })"
        i18n:translate="">Show Having Patch</a></li>
         <li>
-         <a href="issue?@template=search&status=1" i18n:translate="">Search</a>
+         <a href="issue?@template=search&status=1&ignore=file:content"
+            i18n:translate="">Search</a>
         </li>
         <li>
          <form method="post" action="#">


More information about the Python-checkins mailing list