Changeset 5652

Show
Ignore:
Timestamp:
11/03/08 17:04:15 (2 months ago)
Author:
mramm
Message:

A few doc updates, mostly config related. Definitely more to come.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • docs/2.0/docs/index.rst

    r5573 r5652  
    99web world has been increasingly designed around WSGI.   
    1010 
    11 This has enabled a whole new world of component reuse, and TG2 is designed to  
    12 take advantage of this fact in order to make a framework which is both  
    13 flexible, and productive.  TG2 represents a change from TurboGears 1, but it  
    14 also represents a set of components that we think will continue to be at  
     11This has enabled a whole new world of reuse, and TG2 is designed to  
     12take advantage of this fact in order to make a framework which provides  
     13easy to use,  productive defaults, while still providing flexibility where it's useful.   
     14 
     15TG2 represents a change from some of the components in TurboGears 1, but we're now invested in a set of components that we think will continue to be at  
    1516the center of python web development for years to come.  
    16  
    17 TurboGears 2 is in rapid development, and those who jump onboard now may  
    18 experience a bit of API instability that comes from all that development  
    19 energy, but because it is well tested, and based on well tested, and known  
    20 stable components it is already being used by some people in production  
    21 environments. 
    2217 
    2318Getting Started with TurboGears 
     
    3328   main/DownloadInstall 
    3429   main/QuickStart 
    35    main/BasicMoves 
    3630 
    3731Tutorials 
     
    4943   main/Auth 
    5044 
    51 What's new 
    52 =============== 
     45What's new in TG2 
     46=================== 
    5347 
    5448.. toctree:: 
     
    144138Not all sites are going to be performance constrained, and not all performance 
    145139constraints are created equal.   Premature optimization can get you into a lot  
    146 of trouble if you're not careful, but at the same time knowing and doing a  
    147 few simple things up front can help you to handle huge traffic loads when they 
    148 come.    
     140of trouble if you're not careful, but knowing and doing a few simple things up front can help you to handle huge traffic loads when they come.    
    149141 
    150142These guides are not intended to be exhaustive descriptions of web-application 
  • docs/2.0/docs/main/Config.rst

    r5649 r5652  
    128128you programatically setup one TurboGears app inside another.  
    129129 
    130 In that case, you'll need to create your own ``base_config`` like object to use 
    131 when configuring the inside wsgi application instance.  
     130In that case, you'll need to create your own ``base_config`` like object to usewhen configuring the inside wsgi application instance.  
    132131  
    133132Fortunately, this can be as simple as creating your own ``base_config`` object  
     
    139138  final_app = make_wsgi_app(global_conf, app_conf) 
    140139 
     140Using AppConfig outside of a quickstarted project: 
     141------------------------------------------------------ 
    141142 
     143 
     144 
  • docs/2.0/docs/project_code/wiki_root/trunk/development.ini

    r5347 r5652  
    88# and generally should not be modified by end users.  
    99 
     10##{default} 
     11 
    1012[DEFAULT] 
    1113debug = true 
     
    1517error_email_from = paste@localhost 
    1618 
     19## 
     20 
     21##{server} 
    1722[server:main] 
    1823use = egg:Paste#http 
    1924host = 127.0.0.1  
    2025port = 8080 
     26 
     27## 
     28 
     29##{app} 
    2130 
    2231[app:main] 
     
    5968# http://docs.python.org/lib/logging-config-fileformat.html 
    6069 
     70## 
     71 
    6172[loggers] 
    6273keys = root, wiki20, sqlalchemy