From 8ae4586ab1bc7fdc2ee6d1a44878f41c1699161b Mon Sep 17 00:00:00 2001 From: Stefan Ritter Date: Sat, 2 May 2009 04:01:13 +0200 Subject: Atom is now valid for http://validator.w3.org/ --- blogthon.cgi | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/blogthon.cgi b/blogthon.cgi index 8152472..2fcb619 100755 --- a/blogthon.cgi +++ b/blogthon.cgi @@ -161,8 +161,14 @@ if feed_display == "atom": # Atom need a 2byte string month = str(date[1]) day = str(date[2]) + hour = str(date[3]) + min = str(date[4]) + sec = str(date[5]) if len(str(date[1])) == 1: month = '0' + str(date[1]) if len(str(date[2])) == 1: day = '0' + str(date[2]) + if len(str(date[3])) == 1: hour = '0' + str(date[3]) + if len(str(date[4])) == 1: min = '0' + str(date[4]) + if len(str(date[5])) == 1: sec = '0' + str(date[5]) document_header("atom") print '' @@ -171,13 +177,13 @@ if feed_display == "atom": print ' ' print ' ' + blog_title + '' print ' urn:uuid:' + blog_title_md5sum + '' - print ' ' + str(date[0]) + '-' + month + '-' + day + 'T' + str(date[3]) + ':' + str(date[4]) + ':' + str(date[5]) + 'Z' + print ' ' + str(date[0]) + '-' + month + '-' + day + 'T' + hour + ':' + min + ':' + sec + 'Z' print '' print ' ' print ' ' + title + '' print ' ' print ' urn:uuid:' + title_md5sum + '' - print ' ' + str(date[0]) + '-' + month + '-' + day + 'T' + str(date[3]) + ':' + str(date[4]) + ':' + str(date[5]) + 'Z' + print ' ' + str(date[0]) + '-' + month + '-' + day + 'T' + hour + ':' + min + ':' + sec + 'Z' print ' ' print '' -- cgit v1.2.3