diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-02-19 02:40:07 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-02-19 02:40:07 +0000 |
commit | 62aaf67a32ada70d1eaa5f29cf80824642eeb7ff (patch) | |
tree | 77ca14d8a2e88c1cb0fcef6b7d9e6e49729f4465 /doc | |
parent | 33f3db21040a05e29f6418afe37109bd9c7b49ae (diff) |
web commit by http://id.inelegant.org/: Markdown ate my previous attempt at pasting the patch in-line; apologies if this has clobbered it.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/patchqueue/atom-category-fix.mdwn | 28 |
1 files changed, 13 insertions, 15 deletions
diff --git a/doc/patchqueue/atom-category-fix.mdwn b/doc/patchqueue/atom-category-fix.mdwn index ca4dbcc01..199f769f8 100644 --- a/doc/patchqueue/atom-category-fix.mdwn +++ b/doc/patchqueue/atom-category-fix.mdwn @@ -1,17 +1,15 @@ 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 + 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>
\ No newline at end of file |