--On Dienstag, 30. November 2004 12:14 Uhr -0500 Robert Hill <RHill at 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