swerc

anselm's simpler werc fork
git clone git://git.suckless.org/swerc
Log | Files | Refs | README

commit 1899e85964de503ac992cf6e9a5f1ec92c0ccb44
parent dbf9b9a3154b85245429769de5904407369746b9
Author: uriel@engel.se.cat-v.org <unknown>
Date:   Tue, 16 Dec 2008 03:46:19 +0100

Tab/spaces consistency in atom template.
Diffstat:
Mlib/feeds/atom.tpl | 22+++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/lib/feeds/atom.tpl b/lib/feeds/atom.tpl @@ -5,18 +5,18 @@ Content-Type: application/atom+xml <!-- TODO: See for more info:http://www.tbray.org/ongoing/When/200x/2005/07/27/Atomic-RSS --> %{ fn statpost { - f = $1 + 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]$//'}} - # TODO: use mtime(1) and ls(1) instead of lunix's stat(1) - stat=`{stat -c '%Y %U' $f} - #mdate=`{/bin/date -Rd $stat(1)} # Not used because it is unreliable - by=$stat(2) - ifs=() { summary=`{cat $f | crop_text 512 ... | $formatter } } + 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]$//'}} + # TODO: use mtime(1) and ls(1) instead of lunix's stat(1) + stat=`{stat -c '%Y %U' $f} + #mdate=`{/bin/date -Rd $stat(1)} # Not used because it is unreliable + by=$stat(2) + ifs=() { summary=`{cat $f | crop_text 512 ... | $formatter } } } updated = `{/bin/date --rfc-3339'=seconds' |sed 's/ /T/'} %} @@ -36,7 +36,7 @@ updated = `{/bin/date --rfc-3339'=seconds' |sed 's/ /T/'} <link href="."/> %{ - for(f in `{sortedBlogPostList $blogDirs}) { + for(f in `{sortedBlogPostList $blogDirs}) { statpost $f %} <entry> @@ -58,7 +58,7 @@ updated = `{/bin/date --rfc-3339'=seconds' |sed 's/ /T/'} </entry> -% } +% } </feed>