From 1275e68efa680e55fd29a377c9c58c59bb7f235e Mon Sep 17 00:00:00 2001 From: chai Date: Tue, 10 Jul 2018 22:01:22 +0800 Subject: =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cgi-bin/whisper.py | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) (limited to 'cgi-bin/whisper.py') 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 -- cgit v1.1-26-g67d0