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

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: William Grant
  • Date: 2009-01-20 05:03:55 UTC
  • mto: This revision was merged to the branch mainline in revision 1090.
  • Revision ID: grantw@unimelb.edu.au-20090120050355-1tm3j13zazd9ik32
ivle.worksheet: Add a save_exercise function.
www/apps/tutorialservice: Import db.TIMESTAMP_FORMAT locally.
    Remove last reference to ivle.db, replacing it with save_exercise.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
import setup.configure
31
31
import setup.build
32
32
import setup.install
33
 
import setup.listmake
34
33
 
35
34
 
36
35
def main(argv=None):
40
39
    # Print the opening spiel including the GPL notice
41
40
 
42
41
    print """IVLE - Informatics Virtual Learning Environment Setup
43
 
Copyright (C) 2007-2008 The University of Melbourne
 
42
Copyright (C) 2007-2009 The University of Melbourne
44
43
IVLE comes with ABSOLUTELY NO WARRANTY.
45
44
This is free software, and you are welcome to redistribute it
46
45
under certain conditions. See LICENSE.txt for details.
64
63
        print """Usage: python setup.py operation [options]
65
64
Operation can be:
66
65
    help [operation]
67
 
    listmake (developer use only)
68
66
    config
69
67
    build
70
68
    install
82
80
            'help' : help,
83
81
            'config' : setup.configure.configure,
84
82
            'build' : setup.build.build,
85
 
            'listmake' : setup.listmake.listmake,
86
83
            'install' : setup.install.install,
87
84
            #'updatejails' : None,
88
85
        }[operation]