Changeset 5194

Show
Ignore:
Timestamp:
08/21/08 21:17:34 (5 months ago)
Author:
carndt
Message:

Add missing url function to 'all' in controllers.py

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.0/turbogears/controllers.py

    r5191 r5194  
    605605 
    606606 
    607 __all__ = ["expose", "validate", "redirect", "flash", 
    608            "Root", "RootController", "Controller", 
    609            "error_handler", "exception_handler"] 
     607__all__ = [ 
     608    "Controller", 
     609    "error_handler", 
     610    "exception_handler", 
     611    "expose", 
     612    "flash", 
     613    "redirect", 
     614    "Root", 
     615    "RootController", 
     616    "url", 
     617    "validate", 
     618
  • branches/1.1/turbogears/controllers.py

    r5193 r5194  
    597597 
    598598 
    599 __all__ = ["expose", "validate", "redirect", "flash", 
    600            "Root", "RootController", "Controller", 
    601            "error_handler", "exception_handler"] 
     599__all__ = [ 
     600    "Controller", 
     601    "error_handler", 
     602    "exception_handler", 
     603    "expose", 
     604    "flash", 
     605    "redirect", 
     606    "Root", 
     607    "RootController", 
     608    "url", 
     609    "validate", 
     610
  • branches/1.5/turbogears/controllers.py

    r5145 r5194  
    550550 
    551551 
    552 __all__ = ["expose", "validate", "redirect", "flash", 
    553            "Root", "RootController", "Controller", 
    554            "error_handler", "exception_handler"] 
     552__all__ = [ 
     553    "Controller", 
     554    "error_handler", 
     555    "exception_handler", 
     556    "expose", 
     557    "flash", 
     558    "redirect", 
     559    "Root", 
     560    "RootController", 
     561    "url", 
     562    "validate", 
     563