Re: [Zope3-Users] Question/Problem with UserPreferences

2005-06-10 Thread Florian Lindner
Am Freitag, 10. Juni 2005 14:06 schrieb Stephan Richter: On Thursday 09 June 2005 12:44, Florian Lindner wrote: I try to use the value of email in a ZPT: E-Mail: span tal:replace=++preferences++/UserSettings/email / or E-Mail: span tal:replace=++preferences++UserSettings/email

Re: [Zope3-Users] Question/Problem with UserPreferences

2005-06-10 Thread Stephan Richter
On Friday 10 June 2005 14:13, Florian Lindner wrote: This is not a preferences error, but a pagetemplate one. I have no clue what could have gone wrong here. Can you try a different name? Maybe something like `email1`? I suspect a clash of variable names. I've tried email1 and emailX as

[Zope3-Users] Question/Problem with UserPreferences

2005-06-09 Thread Florian Lindner
Hello, I try to use the User Preference API. I've defined a Interface: class IUserSettings(Interface): email = TextLine( title = uE-mail Address) and registered it in my configure.zcml: preferenceGroup id=UserSettings title=Basic User Settings