diff options
Diffstat (limited to 'cgi-bin/whisper.py')
-rw-r--r-- | cgi-bin/whisper.py | 25 |
1 files changed, 11 insertions, 14 deletions
diff --git a/cgi-bin/whisper.py b/cgi-bin/whisper.py index 0372b03..a6a1437 100644 --- a/cgi-bin/whisper.py +++ b/cgi-bin/whisper.py @@ -3,18 +3,15 @@ from path import Path import connect from connect import Connect -class Whisper(object): - def build(whisperId): - conn = Connect.produce() - cursor = conn.cursor() - - whisper_file = open(Path.template("whisper.html"), 'r', encoding="utf8") - whisper_templ = whisper_file.read() - whisper_file.close() - - - - conn.close() - - +whisper_file = open(Path.template("whisper.html"), 'r', encoding="utf8") +whisper_templ = whisper_file.read() +whisper_file.close() +class Whisper(object): + def build(_content, _date, _odd): + whisper = whisper_templ.format(\ + oddoreven=((_odd == True) and "odd" or "even"),\ + content=_content,\ + date=_date\ + ) + return whisper |