I just tried adding dexterity content via WebDAV. The small snippets in section 6.15 WebDAV and other file representations where very helpful.
However, I believe the part about custom IFileFactory could use a small enhancement.
In my code I had to change the call
session = createObject('example.conference.session')
to
session = createObject('example.conference.session', id=name)
else the newly created content object is not getting an id at all.
I guess this happens, because there is no NameChooser being called during WebDAV content creation, which should not be done anyway, but because of this the id needs to be set upfront.
cheers
Gerhard
------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure contains a
definitive record of customers, application performance, security
threats, fraudulent activity and more. Splunk takes this data and makes
sense of it. Business sense. IT sense. Common sense.
http://p.sf.net/sfu/splunk-d2d-oct
_______________________________________________
Plone-docs mailing list
Plone...@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/plone-docs
Hey,
I just tried adding dexterity content via WebDAV. The small snippets in section 6.15 WebDAV and other file representations where very helpful.
http://plone.org/products/dexterity/documentation/manual/developer-manual/advanced/webdav-and-other-file-representations
However, I believe the part about custom IFileFactory could use a small enhancement.
In my code I had to change the call
session = createObject('example.conference.session')
to
session = createObject('example.conference.session', id=name)
else the newly created content object is not getting an id at all.
I guess this happens, because there is no NameChooser being called during WebDAV content creation, which should not be done anyway, but because of this the id needs to be set upfront.