diff options
| author | Casey Duncan <casey.duncan@gmail.com> | 2010-12-02 22:59:00 -0700 |
|---|---|---|
| committer | Casey Duncan <casey.duncan@gmail.com> | 2010-12-02 22:59:00 -0700 |
| commit | f5da86dfe5f4edfa443182bc6f6009e44f001d9e (patch) | |
| tree | 3d9bc56523b4c851ec31c38d80e1d6a8b595224b /docs | |
| parent | 5dfd2f847e9f2cacba6691dd80bf7651eeabdccd (diff) | |
| download | pyramid-f5da86dfe5f4edfa443182bc6f6009e44f001d9e.tar.gz pyramid-f5da86dfe5f4edfa443182bc6f6009e44f001d9e.tar.bz2 pyramid-f5da86dfe5f4edfa443182bc6f6009e44f001d9e.zip | |
clarify paragraph, break up run-on sentence
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/narr/views.rst | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/docs/narr/views.rst b/docs/narr/views.rst index 08f849691..3cd4154fa 100644 --- a/docs/narr/views.rst +++ b/docs/narr/views.rst @@ -1016,17 +1016,17 @@ implementations, and handling form submission data is a property of the request implementation. Understanding WebOb's request API is the key to understanding how to process form submission data. -There are some defaults that you need to be aware of when trying to handle form -submission data in a :app:`Pyramid` view. Because having high-order -(non-ASCII) characters in data contained within form submissions is exceedingly -common, and because the UTF-8 encoding is the most common encoding used on the -web for non-ASCII character data, and because working and storing Unicode -values is much saner than working with and storing bytestrings, :app:`Pyramid` +There are some defaults that you need to be aware of when trying to +handle form submission data in a :app:`Pyramid` view. Having high-order +(i.e., non-ASCII) characters in data contained within form submissions +is exceedingly common, and the UTF-8 encoding is the most common +encoding used on the web for character data. Since Unicode values are +much saner than working with and storing bytestrings, :app:`Pyramid` configures the :term:`WebOb` request machinery to attempt to decode form -submission values into Unicode from the UTF-8 character set implicitly. This -implicit decoding happens when view code obtains form field values via the -``request.params``, ``request.GET``, or ``request.POST`` APIs (see -:ref:`request_module` for details about these APIs). +submission values into Unicode from UTF-8 implicitly. +This implicit decoding happens when view code obtains form field values +via the ``request.params``, ``request.GET``, or ``request.POST`` APIs +(see :ref:`request_module` for details about these APIs). For example, let's assume that the following form page is served up to a browser client, and its ``action`` points at some :app:`Pyramid` |
