~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to settings.py

  • Committer: Holger Rapp
  • Date: 2009-02-20 12:25:18 UTC
  • Revision ID: holgerrapp@gmx.net-20090220122518-feaq34ta973snnct
Imported wikiapp into our repository, because we did some local changes (users must be logged in to edit wiki pages)

Show diffs side-by-side

added added

removed removed

Lines of Context:
81
81
    'django.core.context_processors.request',
82
82
)
83
83
 
 
84
############################
 
85
# Activation configuration #
 
86
############################
84
87
DEFAULT_FROM_EMAIL = 'noreply@widelands.org'
85
 
 
86
88
ACCOUNT_ACTIVATION_DAYS=2 # Days an activation token keeps active
87
89
 
 
90
######################
 
91
# Wiki configuration #
 
92
######################
 
93
WIKI_LOCK_DURATION = 30
 
94
 
 
95
 
88
96
INSTALLED_APPS = (
89
97
    'django.contrib.auth',
90
98
    'django.contrib.contenttypes',
98
106
 
99
107
    # Our own apps
100
108
    'widelands.mainpage',
 
109
    'widelands.wiki', # This is based on wikiapp, but has some local modifications
101
110
 
102
111
    # Thirdparty apps
103
112
    'registration', # User registration (per Email validation)
104
113
    'pagination',
105
114
    'tagging',
106
 
    'wiki',
107
115
)
108
116
 
109
117
try: