コード例 #1
0
def sitemap():
    '''sitemap'''
    response.content_type = 'text/xml'
    return SeoService.sitemap().replace(
        '<urlset',
        '<?xml-stylesheet type="text/xsl" href="/static/sitemap.xsl"?>\n<urlset'
    )
コード例 #2
0
ファイル: app.py プロジェクト: Closer211/weibo_PicWall
def sitemap():
    '''sitemap'''
    response.content_type = 'text/xml'
    return SeoService.sitemap().replace('<urlset', '<?xml-stylesheet type="text/xsl" href="/static/sitemap.xsl"?>\n<urlset')
コード例 #3
0
def update_memcache():
    '''更新memcache中数据'''
    _sitemap = json.loads(SeoService.update_memcache())
    _pages = json.loads(PicsService.init_memcache())
    return json.dumps(dict(sitemap=_sitemap, pages=_pages))
コード例 #4
0
ファイル: app.py プロジェクト: Closer211/weibo_PicWall
def update_memcache():
    '''更新memcache中数据'''
    _sitemap = json.loads(SeoService.update_memcache())
    _pages = json.loads(PicsService.init_memcache())
    return json.dumps(dict(sitemap=_sitemap, pages=_pages))