mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
24 lines
571 B
Python
24 lines
571 B
Python
"""
|
|
Short-URL redirects
|
|
"""
|
|
import json
|
|
import os
|
|
|
|
import sphinx.ext.intersphinx
|
|
|
|
DOCS_URL = "http://docs.saltstack.com/en/latest/"
|
|
|
|
|
|
def write_urls_index(app, exc):
|
|
"""
|
|
Generate a JSON file to serve as an index for short-URL lookups
|
|
"""
|
|
inventory = os.path.join(app.builder.outdir, "objects.inv")
|
|
objects = sphinx.ext.intersphinx.fetch_inventory(app, DOCS_URL, inventory)
|
|
|
|
with open(os.path.join(app.builder.outdir, "shorturls.json"), "w") as f:
|
|
json.dump(objects, f)
|
|
|
|
|
|
def setup(app):
|
|
app.connect("build-finished", write_urls_index)
|