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 [13/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/entry_issued.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued.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:  valid issued date
+  Expect:       ValidW3CDTFDate{parent:entry,element:published}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<published>2003-07-01T01:55:07-05:00</published>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_bad_day.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_bad_day.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_bad_day.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_bad_day.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:  invalid issued date (bad value for day)
+  Expect:       InvalidRFC3339Date{parent:entry,element:published}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<published>2003-07-32T15:51:30-0500</published>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_bad_day2.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_bad_day2.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_bad_day2.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_bad_day2.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:  invalid issued date (bad value for day - this one is harder than the others)
+  Expect:       InvalidRFC3339Date{parent:entry,element:published}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<published>2003-06-31T15:51:30-0500</published>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_bad_hours.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_bad_hours.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_bad_hours.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_bad_hours.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:  invalid issued date (bad value for hours)
+  Expect:       InvalidRFC3339Date{parent:entry,element:published}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<published>2003-07-01T25:51:30-0500</published>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_bad_minutes.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_bad_minutes.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_bad_minutes.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_bad_minutes.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:  invalid issued date (bad value for minutes)
+  Expect:       InvalidRFC3339Date{parent:entry,element:published}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<published>2003-07-01T01:61:30-0500</published>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_bad_month.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_bad_month.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_bad_month.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_bad_month.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:  invalid issued date (bad value for month)
+  Expect:       InvalidRFC3339Date{parent:entry,element:published}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<published>2003-13-01T15:51:30-0500</published>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_bad_seconds.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_bad_seconds.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_bad_seconds.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_bad_seconds.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:  invalid issued date (bad value for seconds)
+  Expect:       InvalidRFC3339Date{parent:entry,element:published}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<published>2003-07-01T01:55:61-0500</published>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_extra_spaces.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_extra_spaces.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_extra_spaces.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_extra_spaces.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:  invalid issued date (extra spaces around "T" separator)
+  Expect:       InvalidRFC3339Date{parent:entry,element:published}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<published>2003-07-01 T 01:55:07-05:00</published>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_extra_spaces2.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_extra_spaces2.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_extra_spaces2.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_extra_spaces2.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:  invalid issued date (extra spaces around "T" separator)
+  Expect:       InvalidRFC3339Date{parent:entry,element:published}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<published>2003-07-01 T 01:55:07-05:00</published>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_extra_spaces3.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_extra_spaces3.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_extra_spaces3.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_extra_spaces3.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:  invalid issued date (extra spaces before timezone)
+  Expect:       InvalidRFC3339Date{parent:entry,element:published}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<published>2003-07-01T01:55:07 -05:00</published>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_extra_spaces4.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_extra_spaces4.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_extra_spaces4.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_extra_spaces4.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:  invalid issued date (extra spaces before time)
+  Expect:       InvalidRFC3339Date{parent:entry,element:published}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<published>2003-07-01T 01:55:07-05:00</published>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_extra_spaces5.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_extra_spaces5.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_extra_spaces5.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_extra_spaces5.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:  invalid issued date (extra spaces before time separator)
+  Expect:       InvalidRFC3339Date{parent:entry,element:published}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<published>2003-07-01 T01:55:07-05:00</published>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_fractional_second.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_fractional_second.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_fractional_second.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_fractional_second.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:  valid issued date (fractional seconds)
+  Expect:       ValidW3CDTFDate{parent:entry,element:published}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<published>2002-12-31T19:20:30.45+01:00</published>
+</entry>
+</feed>
+

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_hours_minutes.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_hours_minutes.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_hours_minutes.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_hours_minutes.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:  valid W3CDTF, invalid RFC3339 date (missing time zone)
+  Expect:       InvalidRFC3339Date{parent:entry,element:published}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<published>2002-12-31T19:20+01:00</published>
+</entry>
+</feed>
+

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_multiple.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_multiple.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_multiple.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_multiple.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:  can only have one entry issued
+  Expect:       DuplicateElement{parent:entry,element:published}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<published>2003-07-01T01:55:07-05:00</published>
+<published>2003-07-01T01:55:07-05:00</published>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_no_colons.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_no_colons.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_no_colons.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_no_colons.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:  invalid issued date (time must have colons)
+  Expect:       InvalidRFC3339Date{parent:entry,element:published}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<published>2002-12-31T192030+01:00</published>
+</entry>
+</feed>
+

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_no_hyphens.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_no_hyphens.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_no_hyphens.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_no_hyphens.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:  invalid issued date (date must have hyphens)
+  Expect:       InvalidRFC3339Date{parent:entry,element:published}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<published>20021231T19:20:30.45+01:00</published>
+</entry>
+</feed>
+

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_no_t.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_no_t.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_no_t.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_no_t.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:  invalid issued date (no "T" separator between date and time)
+  Expect:       InvalidRFC3339Date{parent:entry,element:published}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<published>2003-07-01 01:55:07-05:00</published>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_no_timezone_colon.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_no_timezone_colon.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_no_timezone_colon.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_no_timezone_colon.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:  invalid issued date (missing colon in timezone)
+  Expect:       InvalidRFC3339Date{parent:entry,element:published}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<published>2003-07-01T01:55:07-0500</published>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_no_year.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_no_year.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_no_year.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_no_year.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:  invalid issued date (no year)
+  Expect:       InvalidRFC3339Date{parent:entry,element:published}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<published>07-01T01:55:07-05:00</published>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_seconds.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_seconds.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_seconds.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_seconds.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:  valid issued date (hours, minutes, and seconds)
+  Expect:       ValidW3CDTFDate{parent:entry,element:published}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<published>2002-12-31T19:20:30+01:00</published>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_utc.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_utc.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_utc.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_utc.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:  valid issued date (UTC)
+  Expect:       ValidW3CDTFDate{parent:entry,element:published}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<published>2002-12-31T19:20:30Z</published>
+</entry>
+</feed>
+

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_wrong_format.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_wrong_format.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_wrong_format.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_issued_wrong_format.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:  issued must be W3CDTF date format
+  Expect:       InvalidRFC3339Date{parent:entry,element:published}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<published>Mon, 31 Dec 2002 14:20:20 GMT</published>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_contains_comma.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_contains_comma.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_contains_comma.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_contains_comma.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:  valid entry link href (even with comma)
+  Expect:       ValidURI{parent:entry,element:href}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<link href="http://www.wired.com/news/school/0,1383,54916,00.html"/>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_ftp.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_ftp.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_ftp.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_ftp.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:  valid entry link href (ftp)
+  Expect:       ValidURI{parent:entry,element:href}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<link href="ftp://example.com/"/>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_href_missing.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_href_missing.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_href_missing.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_href_missing.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:  entry link must include href
+  Expect:       MissingHref{parent:entry,element:link}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<link/>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_http.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_http.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_http.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_http.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:  valid entry link href (http)
+  Expect:       ValidURI{parent:entry,element:href}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<link href="http://example.com/"/>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_multiple.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_multiple.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_multiple.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_multiple.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:  can only have one entry link per type
+  Expect:       DuplicateAtomLink{parent:entry,element:link}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<link rel="alternate" type="text/html" href="http://example.com/"/>
+<link rel="alternate" type="text/html" href="http://example.com/2"/>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_multiple2.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_multiple2.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_multiple2.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_multiple2.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:  can only have one entry link per type
+  Expect:       DuplicateAtomLink{parent:entry,element:link}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<link rel="alternate" type="application/atom+xml" href="http://example.com/index.atom"/>
+<link rel="alternate" type="application/atom+xml" href="http://example.com/index2.atom"/>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_multiple3.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_multiple3.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_multiple3.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_multiple3.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:  multiple alternate links are allowed if the type is different
+  Expect:       !DuplicateAtomLink{parent:entry,element:link}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<link rel="alternate" type="text/html" href="http://example.com/index.html"/>
+<link rel="alternate" type="application/pdf" href="http://example.com/index.pdf"/>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_multiple4.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_multiple4.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_multiple4.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_multiple4.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:  multiple link rel=related links are allowed
+  Expect:       !DuplicateAtomLink{parent:entry,element:link}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<link rel="related" type="text/html" href="http://example.com/index.html"/>
+<link rel="related" type="text/html" href="http://example.com/index2.html"/>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_multiple5.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_multiple5.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_multiple5.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_multiple5.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:  multiple link rel=via links are allowed
+  Expect:       !DuplicateAtomLink{parent:entry,element:link}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<link rel="via" type="text/html" href="http://example.com/index.html"/>
+<link rel="via" type="text/html" href="http://example.com/index2.html"/>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_multiple6.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_multiple6.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_multiple6.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_multiple6.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:  multiple link rel=parent are allowed 
+  Expect:       !DuplicateAtomLink{parent:entry,element:link}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<link rel="parent" type="text/html" href="http://example.org/item/1"/>
+<link rel="parent" type="application/atom+xml" href="tag:example.org,2004-01-01:/item/1"/>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_not_empty.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_not_empty.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_not_empty.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_not_empty.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:  entry link element must be empty
+  Expect:       AtomLinkNotEmpty{parent:entry,element:link}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<link>http://example.com/</link>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_not_multiple.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_not_multiple.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_not_multiple.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_not_multiple.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:  can only have one entry link per type
+  Expect:       !DuplicateAtomLink{parent:entry,element:link}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<link rel="alternate" type="text/html" href="http://example.com/"/>
+<link rel="start" type="application/atom+xml" href="http://example.com/index.atom"/>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_not_multiple2.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_not_multiple2.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_not_multiple2.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_not_multiple2.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:  can only have one entry link per type
+  Expect:       !DuplicateAtomLink{parent:entry,element:link}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<link rel="alternate" type="text/html" href="http://example.com/"/>
+<link rel="alternate" type="application/atom+xml" href="http://example.com/index.atom"/>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_not_multiple3.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_not_multiple3.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_not_multiple3.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_not_multiple3.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:  can only have one entry link per type
+  Expect:       !DuplicateAtomLink{parent:entry,element:link}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<link rel="prev" type="application/atom+xml" href="http://example.com/prev.atom"/>
+<link rel="next" type="application/atom+xml" href="http://example.com/next.atom"/>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_rel_alternate.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_rel_alternate.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_rel_alternate.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_rel_alternate.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:  entry link rel=alternate
+  Expect:       ValidAtomLinkRel{parent:entry,element:link,attr:rel}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<link rel="alternate"/>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_rel_blank.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_rel_blank.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_rel_blank.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_rel_blank.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:  entry link invalid rel (blank)
+  Expect:       AttrNotBlank{parent:entry,element:link,attr:rel}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<link rel=""/>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_rel_invalid.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_rel_invalid.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_rel_invalid.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_rel_invalid.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:  entry link invalid rel
+  Expect:       UnregisteredAtomLinkRel{parent:entry,element:link,attr:rel}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<link rel="invalid"/>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_rel_invalid2.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_rel_invalid2.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_rel_invalid2.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_rel_invalid2.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:  entry link invalid rel=service.foo
+  Expect:       UnregisteredAtomLinkRel{parent:entry,element:link,attr:rel}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<link rel="service.foo"/>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_rel_related.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_rel_related.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_rel_related.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_rel_related.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:  entry link rel=related
+  Expect:       ValidAtomLinkRel{parent:entry,element:link,attr:rel}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<link rel="related"/>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_rel_via.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_rel_via.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_rel_via.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_rel_via.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:  entry link rel=via
+  Expect:       ValidAtomLinkRel{parent:entry,element:link,attr:rel}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<link rel="via"/>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_title.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_title.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_title.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_title.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:  valid entry link title
+  Expect:       ValidTitle{parent:entry,element:link,attr:title}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<link title="pretty much anything is OK here"/>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_title_blank.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_title_blank.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_title_blank.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_title_blank.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:  entry link title may not be blank
+  Expect:       AttrNotBlank{parent:entry,element:link,attr:title}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<link title=""/>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_type.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_type.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_type.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_type.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:  valid entry link type
+  Expect:       ValidMIMEAttribute{parent:entry,element:link,attr:type}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<link type="text/html">
+</link>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_type2.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_type2.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_type2.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_type2.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 entry link type
+  Expect:       ValidMIMEAttribute{parent:entry,element:link,attr:type}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<link type="application/xhtml+xml">
+</link>
+</entry>
+</feed>
+

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_type3.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_type3.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_type3.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_type3.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:  valid entry link type
+  Expect:       ValidMIMEAttribute{parent:entry,element:link,attr:type}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<link type="image/jpeg">
+</link>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_type4.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_type4.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_type4.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_type4.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:  valid entry link type
+  Expect:       ValidMIMEAttribute{parent:entry,element:link,attr:type}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<link type="text/plain">
+</link>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_type_blank.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_type_blank.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_type_blank.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_type_blank.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:  entry link type must be MIME type
+  Expect:       InvalidMIMEType{parent:entry,element:link}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<link type="">
+</link>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_type_not_mime.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_type_not_mime.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_type_not_mime.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_link_type_not_mime.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:  entry link type must be MIME type
+  Expect:       InvalidMIMEType{parent:entry,element:link}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<link type="html">
+</link>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified.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:  valid modified date
+  Expect:       ValidW3CDTFDate{parent:entry,element:updated}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<updated>2003-07-01T01:55:07-05:00</updated>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_bad_day.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_bad_day.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_bad_day.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_bad_day.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:  invalid modified date (bad value for day)
+  Expect:       InvalidRFC3339Date{parent:entry,element:updated}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<updated>2003-07-32T15:51:30-0500</updated>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_bad_day2.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_bad_day2.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_bad_day2.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_bad_day2.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:  invalid modified date (bad value for day - this one is harder than the others)
+  Expect:       InvalidRFC3339Date{parent:entry,element:updated}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<updated>2003-06-31T15:51:30-0500</updated>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_bad_hours.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_bad_hours.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_bad_hours.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_bad_hours.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:  invalid modified date (bad value for hours)
+  Expect:       InvalidRFC3339Date{parent:entry,element:updated}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<updated>2003-07-01T25:51:30-0500</updated>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_bad_minutes.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_bad_minutes.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_bad_minutes.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_bad_minutes.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:  invalid modified date (bad value for minutes)
+  Expect:       InvalidRFC3339Date{parent:entry,element:updated}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<updated>2003-07-01T01:61:30-0500</updated>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_bad_month.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_bad_month.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_bad_month.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_bad_month.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:  invalid modified date (bad value for month)
+  Expect:       InvalidRFC3339Date{parent:entry,element:updated}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<updated>2003-13-01T15:51:30-0500</updated>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_bad_seconds.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_bad_seconds.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_bad_seconds.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_bad_seconds.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:  invalid modified date (bad value for seconds)
+  Expect:       InvalidRFC3339Date{parent:entry,element:updated}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<updated>2003-07-01T01:55:61-0500</updated>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_extra_spaces.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_extra_spaces.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_extra_spaces.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_extra_spaces.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:  invalid modified date (extra spaces around "T" separator)
+  Expect:       InvalidRFC3339Date{parent:entry,element:updated}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<updated>2003-07-01 T 01:55:07-05:00</updated>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_extra_spaces2.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_extra_spaces2.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_extra_spaces2.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_extra_spaces2.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:  invalid modified date (extra spaces around "T" separator)
+  Expect:       InvalidRFC3339Date{parent:entry,element:updated}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<updated>2003-07-01 T 01:55:07-05:00</updated>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_extra_spaces3.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_extra_spaces3.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_extra_spaces3.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_extra_spaces3.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:  invalid modified date (extra spaces before timezone)
+  Expect:       InvalidRFC3339Date{parent:entry,element:updated}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<updated>2003-07-01T01:55:07 -05:00</updated>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_extra_spaces4.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_extra_spaces4.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_extra_spaces4.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_extra_spaces4.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:  invalid modified date (extra spaces before time)
+  Expect:       InvalidRFC3339Date{parent:entry,element:updated}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<updated>2003-07-01T 01:55:07-05:00</updated>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_extra_spaces5.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_extra_spaces5.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_extra_spaces5.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_extra_spaces5.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:  invalid modified date (extra spaces before time separator)
+  Expect:       InvalidRFC3339Date{parent:entry,element:updated}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<updated>2003-07-01 T01:55:07-05:00</updated>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_fractional_second.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_fractional_second.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_fractional_second.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_fractional_second.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:  valid modified date (fractional seconds)
+  Expect:       ValidW3CDTFDate{parent:entry,element:updated}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<updated>2002-12-31T19:20:30.45+01:00</updated>
+</entry>
+</feed>
+

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_hours_minutes.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_hours_minutes.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_hours_minutes.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_hours_minutes.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:  valid W3CDTF, invalid RRC339 date (missing timezone)
+  Expect:       InvalidRFC3339Date{parent:entry,element:updated}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<updated>2002-12-31T19:20+01:00</updated>
+</entry>
+</feed>
+

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_missing.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_missing.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_missing.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_missing.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:  entry link is required
+  Expect:       MissingElement{parent:entry,element:updated}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_multiple.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_multiple.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_multiple.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_multiple.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:  can only have one entry modified
+  Expect:       DuplicateElement{parent:entry,element:updated}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<updated>2003-07-01T01:55:07-05:00</updated>
+<updated>2003-07-01T01:55:07-05:00</updated>
+</entry>
+</feed>

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_no_colons.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_no_colons.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_no_colons.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_no_colons.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:  invalid modified date (time must have colons)
+  Expect:       InvalidRFC3339Date{parent:entry,element:updated}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<updated>2002-12-31T192030+01:00</updated>
+</entry>
+</feed>
+

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

Added: abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_no_hyphens.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_no_hyphens.xml?rev=1372029&view=auto
==============================================================================
--- abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_no_hyphens.xml (added)
+++ abdera/java/trunk/parser/src/test/resources/feedvalidator.org/testcases/atom/must/entry_modified_no_hyphens.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:  invalid modified date (date must have hyphens)
+  Expect:       InvalidRFC3339Date{parent:entry,element:updated}
+-->
+
+<feed xmlns="http://www.w3.org/2005/Atom">
+<entry>
+<updated>20021231T19:20:30.45+01:00</updated>
+</entry>
+</feed>
+