summaryrefslogtreecommitdiffstats
path: root/askbot/__init__.py
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-08-23 18:06:56 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-08-25 14:46:36 -0400
commit1c16316b721117bef9387ba181b49557777a5bc9 (patch)
tree31eb7f04bd7b8a7b5e89b52a7d862023c28ee6e9 /askbot/__init__.py
parenta2d1de600828ca6017b65ce36498e824cadca87f (diff)
downloadaskbot-1c16316b721117bef9387ba181b49557777a5bc9.tar.gz
askbot-1c16316b721117bef9387ba181b49557777a5bc9.tar.bz2
askbot-1c16316b721117bef9387ba181b49557777a5bc9.zip
added js patch for the noscript tag to hide red margin on IE and disabled Lamson on Windows
Diffstat (limited to 'askbot/__init__.py')
-rw-r--r--askbot/__init__.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/askbot/__init__.py b/askbot/__init__.py
index 8e4f20ab..51b7c24f 100644
--- a/askbot/__init__.py
+++ b/askbot/__init__.py
@@ -5,6 +5,7 @@ Functions in the askbot module perform various
basic actions on behalf of the forum application
"""
import os
+import platform
VERSION = (0, 7, 43)
@@ -30,10 +31,13 @@ REQUIREMENTS = {
'recaptcha_works': 'django-recaptcha-works',
'openid': 'python-openid',
'pystache': 'pystache==0.3.1',
- 'lamson': 'Lamson',
'pytz': 'pytz',
+ 'longerusername': 'longerusername',
}
+if platform.system() != 'Windows':
+ REQUIREMENTS['lamson'] = 'Lamson'
+
#necessary for interoperability of django and coffin
try:
from askbot import patches