X-Git-Url: https://git.ucc.asn.au/?p=planet-ucc.git;a=blobdiff_plain;f=XMLWriter.py;fp=XMLWriter.py;h=6f39119e01a3a0caa8690e6d1664af9922502e55;hp=5b0582ea7b8cf761f76841f85a06db3690a07049;hb=18f48e511713b1d2d168585d656ebfe5f7c0f2ea;hpb=73c1202987332c16b1ea6919aa635113bd3ce6cd diff --git a/XMLWriter.py b/XMLWriter.py index 5b0582e..6f39119 100644 --- a/XMLWriter.py +++ b/XMLWriter.py @@ -60,8 +60,8 @@ class Planet: if lastItem == None: break # this checks to see if it's a new day - if time.gmtime(lastItem.itemDate)[6] != lastDate: - lastDate = time.gmtime(lastItem.itemDate)[6] + if time.localtime(lastItem.itemDate)[6] != lastDate: + lastDate = time.localtime(lastItem.itemDate)[6] workingDate = PlanetDate(lastItem.itemDate) self.dates.append(workingDate) # append the item to the current date @@ -96,7 +96,7 @@ class XHTMLWriter: output += '

\n' if item.imageURL: output += '%s\n' % (item.imageLink, item.imageURL, item.blogTitle) - output += '(%s)\n' % (item.itemURL ,time.strftime('%A %B %d, %Y %H:%M UTC', time.gmtime(item.itemDate))) + output += '(%s)\n' % (item.itemURL ,time.strftime('%A %B %d, %Y %H:%M AWST', time.localtime(item.itemDate))) output += '

\n' output += '

\n' output += item.contents @@ -129,7 +129,7 @@ class XHTMLWriter: pass output += '

Last Updated

\n' output += '

\n' - output += '%s\n' % time.strftime('%A %B %d, %Y %H:%M UTC', time.gmtime()) + output += '%s\n' % time.strftime('%A %B %d, %Y %H:%M AWST', time.localtime()) output += '

\n' if self.parent: output += '

Feeds

\n' @@ -140,7 +140,7 @@ class XHTMLWriter: output += '\n' output += '
\n' for date in self.planet: - output += '

%s

\n' % time.strftime('%A %B %d, %Y', time.gmtime(date.planetDate)) + output += '

%s

\n' % time.strftime('%A %B %d, %Y', time.localtime(date.planetDate)) for item in date.items: output += self.__write_item__(item) # see how many items we've written