On Friday 27 Sep 2002 10:38 am, Joachim Werner wrote: > After copying the relevant lines from the new > manage_page_header in Zope 2.6 everything works fine,
hurrah! > except for one > remaining issue: boooo!!!! > One can create properties with Umlauts or other non-ASCII characters (which > probably should be forbidden in general). While in 2.5.1 it is possible to > delete such properties again, 2.6b1 will throw an error: The form was not telling ZPublisher's parameter marshalling that it wanted the property id as a string. try this (patch includes the previous fix) Index: properties.dtml =================================================================== RCS file: /cvs-repository/Zope/lib/python/OFS/dtml/properties.dtml,v retrieving revision 1.8 diff -r1.8 properties.dtml 2c2 < <dtml-var "u''"> --- > <dtml-var "u' '"> 47c47 < <input type="checkbox" name="_ids:utf8:list" value="<dtml-var id html_quote>" --- > <input type="checkbox" name="_ids:utf8:string:list" value="<dtml-var id html_quote>" _______________________________________________ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope )
