ref: 159d4eb8e145e679d6a67a69cef2448f9f85869b
parent: 141fdd0d4392abdcb6a29f1ee1e8381e28abddad
author: uriel <uriel@engel.se.cat-v.org>
date: Thu Dec 11 21:24:19 EST 2008
Clean up atom feed template a bit.
--- a/lib/feeds/atom.tpl
+++ b/lib/feeds/atom.tpl
@@ -2,12 +2,13 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- XXX TODO: See for more info:http://www.tbray.org/ongoing/When/200x/2005/07/27/Atomic-RSS -->
+<!-- TODO: See for more info:http://www.tbray.org/ongoing/When/200x/2005/07/27/Atomic-RSS -->
%{ fn statpost {f = $1
updated = `{/bin/date --rfc-3339'=seconds' -r $f |sed 's/ /T/'} + # XXX $post_uri is broken produces output that includes full file path (eg., /gsoc/www/...)
post_uri=$baseuri^`{cleanname `{echo $f | sed -e 's,^'$sitedir',,' -e 's/\.(md|tpl)$//g'}} title=`{basename $f | sed 's/^[0-9\-]*_(.*)\.md$/\1/; s/_/ /g' } date=`{/bin/date -Rd `{basename $f |sed 's/(^[0-9\-]*).*/\1/; s/-[0-9]$//'}}@@ -15,7 +16,7 @@
stat=`{stat -c '%Y %U' $f} #mdate=`{/bin/date -Rd $stat(1)} # Not used because it is unreliableby=$stat(2)
- ifs=() { summary=`{cat $f | crop_text 1024 | $formatter } }+ ifs=() { summary=`{cat $f | crop_text 512 ... | $formatter } }}
updated = `{/bin/date --rfc-3339'=seconds' |sed 's/ /T/'} %}
@@ -39,7 +40,7 @@
statpost $f
%}
<entry>
- <!-- <id>tag:intertwingly.net,2004:2899</id> Maybe we should be smarter, see: http://diveintomark.org/archives/2004/05/28/howto-atom-id -->
+ <!-- Maybe we should be smarter, see: http://diveintomark.org/archives/2004/05/28/howto-atom-id, example: <id>tag:intertwingly.net,2004:2899</id> -->
<id>%($post_uri%)</id>
<link href="%($post_uri%)"/>
<title>%($title%)</title>
@@ -46,10 +47,6 @@
<!-- <link rel="replies" href="2899.atom" thr:count="0"/> -->
<author>
<name>%($by%)</name>
- <!--
- <email>rubys@intertwingly.net</email>
- <uri>/blog/</uri>
- -->
</author>
--
⑨