Is there a list out there of characters considered illegal for use in IDs by Zope? Some that I am aware of are ?, &, <space>. Thanks, Rob
--On Dienstag, 30. November 2004 12:14 Uhr -0500 Robert Hill <RHill@msdinc.com> wrote:
Is there a list out there of characters considered illegal for use in IDs by Zope? Some that I am aware of are ?, &, <space>.
Any ID that does not match against the following regex is considered as bad: bad_id=re.compile(r'[^a-zA-Z0-9-_~,.$\(\)# ]') -aj
Robert Hill wrote:
Is there a list out there of characters considered illegal for use in IDs by Zope? Some that I am aware of are ?, &, <space>.
All characters except A-Z a-z 0-9 - _ ~ , . $ ( ) # space are illegal. There are also some restrictions with regard to what the id can start and end with. A space is legal, though not really a good idea. --jcc
participants (3)
-
Andreas Jung -
J. Cameron Cooper -
Robert Hill