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

« back to all changes in this revision

Viewing changes to www/apps/__init__.py

  • Committer: mattgiuca
  • Date: 2008-07-07 05:59:07 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:816
users.sql: Updated database schema; split subject and offering tables.

Need to manually apply the following commands to being the database up to
date. Note that this will wipe all data in your "offering" table - which
shouldn't matter because IVLE has never used this table to date.

CREATE TABLE subject (                                                               
    subjectid       SERIAL PRIMARY KEY NOT NULL,
    subj_code       VARCHAR UNIQUE NOT NULL,
    subj_name       VARCHAR NOT NULL,
    subj_short_name VARCHAR,    -- may be null
    url             VARCHAR
);

DELETE FROM offering;
ALTER TABLE offering DROP COLUMN subj_code;
ALTER TABLE offering DROP COLUMN subj_name;
ALTER TABLE offering DROP COLUMN url;
ALTER TABLE offering ADD COLUMN subject
    INT4 REFERENCES subject (subjectid) NOT NULL;

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
# Loads IVLE applications.
23
23
# All sub-packages in this package are apps.
24
24
 
25
 
from mod_python import apache
26
 
 
27
25
def call_app(appname, req):
28
26
    """Calls an application with the given name. Passes req to the app's
29
27
    handler."""
30
28
    try:
31
29
        # level=-1 to make it look in the right directory
32
30
        app_module = __import__(appname, globals(), locals(), [], -1)
33
 
        app_module.handle(req)
34
 
    except ImportError:
 
31
    except ImportError, msg:
35
32
        # Any problems meant it's a server error, because conf/apps.py said
36
33
        # this app would be here.
37
 
        raise apache.SERVER_RETURN, apache.HTTP_INTERNAL_SERVER_ERROR
 
34
        req.throw_error(req.HTTP_INTERNAL_SERVER_ERROR,
 
35
            "Could not load the %s application: %s" % (repr(appname), str(msg)))
 
36
    app_module.handle(req)