commit 2ec590ca7cc00a5706bb9581d59c7e0d2615b280
parent b57d8fabb99150ba31a8223ac551632834233a31
Author: uriel@suckless.org <unknown>
Date: Wed, 27 Aug 2008 05:27:40 +0200
Comment out broken/unused code, plus some minnor debug improvements and a cat-v.org specific hack
Diffstat:
4 files changed, 15 insertions(+), 8 deletions(-)
diff --git a/bin/controller.rc b/bin/controller.rc
@@ -230,7 +230,7 @@ fn genbody {
if(! ~ $#debug 0)
- dprint $SERVER_NAME^$REQUEST_URI^' - '^$"HTTP_USER_AGENT
+ dprint ' ' $SERVER_NAME^$REQUEST_URI^' - '^$"HTTP_USER_AGENT
if (! ~ $args '') {
@@ -284,6 +284,10 @@ if (! ~ $#sidebar 0)
body=$sitedir/$body
rssuri=$uri
+
+#if(~ $body */index)
+ #perm_redirect `{ echo $REQUEST_URI | sed 's,/index$,/,' }
+
if (test -d $body) {
if(! ~ $body */)
perm_redirect $REQUEST_URI^'/'
@@ -334,7 +338,7 @@ fn statpost {
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]$//'}}
stat=`{stat -c '%Y %U' $f}
- mdate=`{/bin/date -Rd @$stat(1)}
+ #mdate=`{/bin/date -Rd $stat(1)} # Not used because it is unreliable
uri=$baseuri^`{cleanname `{echo -n $uri | sed 's/\.(md|tpl)//g'}}
by=$stat(2)
ifs=() {
diff --git a/bin/hgweb.config b/bin/hgweb.config
@@ -1,6 +1,6 @@
[web]
style = gitweb
-allow_archive = bz2 zip
+allow_archive = bz2
#[paths]
#w9 = /gsoc/hg/w9/
diff --git a/inc/headers.tpl b/inc/headers.tpl
@@ -27,6 +27,7 @@ Content-Type: text/html
%($extraHeaders%)
+ <meta name="verify-v1" content="6zEoK0WMlnLmIS/w7Pnh6+srZECHsvnMGN0kQmowSGk=" />
</head>
<body>
diff --git a/pub/feeds/rss20.tpl b/pub/feeds/rss20.tpl
@@ -13,11 +13,13 @@ Content-Type: text/xml; charset=utf-8
%{
for(f in `{sortedBlogPostList $blogDirs}) {
statpost $f
- # Hack to aproximate the last build date (use the mdate from last posted item)
- if(~ $#last_build_date 0) {
- last_build_date='<lastBuildDate>'^$"mdate'</lastBuildDate>'
- echo $last_build_date
- }
+ # Hack to aproximate the last build date
+ #(use the mdate from last posted item)
+ # Commented out for now because maybe a wrong value is worse than no value
+ #if(~ $#last_build_date 0) {
+ #last_build_date='<lastBuildDate>'^$"mdate'</lastBuildDate>'
+ #echo $last_build_date
+ #}
%}
<item>
<title>%($title%)</title>