~joaopinto/apt-portal/pre-modules

« back to all changes in this revision

Viewing changes to applications/getdeb/startup.py

  • Committer: Joao Pinto
  • Date: 2009-06-13 22:45:41 UTC
  • Revision ID: joao.pinto@getdeb.net-20090613224541-g1fpmbb9e9jg5u10
Initial commit for the cherrypy version

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# GetDeb specifc startup file
2
 
 
3
 
# Common utility pages
4
 
from common.controllers import \
5
 
        register, auth, install, logout, login, release_select
6
 
        
7
 
# Main pages
8
 
from common.controllers import \
9
 
        updates, about, contact, sponsors
10
 
        
11
 
# Admin only
12
 
from common.controllers import packages, app
13
 
 
14
 
# Error handling
15
 
from common.controllers import error_404
16
 
 
17
 
# We need a custom welcome controller for the sponsor ads integration
18
 
from applications.getdeb.controllers import welcome
19