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)
def get_sitemap_xml():
    return bottle.static_file('sitemap.xml', root=STATIC_FILES_DIR, mimetype="text/xml; charset=utf-8")
def get_sitemap_xml_gz():
    return bottle.static_file('sitemap2.xml.gz', root=STATIC_FILES_DIR, mimetype="application/x-gzip")
def get_robotstxt():
    return bottle.static_file('favicon.ico', root=STATIC_FILES_DIR)
def get_robotstxt():
    return bottle.static_file('robots.txt', root=STATIC_FILES_DIR)
Exemple #7
0
def get_sitemap_xml_gz():
    return bottle.static_file('sitemap2.xml.gz', root=STATIC_FILES_DIR, mimetype="application/x-gzip")
Exemple #8
0
def get_sitemap_xml_gz():
    return bottle.static_file('sitemap_index.xml', root=STATIC_FILES_DIR, mimetype="application/xml")
Exemple #9
0
def get_sitemap_xml():
    return bottle.static_file('sitemap.xml', root=STATIC_FILES_DIR, mimetype="text/xml; charset=utf-8")
Exemple #10
0
def get_robotstxt():
    return bottle.static_file('robots.txt', root=STATIC_FILES_DIR)
Exemple #11
0
def get_robotstxt():
    return bottle.static_file('favicon.ico', root=STATIC_FILES_DIR)
Exemple #12
0
def handle_static(filepath):
    return bottle.static_file(filepath, root=settings.STATIC_PATH)
Exemple #13
0
def handle_favicon():
    return bottle.static_file('images/favicon.ico', root=settings.STATIC_PATH)