Changeset 5198

Show
Ignore:
Timestamp:
08/21/08 22:07:58 (3 months ago)
Author:
carndt
Message:

Update CHANGELOG.txt for #8162 fix

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.0/CHANGELOG.txt

    r5183 r5198  
    99 
    1010* Visit key can now be retrieved also from the request params (#1927) 
     11 
     12Fixes 
     13~~~~~ 
     14 
     15* url() now handles URLs with existing query strings correctly (#1862) 
    1116 
    1217Contributors (in alphabetic order) 
  • branches/1.1/CHANGELOG.txt

    r5183 r5198  
    2828* When using SQLObject, PackageHub.end() now uses connection.expireAll(), for 
    2929  added safety in a multithreaded environment. (#85) 
     30* url() now handles URLs with existing query strings correctly (#1862) 
    3031 
    3132Contributors 
  • branches/1.5/CHANGELOG.txt

    r5155 r5198  
    88~~~~~~~ 
    99 
    10 * CherryPy 3 integration.  The CherryPy changes that directly  
     10* CherryPy 3 integration.  The CherryPy changes that directly 
    1111 impact TurboGears are: 
    1212 * Filters have been replaced by Hooks & Tools. 
     
    2828 
    2929* 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 
    3131  is deprecated in favor of config.server.get or request.config when inside 
    3232  of a request. 
     
    3434* Removed startup.get_object_trail, as it's no longer being used. 
    3535* 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. 
    3737* startup.SimpleWSGIServer is deprecated.  Use cherrypy.wsgi.CPWSGIServer 
    3838  instead. 
     
    7676* When using SQLObject, PackageHub.end() now uses connection.expireAll(), for 
    7777  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 
     80Contributors 
     81~~~~~~~~~~~~ 
     82 
     83Florent Aide, Christopher Arndt, Roger Demetrescu, Jorge Godoy, Paul Johnston, Ken Kuhlman, Luke Macken, Christoph Zwerschke 
    8484 
    8585 
     
    9090~~~~~~~ 
    9191 
    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 
    9494  page (#1629). 
    9595 
     
    113113~~~~~~~~~~~~ 
    114114 
    115 * Paginate ``default_order`` has been greatly improved. Use of the  
     115* Paginate ``default_order`` has been greatly improved. Use of the 
    116116  ``default_reversed`` parameter has been deprecated. It will still be used 
    117117  if it is informed, but a DeprecationWarning will be displayed. 
     
    145145* Paginate ``default_order`` can now be a string or a list of strings. 
    146146  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 
    148148  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 
    150150  same key (#1456). 
    151151