Ejemplo n.º 1
0
def get_sitemap_xml_gz():
    return bottle.static_file('sitemap_index.xml', root=STATIC_FILES_DIR, mimetype="application/xml")
def static(path):
	logging.debug("@bottle.route('/static/<path:path>')")
	logging.info(path)
	return bottle.static_file(path,root=STATIC_ROOT)
Ejemplo n.º 3
0
def get_sitemap_xml():
    return bottle.static_file('sitemap.xml', root=STATIC_FILES_DIR, mimetype="text/xml; charset=utf-8")
Ejemplo n.º 4
0
def get_sitemap_xml_gz():
    return bottle.static_file('sitemap2.xml.gz', root=STATIC_FILES_DIR, mimetype="application/x-gzip")
Ejemplo n.º 5
0
def get_robotstxt():
    return bottle.static_file('favicon.ico', root=STATIC_FILES_DIR)
Ejemplo n.º 6
0
def get_robotstxt():
    return bottle.static_file('robots.txt', root=STATIC_FILES_DIR)
Ejemplo n.º 7
0
def get_sitemap_xml_gz():
    return bottle.static_file('sitemap2.xml.gz', root=STATIC_FILES_DIR, mimetype="application/x-gzip")
Ejemplo n.º 8
0
def get_sitemap_xml_gz():
    return bottle.static_file('sitemap_index.xml', root=STATIC_FILES_DIR, mimetype="application/xml")
Ejemplo n.º 9
0
def get_sitemap_xml():
    return bottle.static_file('sitemap.xml', root=STATIC_FILES_DIR, mimetype="text/xml; charset=utf-8")
Ejemplo n.º 10
0
def get_robotstxt():
    return bottle.static_file('robots.txt', root=STATIC_FILES_DIR)
Ejemplo n.º 11
0
def get_robotstxt():
    return bottle.static_file('favicon.ico', root=STATIC_FILES_DIR)
Ejemplo n.º 12
0
def handle_static(filepath):
    return bottle.static_file(filepath, root=settings.STATIC_PATH)
Ejemplo n.º 13
0
def handle_favicon():
    return bottle.static_file('images/favicon.ico', root=settings.STATIC_PATH)