diff options
author | Stefan Ritter <xeno@thehappy.de> | 2009-04-26 01:07:02 +0200 |
---|---|---|
committer | Stefan Ritter <xeno@thehappy.de> | 2009-04-26 01:07:02 +0200 |
commit | a0969526f9cecc60f964ffc2a6ff0e91be5ebbd3 (patch) | |
tree | 05e40722cd0e525e114f9b9ffe42f10225dc912b | |
parent | f51dc890be3487c15727c82dd6e036bd82236e27 (diff) |
Spam avoidance:
* Added a blacklist
-rw-r--r-- | blacklist | 1 | ||||
-rwxr-xr-x | blogthon.cgi | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/blacklist b/blacklist new file mode 100644 index 0000000..4c4e75e --- /dev/null +++ b/blacklist @@ -0,0 +1 @@ +viagra diff --git a/blogthon.cgi b/blogthon.cgi index 3872c7f..14dafdb 100755 --- a/blogthon.cgi +++ b/blogthon.cgi @@ -99,6 +99,8 @@ if cname and ctext and ctitle: .replace(">", ">") \ .replace("\"", """) + # TODO: Read file with spam words + # Add comment comments_file = glob.glob(entries_dir + ctitle + '.comments') if not comments_file: |