[Zope] Illegal Characters List

Andreas Jung lists at andreas-jung.com
Tue Nov 30 12:18:30 EST 2004



--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




More information about the Zope mailing list