[libxml2]Add libxml2 library

This commit is contained in:
zhoujiale
2026-07-26 16:57:28 +08:00
committed by zhoujiale
parent 0a44ec8a06
commit e841ac915d
3790 changed files with 668244 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
<?xml version="1.0"?>
<foo xmlnsbar="1"/>
+2
View File
@@ -0,0 +1,2 @@
<?xml version="1.0"?>
<foo xmlns:="http://example.com/"/>
+3
View File
@@ -0,0 +1,3 @@
./test/namespaces/err_1.xml:1: namespace error : Failed to parse QName 'xmlns:'
<foo xmlns:="http://example.com/"/>
^
+3
View File
@@ -0,0 +1,3 @@
./test/namespaces/err_10.xml:1: parser error : Attribute xmlns redefined
<tst xmlns="http://example.com/" xmlns="http://example.com/"/>
^
+3
View File
@@ -0,0 +1,3 @@
./test/namespaces/err_11.xml:1: parser error : Attribute xmlns:a redefined
<tst xmlns:a="http://example.com/" xmlns:a="http://example.com/"/>
^
+2
View File
@@ -0,0 +1,2 @@
<?xml version="1.0"?>
<:/>
+3
View File
@@ -0,0 +1,3 @@
./test/namespaces/err_2.xml:1: namespace error : Failed to parse QName ':'
<:/>
^
+2
View File
@@ -0,0 +1,2 @@
<?xml version="1.0"?>
<:foo/>
+3
View File
@@ -0,0 +1,3 @@
./test/namespaces/err_3.xml:1: namespace error : Failed to parse QName ':foo'
<:foo/>
^
+2
View File
@@ -0,0 +1,2 @@
<?xml version="1.0"?>
<f: xmlns:f="http://example.com/foo"/>
+3
View File
@@ -0,0 +1,3 @@
./test/namespaces/err_4.xml:1: namespace error : Failed to parse QName 'f:'
<f: xmlns:f="http://example.com/foo"/>
^
+2
View File
@@ -0,0 +1,2 @@
<?xml version="1.0"?>
<f:a: xmlns:f="http://example.com/foo"/>
+3
View File
@@ -0,0 +1,3 @@
./test/namespaces/err_5.xml:1: namespace error : Failed to parse QName 'f:a:'
<f:a: xmlns:f="http://example.com/foo"/>
^
+2
View File
@@ -0,0 +1,2 @@
<?xml version="1.0"?>
<f:a:b xmlns:f="http://example.com/foo"/>
+3
View File
@@ -0,0 +1,3 @@
./test/namespaces/err_6.xml:1: namespace error : Failed to parse QName 'f:a:b'
<f:a:b xmlns:f="http://example.com/foo"/>
^
+2
View File
@@ -0,0 +1,2 @@
<?xml version="1.0"?>
<f:foo/>
+3
View File
@@ -0,0 +1,3 @@
./test/namespaces/err_7.xml:1: namespace error : Namespace prefix f on foo is not defined
<f:foo/>
^
+2
View File
@@ -0,0 +1,2 @@
<?xml version="1.0"?>
<tst/>
+3
View File
@@ -0,0 +1,3 @@
./test/namespaces/err_8.xml:1: namespace error : xml namespace prefix mapped to wrong URI
<tst xmlns:xml="http://example.com/"/>
^
+2
View File
@@ -0,0 +1,2 @@
<?xml version="1.0"?>
<tst xmlns:a="http://example.com/" xmlns:b="http://example.com/" a:err="1" b:err="2"/>
+3
View File
@@ -0,0 +1,3 @@
./test/namespaces/err_9.xml:2: namespace error : Namespaced Attribute err in 'http://example.com/' redefined
a:err="1" b:err="2"/>
^