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

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Matt Giuca
  • Date: 2009-04-25 14:37:42 UTC
  • mfrom: (1195.1.19 marks-fix)
  • Revision ID: matt.giuca@gmail.com-20090425143742-741mh2plk0cgib3e
Merged branch marks-fix. Fixes Google Code issue 144.

bin/ivle-marks: Completely rewritten. (Was hopelessly out-of-date, and didn't
    work at all. Now works on the current database model, and has new features
    to boot - able to select the semester and cutoff date).

ivle.worksheet.utils: Added calculate_mark, which is from the duplicated code
    in both bin/ivle-marks and ivle.webapp.tutorial.OfferingView.populate.
    Also added some extra optional arguments for calculating
    exercise/worksheet scores from a particular date.

ivle.webapp.tutorial: Call ivle.worksheet.utils.calculate_mark instead of
    manually calculating (avoid code duplication).

ivle.database: A few new methods on the Subject class, for retrieving
    offerings.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
# This is a command-line application, for use by the administrator.
24
24
# This program is a frontend for the modules in the setup packages that 
25
 
# configure, build and install IVLE in three separate steps.
 
25
# build and install IVLE in separate steps.
26
26
# It is called with at least one argument, which specifies which operation to
27
27
# take.
28
28
 
29
29
import sys
30
 
import setup.configure
31
30
import setup.build
32
31
import setup.install
33
 
import setup.listmake
34
 
 
35
32
 
36
33
def main(argv=None):
37
34
    if argv is None:
64
61
        print """Usage: python setup.py operation [options]
65
62
Operation can be:
66
63
    help [operation]
67
 
    listmake (developer use only)
68
 
    config
69
64
    build
70
65
    install
71
66
 
80
75
    try:
81
76
        oper_func = {
82
77
            'help' : help,
83
 
            'config' : setup.configure.configure,
84
78
            'build' : setup.build.build,
85
 
            'listmake' : setup.listmake.listmake,
86
79
            'install' : setup.install.install,
87
 
            #'updatejails' : None,
88
80
        }[operation]
89
81
    except KeyError:
90
82
        print >>sys.stderr, (