|
|
|
@ -16,7 +16,14 @@ def crayonlog(colour,event):
|
|
|
|
|
crayonstring = str(crayonno) + " " + crayonrend
|
|
|
|
|
return crayonstring
|
|
|
|
|
|
|
|
|
|
def loggen():
|
|
|
|
|
def loggen(month=False):
|
|
|
|
|
if month:
|
|
|
|
|
if not os.path.isdir("build/log/month"):
|
|
|
|
|
os.mkdir("build/log/month")
|
|
|
|
|
if os.path.exists("build/log/month/index.html"):
|
|
|
|
|
os.remove("build/log/month/index.html")
|
|
|
|
|
thefile = "build/log/month/index.html"
|
|
|
|
|
else:
|
|
|
|
|
if not os.path.isdir("build/log"):
|
|
|
|
|
os.mkdir("build/log")
|
|
|
|
|
if os.path.exists("build/log/index.html"):
|
|
|
|
@ -25,6 +32,17 @@ def loggen():
|
|
|
|
|
skel.headerwrite(thefile,"log")
|
|
|
|
|
content = open(thefile,"a")
|
|
|
|
|
content.write("<h1>log</h1>\n")
|
|
|
|
|
if month:
|
|
|
|
|
content.write("<p><a href=\"/log\">Show all</a></p>\n")
|
|
|
|
|
else:
|
|
|
|
|
content.write("<p><a href=\"/log/month\">Show current month only</a></p>\n")
|
|
|
|
|
if month:
|
|
|
|
|
thelog = []
|
|
|
|
|
for event in log.log:
|
|
|
|
|
if event["date"].month == datetime.datetime.now().month and event["date"].year == datetime.datetime.now().year:
|
|
|
|
|
thelog.append(event)
|
|
|
|
|
thelog = thelog[::-1]
|
|
|
|
|
else:
|
|
|
|
|
thelog = log.log[::-1]
|
|
|
|
|
for event in thelog:
|
|
|
|
|
if event["event"] != "portfolio":
|
|
|
|
@ -125,5 +143,9 @@ def loggen():
|
|
|
|
|
content.close()
|
|
|
|
|
skel.footerwrite(thefile)
|
|
|
|
|
|
|
|
|
|
def logall():
|
|
|
|
|
loggen(False)
|
|
|
|
|
loggen(True)
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
|
loggen()
|
|
|
|
|
logall()
|
|
|
|
|