def sitemap(): '''sitemap''' response.content_type = 'text/xml' return SeoService.sitemap().replace( '<urlset', '<?xml-stylesheet type="text/xsl" href="/static/sitemap.xsl"?>\n<urlset' )
def sitemap(): '''sitemap''' response.content_type = 'text/xml' return SeoService.sitemap().replace('<urlset', '<?xml-stylesheet type="text/xsl" href="/static/sitemap.xsl"?>\n<urlset')
def update_memcache(): '''更新memcache中数据''' _sitemap = json.loads(SeoService.update_memcache()) _pages = json.loads(PicsService.init_memcache()) return json.dumps(dict(sitemap=_sitemap, pages=_pages))