Atom is now valid for http://validator.w3.org/
This commit is contained in:
parent
0567d1e45e
commit
8ae4586ab1
10
blogthon.cgi
10
blogthon.cgi
@ -161,8 +161,14 @@ if feed_display == "atom":
|
|||||||
# Atom need a 2byte string
|
# Atom need a 2byte string
|
||||||
month = str(date[1])
|
month = str(date[1])
|
||||||
day = str(date[2])
|
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[1])) == 1: month = '0' + str(date[1])
|
||||||
if len(str(date[2])) == 1: day = '0' + str(date[2])
|
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")
|
document_header("atom")
|
||||||
print '<link href="' + blog_url + '/?feed=atom" rel="self" type="application/atom+xml"/>'
|
print '<link href="' + blog_url + '/?feed=atom" rel="self" type="application/atom+xml"/>'
|
||||||
@ -171,13 +177,13 @@ if feed_display == "atom":
|
|||||||
print ' </author>'
|
print ' </author>'
|
||||||
print ' <title>' + blog_title + '</title>'
|
print ' <title>' + blog_title + '</title>'
|
||||||
print ' <id>urn:uuid:' + blog_title_md5sum + '</id>'
|
print ' <id>urn:uuid:' + blog_title_md5sum + '</id>'
|
||||||
print ' <updated>' + str(date[0]) + '-' + month + '-' + day + 'T' + str(date[3]) + ':' + str(date[4]) + ':' + str(date[5]) + 'Z</updated>'
|
print ' <updated>' + str(date[0]) + '-' + month + '-' + day + 'T' + hour + ':' + min + ':' + sec + 'Z</updated>'
|
||||||
print ''
|
print ''
|
||||||
print ' <entry>'
|
print ' <entry>'
|
||||||
print ' <title>' + title + '</title>'
|
print ' <title>' + title + '</title>'
|
||||||
print ' <link href="' + blog_url + '"/>'
|
print ' <link href="' + blog_url + '"/>'
|
||||||
print ' <id>urn:uuid:' + title_md5sum + '</id>'
|
print ' <id>urn:uuid:' + title_md5sum + '</id>'
|
||||||
print ' <updated>' + str(date[0]) + '-' + month + '-' + day + 'T' + str(date[3]) + ':' + str(date[4]) + ':' + str(date[5]) + 'Z</updated>'
|
print ' <updated>' + str(date[0]) + '-' + month + '-' + day + 'T' + hour + ':' + min + ':' + sec + 'Z</updated>'
|
||||||
print ' </entry>'
|
print ' </entry>'
|
||||||
print '</feed>'
|
print '</feed>'
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user