aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Ritter <xeno@thehappy.de>2009-03-08 22:25:38 +0100
committerStefan Ritter <xeno@thehappy.de>2009-03-08 22:25:38 +0100
commit5d99e09263a3d3a946eb4920a03fe5ec5bcd3d22 (patch)
treebce6edea62a0b2af755f7688d388e8cfae7982bf
parenteb91377cd4ecd04bd8bf45e580075c096e88e11f (diff)
Added the lookshe-hack
-rwxr-xr-xblogthon.cgi7
1 files changed, 6 insertions, 1 deletions
diff --git a/blogthon.cgi b/blogthon.cgi
index 6f1331c..eeeb1a0 100755
--- a/blogthon.cgi
+++ b/blogthon.cgi
@@ -114,7 +114,12 @@ if staticpages == "True":
for staticpage in staticpages_list:
title = re.sub('\w+?\/\d+?-', '', staticpage)
link = re.sub('\w+?\/', '', staticpage)
- print ' &nbsp;<a href="?s=' + link + '">' + title + '</a>&nbsp;<br />'
+ # The ultimative lookshe-hack *g*
+ if title == "lookshe":
+ print ' &nbsp;<a href="?s=' + link + '">/me</a>&nbsp;<br />'
+ else:
+ print ' &nbsp;<a href="?s=' + link + '">' + title + '</a>&nbsp;<br />'
+
if monthlist == "True": print ' <br />'
print ' </div>'