From 5c5c0cdf0b88c64262843c21093bd6a3edb83121 Mon Sep 17 00:00:00 2001 From: Pascal Turbing Date: Thu, 3 Dec 2009 22:53:37 +0100 Subject: Fixed Atom-Timestamp --- blogthon.cgi | 6 +++--- configuration | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/blogthon.cgi b/blogthon.cgi index 48a9dee..1530c29 100755 --- a/blogthon.cgi +++ b/blogthon.cgi @@ -118,7 +118,7 @@ try: smtp_host = configuration.get('smtp', 'smtp_host') except: errorpage('"smtp_host" is missing in configuration!') try: feed_preview = configuration.get('feed', 'feed_preview') -except: errorpage('"feed_preview" is missing or empty in configuration') +except: errorpage('"feed_preview" is missing or empty in configuration!') # Read POST Variables action = cgi.FieldStorage() @@ -224,13 +224,13 @@ if feed_display == "atom": if j > 10: j = 10 for i in xrange(0, j): title = str(entries[i][1]).replace('entries/', '', 1).replace('.' + entries_suffix, '') - date = time.strftime("%a, %d %b %Y %H:%M:%S %z", time.gmtime(time.mktime(entries[i][0]))) + date = entries[i][0] title_md5sum = generate_uuid(title) print ' ' print ' ' + title + '' print ' ' print ' urn:uuid:' + title_md5sum + '' - print ' ' + date + '' + print ' ' + str(date[0]) + '-' + month + '-' + day + 'T' + hour + ':' + min + ':' + sec + 'Z' print ' ' content = open(str(entries[i][1]), 'r') for h in xrange(0, int(feed_preview)): diff --git a/configuration b/configuration index 234f1ed..f7949aa 100644 --- a/configuration +++ b/configuration @@ -14,7 +14,7 @@ staticpages: True monthlist: True linklist: True permalinks: True -comments: +comments: True newest_first: True [smtp] -- cgit v1.2.3