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

erik.forsberg python-checkins at python.org
Mon Jan 15 20:52:55 CET 2007


Author: erik.forsberg
Date: Mon Jan 15 20:52:55 2007
New Revision: 53455

Modified:
   tracker/instances/python-dev/html/issue.item.html
Log:
Add wrap attribute to pre in messages. This hopefully fixes issue75.

(This should also be doable via CSS according to
http://www.w3.org/TR/CSS21/text.html#propdef-white-space, but I fail
to get it to work for some reason)


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	Mon Jan 15 20:52:55 2007
@@ -236,7 +236,7 @@
   </tr>
   <tr>
    <td colspan="4" class="content">
-    <pre tal:content="structure msg/content/hyperlinked">content</pre>
+    <pre wrap="true" tal:content="structure msg/content/hyperlinked">content</pre>
    </td>
   </tr>
  </tal:block>


More information about the Python-checkins mailing list