Changeset 3830
- Timestamp:
- 12/16/07 14:28:53 (1 year ago)
- Files:
-
- branches/1.0/CHANGELOG.txt (modified) (3 diffs)
- branches/1.0/turbogears/qstemplates/quickstart/dev.cfg_tmpl (modified) (2 diffs)
- branches/1.0/turbogears/qstemplates/quickstart/test.cfg_tmpl (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.0/CHANGELOG.txt
r3824 r3830 9 9 ~~~~~~~ 10 10 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 13 13 page (#1629). 14 14 … … 19 19 * Paginate does a better handling of zeroed limit, avoiding ZeroDivisionError 20 20 exception (#1629). 21 * Added missing logger configuration to quickstarted projects (#1630). 21 22 22 23 Contributors 23 24 ~~~~~~~~~~~~ 24 25 25 Toshio Kuratomi .26 Toshio Kuratomi, Christoph Zwerschke. 26 27 27 28 … … 53 54 * Installation of TurboGears now does not require installation of an ORM. 54 55 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). 56 57 57 58 Features branches/1.0/turbogears/qstemplates/quickstart/dev.cfg_tmpl
r3513 r3830 2 2 # This is where all of your settings go for your development environment 3 3 # 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 5 5 # ${package}/config/app.cfg 6 6 … … 80 80 propagate=0 81 81 82 #if $identity != 'none' 83 [[[identity]]] 84 level='INFO' 85 qualname='turbogears.identity' 86 handlers=['access_out'] 87 propagate=0 88 #end if 89 82 90 #if $sqlalchemy == "True" 83 91 [[[database]]] branches/1.0/turbogears/qstemplates/quickstart/test.cfg_tmpl
r2268 r3830 1 [global] 1 2 # You can place test-specific configuration options here (like test db uri, etc) 2 3 # 4 5 # DATABASE 3 6 4 7 #if $sqlalchemy != "True" … … 8 11 #end if 9 12 13 # LOGGING 14 15 [logging] 16 17 [[formatters]] 18 [[[full_content]]] 19 format='*(asctime)s *(name)s *(levelname)s *(message)s' 20 21 [[handlers]] 22 [[[test_out]]] 23 class='StreamHandler' 24 level='DEBUG' 25 args='(sys.stdout,)' 26 formatter='full_content' 27 28 [[loggers]] 29 [[[${package}]]] 30 level='DEBUG' 31 qualname='${package}' 32 handlers=['test_out'] 33 34 [[[turbogears]]] 35 level='INFO' 36 qualname='turbogears' 37 handlers=['test_out']