From bf0b6154fe7b5a7853b15ab5d401e3f6524f1ec5 Mon Sep 17 00:00:00 2001 From: emkael Date: Tue, 4 Jul 2017 15:53:19 +0200 Subject: Compiling static links into top menu of the pages --- static-menu.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 static-menu.py (limited to 'static-menu.py') diff --git a/static-menu.py b/static-menu.py new file mode 100644 index 0000000..9474d12 --- /dev/null +++ b/static-menu.py @@ -0,0 +1,24 @@ +import copy, json, os, sys + +from bs4 import BeautifulSoup as bs4 + +config_file = sys.argv[1] +content_file = sys.argv[2] +link_prefix = sys.argv[3] if len(sys.argv) > 3 else '' + +content = bs4(file(content_file), 'lxml') + +for menu_container in content.select('.static-menu'): + menu_container.clear() + for menu_item in json.load(file(config_file)): + href = os.path.relpath( + os.path.join(link_prefix, menu_item['url']), + os.path.dirname(content_file) + ) + link = bs4('', 'html.parser') + link.a['href'] = href + link.a['title'] = menu_item['header'] + link.a.string = menu_item['label'] + menu_container.append(link.a) + +file(content_file, 'w').write(content.prettify().encode('utf-8')) -- cgit v1.2.3