[Checkins] SVN: Products.GenericSetup/trunk/Products/GenericSetup/ encode brackets to make valid XML
David Glick
davidglick at onenw.org
Wed May 6 03:14:11 EDT 2009
Log message for revision 99790:
encode brackets to make valid XML
Changed:
U Products.GenericSetup/trunk/Products/GenericSetup/CHANGES.txt
U Products.GenericSetup/trunk/Products/GenericSetup/www/sutImportSteps.zpt
-=-
Modified: Products.GenericSetup/trunk/Products/GenericSetup/CHANGES.txt
===================================================================
--- Products.GenericSetup/trunk/Products/GenericSetup/CHANGES.txt 2009-05-06 04:16:06 UTC (rev 99789)
+++ Products.GenericSetup/trunk/Products/GenericSetup/CHANGES.txt 2009-05-06 07:14:10 UTC (rev 99790)
@@ -4,6 +4,8 @@
GenericSetup 1.5.0 (unreleased)
-------------------------------
+- Fixed invalid XML for the Import tab so it doesn't break with Chameleon.
+
- Adjusted TarballImportContext to work with Python 2.6's tarfile module.
- Cleaned up / normalized imports:
Modified: Products.GenericSetup/trunk/Products/GenericSetup/www/sutImportSteps.zpt
===================================================================
--- Products.GenericSetup/trunk/Products/GenericSetup/www/sutImportSteps.zpt 2009-05-06 04:16:06 UTC (rev 99789)
+++ Products.GenericSetup/trunk/Products/GenericSetup/www/sutImportSteps.zpt 2009-05-06 07:14:10 UTC (rev 99790)
@@ -123,7 +123,7 @@
tal:repeat="item options/messages/items">
<td tal:content="python: item[0]">STEP</td>
<td colspan="3"
- tal:content="structure python: item[1].replace('\n', '<br />')"
+ tal:content="structure python: item[1].replace('\n', '<br />')"
>MESSAGE</td>
</tr>
More information about the Checkins
mailing list