Changeset 4697

Show
Ignore:
Timestamp:
06/10/08 15:08:09 (5 months ago)
Author:
faide
Message:

small presentation changes in the templates (no code) just spaces

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • projects/tg.devtools/trunk/devtools/templates/turbogears/+package+/lib/base.py_tmpl

    r4587 r4697  
    1818class Controller(object): 
    1919    """Base class for a web application's controller. 
    20      
     20 
    2121    Currently, this provides positional parameters functionality 
    2222    via a standard default method. 
    2323    """ 
    24      
     24 
    2525class BaseController(TGController): 
    2626    """Base class for the root of a web application. 
    27      
     27 
    2828    Your web application should have one of these. The root of 
    2929    your application is used to compute URLs used by your app. 
    3030    """ 
    31      
     31 
    3232    def __call__(self, environ, start_response): 
    3333        """Invoke the Controller""" 
     
    4848            model.DBSession.remove() 
    4949        {{if identity == "sqlalchemy"}} 
    50         tmpl_context.identity = request.environ.get('repoze.who.identity')  
     50        tmpl_context.identity = request.environ.get('repoze.who.identity') 
    5151        {{endif}} 
    5252        {{else}}