def444ac29
Other minnor cleanups.
64 lines
1.7 KiB
Smarty
64 lines
1.7 KiB
Smarty
<h1>Site map</h1>
|
|
|
|
%{
|
|
tmpfile=/tmp/werc_sitemap_$pid.txt
|
|
echo '' > $tmpfile
|
|
saveddf = $dirfilter
|
|
|
|
fn getMdDesc {
|
|
sed 's/^(.......................................................................................................[^ ]*).*$/\1/g; 1q' < $1
|
|
}
|
|
|
|
fn listDir {
|
|
d=$1
|
|
dirfilter = $saveddf
|
|
blogDirs = ()
|
|
if (test -f $d/_werc/config)
|
|
. $d/_werc/config
|
|
|
|
echo '<ul>'
|
|
|
|
# Don't hide blog dirs for now
|
|
#if (! ~ $#blogDirs 0 || ~ $1 */blog */Blog )
|
|
# echo ''
|
|
#if not
|
|
if(! ~ $#redirectPermanent 1)
|
|
{
|
|
|
|
for ( i in `{ ls -d $d/*/ $d/*.md $d/*.html $d/*.txt >[2]/dev/null |sed $dirfilter} ) {
|
|
desc = ''
|
|
if (test -f $i.md) {
|
|
desc = `{ getMdDesc $i.md }
|
|
}
|
|
if (test -f $i/index.md) {
|
|
desc = `{ getMdDesc $i/index.md }
|
|
}
|
|
if (test -f $i.html) {
|
|
# H1 is not reliable because htmlroff doesn't use it :(
|
|
#desc = `{ cat $i.html |sed 32q | grep '<[Hh]1>' |sed 's/<[Hh]1>(.*)(<\/[Hh]1>|$)/\1/;s/<[^>]*>//g;1q' }
|
|
# Pick the first line of body instead
|
|
desc = `{ /bin/sed -e '0,/<[Bb][Oo][Dd][Yy]/d;s/<[^>]*>//g;/^$/d' < $i.html >[2]/dev/null | sed 1q }
|
|
}
|
|
if (! ~ $desc '')
|
|
desc = ' - '$"desc
|
|
tit = `{basename $i|sed 's/_/ /g'}
|
|
echo '<li><a style="text-transform: capitalize" href="/'$i'">'^$"tit^'</a>' $desc '</li>'
|
|
echo -n $baseuri^$i >> $tmpfile
|
|
if (test -d $i) {
|
|
echo / >> $tmpfile
|
|
@{ listDir $i }
|
|
}
|
|
if not echo >> $tmpfile
|
|
}
|
|
}
|
|
echo '</ul>'
|
|
}
|
|
|
|
cd $sitedir
|
|
listDir .
|
|
|
|
cp $tmpfile ./sitemap.txt
|
|
rm $tmpfile
|
|
|
|
%}
|