Changeset 3830

Show
Ignore:
Timestamp:
12/16/07 14:28:53 (1 year ago)
Author:
chrisz
Message:

Fix for ticket #1630 (added missing logger config to quickstarted projects).

Files:

Legend:

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

    r3824 r3830  
    99~~~~~~~ 
    1010 
    11 * Pagination can be disabled by using ``allow_limit_override`` and  
    12   ``tg_paginate_limit=0``, allowing all results been returned on one single  
     11* Pagination can be disabled by using ``allow_limit_override`` and 
     12  ``tg_paginate_limit=0``, allowing all results been returned on one single 
    1313  page (#1629). 
    1414 
     
    1919* Paginate does a better handling of zeroed limit, avoiding ZeroDivisionError 
    2020  exception (#1629). 
     21* Added missing logger configuration to quickstarted projects (#1630). 
    2122 
    2223Contributors 
    2324~~~~~~~~~~~~ 
    2425 
    25 Toshio Kuratomi
     26Toshio Kuratomi, Christoph Zwerschke
    2627 
    2728 
     
    5354* Installation of TurboGears now does not require installation of an ORM. 
    5455  Instead, a project that relies on SQLObject or SQLAlchemy will have a 
    55   ``setup.py`` file written with the proper requirements (#1501,#1620). 
     56  ``setup.py`` file written with the proper requirements (#1501, #1620). 
    5657 
    5758Features 
  • branches/1.0/turbogears/qstemplates/quickstart/dev.cfg_tmpl

    r3513 r3830  
    22# This is where all of your settings go for your development environment 
    33# Settings that are the same for both development and production 
    4 # (such as template engine, encodings, etc.) all go in  
     4# (such as template engine, encodings, etc.) all go in 
    55# ${package}/config/app.cfg 
    66 
     
    8080propagate=0 
    8181 
     82#if $identity != 'none' 
     83[[[identity]]] 
     84level='INFO' 
     85qualname='turbogears.identity' 
     86handlers=['access_out'] 
     87propagate=0 
     88#end if 
     89 
    8290#if $sqlalchemy == "True" 
    8391[[[database]]] 
  • branches/1.0/turbogears/qstemplates/quickstart/test.cfg_tmpl

    r2268 r3830  
     1[global] 
    12# You can place test-specific configuration options here (like test db uri, etc) 
    23# 
     4 
     5# DATABASE 
    36 
    47#if $sqlalchemy != "True" 
     
    811#end if 
    912 
     13# LOGGING 
     14 
     15[logging] 
     16 
     17[[formatters]] 
     18[[[full_content]]] 
     19format='*(asctime)s *(name)s *(levelname)s *(message)s' 
     20 
     21[[handlers]] 
     22[[[test_out]]] 
     23class='StreamHandler' 
     24level='DEBUG' 
     25args='(sys.stdout,)' 
     26formatter='full_content' 
     27 
     28[[loggers]] 
     29[[[${package}]]] 
     30level='DEBUG' 
     31qualname='${package}' 
     32handlers=['test_out'] 
     33 
     34[[[turbogears]]] 
     35level='INFO' 
     36qualname='turbogears' 
     37handlers=['test_out']