summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-01-22 08:59:51 +0000
committerChris McDonough <chrism@agendaless.com>2009-01-22 08:59:51 +0000
commit74db82d177093f4b1102d70832f8abd9b894dd61 (patch)
tree0125dfd8974a79b1a5a925afc0637a787af9f466 /docs
parent5b9105ad8de57f21269608b1536720a5425a1fd1 (diff)
downloadpyramid-74db82d177093f4b1102d70832f8abd9b894dd61.tar.gz
pyramid-74db82d177093f4b1102d70832f8abd9b894dd61.tar.bz2
pyramid-74db82d177093f4b1102d70832f8abd9b894dd61.zip
- The ``unicode_path_segments`` configuration variable and the
``BFG_UNICODE_PATH_SEGMENTS`` configuration variable have been removed. Path segments are now always passed to model ``__getitem__`` methods as unicode. "True" has been the default for this setting since 0.5.4, but changing this configuration setting to false allowed you to go back to passing raw path element strings to model ``__getitem__`` methods. This services a speed goal (we get about +80 req/s by removing the check), and it's clearer just to always expect unicode path segments in model ``__getitem__`` methods.
Diffstat (limited to 'docs')
-rw-r--r--docs/narr/environment.rst10
1 files changed, 0 insertions, 10 deletions
diff --git a/docs/narr/environment.rst b/docs/narr/environment.rst
index 69dc98e25..6df4157e2 100644
--- a/docs/narr/environment.rst
+++ b/docs/narr/environment.rst
@@ -39,16 +39,6 @@ application-specific configuration settings.
+---------------------------------+-----------------------------+----------------------------------------+
| ``BFG_DEBUG_ALL`` | ``debug_all`` | Turns all debug_* settings on. |
+---------------------------------+-----------------------------+----------------------------------------+
-| ``BFG_UNICODE_PATH_SEGMENTS`` | ``unicode_path_segments`` | Defaults to ``true``. When ``true``, |
-| | | URL path segment names will be passed |
-| | | to model object ``__getitem__`` |
-| | | methods by the BFG model graph |
-| | | traverser as ``unicode`` types rather |
-| | | than as ``str`` types; path segments |
-| | | will be assumed to be UTF-8 encoded. |
-| | | When ``false``, pass path segments |
-| | | as undecoded ``str`` types. |
-+---------------------------------+-----------------------------+----------------------------------------+
Examples
--------