forked from endorphant/ttbp
adding some meta stuff
parent
a94dd56f55
commit
5bf0c207a3
12
bin/core.py
12
bin/core.py
|
@ -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
|
||||
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
import core
|
||||
|
||||
print("\n blog updated at "+core.write("index.html")+"\n")
|
Loading…
Reference in New Issue