]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/commitdiff
web commit by http://id.inelegant.org/
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Mon, 19 Feb 2007 02:37:39 +0000 (02:37 +0000)
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Mon, 19 Feb 2007 02:37:39 +0000 (02:37 +0000)
doc/patchqueue/atom-category-fix.mdwn [new file with mode: 0644]

diff --git a/doc/patchqueue/atom-category-fix.mdwn b/doc/patchqueue/atom-category-fix.mdwn
new file mode 100644 (file)
index 0000000..ca4dbcc
--- /dev/null
@@ -0,0 +1,17 @@
+The Atom feed fails validation at http://feedvalidator.org/ because the `<category>` tags are syntactically incorrect ([spec](http://www.atomenabled.org/developers/syndication/atom-format-spec.php#element.category)). With this patch it validates.
+
+<pre>
+Index: templates/atomitem.tmpl
+===================================================================
+--- templates/atomitem.tmpl     (revision 2640)
++++ templates/atomitem.tmpl     (working copy)
+@@ -8,7 +8,7 @@
+        <link href="<TMPL_VAR PERMALINK>"/>
+        <TMPL_IF NAME="CATEGORIES">
+        <TMPL_LOOP NAME="CATEGORIES">
+-       <category><TMPL_VAR CATEGORY></category>
++       <category term="<TMPL_VAR CATEGORY>" />
+        </TMPL_LOOP>
+        </TMPL_IF>
+        <updated><TMPL_VAR DATE_3339></updated>
+</pre>
\ No newline at end of file