Hello everyone, I was wondering if anyone has succeeded in getting Dreamweaver to talk to Zope over WebDAV? It only partly works for me: I list directories and download files, but when I try to upload/rename/newdir/etc... basically, anything that requires write access, I always get an "Unable to authenticate with server" error. I checked my login/password with another WebDAV client (IE) and it works fine. Any clue welcome. PS: anyone knows what happened to the ZopeWeaver project? A search on Google gave me the following URL: http://alaji.home.mindspring.com/zopeweaver/ but there is nothing there... Cheers, -- Yves-Eric Martin Digital Garage Inc. yemartin@garage.co.jp
Bit of a newbie question here: 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? Thanks, -Tristan. tristan@roddis.org http://www.roddis.org _______________________________.oOo._________________________________ "Word Up." http://www.wordvault.org
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?
A Python Script would do nicely. return {'key1':'val1','key2':'val2'} regards Max M Max M. W. Rasmussen, Denmark. New Media Director private: maxmcorp@worldonline.dk work: maxm@normik.dk ----------------------------------------------------- Shipping software is an unnatural act From: zope-admin@zope.org [mailto:zope-admin@zope.org]On Behalf Of Tristan Roddis 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? Thanks, -Tristan. tristan@roddis.org http://www.roddis.org _______________________________.oOo._________________________________ "Word Up." http://www.wordvault.org _______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
On Tue, Feb 06, 2001 at 01:40:56PM +0900, Yves-Eric Martin wrote:
I was wondering if anyone has succeeded in getting Dreamweaver to talk to Zope over WebDAV? It only partly works for me: I list directories and download files, but when I try to upload/rename/newdir/etc... basically, anything that requires write access, I always get an "Unable to authenticate with server" error. I checked my login/password with another WebDAV client (IE) and it works fine. Any clue welcome.
Dreamweaver's WebDAV code has some serious flaws in it. I have sent messages about this to the Zope list before; you'll find those in the archives. Macromedia is aware of the problems, and has promised me in December that they were fixing it. Unfortunately, I have yet to see proof of this claim. -- Martijn Pieters | Software Engineer mailto:mj@digicool.com | Digital Creations http://www.digicool.com/ | Creators of Zope http://www.zope.org/ ---------------------------------------------
participants (5)
-
Martijn Pieters -
Max M -
Ron Bickers -
Tristan Roddis -
Yves-Eric Martin