Delete some deprecated code left over from the old blog system. - swerc - ansel… | |
git clone git://git.suckless.org/swerc | |
Log | |
Files | |
Refs | |
README | |
--- | |
commit ef9cf301cb990b2bbb45ea337c470de012aac0dc | |
parent 022176396e0840c68c6188c596e8ff922ef79ad1 | |
Author: [email protected] <unknown> | |
Date: Fri, 2 Jan 2009 16:51:59 +0100 | |
Delete some deprecated code left over from the old blog system. | |
Diffstat: | |
M bin/cgilib.rc | 23 ----------------------- | |
1 file changed, 0 insertions(+), 23 deletions(-) | |
--- | |
diff --git a/bin/cgilib.rc b/bin/cgilib.rc | |
@@ -213,7 +213,6 @@ fn auth_user { | |
} | |
- | |
# Blog stuff | |
fn make_blog_post { | |
bdir=$1 | |
@@ -236,28 +235,6 @@ fn make_blog_post { | |
status=Missing blog post arguments $1 $2 $3 | |
} | |
-fn sortedBlogPostList { | |
- # the /./->/|/ are added so we can sort -t| and order only the file name | |
- # NOTE: this breaks if any path element in blogDirs contain '/./' or '|' | |
- if(! ~ $#* 0) | |
- ls $*^'/./' | sed -n 's,/\./,/|/,; /\/[0-9]+.*\.md$/p' | sort -r '-t|'… | |
-} | |
- | |
-fn gen_blog_post_title { | |
- title=`{basename $1 | sed 's/^[0-9\-]*_(.*)\.md$/\1/; s/_/ /g' } | |
- permlink=`{echo $1 | sed 's,^/[a-z/]*www/,/,; s,^sites/[^/]*/*/,/,; s/\.md… | |
- du=`{ls -l $1} | |
- by='' | |
- if(! ~ $#blogAuthor 0) { | |
- if(! ~ $blogAuthor '') | |
- by='By '$"blogAuthor | |
- } | |
- if not if(~ $#blogDirs 1) | |
- by='By '$du(4) | |
- echo '##<a href="'^$"permlink^'">' $"title^'</a> *( '$by Last mod: $du(7 8… | |
-} | |
- | |
- | |
################################### | |
# App framework | |