~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to settings.py

  • Committer: Holger Rapp
  • Date: 2009-02-25 16:39:09 UTC
  • Revision ID: sirver@kallisto.local-20090225163909-4uh1xkzqkuum3ooj
- Forum is now ready to be used
- Style fixes for Firefox
- Some smaller page bugs are fixed

Show diffs side-by-side

added added

removed removed

Lines of Context:
92
92
######################
93
93
WIKI_LOCK_DURATION = 30
94
94
 
 
95
######################
 
96
# User configuration #
 
97
######################
 
98
AUTH_PROFILE_MODULE = 'pybb.Profile'
 
99
 
 
100
######################
 
101
# Pybb Configuration #
 
102
######################
 
103
PYBB_ATTACHMENT_ENABLE = False
 
104
 
95
105
INSTALLED_APPS = (
96
106
    'django.contrib.auth',
97
107
    'django.contrib.contenttypes',
110
120
    # Modified 3rd party apps
111
121
    'widelands.wiki', # This is based on wikiapp, but has some local modifications
112
122
    'widelands.news', # This is based on simple-blog, but has some local modifications
 
123
    'pybb', # Feature enriched version of pybb
113
124
 
114
125
    # Thirdparty apps
115
126
    'notification',
116
127
    'registration', # User registration (per Email validation)
117
128
    'pagination',
118
129
    'tagging',
119
 
    'pybb', # Feature enriched version of pybb
120
130
)
121
131
 
122
132
try: