You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@abdera.apache.org by ve...@apache.org on 2012/08/11 23:15:47 UTC

svn commit: r1372029 [15/17] - in /abdera/java/trunk: ./ parser/src/test/java/org/apache/abdera/test/parser/stax/ parser/src/test/resources/ parser/src/test/resources/feedvalidator.org/ parser/src/test/resources/feedvalidator.org/testcases/ parser/src/...

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,17 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  contributor name must not include HTML
+  Expect:       !ContainsHTML{parent:contributor,element:name}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+
+<contributor>
+<name>Valid name</name>
+</contributor>
+
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name_blank.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name_blank.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name_blank.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name_blank.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,17 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  contributor name can not be blank
+  Expect:       NotBlank{parent:contributor,element:name}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+
+<contributor>
+<name></name>
+</contributor>
+
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name_blank.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name_cdata.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name_cdata.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name_cdata.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name_cdata.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,17 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  valid contributor name (in CDATA)
+  Expect:       !ContainsHTML{parent:contributor,element:name}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+
+<contributor>
+<name><![CDATA[Valid name]]></name>
+</contributor>
+
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name_cdata.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name_contains_html.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name_contains_html.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name_contains_html.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name_contains_html.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,18 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  contributor name must not include HTML
+  Expect:       ContainsHTML{parent:contributor,element:name}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+
+<contributor>
+<name>&lt;b&gt;Invalid name&lt;/b&gt;</name>
+</contributor>
+
+</feed>
+

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name_contains_html.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name_contains_html_cdata.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name_contains_html_cdata.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name_contains_html_cdata.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name_contains_html_cdata.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,17 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  contributor name must not include HTML (even in CDATA)
+  Expect:       ContainsHTML{parent:contributor,element:name}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+
+<contributor>
+<name><![CDATA[<b>Invalid name</b>]]></name>
+</contributor>
+
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name_contains_html_cdata.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name_missing.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name_missing.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name_missing.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name_missing.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,16 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  contributor name is required
+  Expect:       MissingElement{parent:contributor,element:name}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+
+<contributor>
+</contributor>
+
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name_missing.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name_multiple.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name_multiple.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name_multiple.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name_multiple.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,18 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  can only have one contributor name
+  Expect:       DuplicateElement{parent:contributor,element:name}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+
+<contributor>
+<name>Validation ain't what it used to be</name>
+<name>Validation ain't what it used to be</name>
+</contributor>
+
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_name_multiple.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_unknown_element.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_unknown_element.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_unknown_element.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_unknown_element.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,17 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  undefined feed element in contributor
+  Expect:       UndefinedElement{parent:contributor,element:foo}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+
+<contributor>
+<foo>bar</foo>
+</contributor>
+
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_unknown_element.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_url_contains_comma.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_url_contains_comma.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_url_contains_comma.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_url_contains_comma.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,17 @@
+<!--
+  Contributor:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  valid feed contributor url (even with comma)
+  Expect:       ValidURI{element:uri}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+
+<contributor>
+<uri>http://www.wired.com/news/school/0,1383,54916,00.html</uri>
+</contributor>
+
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_url_contains_comma.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_url_ftp.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_url_ftp.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_url_ftp.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_url_ftp.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,17 @@
+<!--
+  Contributor:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  valid contributor url (ftp)
+  Expect:       ValidURI{parent:contributor,element:uri}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+
+<contributor>
+<uri>ftp://example.com/</uri>
+</contributor>
+
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_url_ftp.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_url_http.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_url_http.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_url_http.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_url_http.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,17 @@
+<!--
+  Contributor:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  valid contributor url (http)
+  Expect:       ValidURI{parent:contributor,element:uri}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+
+<contributor>
+<uri>http://example.com/</uri>
+</contributor>
+
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_url_http.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_url_multiple.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_url_multiple.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_url_multiple.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_url_multiple.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,16 @@
+<!--
+  Contributor:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  can only have one feed contributor url
+  Expect:       DuplicateElement{parent:contributor,element:uri}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<contributor>
+<uri>http://example.com/</uri>
+<uri>http://example.com/</uri>
+</contributor>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_contributor_url_multiple.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_copyright_is_inline.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_copyright_is_inline.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_copyright_is_inline.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_copyright_is_inline.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,15 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  copyright is actually inline code
+  Expect:       !ContainsUndeclaredHTML{parent:feed,element:copyright}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<copyright type="application/xhtml+xml">
+  <code>&lt;p&gt;foo&lt;/p&gt;</code>
+</rights>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_copyright_is_inline.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_copyright_is_inline_2.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_copyright_is_inline_2.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_copyright_is_inline_2.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_copyright_is_inline_2.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,15 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  copyright actually is inline code
+  Expect:       !NotInline{parent:feed,element:copyright}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<copyright type="text/html" mode="xml">
+  <code>&lt;p&gt;foo&lt;/p&gt;</code>
+</rights>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_copyright_is_inline_2.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_copyright_missing.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_copyright_missing.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_copyright_missing.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_copyright_missing.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,12 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  feed copyright is optional
+  Expect:       !MissingElement{parent:feed,element:copyright}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_copyright_missing.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_generator_contains_comma.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_generator_contains_comma.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_generator_contains_comma.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_generator_contains_comma.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  valid generator URL (even with comma)
+  Expect:       ValidURI{parent:feed,element:generator,attr:uri}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<generator uri="http://www.wired.com/news/school/0,1383,54916,00.html"></generator>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_generator_contains_comma.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_generator_name.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_generator_name.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_generator_name.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_generator_name.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  valid generator name
+  Expect:       !InvalidValue{parent:feed,element:generator}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<generator>Pretty much any name is acceptable</generator>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_generator_name.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_generator_not_really_uri.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_generator_not_really_uri.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_generator_not_really_uri.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_generator_not_really_uri.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  Invalid generator URL (not really URI)
+  Expect:       InvalidLink{parent:feed,element:generator,attr:uri}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<generator uri="http:/example.com"></generator>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_generator_not_really_uri.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_blank.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_blank.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_blank.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_blank.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  feed id must not be blank
+  Expect:       InvalidFullLink{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id></id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_blank.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_contains_comma.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_contains_comma.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_contains_comma.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_contains_comma.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  valid feed ID (even with comma)
+  Expect:       ValidURI{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>http://www.wired.com/news/school/0,1383,54916,00.html</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_contains_comma.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_full_uri.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_full_uri.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_full_uri.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_full_uri.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  valid feed ID
+  Expect:       ValidURI{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>http://example.com/1</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_full_uri.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_multiple.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_multiple.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_multiple.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_multiple.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,14 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  can only have one feed id
+  Expect:       DuplicateElement{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>http://example.com/1</id>
+<id>http://example.com/1</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_multiple.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_not_full_uri.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_not_full_uri.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_not_full_uri.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_not_full_uri.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  feed id must be URI
+  Expect:       InvalidLink{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>example.com</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_not_full_uri.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_not_urn.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_not_urn.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_not_urn.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_not_urn.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  Ceci n'est pas une URN
+  Expect:       !ValidURN{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>foo urn:diveintomark-org:20030729:1</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_not_urn.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_not_urn2.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_not_urn2.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_not_urn2.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_not_urn2.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  Ceci n'est pas une URN 2
+  Expect:       !InvalidURN{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>foo urn:diveintomark-org:20030729:1</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_not_urn2.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  valid TAG
+  Expect:       ValidTAG{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>tag:diveintomark.org,2003:blog-14:post-19</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_2.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_2.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_2.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_2.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  valid TAG (with month)
+  Expect:       ValidTAG{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>tag:diveintomark.org,2003-11:blog-14:post-19</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_2.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_3.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_3.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_3.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_3.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  valid TAG (with month and day)
+  Expect:       ValidTAG{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>tag:diveintomark.org,2003-11-30:blog-14:post-19</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_3.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_4.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_4.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_4.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_4.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  valid TAG (numeric-only specific)
+  Expect:       ValidTAG{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>tag:diveintomark.org,2003-11-30:19</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_4.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_5.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_5.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_5.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_5.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  valid TAG (alpha-only specific)
+  Expect:       ValidTAG{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>tag:diveintomark.org,2003-11-30:foo</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_5.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_6.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_6.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_6.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_6.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  valid TAG (email tagAuthority)
+  Expect:       ValidTAG{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>tag:me@example.com,2003-11-30:foo</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_6.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_7.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_7.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_7.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_7.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  valid TAG (Blosxom-style)
+  Expect:       ValidTAG{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>tag:raelity.org,2003:/</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_7.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_authority_contains_comma.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_authority_contains_comma.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_authority_contains_comma.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_authority_contains_comma.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  invalid TAG (tagAuthority contains comma)
+  Expect:       InvalidTAG{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>tag:diveintomark,org,2003-11-30:foo</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_authority_contains_comma.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_authority_contains_digit.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_authority_contains_digit.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_authority_contains_digit.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_authority_contains_digit.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  valid TAG (tagAuthority contains hyphen)
+  Expect:       ValidTAG{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>tag:example90.com,2003-11-30:foo</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_authority_contains_digit.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_authority_contains_hyphen.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_authority_contains_hyphen.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_authority_contains_hyphen.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_authority_contains_hyphen.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  valid TAG (tagAuthority contains hyphen)
+  Expect:       ValidTAG{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>tag:diveintomark-org,2003-11-30:foo</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_authority_contains_hyphen.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_authority_contains_space.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_authority_contains_space.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_authority_contains_space.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_authority_contains_space.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  invalid TAG (tagAuthority contains space)
+  Expect:       InvalidTAG{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>tag:diveintomark org,2003-11-30:foo</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_authority_contains_space.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_authority_contains_wacky_chars.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_authority_contains_wacky_chars.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_authority_contains_wacky_chars.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_authority_contains_wacky_chars.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  invalid TAG (tagAuthority contains *)
+  Expect:       InvalidTAG{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>tag:diveintomark*org,2003-11-30:foo</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_authority_contains_wacky_chars.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_1_digit_month.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_1_digit_month.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_1_digit_month.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_1_digit_month.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  invalid TAG (tagAuthority date month must be two digits)
+  Expect:       InvalidTAG{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>tag:diveintomark.org,2003-9-11:foo</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_1_digit_month.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_2_digit_year.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_2_digit_year.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_2_digit_year.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_2_digit_year.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  invalid TAG (tagAuthority date may not use 2-digit year)
+  Expect:       InvalidTAG{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>tag:diveintomark.org,03-11-24:foo</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_2_digit_year.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_2_digit_year_2.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_2_digit_year_2.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_2_digit_year_2.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_2_digit_year_2.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  invalid TAG (tagAuthority date may not use 2-digit year)
+  Expect:       InvalidTAG{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>tag:diveintomark.org,03-11:foo</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_2_digit_year_2.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_2_digit_year_3.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_2_digit_year_3.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_2_digit_year_3.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_2_digit_year_3.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  invalid TAG (tagAuthority date may not use 2-digit year)
+  Expect:       InvalidTAG{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>tag:diveintomark.org,03:foo</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_2_digit_year_3.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_contains_space.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_contains_space.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_contains_space.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_contains_space.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  invalid TAG (tagAuthority date may not contain spaces)
+  Expect:       InvalidTAG{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>tag:diveintomark.org,2003 01-01:foo</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_contains_space.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_contains_space_2.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_contains_space_2.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_contains_space_2.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_contains_space_2.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  invalid TAG (tagAuthority date may not contain spaces)
+  Expect:       InvalidTAG{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>tag:diveintomark.org,2003-01 01:foo</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_contains_space_2.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_contains_space_3.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_contains_space_3.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_contains_space_3.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_contains_space_3.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  invalid TAG (tagAuthority date may not contain spaces)
+  Expect:       InvalidTAG{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>tag:diveintomark.org,2003 01 01:foo</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_contains_space_3.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_cutoff.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_cutoff.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_cutoff.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_cutoff.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  invalid TAG (tagAuthority date cut off in middle)
+  Expect:       InvalidTAG{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>tag:diveintomark.org,2003-:foo</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_cutoff.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_cutoff_2.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_cutoff_2.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_cutoff_2.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_cutoff_2.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  invalid TAG (tagAuthority date cut off in mid-month)
+  Expect:       InvalidTAG{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>tag:diveintomark.org,2003-0:foo</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_cutoff_2.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_cutoff_3.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_cutoff_3.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_cutoff_3.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_cutoff_3.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  invalid TAG (tagAuthority date cut off after month)
+  Expect:       InvalidTAG{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>tag:diveintomark.org,2003-09-:foo</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_cutoff_3.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_cutoff_4.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_cutoff_4.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_cutoff_4.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_cutoff_4.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  invalid TAG (tagAuthority date cut off mid-day)
+  Expect:       InvalidTAG{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>tag:diveintomark.org,2003-09-1:foo</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_cutoff_4.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_missing_year.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_missing_year.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_missing_year.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_missing_year.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  invalid TAG (tagAuthority date missing year)
+  Expect:       InvalidTAG{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>tag:diveintomark.org,11-24:foo</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_missing_year.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_no_hyphens.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_no_hyphens.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_no_hyphens.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_no_hyphens.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  invalid TAG (tagAuthority date must contain hyphens)
+  Expect:       InvalidTAG{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>tag:diveintomark.org,20030101:foo</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_no_hyphens.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_no_hyphens_2.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_no_hyphens_2.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_no_hyphens_2.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_no_hyphens_2.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  invalid TAG (tagAuthority date must contain hyphens)
+  Expect:       InvalidTAG{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>tag:diveintomark.org,200301:foo</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_no_hyphens_2.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_too_specific.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_too_specific.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_too_specific.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_too_specific.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  invalid TAG (tagAuthority date too specific)
+  Expect:       InvalidTAG{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>tag:diveintomark.org,2003-06-31T14:00:00Z:foo</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_date_too_specific.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_no_date.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_no_date.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_no_date.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_no_date.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,14 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  invalid TAG (tagAuthority missing date)
+  Expect:       InvalidTAG{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>tag:diveintomark.org:foo</id>
+</feed>
+

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_no_date.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_specific_contains_space.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_specific_contains_space.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_specific_contains_space.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_specific_contains_space.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  invalid TAG (specific may not contain spaces)
+  Expect:       InvalidTAG{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>tag:diveintomark.org,2003:foo camp</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_specific_contains_space.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_specific_contains_space_2.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_specific_contains_space_2.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_specific_contains_space_2.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_specific_contains_space_2.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  invalid TAG (specific may not contain spaces)
+  Expect:       InvalidTAG{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>tag:diveintomark.org,2003: foo</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_specific_contains_space_2.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_specific_contains_wacky_chars.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_specific_contains_wacky_chars.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_specific_contains_wacky_chars.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_specific_contains_wacky_chars.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  invalid TAG (specific may not contain non-RFC-2396 characters)
+  Expect:       InvalidTAG{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>tag:diveintomark.org,2003:{foo}</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_specific_contains_wacky_chars.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_specific_contains_wacky_chars_2.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_specific_contains_wacky_chars_2.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_specific_contains_wacky_chars_2.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_specific_contains_wacky_chars_2.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  invalid TAG (specific may not contain non-RFC-2396 characters)
+  Expect:       InvalidTAG{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>tag:diveintomark.org,2003:foo]</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_specific_contains_wacky_chars_2.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_specific_contains_wacky_chars_3.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_specific_contains_wacky_chars_3.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_specific_contains_wacky_chars_3.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_specific_contains_wacky_chars_3.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  invalid TAG (specific may not contain non-RFC-2396 characters)
+  Expect:       InvalidTAG{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>tag:diveintomark.org,2003:[foo</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_tag_specific_contains_wacky_chars_3.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  valid URN
+  Expect:       ValidURN{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>urn:diveintomark-org:1</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_multiple_colons.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_multiple_colons.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_multiple_colons.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_multiple_colons.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  valid URN (namespace specific string may contain colons)
+  Expect:       ValidURN{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>urn:diveintomark-org:20030729:1</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_multiple_colons.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_nid_contains_period.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_nid_contains_period.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_nid_contains_period.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_nid_contains_period.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  invalid URN (namespace identifier contains .)
+  Expect:       InvalidURN{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>urn:diveintomark.org:1</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_nid_contains_period.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_nid_contains_plus.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_nid_contains_plus.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_nid_contains_plus.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_nid_contains_plus.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  invalid URN (namespace identifier contains +)
+  Expect:       InvalidURN{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>urn:diveintomark+org:1</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_nid_contains_plus.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_nid_contains_slash.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_nid_contains_slash.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_nid_contains_slash.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_nid_contains_slash.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  invalid URN (namespace identifier contains /)
+  Expect:       InvalidURN{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>urn:diveintomark/org:1</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_nid_contains_slash.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_nid_starts_with_hyphen.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_nid_starts_with_hyphen.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_nid_starts_with_hyphen.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_nid_starts_with_hyphen.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  invalid URN (namespace identifier starts with -)
+  Expect:       InvalidURN{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>urn:-diveintomark-org:1</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_nid_starts_with_hyphen.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_nss_contains_letters.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_nss_contains_letters.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_nss_contains_letters.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_nss_contains_letters.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  valid URN (namespace specific string contains letters)
+  Expect:       ValidURN{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>urn:diveintomark-org:blog-14:post-123</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_nss_contains_letters.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_upper.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_upper.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_upper.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_upper.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  valid URN
+  Expect:       ValidURN{parent:feed,element:id}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<id>URN:DIVEINTOMARK-ORG:1</id>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_id_urn_upper.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_info_is_inline.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_info_is_inline.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_info_is_inline.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_info_is_inline.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,15 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  info is actually inline code
+  Expect:       !ContainsUndeclaredHTML{parent:feed,element:info}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<info type="application/xhtml+xml">
+  <code>&lt;p&gt;foo&lt;/p&gt;</code>
+</info>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_info_is_inline.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_info_is_inline_2.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_info_is_inline_2.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_info_is_inline_2.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_info_is_inline_2.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,15 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  info actually is inline code
+  Expect:       !NotInline{parent:feed,element:info}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<info type="text/html" mode="xml">
+  <code>&lt;p&gt;foo&lt;/p&gt;</code>
+</info>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_info_is_inline_2.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_info_missing.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_info_missing.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_info_missing.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_info_missing.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,12 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  feed info is optional
+  Expect:       !MissingElement{parent:feed,element:info}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_info_missing.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_info_no_html.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_info_no_html.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_info_no_html.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_info_no_html.xml Sat Aug 11 21:15:23 2012
@@ -0,0 +1,13 @@
+<!--
+  Author:       Sam Ruby (http://intertwingly.net/) and Mark Pilgrim (http://diveintomark.org/)
+  Copyright:    Copyright (c) 2003 Sam Ruby and Mark Pilgrim
+-->
+
+<!--
+  Description:  valid feed info
+  Expect:       ValidElement{parent:feed,element:info}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<info>Valid info</info>
+</feed>

Propchange: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/feed_info_no_html.xml
------------------------------------------------------------------------------
    svn:eol-style = native