Fix sitemap

This commit is contained in:
Otto Winter 2019-02-17 10:28:43 +01:00
parent a22e54540e
commit d0b408a664
No known key found for this signature in database
GPG Key ID: DB66C0BE6013F97E
2 changed files with 16 additions and 21 deletions

View File

@ -6,6 +6,9 @@
[context.beta]
environment = { BASE_URL = "https://beta.esphome.io" }
[context.next]
environment = { BASE_URL = "https://next.esphome.io" }
# A basic redirect rule
[[redirects]]
from = "/esphomeyaml/*"

View File

@ -1,18 +1,5 @@
# Copyright (c) 2013 Michael Dowling <mtdowling@gmail.com>
# Copyright (c) 2017 Jared Dillard <jared.dillard@gmail.com>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
import os
import xml.etree.ElementTree as ET
from sphinx.writers.html import HTMLTranslator
def setup(app):
@ -31,22 +18,27 @@ def create_sitemap(app, exception):
"""Generates the sitemap.xml from the collected HTML page links"""
root = ET.Element("urlset")
root.set("xmlns", "http://www.sitemaps.org/schemas/sitemap/0.9")
root.set("xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance")
root.set("xsi:schemaLocation", "http://www.sitemaps.org/schemas/sitemap/0.9 \
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd")
for link in app.sitemap_links:
url = ET.SubElement(root, "url")
ET.SubElement(url, "loc").text = app.builder.config.html_baseurl + '/' + link
priority = 0.5
if link.endswith('index.html'):
priority += 0.25
if link == 'index.html':
priority = 1.0
link = ''
elif link.endswith('index.html'):
priority += 0.25
link = link[:-len('index.html')]
if link.endswith('.html'):
link = link[:-len('.html')]
ET.SubElement(url, "loc").text = app.builder.config.html_baseurl + '/' + link
ET.SubElement(url, "priority").text = str(priority)
filename = app.outdir + "/sitemap.xml"
filename = os.path.join(app.outdir, "sitemap.xml")
ET.ElementTree(root).write(filename,
xml_declaration=True,
encoding='utf-8',
method="xml")
if app.builder.config.html_baseurl != 'https://esphome.io':
with open(os.path.join(app.builder.outdir, 'robots.txt'), 'wt') as f:
f.write('User-agent: *\nDisallow: /\n')