40 lines
1.4 KiB
Python
40 lines
1.4 KiB
Python
### Generation helper for index.html
|
|
|
|
from .. import file as util_file
|
|
from .. import csv as util_csv
|
|
import shutil
|
|
|
|
|
|
def generate(templatedir, destinationdir, templateFilename):
|
|
"""Main generation function for index.html generation helper.
|
|
|
|
templatedir -- the relative path of the template html file's directory\n
|
|
destinationpath -- the directory where index.html should be generated\n
|
|
templateFilename -- the filename of the index template (always index.html)\n
|
|
"""
|
|
|
|
shutil.copy(f"{templatedir}/{templateFilename}", destinationdir)
|
|
|
|
idName = "tk_category_dashname"
|
|
categories = util_csv.dictReaderMultiRow("../csv/categories.csv", idName)
|
|
config = util_csv.dictReaderFirstRow("../csv/config.csv")
|
|
|
|
for key in config.keys():
|
|
util_file.replaceTextInFile(f"{destinationdir}/index.html", key, config[key])
|
|
|
|
tk_category_dashname = "tk_category_dashname"
|
|
tk_category_name = "tk_category_name"
|
|
|
|
## lk_categories handler ##
|
|
|
|
for category in categories:
|
|
|
|
util_file.replaceTextInFile(
|
|
f"{destinationdir}/index.html",
|
|
"lk_categories",
|
|
f'<a class="categoryLink" href="categories/{categories[category][tk_category_dashname]}">{categories[category][tk_category_name]}</a>lk_categories',
|
|
)
|
|
|
|
util_file.replaceTextInFile(f"{destinationdir}/index.html", "lk_categories", "")
|
|
|
|
## End of: lk_categories handler ##
|