From f44379aa838f2184de5304fde02beb49569a6111 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ya=C5=9Far=20Arabac=C4=B1?= <yasar11732@gmail.com>
Date: Wed, 23 Nov 2011 00:42:23 +0200
Subject: [PATCH] docs/ref/setting.txt added warning

---
 docs/ref/settings.txt |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt
index a35d99a..808fafa 100644
--- a/docs/ref/settings.txt
+++ b/docs/ref/settings.txt
@@ -12,6 +12,15 @@ Available settings
 Here's a full list of all available settings, in alphabetical order, and their
 default values.
 
+.. warning::
+    Be careful when you override default values of settings, because it may
+    cause some core or commonly used functions of Django to stop working
+    correctly. When overriding default values, you are advised to make sure
+    that none of the features you wish to use requires previous setting to work
+    properly. If the setting you want to change is tuple, list or dictionary,
+    you can append or remove items, rather than completely overriding
+    that setting.
+
 .. setting:: ABSOLUTE_URL_OVERRIDES
 
 ABSOLUTE_URL_OVERRIDES
-- 
1.7.7.3

