SiteGenerator/generate.py

54 lines
1.7 KiB
Python
Raw Normal View History

2022-01-21 10:16:26 +00:00
import os
2022-01-22 09:26:09 +00:00
from html5tagger import Document, E, HTML
2022-01-21 10:16:26 +00:00
from shutil import rmtree
#if homepage is at Home.page, set homepage to "Home"
homepage = "Home"
try:
2022-01-21 11:09:43 +00:00
os.mkdir("./website-output")
2022-01-21 10:16:26 +00:00
except FileExistsError:
2022-01-21 11:09:43 +00:00
print("Output directory already exists, let's clean it!")
2022-01-21 10:16:26 +00:00
2022-01-21 11:09:43 +00:00
#deleting contents of folder without deleting the folder, to increase compatibility with various systems
for root, dirs, files in os.walk('./website-output'):
for f in files:
os.unlink(os.path.join(root, f))
for d in dirs:
rmtree(os.path.join(root, d))
2022-01-21 10:16:26 +00:00
#generate navigation bar
navbarfound = False
if os.path.exists("./navbar"):
2022-01-21 11:09:43 +00:00
with open("./navbar", 'r') as navbarfile:
navbarfound = True
2022-01-22 09:26:09 +00:00
navbar = E
2022-01-21 11:09:43 +00:00
for line in navbarfile.readlines():
split = line.strip().split(";", 1)
2022-01-22 09:26:09 +00:00
navbar = navbar.li(HTML("<a href='" + split[1] + "'>" + split[0]))
#checking false instead of else to be more sure
if navbarfound == False:
2022-01-21 11:09:43 +00:00
print("No 'navbar' file found, there will be no navigation bar.")
2022-01-21 10:16:26 +00:00
#generate pages
for file in os.listdir("./"):
2022-01-21 11:09:43 +00:00
if file.endswith(".page"):
2022-01-22 09:26:09 +00:00
with open(file, 'r') as page:
pagetitle = os.path.basename(file).replace(".page", "")
doc = Document(pagetitle, lang="en")
for line in page.readlines():
doc.p(line.strip())
#creates ./website-output/pagetitle/index.html file if it is not homepage
foldername = ""
if pagetitle =! homepage:
foldername = "/" + pagetitle.replace(" ", "-").lower()
os.mkdir("./website-output" + foldername)
with open("./website-output" + foldername + "/index.html", 'w') as newpage:
if navbarfound:
newpage.write(str(E.ul(navbar)))
else:
newpage.write(str(doc))