Gerhard Weis
2011-10-17 23:58:38 UTC
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.
cheers
Gerhard
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.
cheers
Gerhard