~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/__init__.py

  • Committer: drtomc
  • Date: 2008-03-03 23:47:28 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:635
serve: Avoid a permissions problem where apache was giving a 404 because *it*
    couldn't read a python file even though when the trampoline executes all
    is fine. This is only a partial fix however, because we will need to
    improve the error handling elsewhere.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
class ApplicationRoot(object):
2
 
    """Root of the IVLE path namespace."""
3
 
    def __init__(self, config, store, user):
4
 
        self.config = config
5
 
        self.store = store
6
 
        self.user = user