broken XML in examples, was: [VCARDDAV] vcarddav WGLC on draft-ietf-vcarddav-{carddav,mkcol}

Julian Reschke <[email protected]> Thu, 12 Mar 2009 15:33:26 +0100
Newsgroups gmane.ietf.webdav
Message-ID <[email protected]>
Marc Blanchet wrote:
> Hi,
>  This is the working group last call for the following two documents:
> http://tools.ietf.org/html/draft-ietf-vcarddav-carddav-05
> http://tools.ietf.org/html/draft-ietf-vcarddav-webdav-mkcol-03
> 
> Please provide any comments to the wg mailing list
> (mailto:[email protected]) by March 9th 2009, 23h00 GMT.
> 
> Regards,
>  Marc and Kurt, vcarddav wg chairs

Hi,

in 
<http://tools.ietf.org/html/draft-ietf-vcarddav-carddav-06#section-7.1.1> 
the XML is not well-formed.

        <C:addressbook-home-set xmlns:D="DAV:"
           xmlns:C="urn:ietf:params:xml:ns:carddav">
          <D:href>http://addressbook.example.com/bernard/addresses/<
          /D:href>
        </C:addressbook-home-set>

The simplest fix would be just to use an absolute path, as in

        <C:addressbook-home-set xmlns:D="DAV:"
           xmlns:C="urn:ietf:params:xml:ns:carddav">
          <D:href>/bernard/addresses/</D:href>
        </C:addressbook-home-set>

The same applies to Section 7.1.2.

BR, Julian