/[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.5 - (hide annotations) (download)
Thu Mar 20 08:54:01 2008 UTC (17 years, 4 months ago) by wakaba
Branch: MAIN
Changes since 1.4: +54 -0 lines
++ whatpm/t/ChangeLog	20 Mar 2008 08:53:32 -0000
	* ContentCheker.t: Replace dummy error type for subdoc
	checking invocations to ";SUBDOC".

	* content-model-1.dat, content-model-2.dat: Test
	results revised to support the aforementioned change.

	* content-model-atom-1.dat: Test results revised
	so that |type=html| in Text construct is now
	tested whether the subdoc code is invoked.

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

	* content-model-atom-1.dat: Test data on cases of
	missing |atom:summary| in |atom:entry| are added.

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

++ whatpm/Whatpm/ContentChecker/ChangeLog	20 Mar 2008 08:38:25 -0000
	* Atom.pm: Raise an error if required |atom:summary|
	element is missing from an |atom:entry| element.

2008-03-20  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 wakaba 1.5 /feed/title;SUBDOC
50 wakaba 1.2
51     #data
52     <feed xmlns="http://www.w3.org/2005/Atom">
53     <id>about:</id>
54     <title type="html">x<p xmlns="">x</p>x</title>
55     <link rel="self" href=""/>
56     <updated>2000-01-02T03:04:05Z</updated>
57     </feed>
58     #errors
59     /feed/title/p;element not allowed:atom|TextConstruct;m
60     /feed/title/p;element;unsupported
61 wakaba 1.5 /feed/title;SUBDOC
62 wakaba 1.2
63     #data
64     <feed xmlns="http://www.w3.org/2005/Atom">
65     <id>about:</id>
66     <title type="html"><div xmlns="http://www.w3.org/1999/xhtml">x</div></title>
67     <link rel="self" href=""/>
68     <updated>2000-01-02T03:04:05Z</updated>
69     </feed>
70     #errors
71     /feed/title/div;element not allowed:atom|TextConstruct;m
72 wakaba 1.5 /feed/title;SUBDOC
73 wakaba 1.2
74     #data
75     <feed xmlns="http://www.w3.org/2005/Atom">
76     <id>about:</id>
77     <title type="xhtml">xxx</title>
78     <link rel="self" href=""/>
79     <updated>2000-01-02T03:04:05Z</updated>
80     </feed>
81     #errors
82     /feed/title/"xxx";character not allowed:atom|TextConstruct;m
83     /feed/title;element missing:div;m
84    
85     #data
86     <feed xmlns="http://www.w3.org/2005/Atom">
87     <id>about:</id>
88     <title type="xhtml">x<p xmlns="">x</p>x</title>
89     <link rel="self" href=""/>
90     <updated>2000-01-02T03:04:05Z</updated>
91     </feed>
92     #errors
93     /feed/title/"x";character not allowed:atom|TextConstruct;m
94     /feed/title/p;element not allowed:atom|TextConstruct;m
95     /feed/title/p;element;unsupported
96     /feed/title/"x";character not allowed:atom|TextConstruct;m
97     /feed/title;element missing:div;m
98    
99     #data
100     <feed xmlns="http://www.w3.org/2005/Atom">
101     <id>about:</id>
102     <title type="xhtml"><p xmlns="http://www.w3.org/1999/xhtml">x</p></title>
103     <link rel="self" href=""/>
104     <updated>2000-01-02T03:04:05Z</updated>
105     </feed>
106     #errors
107     /feed/title/p;element not allowed:atom|TextConstruct;m
108     /feed/title;element missing:div;m
109    
110     #data
111     <feed xmlns="http://www.w3.org/2005/Atom">
112     <id>about:</id>
113     <title type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">x</div></title>
114     <link rel="self" href=""/>
115     <updated>2000-01-02T03:04:05Z</updated>
116     </feed>
117     #errors
118    
119     #data
120     <feed xmlns="http://www.w3.org/2005/Atom">
121     <id>about:</id>
122     <title type="xhtml"><div>x</div></title>
123     <link rel="self" href=""/>
124     <updated>2000-01-02T03:04:05Z</updated>
125     </feed>
126     #errors
127     /feed/title/div;element not allowed:atom|TextConstruct;m
128     /feed/title;element missing:div;m
129     /feed/title/div;element not defined;m
130    
131     #data
132     <feed xmlns="http://www.w3.org/2005/Atom">
133     <id>about:</id>
134     <title type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">x</div><div xmlns="http://www.w3.org/1999/xhtml">x</div></title>
135     <link rel="self" href=""/>
136     <updated>2000-01-02T03:04:05Z</updated>
137     </feed>
138     #errors
139     /feed/title/div;element not allowed:atom|TextConstruct;m
140    
141     #data
142     <feed xmlns="http://www.w3.org/2005/Atom">
143     <id>about:</id>
144     <author></author>
145     <title>x</title>
146     <link rel="self" href=""/>
147     <updated>2000-01-02T03:04:05Z</updated>
148     </feed>
149     #errors
150     /feed/author;element missing:atom|name;m
151    
152     #data
153     <feed xmlns="http://www.w3.org/2005/Atom">
154     <id>about:</id>
155     <author><name>xx</name></author>
156     <title>x</title>
157     <link rel="self" href=""/>
158     <updated>2000-01-02T03:04:05Z</updated>
159     </feed>
160     #errors
161    
162     #data
163     <feed xmlns="http://www.w3.org/2005/Atom">
164     <id>about:</id>
165     <author><name>xx</name><uri>about:</uri></author>
166     <link rel="self" href=""/>
167     <updated>2000-01-02T03:04:05Z</updated>
168     <title>x</title>
169     </feed>
170     #errors
171    
172     #data
173     <feed xmlns="http://www.w3.org/2005/Atom">
174     <id>about:</id>
175     <author><name>xx</name><uri>about:</uri><uri>data:,</uri></author>
176     <link rel="self" href=""/>
177     <updated>2000-01-02T03:04:05Z</updated>
178     <title>x</title>
179     </feed>
180     #errors
181     /feed/author/uri;element not allowed:atom|PersonConstruct;m
182    
183     #data
184     <feed xmlns="http://www.w3.org/2005/Atom">
185     <id>about:</id>
186     <title>x</title>
187     <author><name>x</name><email>a@example.net</email></author>
188     <link rel="self" href=""/>
189     <updated>2000-01-02T03:04:05Z</updated>
190     </feed>
191     #errors
192     /feed/author/email;addr-spec not supported;u
193    
194     #data
195     <feed xmlns="http://www.w3.org/2005/Atom"><id>about:</id><author><name>x</name><email>a@example.net</email><email>b@example.test</email></author>
196     <link rel="self" href=""/>
197     <title>x</title>
198     <updated>2000-01-02T03:04:05Z</updated>
199     </feed>
200     #errors
201     /feed/author/email;element not allowed:atom|PersonConstruct;m
202     /feed/author/email;addr-spec not supported;u
203     /feed/author/email;addr-spec not supported;u
204    
205     #data
206     <feed xmlns="http://www.w3.org/2005/Atom">
207     <id>about:</id>
208     <author><email>a@example.net</email></author>
209     <link rel="self" href=""/>
210     <updated>2000-01-02T03:04:05Z</updated>
211     <title>x</title>
212     </feed>
213     #errors
214     /feed/author;element missing:atom|name;m
215     /feed/author/email;addr-spec not supported;u
216    
217     #data
218     <feed xmlns="http://www.w3.org/2005/Atom">
219     <id>about:</id>
220     <author><title>a@example.net</title></author>
221     <link rel="self" href=""/>
222     <updated>2000-01-02T03:04:05Z</updated>
223     <title>x</title>
224     </feed>
225     #errors
226     /feed/author;element missing:atom|name;m
227     /feed/author/title;element not allowed:atom|PersonConstruct;m
228    
229     #data
230     <feed xmlns="http://www.w3.org/2005/Atom">
231     <id>about:</id>
232     <author><p>a@example.net</p></author>
233     <link rel="self" href=""/>
234     <updated>2000-01-02T03:04:05Z</updated>
235     <title>x</title>
236     </feed>
237     #errors
238     /feed/author;element missing:atom|name;m
239     /feed/author/p;element not allowed:atom|PersonConstruct;m
240     /feed/author/p;element not defined;m
241 wakaba 1.3
242     #data
243     <feed xmlns="http://www.w3.org/2005/Atom">
244     <id>about:</id>
245     <author><name>x</name></author>
246     <link rel="self" href=""/>
247     <updated>2000-01-02T03:04:05Z</updated>
248     <title>x</title>
249     <entry>
250    
251     </entry>
252     </feed>
253     #errors
254     /feed/entry;element missing:atom|id
255     /feed/entry;element missing:atom|title
256     /feed/entry;element missing:atom|updated
257     /feed/entry;element missing:atom|link|alternate
258    
259     #data
260     <feed xmlns="http://www.w3.org/2005/Atom">
261     <id>about:</id>
262     <author><name>x</name></author>
263     <link rel="self" href=""/>
264     <updated>2000-01-02T03:04:05Z</updated>
265     <title>x</title>
266     <entry>
267    
268     </entry>
269     <entry>
270     </entry>
271     </feed>
272     #errors
273     /feed/entry;element missing:atom|id
274     /feed/entry;element missing:atom|title
275     /feed/entry;element missing:atom|updated
276     /feed/entry;element missing:atom|link|alternate
277     /feed/entry;element missing:atom|id
278     /feed/entry;element missing:atom|title
279     /feed/entry;element missing:atom|updated
280     /feed/entry;element missing:atom|link|alternate
281    
282     #data
283     <feed xmlns="http://www.w3.org/2005/Atom">
284     <id>about:</id>
285     <link rel="self" href=""/>
286     <updated>2000-01-02T03:04:05Z</updated>
287     <title>x</title>
288     <entry>
289    
290     </entry>
291     </feed>
292     #errors
293 wakaba 1.4 /feed;element missing:atom|author;m
294 wakaba 1.3 /feed/entry;element missing:atom|author;m
295     /feed/entry;element missing:atom|id
296     /feed/entry;element missing:atom|title
297     /feed/entry;element missing:atom|updated
298     /feed/entry;element missing:atom|link|alternate
299    
300     #data
301     <feed xmlns="http://www.w3.org/2005/Atom">
302     <id>about:</id>
303     <link rel="self" href=""/>
304     <updated>2000-01-02T03:04:05Z</updated>
305     <title>x</title>
306     <entry>
307    
308     </entry>
309     <entry/>
310     </feed>
311     #errors
312 wakaba 1.4 /feed;element missing:atom|author;m
313 wakaba 1.3 /feed/entry;element missing:atom|author;m
314     /feed/entry;element missing:atom|author;m
315     /feed/entry;element missing:atom|id
316     /feed/entry;element missing:atom|title
317     /feed/entry;element missing:atom|updated
318     /feed/entry;element missing:atom|link|alternate
319     /feed/entry;element missing:atom|id
320     /feed/entry;element missing:atom|title
321     /feed/entry;element missing:atom|updated
322     /feed/entry;element missing:atom|link|alternate
323    
324     #data
325     <feed xmlns="http://www.w3.org/2005/Atom">
326     <id>about:</id>
327     <entry/>
328     <link rel="self" href=""/>
329     <updated>2000-01-02T03:04:05Z</updated>
330     <title>x</title>
331     </feed>
332     #errors
333 wakaba 1.4 /feed;element missing:atom|author;m
334 wakaba 1.3 /feed/entry;element missing:atom|author;m
335     /feed/link;element not allowed
336     /feed/title;element not allowed
337     /feed/updated;element not allowed
338     /feed/entry;element missing:atom|id
339     /feed/entry;element missing:atom|title
340     /feed/entry;element missing:atom|updated
341     /feed/entry;element missing:atom|link|alternate
342    
343     #data
344     <feed xmlns="http://www.w3.org/2005/Atom">
345     <id>about:</id>
346     <entry/>
347     <author><name>x</name></author>
348     <link rel="self" href=""/>
349     <updated>2000-01-02T03:04:05Z</updated>
350     <title>x</title>
351     </feed>
352     #errors
353     /feed/entry;element missing:atom|id
354     /feed/entry;element missing:atom|title
355     /feed/entry;element missing:atom|updated
356     /feed/entry;element missing:atom|link|alternate
357     /feed/author;element not allowed
358     /feed/link;element not allowed
359     /feed/updated;element not allowed
360     /feed/title;element not allowed
361    
362     #data
363     <feed xmlns="http://www.w3.org/2005/Atom">
364     <id>about:</id>
365     <link rel="self" href=""/>
366     <updated>2000-01-02T03:04:05Z</updated>
367     <title>x</title>
368     <entry>
369     <entry/>
370     </entry>
371     </feed>
372     #errors
373 wakaba 1.4 /feed;element missing:atom|author;m
374 wakaba 1.3 /feed/entry;element missing:atom|author;m
375     /feed/entry/entry;element not allowed
376     /feed/entry/entry;element missing:atom|author;m
377     /feed/entry;element missing:atom|id
378     /feed/entry;element missing:atom|title
379     /feed/entry;element missing:atom|updated
380     /feed/entry;element missing:atom|link|alternate
381     /feed/entry/entry;element missing:atom|id
382     /feed/entry/entry;element missing:atom|title
383     /feed/entry/entry;element missing:atom|updated
384     /feed/entry/entry;element missing:atom|link|alternate
385    
386     #data
387     <feed xmlns="http://www.w3.org/2005/Atom">
388     <id>about:</id>
389     <link rel="self" href=""/>
390     <updated>2000-01-02T03:04:05Z</updated>
391     <title>x</title>
392     <entry>
393     <author><name>x</name></author>
394     </entry>
395     </feed>
396     #errors
397     /feed/entry;element missing:atom|id
398     /feed/entry;element missing:atom|title
399     /feed/entry;element missing:atom|updated
400     /feed/entry;element missing:atom|link|alternate
401    
402     #data
403     <feed xmlns="http://www.w3.org/2005/Atom">
404     <id>about:</id>
405     <link rel="self" href=""/>
406     <updated>2000-01-02T03:04:05Z</updated>
407     <title>x</title>
408     <entry>
409     <author><name>x</name></author>
410     </entry>
411     <entry/>
412     </feed>
413     #errors
414 wakaba 1.4 /feed;element missing:atom|author;m
415 wakaba 1.3 /feed/entry;element missing:atom|author;m
416     /feed/entry;element missing:atom|id
417     /feed/entry;element missing:atom|title
418     /feed/entry;element missing:atom|updated
419     /feed/entry;element missing:atom|link|alternate
420     /feed/entry;element missing:atom|id
421     /feed/entry;element missing:atom|title
422     /feed/entry;element missing:atom|updated
423     /feed/entry;element missing:atom|link|alternate
424    
425     #data
426     <feed xmlns="http://www.w3.org/2005/Atom">
427     <id>about:</id>
428     <link rel="self" href=""/>
429     <updated>2000-01-02T03:04:05Z</updated>
430     <title>x</title>
431     <entry>
432     <source>
433     <author><name>x</name></author>
434     </source>
435     </entry>
436     </feed>
437     #errors
438 wakaba 1.4 /feed;element missing:atom|author;m
439 wakaba 1.3 /feed/entry;element missing:atom|id
440     /feed/entry;element missing:atom|title
441     /feed/entry;element missing:atom|updated
442     /feed/entry;element missing:atom|link|alternate
443    
444     #data
445     <feed xmlns="http://www.w3.org/2005/Atom">
446     <id>about:</id>
447     <link rel="self" href=""/>
448     <updated>2000-01-02T03:04:05Z</updated>
449     <title>x</title>
450     <source>
451     <author><name>x</name></author>
452     </source>
453     <entry>
454    
455     </entry>
456     </feed>
457     #errors
458 wakaba 1.4 /feed;element missing:atom|author;m
459 wakaba 1.3 /feed/entry;element missing:atom|author;m
460     /feed/source;element not allowed
461     /feed/entry;element missing:atom|id
462     /feed/entry;element missing:atom|title
463     /feed/entry;element missing:atom|updated
464     /feed/entry;element missing:atom|link|alternate
465    
466     #data
467     <x xmlns="">
468     <feed xmlns="http://www.w3.org/2005/Atom">
469     <id>about:</id>
470     <author><name>x</name></author>
471     <link rel="self" href=""/>
472     <updated>2000-01-02T03:04:05Z</updated>
473     <title>x</title>
474     <entry>
475    
476     </entry>
477     </feed>
478     </x>
479     #errors
480     /x;element;unsupported
481     /x/feed/entry;element missing:atom|author;m
482     /x/feed/entry;element missing:atom|id
483     /x/feed/entry;element missing:atom|title
484     /x/feed/entry;element missing:atom|updated
485     /x/feed/entry;element missing:atom|link|alternate
486    
487     #data
488     <entry xmlns="http://www.w3.org/2005/Atom">
489     <id>about:</id>
490     <link rel="alternate" href=""/>
491     <updated>2000-01-02T03:04:05Z</updated>
492     <title>x</title>
493     </entry>
494     #errors
495     /entry;element missing:atom|author;m
496    
497     #data
498     <entry xmlns="http://www.w3.org/2005/Atom">
499     <id>about:</id>
500     <author><name>x</name></author>
501     <link rel="alternate" href=""/>
502     <updated>2000-01-02T03:04:05Z</updated>
503     <title>x</title>
504     </entry>
505     #errors
506    
507     #data
508     <entry xmlns="http://www.w3.org/2005/Atom">
509     <id>about:</id>
510     <source><author><name>x</name></author></source>
511     <link rel="alternate" href=""/>
512     <updated>2000-01-02T03:04:05Z</updated>
513     <title>x</title>
514     </entry>
515     #errors
516 wakaba 1.4
517     #data
518     <feed xmlns="http://www.w3.org/2005/Atom">
519     <id>about:</id>
520     <link rel="self" href=""/>
521     <updated>2000-01-02T03:04:05Z</updated>
522     <title>x</title>
523     <entry>
524    
525     </entry>
526     </feed>
527     #errors
528     /feed;element missing:atom|author;m
529     /feed/entry;element missing:atom|author;m
530     /feed/entry;element missing:atom|id
531     /feed/entry;element missing:atom|title
532     /feed/entry;element missing:atom|updated
533     /feed/entry;element missing:atom|link|alternate
534    
535     #data
536     <feed xmlns="http://www.w3.org/2005/Atom">
537     <id>about:</id>
538     <link rel="self" href=""/>
539     <updated>2000-01-02T03:04:05Z</updated>
540     <title>x</title>
541     <entry>
542     <author><name>x</name></author>
543     </entry>
544     </feed>
545     #errors
546     /feed/entry;element missing:atom|id
547     /feed/entry;element missing:atom|title
548     /feed/entry;element missing:atom|updated
549     /feed/entry;element missing:atom|link|alternate
550    
551     #data
552     <feed xmlns="http://www.w3.org/2005/Atom">
553     <id>about:</id>
554     <link rel="self" href=""/>
555     <updated>2000-01-02T03:04:05Z</updated>
556     <title>x</title>
557     <entry>
558     <author><name>x</name></author>
559     </entry>
560     <entry>
561     <author><name>x</name></author>
562     </entry>
563     </feed>
564     #errors
565     /feed/entry;element missing:atom|id
566     /feed/entry;element missing:atom|title
567     /feed/entry;element missing:atom|updated
568     /feed/entry;element missing:atom|link|alternate
569     /feed/entry;element missing:atom|id
570     /feed/entry;element missing:atom|title
571     /feed/entry;element missing:atom|updated
572     /feed/entry;element missing:atom|link|alternate
573    
574     #data
575     <feed xmlns="http://www.w3.org/2005/Atom">
576     <id>about:</id>
577     <link rel="self" href=""/>
578     <updated>2000-01-02T03:04:05Z</updated>
579     <title>x</title>
580     <entry>
581     </entry>
582     <entry>
583     <author><name>x</name></author>
584     </entry>
585     </feed>
586     #errors
587     /feed;element missing:atom|author;m
588     /feed/entry;element missing:atom|author;m
589     /feed/entry;element missing:atom|id
590     /feed/entry;element missing:atom|title
591     /feed/entry;element missing:atom|updated
592     /feed/entry;element missing:atom|link|alternate
593     /feed/entry;element missing:atom|id
594     /feed/entry;element missing:atom|title
595     /feed/entry;element missing:atom|updated
596     /feed/entry;element missing:atom|link|alternate
597    
598     #data
599     <feed xmlns="http://www.w3.org/2005/Atom">
600     <id>about:</id>
601     <link rel="self" href=""/>
602     <updated>2000-01-02T03:04:05Z</updated>
603     <title>x</title>
604     <entry>
605     <author><name>x</name></author>
606     </entry>
607     <entry>
608     </entry>
609     </feed>
610     #errors
611     /feed;element missing:atom|author;m
612     /feed/entry;element missing:atom|id
613     /feed/entry;element missing:atom|title
614     /feed/entry;element missing:atom|updated
615     /feed/entry;element missing:atom|link|alternate
616     /feed/entry;element missing:atom|author;m
617     /feed/entry;element missing:atom|id
618     /feed/entry;element missing:atom|title
619     /feed/entry;element missing:atom|updated
620     /feed/entry;element missing:atom|link|alternate
621    
622     #data
623     <feed xmlns="http://www.w3.org/2005/Atom">
624     <id>about:</id>
625     <link rel="self" href=""/>
626     <updated>2000-01-02T03:04:05Z</updated>
627     <title>x</title>
628     <entry>
629     </entry>
630     <entry>
631     <author><name>x</name></author>
632     </entry>
633     </feed>
634     #errors
635     /feed;element missing:atom|author;m
636     /feed/entry;element missing:atom|id
637     /feed/entry;element missing:atom|title
638     /feed/entry;element missing:atom|updated
639     /feed/entry;element missing:atom|link|alternate
640     /feed/entry;element missing:atom|author;m
641     /feed/entry;element missing:atom|id
642     /feed/entry;element missing:atom|title
643     /feed/entry;element missing:atom|updated
644     /feed/entry;element missing:atom|link|alternate
645    
646     #data
647     <feed xmlns="http://www.w3.org/2005/Atom">
648     <id>about:</id>
649     <link rel="self" href=""/>
650     <updated>2000-01-02T03:04:05Z</updated>
651     <title>x</title>
652     <entry>
653     <author><name>x</name></author>
654     </entry>
655     <entry>
656     </entry>
657     <entry>
658     </entry>
659     </feed>
660     #errors
661     /feed;element missing:atom|author;m
662     /feed/entry;element missing:atom|id
663     /feed/entry;element missing:atom|title
664     /feed/entry;element missing:atom|updated
665     /feed/entry;element missing:atom|link|alternate
666     /feed/entry;element missing:atom|author;m
667     /feed/entry;element missing:atom|id
668     /feed/entry;element missing:atom|title
669     /feed/entry;element missing:atom|updated
670     /feed/entry;element missing:atom|link|alternate
671     /feed/entry;element missing:atom|author;m
672     /feed/entry;element missing:atom|id
673     /feed/entry;element missing:atom|title
674     /feed/entry;element missing:atom|updated
675     /feed/entry;element missing:atom|link|alternate
676 wakaba 1.5
677     #data
678     <entry xmlns="http://www.w3.org/2005/Atom">
679     <id>about:</id>
680     <author><name>x</name></author>
681     <link rel="alternate" href=""/>
682     <updated>2000-01-02T03:04:05Z</updated>
683     <title>x</title>
684     <content src="x"/>
685     </entry>
686     #errors
687     /entry;element missing:atom|summary;m
688     /entry/content;attribute missing:type;s
689    
690     #data
691     <entry xmlns="http://www.w3.org/2005/Atom">
692     <id>about:</id>
693     <author><name>x</name></author>
694     <link rel="alternate" href=""/>
695     <updated>2000-01-02T03:04:05Z</updated>
696     <title>x</title>
697     <content src=""/>
698     <summary/>
699     </entry>
700     #errors
701     /entry/content;attribute missing:type;s
702    
703     #data
704     <entry xmlns="http://www.w3.org/2005/Atom">
705     <id>about:</id>
706     <author><name>x</name></author>
707     <link rel="alternate" href=""/>
708     <updated>2000-01-02T03:04:05Z</updated>
709     <title>x</title>
710     <content type="image/png"/>
711     </entry>
712     #errors
713     /entry;element missing:atom|summary;m
714    
715     #data
716     <entry xmlns="http://www.w3.org/2005/Atom">
717     <id>about:</id>
718     <author><name>x</name></author>
719     <link rel="alternate" href=""/>
720     <updated>2000-01-02T03:04:05Z</updated>
721     <title>x</title>
722     <content type="message/rfc822"/>
723     </entry>
724     #errors
725     /entry/content/@type;IMT:composite;m
726     /entry;element missing:atom|summary;m

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24