[Zope3-Users] psycopg zope3 and archive

2006-06-26 Thread bussiere maillist
i think that the questions have akready been posed,but i cannot search in the archive of the maillist,if you know a way to do that i will be glad to have it.By the way, is there a tutorial or a manual for install pyscopg for Zope3 ? RegardsBussiere ___ Zo

[Zope3-Users] Re: psycopg zope3 and archive

2006-06-26 Thread Michael Haubenwallner
bussiere maillist wrote: i think that the questions have akready been posed, but i cannot search in the archive of the maillist, if you know a way to do that i will be glad to have it. By the way, is there a tutorial or a manual for install pyscopg for Zope3 ? You can use Google site-search f

RE: [Zope3-Users] Re: psycopg zope3 and archive

2006-06-26 Thread bussiere
Thanks a lot Bussiere -Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] De la part de Michael Haubenwallner Envoyé : lundi 26 juin 2006 09:17 À : zope3-users@zope.org Objet : [Zope3-Users] Re: psycopg zope3 and archive bussiere maillist wrote: > i think that the questio

[Zope3-Users] psycopg and zope3

2006-06-26 Thread bussiere maillist
i've done all as said herehttp://dfwpython.org/Zope3Notes/PgConnectorInstall(i've installed psycopg2)but i havent the module psycopg in the add module menu if someone have a good tutorialfor installing psycopgBussiere ___ Zope3-users mailing list Zope3-us

Re: [Zope3-Users] Re: Splitting ZODB ?

2006-06-26 Thread Chris Withers
Jim Fulton wrote: The default Zope 3 configurations still organizes objects into a tree. Path identifiers are no longer used. How do you now uniquely identify an object? cheers, Chris -- Simplistix - Content Management, Zope & Python Consulting - http://www.simplistix.co.uk

Re: [Zope3-Users] Re: Splitting ZODB ?

2006-06-26 Thread Jim Fulton
On Jun 26, 2006, at 6:17 AM, Chris Withers wrote: Jim Fulton wrote: The default Zope 3 configurations still organizes objects into a tree. Path identifiers are no longer used. How do you now uniquely identify an object? First, you usually don't need an independent unique id for an object

Re: [Zope3-Users] Re: Splitting ZODB ?

2006-06-26 Thread David Pratt
Hi Jim. Where should this be done (separate identifier). I was thinking of a UUID of some sort when I read this which could be helpful for other things. Regards, David Jim Fulton wrote: If you do need a separate identifier of some kind, you can use a key reference or use an integer id from a

Re: [Zope3-Users] Re: Splitting ZODB ?

2006-06-26 Thread Jim Fulton
I expect that these frameworks are documented in the Zope books. Look at the zope.app.keyreference and zope.app.intid packages. (Both of these should eventially be moved out of zope.app and both, sadly, were written before we developed doctest-based testing practices.) Jim On Jun 26, 2006, at

Re: [Zope3-Users] Re: Splitting ZODB ?

2006-06-26 Thread David Pratt
Many thanks Jim. Regards, David Jim Fulton wrote: I expect that these frameworks are documented in the Zope books. Look at the zope.app.keyreference and zope.app.intid packages. (Both of these should eventially be moved out of zope.app and both, sadly, were written before we developed doctest

Re: [Zope3-Users] Re: Splitting ZODB ?

2006-06-26 Thread Benji York
David Pratt wrote: Hi Jim. Where should this be done (separate identifier). I was thinking of a UUID of some sort when I read this which could be helpful for other things. UUIDs can be quite useful, but for identifying objects within a database the "universal" part doesn't make much sense, he

Re: [Zope3-Users] Re: Splitting ZODB ?

2006-06-26 Thread Chris Withers
Jim Fulton wrote: First, you usually don't need an independent unique id for an object, since direct object references work much better in Zope 3 than they do in Zope 2. Great :-) If you do need a separate identifier of some kind, you can use a key reference or use an integer id from an inti

Re: [Zope3-Users] Re: Splitting ZODB ?

2006-06-26 Thread Philipp von Weitershausen
Chris Withers wrote: >> If you do need a separate identifier of some kind, you can >> use a key reference or use an integer id from an intid utlity, >> which simply assigns integers to key references. > > What's a "key reference"? -> zope.app.keyreference -> zope.app.intid Philipp _

Re: [Zope3-Users] Re: Splitting ZODB ?

2006-06-26 Thread David Pratt
Hi Benji. The universal part makes sense for synchronization. Maybe this is not as much of an issue for others, but I have been looking to implement a UUID solution with this in mind. Regards, David Benji York wrote: David Pratt wrote: Hi Jim. Where should this be done (separate identifier).

[Zope3-Users] Role based skinning

2006-06-26 Thread David Pratt
Hi I am looking at creating a skinning situation based on roles. Admin skin would not be a full access ZMI but provide some enhanced views for a manager where I may have one or more skins based for a member and then anonymous. Some general advice on how one might best achieve this would be help

Re: [Zope3-Users] Re: Splitting ZODB ?

2006-06-26 Thread Chris Withers
Philipp von Weitershausen wrote: What's a "key reference"? -> zope.app.keyreference -> zope.app.intid I was wondering if there was a more high level explanation that "rtsl" ;-) I kinda know what an intid is, but what's a key reference? cheers, Chris -- Simplistix - Content Management, Zop

Re: [Zope3-Users] Re: Splitting ZODB ?

2006-06-26 Thread Philipp von Weitershausen
Chris Withers wrote: > Philipp von Weitershausen wrote: >>> What's a "key reference"? >> >> -> zope.app.keyreference >> -> zope.app.intid > > I was wondering if there was a more high level explanation that "rtsl" ;-) There are usually doctests or at least interfaces. That isn't quite rtsl, it's m