/[suikacvs]/markup/html/whatpm/t/content-model-atom-1.dat
Suika

Contents of /markup/html/whatpm/t/content-model-atom-1.dat

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.2 - (hide annotations) (download)
Sun Mar 2 11:16:34 2008 UTC (18 years, 4 months ago) by wakaba
Branch: MAIN
Changes since 1.1: +237 -0 lines
++ whatpm/t/ChangeLog	2 Mar 2008 11:10:02 -0000
	* content-model-atom-1.dat: New test data are added.

2008-03-02  Wakaba  <wakaba@suika.fam.cx>

++ whatpm/Whatpm/ChangeLog	2 Mar 2008 11:16:26 -0000
	* ContentChecker.pm: Typo fixed.  Don't raise "character encoding"
	and related errors unless it is an HTML document (though the spec
	is unclear on whether it is applied to XHTML document).

	* HTML.pm (%HTMLAttrStatus): WF2 repetition model attributes
	are added.

2008-03-02  Wakaba  <wakaba@suika.fam.cx>

++ whatpm/Whatpm/ContentChecker/ChangeLog	2 Mar 2008 11:11:31 -0000
	* Atom.pm: Reimplemented.

2008-03-02  Wakaba  <wakaba@suika.fam.cx>

1 wakaba 1.2 #data
2     <feed xmlns="http://www.w3.org/2005/Atom">
3     <id>about:</id>
4     <title>xxx</title>
5     <link rel="self" href=""/>
6     <updated>2000-01-02T03:04:05Z</updated>
7     </feed>
8     #errors
9    
10     #data
11     <feed xmlns="http://www.w3.org/2005/Atom">
12     <id>about:</id>
13     <title>x<p xmlns="">x</p>x</title>
14     <link rel="self" href=""/>
15     <updated>2000-01-02T03:04:05Z</updated>
16     </feed>
17     #errors
18     /feed/title/p;element not allowed:atom|TextConstruct;m
19     /feed/title/p;element;unsupported
20    
21     #data
22     <feed xmlns="http://www.w3.org/2005/Atom">
23     <id>about:</id>
24     <title type="text">xxx</title>
25     <link rel="self" href=""/>
26     <updated>2000-01-02T03:04:05Z</updated>
27     </feed>
28     #errors
29    
30     #data
31     <feed xmlns="http://www.w3.org/2005/Atom">
32     <id>about:</id>
33     <title type="text">x<p xmlns="">x</p>x</title>
34     <link rel="self" href=""/>
35     <updated>2000-01-02T03:04:05Z</updated>
36     </feed>
37     #errors
38     /feed/title/p;element not allowed:atom|TextConstruct;m
39     /feed/title/p;element;unsupported
40    
41     #data
42     <feed xmlns="http://www.w3.org/2005/Atom">
43     <id>about:</id>
44     <title type="html">xxx</title>
45     <link rel="self" href=""/>
46     <updated>2000-01-02T03:04:05Z</updated>
47     </feed>
48     #errors
49    
50     #data
51     <feed xmlns="http://www.w3.org/2005/Atom">
52     <id>about:</id>
53     <title type="html">x<p xmlns="">x</p>x</title>
54     <link rel="self" href=""/>
55     <updated>2000-01-02T03:04:05Z</updated>
56     </feed>
57     #errors
58     /feed/title/p;element not allowed:atom|TextConstruct;m
59     /feed/title/p;element;unsupported
60    
61     #data
62     <feed xmlns="http://www.w3.org/2005/Atom">
63     <id>about:</id>
64     <title type="html"><div xmlns="http://www.w3.org/1999/xhtml">x</div></title>
65     <link rel="self" href=""/>
66     <updated>2000-01-02T03:04:05Z</updated>
67     </feed>
68     #errors
69     /feed/title/div;element not allowed:atom|TextConstruct;m
70    
71     #data
72     <feed xmlns="http://www.w3.org/2005/Atom">
73     <id>about:</id>
74     <title type="xhtml">xxx</title>
75     <link rel="self" href=""/>
76     <updated>2000-01-02T03:04:05Z</updated>
77     </feed>
78     #errors
79     /feed/title/"xxx";character not allowed:atom|TextConstruct;m
80     /feed/title;element missing:div;m
81    
82     #data
83     <feed xmlns="http://www.w3.org/2005/Atom">
84     <id>about:</id>
85     <title type="xhtml">x<p xmlns="">x</p>x</title>
86     <link rel="self" href=""/>
87     <updated>2000-01-02T03:04:05Z</updated>
88     </feed>
89     #errors
90     /feed/title/"x";character not allowed:atom|TextConstruct;m
91     /feed/title/p;element not allowed:atom|TextConstruct;m
92     /feed/title/p;element;unsupported
93     /feed/title/"x";character not allowed:atom|TextConstruct;m
94     /feed/title;element missing:div;m
95    
96     #data
97     <feed xmlns="http://www.w3.org/2005/Atom">
98     <id>about:</id>
99     <title type="xhtml"><p xmlns="http://www.w3.org/1999/xhtml">x</p></title>
100     <link rel="self" href=""/>
101     <updated>2000-01-02T03:04:05Z</updated>
102     </feed>
103     #errors
104     /feed/title/p;element not allowed:atom|TextConstruct;m
105     /feed/title;element missing:div;m
106    
107     #data
108     <feed xmlns="http://www.w3.org/2005/Atom">
109     <id>about:</id>
110     <title type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">x</div></title>
111     <link rel="self" href=""/>
112     <updated>2000-01-02T03:04:05Z</updated>
113     </feed>
114     #errors
115    
116     #data
117     <feed xmlns="http://www.w3.org/2005/Atom">
118     <id>about:</id>
119     <title type="xhtml"><div>x</div></title>
120     <link rel="self" href=""/>
121     <updated>2000-01-02T03:04:05Z</updated>
122     </feed>
123     #errors
124     /feed/title/div;element not allowed:atom|TextConstruct;m
125     /feed/title;element missing:div;m
126     /feed/title/div;element not defined;m
127    
128     #data
129     <feed xmlns="http://www.w3.org/2005/Atom">
130     <id>about:</id>
131     <title type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">x</div><div xmlns="http://www.w3.org/1999/xhtml">x</div></title>
132     <link rel="self" href=""/>
133     <updated>2000-01-02T03:04:05Z</updated>
134     </feed>
135     #errors
136     /feed/title/div;element not allowed:atom|TextConstruct;m
137    
138     #data
139     <feed xmlns="http://www.w3.org/2005/Atom">
140     <id>about:</id>
141     <author></author>
142     <title>x</title>
143     <link rel="self" href=""/>
144     <updated>2000-01-02T03:04:05Z</updated>
145     </feed>
146     #errors
147     /feed/author;element missing:atom|name;m
148    
149     #data
150     <feed xmlns="http://www.w3.org/2005/Atom">
151     <id>about:</id>
152     <author><name>xx</name></author>
153     <title>x</title>
154     <link rel="self" href=""/>
155     <updated>2000-01-02T03:04:05Z</updated>
156     </feed>
157     #errors
158    
159     #data
160     <feed xmlns="http://www.w3.org/2005/Atom">
161     <id>about:</id>
162     <author><name>xx</name><uri>about:</uri></author>
163     <link rel="self" href=""/>
164     <updated>2000-01-02T03:04:05Z</updated>
165     <title>x</title>
166     </feed>
167     #errors
168    
169     #data
170     <feed xmlns="http://www.w3.org/2005/Atom">
171     <id>about:</id>
172     <author><name>xx</name><uri>about:</uri><uri>data:,</uri></author>
173     <link rel="self" href=""/>
174     <updated>2000-01-02T03:04:05Z</updated>
175     <title>x</title>
176     </feed>
177     #errors
178     /feed/author/uri;element not allowed:atom|PersonConstruct;m
179    
180     #data
181     <feed xmlns="http://www.w3.org/2005/Atom">
182     <id>about:</id>
183     <title>x</title>
184     <author><name>x</name><email>[email protected]</email></author>
185     <link rel="self" href=""/>
186     <updated>2000-01-02T03:04:05Z</updated>
187     </feed>
188     #errors
189     /feed/author/email;addr-spec not supported;u
190    
191     #data
192     <feed xmlns="http://www.w3.org/2005/Atom"><id>about:</id><author><name>x</name><email>[email protected]</email><email>[email protected]</email></author>
193     <link rel="self" href=""/>
194     <title>x</title>
195     <updated>2000-01-02T03:04:05Z</updated>
196     </feed>
197     #errors
198     /feed/author/email;element not allowed:atom|PersonConstruct;m
199     /feed/author/email;addr-spec not supported;u
200     /feed/author/email;addr-spec not supported;u
201    
202     #data
203     <feed xmlns="http://www.w3.org/2005/Atom">
204     <id>about:</id>
205     <author><email>[email protected]</email></author>
206     <link rel="self" href=""/>
207     <updated>2000-01-02T03:04:05Z</updated>
208     <title>x</title>
209     </feed>
210     #errors
211     /feed/author;element missing:atom|name;m
212     /feed/author/email;addr-spec not supported;u
213    
214     #data
215     <feed xmlns="http://www.w3.org/2005/Atom">
216     <id>about:</id>
217     <author><title>[email protected]</title></author>
218     <link rel="self" href=""/>
219     <updated>2000-01-02T03:04:05Z</updated>
220     <title>x</title>
221     </feed>
222     #errors
223     /feed/author;element missing:atom|name;m
224     /feed/author/title;element not allowed:atom|PersonConstruct;m
225    
226     #data
227     <feed xmlns="http://www.w3.org/2005/Atom">
228     <id>about:</id>
229     <author><p>[email protected]</p></author>
230     <link rel="self" href=""/>
231     <updated>2000-01-02T03:04:05Z</updated>
232     <title>x</title>
233     </feed>
234     #errors
235     /feed/author;element missing:atom|name;m
236     /feed/author/p;element not allowed:atom|PersonConstruct;m
237     /feed/author/p;element not defined;m

[email protected]
ViewVC Help
Powered by ViewVC 1.1.24