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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#!/usr/bin/env python
# IVLE - Informatics Virtual Learning Environment
# Copyright (C) 2007-2008 The University of Melbourne
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

# Module: setup
# Author: Matt Giuca
# Date:   12/12/2007

# This is a command-line application, for use by the administrator.
# This program is a frontend for the modules in the setup packages that 
# configure, build and install IVLE in three separate steps.
# It is called with at least one argument, which specifies which operation to
# take.

import sys
import setup.configure
import setup.build
import setup.install
import setup.listmake


def main(argv=None):
    if argv is None:
        argv = sys.argv

    # Print the opening spiel including the GPL notice

    print """IVLE - Informatics Virtual Learning Environment Setup
Copyright (C) 2007-2009 The University of Melbourne
IVLE comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it
under certain conditions. See LICENSE.txt for details.

IVLE Setup
"""

    # First argument is the name of the setup operation
    try:
        operation = argv[1]
    except IndexError:
        # Print usage message and exit
        help([])
        return 1

    oper_func = call_operator(operation)
    return oper_func(argv[2:])

def help(args):
    if len(args)!=1:
        print """Usage: python setup.py operation [options]
Operation can be:
    help [operation]
    listmake (developer use only)
    config
    build
    install

    For help and options for a specific operation use 'help [operation]'."""
    else:
        operator = args[0]
        oper_func = call_operator(operator)
        oper_func(['operator','--help'])

def call_operator(operation):
    # Call the requested operation's function
    try:
        oper_func = {
            'help' : help,
            'config' : setup.configure.configure,
            'build' : setup.build.build,
            'listmake' : setup.listmake.listmake,
            'install' : setup.install.install,
            #'updatejails' : None,
        }[operation]
    except KeyError:
        print >>sys.stderr, (
            """Invalid operation '%s'. Try python setup.py help."""
            % operation)
        sys.exit(1)
    return oper_func

if __name__ == "__main__":
    sys.exit(main())