Parent Directory
|
Revision Log
++ whatpm/t/ChangeLog 14 Oct 2008 10:36:14 -0000 * XML-Parser.t: "xml/ns-attrs-1.dat" added. 2008-10-14 Wakaba <wakaba@suika.fam.cx> ++ whatpm/t/xml/ChangeLog 14 Oct 2008 10:36:28 -0000 * ns-attrs-1.dat: New test data file. 2008-10-14 Wakaba <wakaba@suika.fam.cx> ++ whatpm/Whatpm/HTML/ChangeLog 14 Oct 2008 10:13:31 -0000 * Dumper.pm: Typo fixed. 2008-10-14 Wakaba <wakaba@suika.fam.cx> ++ whatpm/Whatpm/XML/ChangeLog 14 Oct 2008 10:35:44 -0000 * Parser.pm.src: Namespace support for the root element. 2008-10-14 Wakaba <wakaba@suika.fam.cx>
1 | wakaba | 1.1 | #data |
2 | <a xmlns=""/> | ||
3 | #errors | ||
4 | #document | ||
5 | | <{} a> | ||
6 | | xmlns xmlns="" | ||
7 | |||
8 | #data | ||
9 | <a xmlns="b"/> | ||
10 | #errors | ||
11 | #document | ||
12 | | <{b} a> | ||
13 | | xmlns xmlns="b" | ||
14 | |||
15 | #data | ||
16 | <a xmlns="b" xmlns:c="d"/> | ||
17 | #errors | ||
18 | #document | ||
19 | | <{b} a> | ||
20 | | xmlns c="d" | ||
21 | | xmlns xmlns="b" | ||
22 | |||
23 | #data | ||
24 | <a xmlns:xml="http://www.w3.org/XML/1998/namespace"/> | ||
25 | #errors | ||
26 | #document | ||
27 | | <{} a> | ||
28 | | xmlns xml="http://www.w3.org/XML/1998/namespace" | ||
29 | |||
30 | #data | ||
31 | <a xmlns="http://www.w3.org/XML/1998/namespace"/> | ||
32 | #errors | ||
33 | #document | ||
34 | | <{} a> | ||
35 | | xmlns xmlns="http://www.w3.org/XML/1998/namespace" | ||
36 | |||
37 | #data | ||
38 | <a xmlns="http://www.w3.org/2000/xmlns/"/> | ||
39 | #errors | ||
40 | #document | ||
41 | | <{} a> | ||
42 | | xmlns xmlns="http://www.w3.org/2000/xmlns/" | ||
43 | |||
44 | #data | ||
45 | <a xmlns:xmlns="http://www.w3.org/2000/xmlns/"/> | ||
46 | #errors | ||
47 | #document | ||
48 | | <{} a> | ||
49 | | xmlns:xmlns="http://www.w3.org/2000/xmlns/" | ||
50 | |||
51 | #data | ||
52 | <a xmlns:xml="http://www.w3.org/2000/xmlns/" xml:lang="en"/> | ||
53 | #errors | ||
54 | #document | ||
55 | | <{} a> | ||
56 | | xml lang="en" | ||
57 | | xmlns xml="http://www.w3.org/2000/xmlns/" | ||
58 | |||
59 | #data | ||
60 | <x xmlns:a="http://www.w3.org/XML/1998/namespace" a:b="c"/> | ||
61 | #errors | ||
62 | #document | ||
63 | | <{} x> | ||
64 | | a:b="c" | ||
65 | | xmlns a="http://www.w3.org/XML/1998/namespace" | ||
66 | |||
67 | #data | ||
68 | <x xmlns:a="http://www.w3.org/2000/xmlns/" a:b="c"/> | ||
69 | #errors | ||
70 | #document | ||
71 | | <{} x> | ||
72 | | a:b="c" | ||
73 | | xmlns a="http://www.w3.org/2000/xmlns/" | ||
74 | |||
75 | #data | ||
76 | <a:b/> | ||
77 | #errors | ||
78 | #document | ||
79 | | <{} a:b> | ||
80 | |||
81 | #data | ||
82 | <a:b xmlns:a="c"/> | ||
83 | #errors | ||
84 | #document | ||
85 | | <{c} b> | ||
86 | | xmlns a="c" | ||
87 | |||
88 | #data | ||
89 | <a xmlns="b"/><b xmlns="c"/><c/> | ||
90 | #errors | ||
91 | 1;15;second root element;;;m | ||
92 | 1;29;second root element;;;m | ||
93 | #document | ||
94 | | <{b} a> | ||
95 | | xmlns xmlns="b" | ||
96 | | <{c} b> | ||
97 | | xmlns xmlns="c" | ||
98 | | <{} c> | ||
99 | |||
100 | #data | ||
101 | <a xmlns:a=""/> | ||
102 | #errors | ||
103 | #document | ||
104 | | <{} a> | ||
105 | | xmlns a="" | ||
106 | |||
107 | #data | ||
108 | <x xmlns:a="" a:b=""/> | ||
109 | #errors | ||
110 | #document | ||
111 | | <{} x> | ||
112 | | a:b="" | ||
113 | | xmlns a="" | ||
114 | |||
115 | #data | ||
116 | <x xmlns:a="a" xmlns:b="a" a:m="1" b:m="2"/> | ||
117 | #errors | ||
118 | 1;1;duplicate ns attr;;b:m;m | ||
119 | #document | ||
120 | | <{} x> | ||
121 | | xmlns a="a" | ||
122 | | xmlns b="a" | ||
123 | | {a} m="1" |
admin@suikawiki.org | ViewVC Help |
Powered by ViewVC 1.1.24 |