def GET(self):
     web.header('Content-Type', 'text/xml;charset=utf-8')
     posts = post_service.get_all_published()
     pages = page_service.get_all_published()
     tags = tag_service.get_all()
     archives = post_service.get_archives()
     return render.sitemap(posts,pages,tags,archives)