From 6811796ff47ba704f7009a8133632c0c64352731 Mon Sep 17 00:00:00 2001 From: Stefan Ritter Date: Thu, 30 Apr 2009 13:40:39 +0200 Subject: Atom: Atom need a 2byte string for month and date, but date[] returns a 1byte string for month and date < 10. --- blogthon.cgi | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/blogthon.cgi b/blogthon.cgi index 8cdfa5a..8152472 100755 --- a/blogthon.cgi +++ b/blogthon.cgi @@ -158,6 +158,12 @@ if feed_display == "atom": blog_title_md5sum = generate_uuid(blog_title) title_md5sum = generate_uuid(title) + # Atom need a 2byte string + month = str(date[1]) + day = str(date[2]) + if len(str(date[1])) == 1: month = '0' + str(date[1]) + if len(str(date[2])) == 1: day = '0' + str(date[2]) + document_header("atom") print '' print ' ' @@ -165,13 +171,13 @@ if feed_display == "atom": print ' ' print ' ' + blog_title + '' print ' urn:uuid:' + blog_title_md5sum + '' - print ' ' + str(date[0]) + '-0' + str(date[1]) + '-' + str(date[2]) + 'T' + str(date[3]) + ':' + str(date[4]) + ':' + str(date[5]) + 'Z' + print ' ' + str(date[0]) + '-' + month + '-' + day + 'T' + str(date[3]) + ':' + str(date[4]) + ':' + str(date[5]) + 'Z' print '' print ' ' print ' ' + title + '' print ' ' print ' urn:uuid:' + title_md5sum + '' - print ' ' + str(date[0]) + '-0' + str(date[1]) + '-' + str(date[2]) + 'T' + str(date[3]) + ':' + str(date[4]) + ':' + str(date[5]) + 'Z' + print ' ' + str(date[0]) + '-' + month + '-' + day + 'T' + str(date[3]) + ':' + str(date[4]) + ':' + str(date[5]) + 'Z' print ' ' print '' -- cgit v1.2.3