Bugfix: 'if *list:' is now 'if *list == "True":'
This commit is contained in:
parent
3f689068b3
commit
f4adbfd744
10
blogthon.cgi
10
blogthon.cgi
@ -72,7 +72,7 @@ else:
|
||||
|
||||
print ' <div class="sidebar">'
|
||||
|
||||
if staticpages:
|
||||
if staticpages == "True":
|
||||
staticpages = []
|
||||
staticpages_list = glob.glob(staticpages_dir + '*')
|
||||
staticpages_list.sort()
|
||||
@ -82,10 +82,10 @@ if staticpages:
|
||||
title = re.sub('\w+?\/\d+?-', '', staticpage)
|
||||
link = re.sub('\w+?\/', '', staticpage)
|
||||
print ' <a href="?s=' + link + '">' + title + '</a> <br />'
|
||||
if monthlist: print ' <br />'
|
||||
if monthlist == "True": print ' <br />'
|
||||
print ' </div>'
|
||||
|
||||
if monthlist:
|
||||
if monthlist == "True":
|
||||
olddate = ""
|
||||
print ' <div class="sidebarentry">'
|
||||
print ' <small>months</small><br />'
|
||||
@ -95,10 +95,10 @@ if monthlist:
|
||||
if not olddate == date:
|
||||
print ' <a href="?m=' + date + '">' + date_display + '</a> <br />'
|
||||
olddate = date
|
||||
if linklist: print ' <br />'
|
||||
if linklist == "True": print ' <br />'
|
||||
print ' </div>'
|
||||
|
||||
if linklist:
|
||||
if linklist == "True":
|
||||
content = open("linklist", "r")
|
||||
print ' <div class="sidebarentry">'
|
||||
print ' <small>links</small><br />'
|
||||
|
Loading…
Reference in New Issue
Block a user