Re: [Zope-dev] Operation Properties.

2001-09-19 Thread Erik Enge
[Dieter Maurer] | Have a look at Date properties. They are already objects. Yes, you are correct. WarpFramework, which I'm using for this project has support for the type of properties I'm talking about. Rather, a framework for using properties. Getting similar behaviour into Zope was the

[Zope-dev] Newly compile DynPersist.dll for Python21

2001-09-19 Thread Hung Nguyen
DynPersist.dll

Re: [Zope-dev] manage_pasteObjects and REQUEST

2001-09-19 Thread Dieter Maurer
Danny William Adair writes: Does anyone know when manage_PasteObjects will stop requiring REQUEST to be passed? I want to mimick the Cut/Copy/Paste Support of the management interface in a UI of my own. my method objectsCut holds: dtml-call manage_cutObjects(REQUEST['ids'], REQUEST)

Re: Re: [Zope-dev] WebDav Bug? -- And some comments on how great WebDAV is ;-)

2001-09-19 Thread Joachim Werner
Question : When I access to my folder by webdav protocol (win98 webfolder), I can list the folder content, but when I want to access to a file inside, Zope asked to me another authentification, then I can access to my file (wordd file (.doc)) but only in read only mode. This seems to be a

RE: Re: [Zope-dev] WebDav Bug? -- And some comments on how great WebDAV is ;-)

2001-09-19 Thread Brian Lloyd
Some additional issues when using the CMF: - There is this really great idea that you can create a news item by just posting a MyNews.news file to your Member folder. The first problem is that Word does not let you save an HTML file as .news, so we changed the rules in CMF and upload

[Zope-dev] Dreamweaver, Webdav and PUT.

2001-09-19 Thread Terry Kerr
Hi, I am having trouble PUT'ing new files into Zope using webdav from dreamweaver. I have dreamweaver 4 with the 4.01 update, and are running zope2.4.1 with python 2.1. I have create a html file 'untitiled.html' and are trying to PUT that into the root folder of my Zope instance. I have

[Zope-dev] RE: Dreamweaver, Webdav and PUT.

2001-09-19 Thread Terry Kerr
Hi, I discovered that if I define the PROPFIND method on the LockNullResource class as follows: def PROPFIND(self, REQUEST, RESPONSE): Retrieve properties defined on the resource. self.dav__init(REQUEST, RESPONSE) cmd=davcmds.PropFind(REQUEST)