[zope2-tracker] [Bug 1420673] Re: WebDAV PROPFIND response violates XML-Namespace
Tres Seaver
tseaver at palladion.com
Thu Jun 18 21:06:36 CEST 2015
Looks to me like the 'n:' prefix is associated with the 'DAV:' namespace
in the second '<d:propstat>' element. If I take your example and drop
the ellipses, xmllint is happy::
$ xmllint /tmp/lp1420673.xml
<?xml version="1.0" encoding="utf-8"?>
<d:multistatus xmlns:d="DAV:">
<d:response>
<d:href>/partner/bp3/test/</d:href>
<d:propstat xmlns:n="http://www.zope.org/propsets/default">
<d:prop>
<n:title>Test</n:title>
</d:prop>
<d:status>HTTP/1.1 200 OK</d:status>
</d:propstat>
<d:propstat xmlns:n="DAV:">
<d:prop>
<n:creationdate>1970-01-01T12:00:00Z</n:creationdate>
</d:prop>
</d:propstat>
</d:response>
</d:multistatus>
--
You received this bug notification because you are a member of Zope 2
Developers, which is subscribed to Zope 2.
https://bugs.launchpad.net/bugs/1420673
Title:
WebDAV PROPFIND response violates XML-Namespace
To manage notifications about this bug go to:
https://bugs.launchpad.net/zope2/+bug/1420673/+subscriptions
More information about the zope2-tracker
mailing list