|
|
@ -1,12 +1,20 @@
|
|
|
|
from datetime import datetime
|
|
|
|
import locale
|
|
|
|
import markdown
|
|
|
|
|
|
|
|
import os
|
|
|
|
import os
|
|
|
|
from os import path
|
|
|
|
|
|
|
|
import pathlib
|
|
|
|
import pathlib
|
|
|
|
|
|
|
|
from datetime import datetime
|
|
|
|
|
|
|
|
from os import path
|
|
|
|
|
|
|
|
|
|
|
|
import config
|
|
|
|
import config
|
|
|
|
|
|
|
|
import markdown
|
|
|
|
|
|
|
|
|
|
|
|
ENTRY_DIR = "templates/entry"
|
|
|
|
ENTRY_DIR = "templates/entry"
|
|
|
|
|
|
|
|
LANGUAGE = config.LANGUAGE
|
|
|
|
|
|
|
|
LOCAL = "de_DE.UTF-8" if LANGUAGE == "de-de" else "en_US.UTF-8"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
locale.setlocale(locale.LC_TIME, LOCAL)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
standalone_str = "Artikel" if LANGUAGE == "de-de" else "standalone"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def gen_arch_string():
|
|
|
|
def gen_arch_string():
|
|
|
|
"""
|
|
|
|
"""
|
|
|
@ -23,10 +31,8 @@ def gen_arch_string():
|
|
|
|
content_string = ""
|
|
|
|
content_string = ""
|
|
|
|
last_month = ""
|
|
|
|
last_month = ""
|
|
|
|
for file in reversed(contents):
|
|
|
|
for file in reversed(contents):
|
|
|
|
curr_date = datetime.fromtimestamp(
|
|
|
|
curr_date = datetime.fromtimestamp(os.path.getctime(file)).strftime("%Y-%m-%d")
|
|
|
|
os.path.getctime(file)).strftime("%Y-%m-%d")
|
|
|
|
curr_month = datetime.fromtimestamp(os.path.getctime(file)).strftime("%B %Y")
|
|
|
|
curr_month = datetime.fromtimestamp(
|
|
|
|
|
|
|
|
os.path.getctime(file)).strftime("%b %Y")
|
|
|
|
|
|
|
|
if curr_month != last_month:
|
|
|
|
if curr_month != last_month:
|
|
|
|
if last_month != "":
|
|
|
|
if last_month != "":
|
|
|
|
content_string += "</ul>\n"
|
|
|
|
content_string += "</ul>\n"
|
|
|
@ -39,13 +45,11 @@ def gen_arch_string():
|
|
|
|
if filename[0] != ".":
|
|
|
|
if filename[0] != ".":
|
|
|
|
filename = filename.split(".", 1)[0]
|
|
|
|
filename = filename.split(".", 1)[0]
|
|
|
|
content_string += "<li>"
|
|
|
|
content_string += "<li>"
|
|
|
|
content_string += curr_date + " - "
|
|
|
|
|
|
|
|
content_string += title + " ["
|
|
|
|
|
|
|
|
content_string += "<a href=\"" + "/index.html#" + \
|
|
|
|
content_string += "<a href=\"" + "/index.html#" + \
|
|
|
|
filename + "\">" + "link" + "</a> - "
|
|
|
|
filename + "\">" + curr_date + "</a> - "
|
|
|
|
content_string += "<a href=\"" + "/entry/" + \
|
|
|
|
content_string += "<a href=\"" + "/entry/" + \
|
|
|
|
pathlib.PurePath(file).name + "\">" + "standalone" + "</a>"
|
|
|
|
pathlib.PurePath(file).name + "\"><b>" + title + "</b></a>"
|
|
|
|
content_string += "] <br>"
|
|
|
|
content_string += "<br>"
|
|
|
|
content_string += "</li>\n"
|
|
|
|
content_string += "</li>\n"
|
|
|
|
content_string += "</ul>\n"
|
|
|
|
content_string += "</ul>\n"
|
|
|
|
return content_string
|
|
|
|
return content_string
|
|
|
@ -73,19 +77,19 @@ def gen_index_string():
|
|
|
|
if filename[0] != ".":
|
|
|
|
if filename[0] != ".":
|
|
|
|
filename = filename.split(".", 1)[0]
|
|
|
|
filename = filename.split(".", 1)[0]
|
|
|
|
content_string += "<div class=\"entry\">\n"
|
|
|
|
content_string += "<div class=\"entry\">\n"
|
|
|
|
content_string += "<h2 id=\"" + filename + "\">" + title + "</h2>\n"
|
|
|
|
content_string += "<h2 id=\"" + filename + "\">"
|
|
|
|
content_string += "[<a href=\"" + "/entry/" + \
|
|
|
|
content_string += "<a href=\"" + "/entry/" + \
|
|
|
|
pathlib.PurePath(file).name + "\">" + \
|
|
|
|
pathlib.PurePath(file).name + "\">" + \
|
|
|
|
"standalone" + "</a>]<br>\n"
|
|
|
|
title + "</a>" +"</h2>\n"
|
|
|
|
|
|
|
|
content_string += "<small>" + \
|
|
|
|
|
|
|
|
datetime.fromtimestamp(os.path.getctime(
|
|
|
|
|
|
|
|
file)).strftime("%Y-%m-%d") + "</small><br><br>"
|
|
|
|
if file.endswith(".html"):
|
|
|
|
if file.endswith(".html"):
|
|
|
|
for line in text:
|
|
|
|
for line in text:
|
|
|
|
content_string += line
|
|
|
|
content_string += line
|
|
|
|
content_string += "<br>"
|
|
|
|
content_string += "<br>"
|
|
|
|
if file.endswith(".md"):
|
|
|
|
if file.endswith(".md"):
|
|
|
|
content_string += gen_md_content(file, 2)
|
|
|
|
content_string += gen_md_content(file, 2)
|
|
|
|
content_string += "<small>" + \
|
|
|
|
|
|
|
|
datetime.fromtimestamp(os.path.getctime(
|
|
|
|
|
|
|
|
file)).strftime("%Y-%m-%d") + "</small>"
|
|
|
|
|
|
|
|
content_string += "</div>"
|
|
|
|
content_string += "</div>"
|
|
|
|
return content_string
|
|
|
|
return content_string
|
|
|
|
|
|
|
|
|
|
|
@ -107,13 +111,13 @@ def gen_stand_string(path_ex):
|
|
|
|
if path.exists(filename):
|
|
|
|
if path.exists(filename):
|
|
|
|
title = open(filename).readline().rstrip("\n")
|
|
|
|
title = open(filename).readline().rstrip("\n")
|
|
|
|
text = open(filename).readlines()[1:]
|
|
|
|
text = open(filename).readlines()[1:]
|
|
|
|
|
|
|
|
curr_date = datetime.fromtimestamp(os.path.getctime(filename)).strftime("%Y-%m-%d")
|
|
|
|
filename_no_end = filename.split(".", 1)[0]
|
|
|
|
filename_no_end = filename.split(".", 1)[0]
|
|
|
|
filename_no_end = filename_no_end.split("/")[-1]
|
|
|
|
filename_no_end = filename_no_end.split("/")[-1]
|
|
|
|
content_string += "<h1>" + title + "</h1>\n"
|
|
|
|
content_string += "<h1>" + title + "</h1>\n"
|
|
|
|
content_string += "["
|
|
|
|
|
|
|
|
content_string += "<a href=\"" + "/index.html#" + \
|
|
|
|
content_string += "<a href=\"" + "/index.html#" + \
|
|
|
|
filename_no_end + "\">" + "link" + "</a>"
|
|
|
|
filename_no_end + "\">" + curr_date + "</a>"
|
|
|
|
content_string += "]<br>\n"
|
|
|
|
content_string += "<br>\n"
|
|
|
|
if filename.endswith(".html"):
|
|
|
|
if filename.endswith(".html"):
|
|
|
|
for line in text:
|
|
|
|
for line in text:
|
|
|
|
content_string += line
|
|
|
|
content_string += line
|
|
|
@ -146,9 +150,7 @@ def gen_md_content(path_ex, depth):
|
|
|
|
markdown_text = ""
|
|
|
|
markdown_text = ""
|
|
|
|
for line in markdown_lines:
|
|
|
|
for line in markdown_lines:
|
|
|
|
markdown_text += line.replace("# ", header)
|
|
|
|
markdown_text += line.replace("# ", header)
|
|
|
|
content_string = markdown.markdown(
|
|
|
|
content_string = markdown.markdown(markdown_text, extensions=["fenced_code", "tables"])
|
|
|
|
markdown_text, extensions=["fenced_code", "tables"]
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
return content_string
|
|
|
|
return content_string
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|