rewrite the URI parser to update to rfc3986 (from 2396) removed the error

* uri.c include/libxml/uri.h: rewrite the URI parser to update to
  rfc3986 (from 2396)
* test/errors/webdav.xml result/errors/webdav.xml*: removed the
  error test, 'DAV:' is a correct URI under 3986
* Makefile.am: small cleanup in make check
Daniel

svn path=/trunk/; revision=3763
This commit is contained in:
Daniel Veillard 2008-08-04 15:29:44 +00:00
parent ae0765b681
commit d7af555327
9 changed files with 884 additions and 953 deletions

View File

@ -1,3 +1,11 @@
Mon Aug 4 17:27:27 CEST 2008 Daniel Veillard <daniel@veillard.com>
* uri.c include/libxml/uri.h: rewrite the URI parser to update to
rfc3986 (from 2396)
* test/errors/webdav.xml result/errors/webdav.xml*: removed the
error test, 'DAV:' is a correct URI under 3986
* Makefile.am: small cleanup in make check
Thu Jul 31 21:49:45 CEST 2008 Daniel Veillard <daniel@veillard.com>
* runxmlconf.c: more progresses against the official regression tests

View File

@ -167,7 +167,7 @@ runxmlconf_LDADD= $(LDADDS)
#testOOM_LDADD= $(LDADDS)
runtests:
runtest$(EXEEXT) && testapi$(EXEEXT) && runxmlconf$(EXEEXT)
./runtest$(EXEEXT) && ./testapi$(EXEEXT) && ./runxmlconf$(EXEEXT)
check: all runtests

View File

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<propfind xmlns="DAV:"><prop>
<getcontentlength xmlns="DAV:"/>
<getlastmodified xmlns="DAV:"/>
<displayname xmlns="DAV:"/>
<executable xmlns="http://apache.org/dav/props/"/>
<resourcetype xmlns="DAV:"/>
</prop></propfind>

View File

@ -1,15 +0,0 @@
./test/errors/webdav.xml:2: namespace error : xmlns: 'DAV:' is not a valid URI
<propfind xmlns="DAV:"><prop>
^
./test/errors/webdav.xml:3: namespace error : xmlns: 'DAV:' is not a valid URI
<getcontentlength xmlns="DAV:"/>
^
./test/errors/webdav.xml:4: namespace error : xmlns: 'DAV:' is not a valid URI
<getlastmodified xmlns="DAV:"/>
^
./test/errors/webdav.xml:5: namespace error : xmlns: 'DAV:' is not a valid URI
<displayname xmlns="DAV:"/>
^
./test/errors/webdav.xml:7: namespace error : xmlns: 'DAV:' is not a valid URI
<resourcetype xmlns="DAV:"/>
^

View File

@ -1,16 +0,0 @@
./test/errors/webdav.xml:2: namespace error : xmlns: 'DAV:' is not a valid URI
<propfind xmlns="DAV:"><prop>
^
./test/errors/webdav.xml:3: namespace error : xmlns: 'DAV:' is not a valid URI
<getcontentlength xmlns="DAV:"/>
^
./test/errors/webdav.xml:4: namespace error : xmlns: 'DAV:' is not a valid URI
<getlastmodified xmlns="DAV:"/>
^
./test/errors/webdav.xml:5: namespace error : xmlns: 'DAV:' is not a valid URI
<displayname xmlns="DAV:"/>
^
./test/errors/webdav.xml:7: namespace error : xmlns: 'DAV:' is not a valid URI
<resourcetype xmlns="DAV:"/>
^
./test/errors/webdav.xml : failed to parse

View File

@ -1,9 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<propfind xmlns="DAV:"><prop>
<getcontentlength xmlns="DAV:"/>
<getlastmodified xmlns="DAV:"/>
<displayname xmlns="DAV:"/>
<executable xmlns="http://apache.org/dav/props/"/>
<resourcetype xmlns="DAV:"/>
</prop></propfind>

View File

@ -212,7 +212,7 @@ void xmlErrMemory(xmlParserCtxtPtr ctxt, const char *extra);
name resolution delays, so we use these
*/
#define REMOTE1GOOD "http://localhost/"
#define REMOTE1BAD "http://missing. example.org/"
#define REMOTE1BAD "http:http://http"
#define REMOTE2GOOD "ftp://localhost/foo"
#define gen_nb_void_ptr 2

1717
uri.c

File diff suppressed because it is too large Load Diff