diff options
author | neodarz <neodarz@neodarz.net> | 2019-05-26 12:59:57 +0200 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2019-05-26 12:59:57 +0200 |
commit | 443b5edd35d5732ee2588e04a40ff3ef77e1c958 (patch) | |
tree | 3b47ccae5a0020c4f51cbec9360e2f2b5d7c7e53 /pyblog | |
parent | 9d57dc83b706aa229874607204668afb3415d168 (diff) | |
download | my_new_personal_website-443b5edd35d5732ee2588e04a40ff3ef77e1c958.tar.xz my_new_personal_website-443b5edd35d5732ee2588e04a40ff3ef77e1c958.zip |
Move generate_menu to external file
Diffstat (limited to '')
-rwxr-xr-x | pyblog | 39 |
1 files changed, 2 insertions, 37 deletions
@@ -48,43 +48,8 @@ from utils import utils from config.config import * +from generators import generators -def generate_menu(): - """Generate menu.""" - - sys.stderr.write("generating menu\n") - - fd, tmppath = tempfile.mkstemp() - os.close(fd) - - # Put in a list the pages where the menu will be written - html_fileList = [] - for root, dirs, files in os.walk(BUILDDIR): - for name in files: - if name.endswith(".html"): - try: - html_fileList.append(os.path.join(root.split('build/')[1], name)) - except IndexError: - html_fileList.append(name) - - # Generate the string who contain the links of the menu - htmly_website_page = "<ul>" - for name in sorted(os.listdir(os.path.join(BUILDDIR, "website"))): - if name != "Documents": - htmly_website_page += "<a href='/website/"+name+"' class='lia'><li><span class='left-lia'></span><span class='center-lia'>"+name.split('.html')[0]+"</span><span class='right-lia'></span></li></a>" - htmly_website_page += "</ul>" - - # Writing the menu in all pages contained in the variable in place of the -- generate menu here -- - for html_file in html_fileList: - with open(tmppath, 'w', encoding='utf-8') as tmpfile: - if os.path.exists("build/"+html_file): - with open("build/"+html_file, 'r', encoding='utf-8') as indexmd: - lines = indexmd.readlines() - with open("build/"+html_file, 'w', encoding='utf-8') as indexmd: - for line in lines: - indexmd.write(re.sub(r'-- generate menu here --', htmly_website_page, line)) - - os.remove(tmppath) def generate_table(): """Generate table.""" @@ -689,7 +654,7 @@ def generate_index_and_feed(): rss.items.sort(key=lambda item: item.timestamp, reverse=True) generate_index(feed) - generate_menu() + generators.generate_menu() generate_table() generate_blog_list(feed) generate_notes_list() |