From a0da3b8091b02f2178de42ca644da1624722c391 Mon Sep 17 00:00:00 2001 From: Stefan Ritter Date: Wed, 29 Jul 2009 20:17:16 +0200 Subject: [PATCH] Bugfixes: * Switched to xhtml strict * Removed a empty line and added a whitespace --- blogthon.cgi | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/blogthon.cgi b/blogthon.cgi index a063c8a..e939215 100755 --- a/blogthon.cgi +++ b/blogthon.cgi @@ -1,6 +1,6 @@ #!/usr/bin/python -#This program is free software. It comes without any warranty, to +# This program is free software. It comes without any warranty, to # the extent permitted by applicable law. You can redistribute it # and/or modify it under the terms of the Do What The Fuck You Want # To Public License, Version 2, as published by Sam Hocevar. See @@ -25,8 +25,8 @@ def generate_uuid(string): def errorpage(string): print 'Content-type: text/html\n' - print '' + print '' print '' print '' print ' Error!' @@ -284,7 +284,7 @@ elif feed_display == "rss": # Generate regular page else: - document_header("xhtml-transitional") + document_header("xhtml-strict") # XHTML Header print ' ' print ' ' + blog_title + '' @@ -520,4 +520,3 @@ else: print '' # vim: set tw=0 ts=4: -