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

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: drtomc
  • Date: 2007-12-11 03:26:29 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:25
A bit more work on the userdb stuff.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/env python
2
 
# IVLE - Informatics Virtual Learning Environment
3
 
# Copyright (C) 2007-2008 The University of Melbourne
4
 
#
5
 
# This program is free software; you can redistribute it and/or modify
6
 
# it under the terms of the GNU General Public License as published by
7
 
# the Free Software Foundation; either version 2 of the License, or
8
 
# (at your option) any later version.
9
 
#
10
 
# This program is distributed in the hope that it will be useful,
11
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
# GNU General Public License for more details.
14
 
#
15
 
# You should have received a copy of the GNU General Public License
16
 
# along with this program; if not, write to the Free Software
17
 
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
 
 
19
 
# Module: setup
20
 
# Author: Matt Giuca
21
 
# Date:   12/12/2007
22
 
 
23
 
# This is a command-line application, for use by the administrator.
24
 
# This program is a frontend for the modules in the setup packages that 
25
 
# configure, build and install IVLE in three separate steps.
26
 
# It is called with at least one argument, which specifies which operation to
27
 
# take.
28
 
 
29
 
import sys
30
 
import setup.configure
31
 
import setup.build
32
 
import setup.install
33
 
 
34
 
 
35
 
def main(argv=None):
36
 
    if argv is None:
37
 
        argv = sys.argv
38
 
 
39
 
    # Print the opening spiel including the GPL notice
40
 
 
41
 
    print """IVLE - Informatics Virtual Learning Environment Setup
42
 
Copyright (C) 2007-2009 The University of Melbourne
43
 
IVLE comes with ABSOLUTELY NO WARRANTY.
44
 
This is free software, and you are welcome to redistribute it
45
 
under certain conditions. See LICENSE.txt for details.
46
 
 
47
 
IVLE Setup
48
 
"""
49
 
 
50
 
    # First argument is the name of the setup operation
51
 
    try:
52
 
        operation = argv[1]
53
 
    except IndexError:
54
 
        # Print usage message and exit
55
 
        help([])
56
 
        return 1
57
 
 
58
 
    oper_func = call_operator(operation)
59
 
    return oper_func(argv[2:])
60
 
 
61
 
def help(args):
62
 
    if len(args)!=1:
63
 
        print """Usage: python setup.py operation [options]
64
 
Operation can be:
65
 
    help [operation]
66
 
    config
67
 
    build
68
 
    install
69
 
 
70
 
    For help and options for a specific operation use 'help [operation]'."""
71
 
    else:
72
 
        operator = args[0]
73
 
        oper_func = call_operator(operator)
74
 
        oper_func(['operator','--help'])
75
 
 
76
 
def call_operator(operation):
77
 
    # Call the requested operation's function
78
 
    try:
79
 
        oper_func = {
80
 
            'help' : help,
81
 
            'config' : setup.configure.configure,
82
 
            'build' : setup.build.build,
83
 
            'install' : setup.install.install,
84
 
            #'updatejails' : None,
85
 
        }[operation]
86
 
    except KeyError:
87
 
        print >>sys.stderr, (
88
 
            """Invalid operation '%s'. Try python setup.py help."""
89
 
            % operation)
90
 
        sys.exit(1)
91
 
    return oper_func
92
 
 
93
 
if __name__ == "__main__":
94
 
    sys.exit(main())
95