[Zope] Persistent dictionaries with Zope?

Ron Bickers rbickers@logicetc.com
Tue, 6 Feb 2001 02:37:18 -0500


TinyTable works well for cases like this.  As its name indicates, it was
specifically designed not to be overkill.  It's a very useful product.
_______________________

Ron Bickers
Logic Etc, Inc.
rbickers@logicetc.com


> -----Original Message-----
> From: zope-admin@zope.org [mailto:zope-admin@zope.org]On Behalf Of
> Tristan Roddis
> Sent: Tuesday, February 06, 2001 1:15 AM
> To: zope@zope.org
> Subject: [Zope] Persistent dictionaries with Zope?
>
> What is the best way to create dictionaries (i.e. name-value pairs) that
> can be accessed from Zope objects. E.g. I want to store a dictionary in
> one place that can be accessed from other objects to e.g. provide select
> lists of the form:
>
> <option name="[dictionary name]">[dictionary value]</option>
>
> I had a look at assigning properties to objects but nothing seemed to
> help. Otherwise the only thing I could think of was installing products
> such as PersistentListDict or TinyTable but is this overkill?