Changeset 5198
- Timestamp:
- 08/21/08 22:07:58 (3 months ago)
- Files:
-
- branches/1.0/CHANGELOG.txt (modified) (1 diff)
- branches/1.1/CHANGELOG.txt (modified) (1 diff)
- branches/1.5/CHANGELOG.txt (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.0/CHANGELOG.txt
r5183 r5198 9 9 10 10 * Visit key can now be retrieved also from the request params (#1927) 11 12 Fixes 13 ~~~~~ 14 15 * url() now handles URLs with existing query strings correctly (#1862) 11 16 12 17 Contributors (in alphabetic order) branches/1.1/CHANGELOG.txt
r5183 r5198 28 28 * When using SQLObject, PackageHub.end() now uses connection.expireAll(), for 29 29 added safety in a multithreaded environment. (#85) 30 * url() now handles URLs with existing query strings correctly (#1862) 30 31 31 32 Contributors branches/1.5/CHANGELOG.txt
r5155 r5198 8 8 ~~~~~~~ 9 9 10 * CherryPy 3 integration. The CherryPy changes that directly 10 * CherryPy 3 integration. The CherryPy changes that directly 11 11 impact TurboGears are: 12 12 * Filters have been replaced by Hooks & Tools. … … 28 28 29 29 * The deprecated features of testutil (create_request, etc) have been removed. 30 * config is now seperated into server & app config. config.get 30 * config is now seperated into server & app config. config.get 31 31 is deprecated in favor of config.server.get or request.config when inside 32 32 of a request. … … 34 34 * Removed startup.get_object_trail, as it's no longer being used. 35 35 * MonkeyDecodingFilter has been removed. It's no longer needed now that the 36 NestedVariablesHook runs after cherrypy.tools.decode. 36 NestedVariablesHook runs after cherrypy.tools.decode. 37 37 * startup.SimpleWSGIServer is deprecated. Use cherrypy.wsgi.CPWSGIServer 38 38 instead. … … 76 76 * When using SQLObject, PackageHub.end() now uses connection.expireAll(), for 77 77 added safety in a multithreaded environment. (#85) 78 79 Contributors 80 ~~~~~~~~~~~~ 81 82 Florent Aide, Roger Demetrescu, Jorge Godoy, Paul Johnston, Christoph Zwerschke, 83 Luke Macken, Ken Kuhlman 78 * url() now handles URLs with existing query strings correctly (#1862) 79 80 Contributors 81 ~~~~~~~~~~~~ 82 83 Florent Aide, Christopher Arndt, Roger Demetrescu, Jorge Godoy, Paul Johnston, Ken Kuhlman, Luke Macken, Christoph Zwerschke 84 84 85 85 … … 90 90 ~~~~~~~ 91 91 92 * Pagination can be disabled by using ``allow_limit_override`` and 93 ``tg_paginate_limit=0``, allowing all results been returned on one single 92 * Pagination can be disabled by using ``allow_limit_override`` and 93 ``tg_paginate_limit=0``, allowing all results been returned on one single 94 94 page (#1629). 95 95 … … 113 113 ~~~~~~~~~~~~ 114 114 115 * Paginate ``default_order`` has been greatly improved. Use of the 115 * Paginate ``default_order`` has been greatly improved. Use of the 116 116 ``default_reversed`` parameter has been deprecated. It will still be used 117 117 if it is informed, but a DeprecationWarning will be displayed. … … 145 145 * Paginate ``default_order`` can now be a string or a list of strings. 146 146 The list of string is used to specify the ordering of multiple columns. 147 Every string starting with a dash (``-``) indicates that the column will 147 Every string starting with a dash (``-``) indicates that the column will 148 148 have its default ordering reversed (#1618). 149 * turbogears.url() allows to to create an url with multiple values for the 149 * turbogears.url() allows to to create an url with multiple values for the 150 150 same key (#1456). 151 151