From fb1a6d9c56b1fd958bd08c34ddc01077c7302c5b Mon Sep 17 00:00:00 2001 From: Stefan Ritter Date: Tue, 3 Mar 2009 07:28:29 +0100 Subject: Added commentlinks --- blogthon.cgi | 5 ++++- configuration | 1 + styles/blogthon.css | 7 +++++++ 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/blogthon.cgi b/blogthon.cgi index 71bf580..4ca86e9 100755 --- a/blogthon.cgi +++ b/blogthon.cgi @@ -30,6 +30,7 @@ monthlist = configuration.get('look', 'monthlist') staticpages = configuration.get('look', 'staticpages') linklist = configuration.get('look', 'linklist') permalinks = configuration.get('look', 'permalinks') +comments = configuration.get('look', 'comments') newest_first = configuration.get('look', 'newest_first') action = cgi.FieldStorage() @@ -103,7 +104,7 @@ if linklist == "True": print '
' print ' links
' for line in content: - print '  ' + line.split(" ", 1)[1] + ' 
' + print '  ' + line.split(" ", 1)[1].strip() + ' 
' print '
' content.close() @@ -138,6 +139,8 @@ else: # Show regular entry print '

' for line in content: print ' ' + line.strip() + '
' + if comments == "True": + print '


' print '

' print '

' content.close() diff --git a/configuration b/configuration index a468d70..64a9fc8 100644 --- a/configuration +++ b/configuration @@ -12,4 +12,5 @@ monthlist: True staticpages: True linklist: True permalinks: True +comments: True newest_first: True diff --git a/styles/blogthon.css b/styles/blogthon.css index ecaaa63..3808f1a 100644 --- a/styles/blogthon.css +++ b/styles/blogthon.css @@ -71,3 +71,10 @@ a.entrytitle:link, a.entrytitle:hover, a.entrytitle:visited, a.entrytitle:active text-align: center; background: #111; } + +a.comment:link, a.comment:hover, a.comment:active, a.comment:visited { + font-family: Arial; + font-size: 8px; +} + +# vim: set tw=0 ts=4: -- cgit v1.2.3 From b964989fcef583532980956bb119782d3f95b64b Mon Sep 17 00:00:00 2001 From: Stefan Ritter Date: Tue, 3 Mar 2009 13:53:31 +0100 Subject: Restructured code for displaying commentlinks --- blogthon.cgi | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/blogthon.cgi b/blogthon.cgi index 4ca86e9..dc34572 100755 --- a/blogthon.cgi +++ b/blogthon.cgi @@ -140,7 +140,10 @@ else: # Show regular entry for line in content: print ' ' + line.strip() + '
' if comments == "True": - print '
' + print '
' + print ' ' + print '

' + print '

' print '

' content.close() -- cgit v1.2.3