-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DOC: update development documentation baa7ac0
- Loading branch information
0 parents
commit 336bf08
Showing
45,655 changed files
with
17,273,151 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Sphinx build info version 1 | ||
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. | ||
config: 6af1b78874e8765b71cabb1c99a0c30c | ||
tags: 645f666f9bcd5a90fca523b33c5a78b7 |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
mapdl.docs.pyansys.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
""" | ||
Generate a sitemap. | ||
""" | ||
|
||
import os | ||
import xml.etree.ElementTree as ET | ||
from xml.dom.minidom import parseString | ||
|
||
with open('CNAME') as fid: | ||
cname = fid.read().strip() | ||
base_url = f"https://{cname}" | ||
|
||
base_path = "version/stable" | ||
|
||
def create_sitemap_element(url): | ||
url_elem = ET.Element("url") | ||
loc_elem = ET.SubElement(url_elem, "loc") | ||
loc_elem.text = url | ||
return url_elem | ||
|
||
sitemap = ET.Element("urlset", xmlns="http://www.sitemaps.org/schemas/sitemap/0.9") | ||
|
||
for root, dirs, files in os.walk(base_path): | ||
for file in files: | ||
if file.endswith(".html"): | ||
file_path = os.path.join(root, file) | ||
url = os.path.join(base_url, file_path) | ||
sitemap_element = create_sitemap_element(url) | ||
sitemap.append(sitemap_element) | ||
|
||
tree = ET.ElementTree(sitemap) | ||
|
||
# Pretty-print the XML content | ||
pretty_xml = parseString(ET.tostring(tree.getroot(), encoding="utf-8")).toprettyxml(indent=" ") | ||
|
||
with open("sitemap.xml", "w", encoding="utf-8") as f: | ||
f.write(pretty_xml) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
google-site-verification: googled04f663dfe3ce5a9.html |
Oops, something went wrong.