aboutsummaryrefslogtreecommitdiff
path: root/tagging/settings.py
diff options
context:
space:
mode:
authorSVN-Git Migration <python-modules-team@lists.alioth.debian.org>2015-10-08 11:51:45 -0700
committerSVN-Git Migration <python-modules-team@lists.alioth.debian.org>2015-10-08 11:51:45 -0700
commit2228968f3d51a3d686adb2839bf43e018432f941 (patch)
tree9e95992c4b09bbea50336e91a709a775a20fd1e5 /tagging/settings.py
downloadpython-django-tagging-2228968f3d51a3d686adb2839bf43e018432f941.tar
python-django-tagging-2228968f3d51a3d686adb2839bf43e018432f941.tar.gz
Imported Upstream version 0.1+svn102upstream/0.1+svn102
Diffstat (limited to 'tagging/settings.py')
-rw-r--r--tagging/settings.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/tagging/settings.py b/tagging/settings.py
new file mode 100644
index 0000000..18321bd
--- /dev/null
+++ b/tagging/settings.py
@@ -0,0 +1,13 @@
+"""
+Convenience module for access of custom tagging application settings,
+which enforces default settings when the main settings module which has
+been configured does not contain the appropriate settings.
+"""
+from django.conf import settings
+
+# Whether to force all tags to lowercase before they are saved to the
+# database. Default is False.
+try:
+ FORCE_LOWERCASE_TAGS = settings.FORCE_LOWERCASE_TAGS
+except AttributeError:
+ FORCE_LOWERCASE_TAGS = False