@@ -53,4 +53,4 @@ docs/_build/
dev/
dev-manage.py
futuredep/
-future-manage.py
+future-manage.py
@@ -1 +1 @@
-__version__ = "0.6.0"
+__version__ = "0.6.0"
@@ -1,7 +1,29 @@
"""
Misago default settings
-You are strongly advised to import this file at the top of your project's settings.py
+This fille sets everything Misago needs to run.
+
+If you want to add custom app, middleware or path, please update setting vallue
+defined in this file instead of copying setting from here to your settings.py.
+Yes:
+#yourproject/settings.py
+INSTALLED_APPS += (
+ 'myawesomeapp',
+)
+No:
+INSTALLED_APPS = (
+ 'django.contrib.admin',
+ 'django.contrib.auth',
+ 'misago.core',
+ 'misago.conf',
+ ...
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
@@ -53,4 +75,4 @@ USE_I18N = True
USE_L10N = True
-USE_TZ = True
+USE_TZ = True
@@ -9,4 +9,4 @@ MISAGO_EXCEPTIONS = (
def is_misago_exception(exception):
- return exception.__class__ in MISAGO_EXCEPTIONS
+ return exception.__class__ in MISAGO_EXCEPTIONS
@@ -16,4 +16,4 @@ class Http404(DjHttp404):
class OutdatedUrl(Exception):
- """The url that was used to reach view contained outdated slug"""
+ """The url that was used to reach view contained outdated slug"""
@@ -9,4 +9,4 @@ urlpatterns = patterns('',
# url(r'^blog/', include('blog.urls')),
url(r'^admin/', include(admin.site.urls)),
-)