swerc

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

commit 90de3813d4a5c9d09238a94f7087b94d69c645d4
parent 9d814046690140ce89ad0fb0e9f3f396e1a654eb
Author: uriel@vm41.cat-v.org <unknown>
Date:   Sat,  8 Aug 2009 05:32:42 +0200

Add lastmod support to sitemap.xml
Diffstat:
Mtpl/sitemap.tpl | 10+++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/tpl/sitemap.tpl b/tpl/sitemap.tpl @@ -5,6 +5,14 @@ tmpfile=/tmp/werc_sitemap_$pid.txt tmpfilex=/tmp/werc_sitemapx_$pid.txt saveddf=$dirfilter +MON2NUM='s/Jan/01/; s/Feb/02/; s/Mar/03/; s/Apr/04/; s/May/05/; s/Jun/06/; s/Jul/07/; s/Aug/08/; s/Sep/09/; s/Oct/10/; s/Nov/11/; s/Dec/12/;' + +fn get_mdate { + t=`{mtime $1} + t=`{date $t(1) | sed -e $MON2NUM -e 's/ ([0-9]) / 0\1 /g'} # Make sure day of the month is two digits. + echo $t(6)^'-'^$t(2)^'-'^$t(3) +} + fn listDir { d=$1 dirfilter=$saveddf @@ -22,7 +30,7 @@ fn listDir { n=`{echo /$u|sed 's/[\-_]/ /g; s,.*/([^/]+)/?$,\1,'} echo '<li><a href="'$u'">'^$"n^'</a>' $"desc '</li>' echo $base_url^$u >> $tmpfile - echo '<url><loc>'$base_url^$u'</loc></url>' >> $tmpfilex + echo '<url><loc>'$base_url^$u'</loc><lastmod>'^`{get_mdate $i}^'</lastmod></url>' >> $tmpfilex if(test -d $i) @{ listDir $i } }