diff --git a/bin/config/header.txt b/bin/config/header.txt index cffc052..b3c64f5 100644 --- a/bin/config/header.txt +++ b/bin/config/header.txt @@ -9,3 +9,4 @@

~endorphant@tilde.town

+
diff --git a/bin/core.py b/bin/core.py new file mode 100644 index 0000000..a2f75ca --- /dev/null +++ b/bin/core.py @@ -0,0 +1,71 @@ +#!/usr/bin/python + +import os + +WWW = os.path.join("..","www") +CONFIG = os.path.join("config") +DATA = os.path.join("..", "data") + +HEADER = open(os.path.join(CONFIG, "header.txt")).read() +FOOTER = open(os.path.join(CONFIG, "footer.txt")).read() + +FILES = [] + +for file in os.listdir(DATA): + filename = os.path.join(DATA, file) + if os.path.isfile(filename) and os.path.splitext(filename)[1] == ".txt": + FILES.append(file) + +print FILES + +def write(outurl="default.html"): + outfile = open(os.path.join(WWW, outurl), "w") + + for line in HEADER: + outfile.write(line) + + #for line in write_placeholder(): + # outfile.write(line) + + for file in FILES: + for line in write_entry(file): + outfile.write(line) + + for line in FOOTER: + outfile.write(line) + + outfile.close() + +def write_entry(file): + # dump given file into entry format, return as list of strings + + entry = [ + "\t\t



\n", + "\t\t
\n", + "\t\t\t
DD month YYYY
\n", + "\t\t\t

" + ] + + raw = [] + rawfile = open(os.path.join(DATA, file), "r") + + for line in rawfile: + raw.append(line) + rawfile.close() + + print raw + + for line in raw: + entry.append(line+"\t\t\t") + if line == "\n": + entry.append("

\n\t\t\t

") + + entry.append("

\n\t\t
\n") + + return entry + +def parse_date(file): + # assuming a filename of YYYYMMDD.txt, returns a list of + # ['YYYY', 'MM', 'DD'] + + return diff --git a/bin/tlog.py b/bin/tlog.py deleted file mode 100644 index 7f270d8..0000000 --- a/bin/tlog.py +++ /dev/null @@ -1,46 +0,0 @@ -#!/usr/bin/python - -import os - -WWW = os.path.join("..","www") -CONFIG = os.path.join("config") - -HEADER = [] -FOOTER = [] - -infile = open(os.path.join(CONFIG, "header.txt"), 'r') -for line in infile: - HEADER.append(line.rstrip()) -infile.close() - -infile = open(os.path.join(CONFIG, "header.txt"), 'r') -for line in infile: - FOOTER.append(line.rstrip()) -infile.close() - -def write(outurl): - outfile = open(os.path.join(WWW, outurl), "w") - - for line in HEADER: - outfile.write(line) - - for line in write_placeholder(): - outfile.write(line) - - for line in FOOTER: - outfile.write(line) - - outfile.close() - -def write_placeholder(): - - entry = [ - "
", - "



", - "
", - "
DD month YYYY
", - "

Feacby waeohaku aywoaeeo fepopo lyhili todepoae, taenga. Ypaogeni, ypnorani geahwaga diioanee aotrilco, aenoail. Oypo, weahipae kucogoyp fyeoim kyreeo? El godineng fengo aheoba himalidi trcoimao imypfe oaeha. In, trratr amlypoga cohitata macoipta? Ta, yeahta ahoyio, feanikre taneypel, bynekuim, enoyha. Adahilre, lylyno, aetaay aoimeo taquam toegeem? Rebyma maquag qunohi, fekyno fyniypdi. Eoaeby ikaeem goenkuao enacli, taliel agerhaza quema nonoimli. Ad amcory, aeypye raanaban lyaekuto coyega, adionige?

", - "
" - ] - - return entry diff --git a/devnotes.txt b/devnotes.txt new file mode 100644 index 0000000..b2896e8 --- /dev/null +++ b/devnotes.txt @@ -0,0 +1,8 @@ +config file things: +-preferred text editor +-set www symlink +-set page title + +flair: +-themes +-global post announcements