#zope3-dev IRC channel
IRC provides a great way to ask questions and discuss issues in real time.
You can often find helpful people on the #zope3-dev channel on irc.freenode.net.
This is a channel for both users and developers of Zope 3.
See the logs at: http://zope3.pov.lt/irclogs/
... --keithb, Wed, 07 May 2008 01:25:43 +0000 reply
I'm stumped as how to set the timezone that Zope 3 uses to store the ObjectLastModified? date.
... --FredDrake?, Wed, 07 May 2008 01:42:29 +0000 reply
I don't think this was where you really wanted to post this, but...
You don't actually want to change the timezone in which these times are stored; they're stored in UTC which is what you want (even though you may not realize it). What you probably do want is for them to be displayed in an appropriate timezone for the user. There needs to be an adapter registered that extracts the timezone from the request. This usually isn't hard, if you're willing to live with it being wrong sometimes, since you can't really get the timezone information from the headers sent by browsers.
Usually, this is handled by allowing the timezone to be extracted based on user preferences or configuration information obtained from the context (or some combination of the same). Exactly what's the best option really depends on the application.
... --sanksh, Tue, 20 May 2008 21:36:10 -0400 reply
Hello
... --sanksh, Tue, 20 May 2008 21:43:32 -0400 reply
I need to run more than one sub-domain on my Zope3 server. I have created different site folders for each sub-domain and put sub-domain specific components in it. But I am not able to view any components in browser. It says mistyped URL/ resource does not exist. Do I have to grant view permission on each site folders? Where is it granted?
