adding some meta stuff

master
endorphant 2016-04-30 00:00:55 -04:00
parent a94dd56f55
commit 5bf0c207a3
2 changed files with 13 additions and 4 deletions

View File

@ -2,9 +2,11 @@
import os
WWW = os.path.join("..","www")
CONFIG = os.path.join("config")
DATA = os.path.join("..", "data")
PATH = os.path.join("/home", "endorphant", "projects", "ttbp", "bin")
WWW = os.path.join(PATH, "..","www")
CONFIG = os.path.join(PATH, "config")
DATA = os.path.join(os.path.expanduser("~"), ".ttbp", "entries")
#DATA = os.path.join("..", "data")
MONTHS = {
"01":"january",
@ -32,7 +34,7 @@ for file in os.listdir(DATA):
FILES.append(file)
FILES.reverse()
print FILES
print("found: "+str(FILES))
def write(outurl="default.html"):
outfile = open(os.path.join(WWW, outurl), "w")
@ -52,6 +54,8 @@ def write(outurl="default.html"):
outfile.close()
return os.path.join(WWW, outurl)
def write_entry(file):
# dump given file into entry format, return as list of strings

5
bin/update.py 100644
View File

@ -0,0 +1,5 @@
#!/usr/bin/python
import core
print("\n blog updated at "+core.write("index.html")+"\n")