20 Sep
2004
20 Sep
'04
5:12 p.m.
John Poltorak wrote at 2004-9-19 21:56 +0100:
...
Either avoid names with characters not allowed in Zope ids or relax the Zope id restriction.
I'm attempting to import a FrontPage-built website into Zope and would prefer to make as few changes as possible.
I can't see anything about 'relaxing Zope id restriction'. Any hints about where I should look?
What characters are allowed in ids is controlled by the "bad_id" regular expression in "OFS.ObjectManager". Be careful, when you allow characters that are not allowed in URL path segments (such as e.g. "?"). If you do this, you must ensure that URLs build by Zope are properly url-quoted. -- Dieter