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

« back to all changes in this revision

Viewing changes to setup/util.py

Quick port of fileservice to the new framework. It's still very much old-style,
though.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
__all__ = ['PYTHON_VERSION', 'copy_file_to_jail', 'RunError',
35
35
           'action_runprog', 'action_remove', 'action_rename', 'action_mkdir',
36
36
           'action_copytree', 'action_copylist', 'action_copyfile',
37
 
           'action_symlink', 'action_chown',
 
37
           'action_symlink', 'action_append', 'action_chown',
38
38
           'action_chown_setuid', 'action_chmod_x', 'action_make_private',
39
 
           'filter_mutate', 'get_svn_revision', 'InstallList',
 
39
           'query_user', 'filter_mutate', 'get_svn_revision', 'InstallList',
40
40
           'make_install_path', 'wwwuid']
41
41
 
42
42
# Determine which Python version (2.4 or 2.5, for example) we are running,
195
195
    if not dry:
196
196
        os.symlink(src, dst)
197
197
 
 
198
def action_append(ivle_pth, ivle_www):
 
199
    file = open(ivle_pth, 'a+')
 
200
    file.write(ivle_www + '\n')
 
201
    file.close()
 
202
 
198
203
def action_chown_setuid(file, dry):
199
204
    """Chowns a file to root, and sets the setuid bit on the file.
200
205
    Calling this function requires the euid to be root.
256
261
# Mime types which will automatically be placed in the list by InstallList.
257
262
installlist_mimetypes = ['text/x-python', 'text/html',
258
263
    'application/x-javascript', 'application/javascript',
259
 
    'text/css', 'image/png', 'image/gif', 'application/xml', 'text/plain',
260
 
    'text/x-sh']
 
264
    'text/css', 'image/png', 'image/gif', 'application/xml']
261
265
# Filenames which will automatically be placed in the list by InstallList.
262
266
whitelist_filenames = ['ivle-spec.conf']
263
267
 
292
296
    return os.path.join(rootdir, normpath)
293
297
 
294
298
class InstallList(object):
 
299
    # We build two separate lists, by walking www and console
 
300
    list_www = property(lambda self: build_list_py_files('www'))
 
301
 
295
302
    list_ivle_lib = property(lambda self: build_list_py_files('ivle'))
296
303
 
297
304
    list_subjects = property(lambda self: build_list_py_files('subjects',
311
318
    ]
312
319
 
313
320
    list_user_binaries = [
314
 
        "bin/ivle-addexercise",
315
 
        "bin/ivle-adduser",
316
 
        "bin/ivle-buildjail",
317
 
        "bin/ivle-cloneworksheets",
318
 
        "bin/ivle-config",
319
 
        "bin/ivle-createdatadirs",
320
321
        "bin/ivle-enrol",
321
322
        "bin/ivle-enrolallusers",
322
 
        "bin/ivle-fetchsubmissions",
323
323
        "bin/ivle-listusers",
324
 
        "bin/ivle-loadsampledata",
 
324
        "bin/ivle-makeuser",
 
325
        "bin/ivle-marks",
325
326
        "bin/ivle-mountallusers",
326
 
        "bin/ivle-refreshfilesystem",
327
327
        "bin/ivle-remakeuser",
328
328
        "bin/ivle-showenrolment",
 
329
        "bin/ivle-config",
 
330
        "bin/ivle-createdatadirs",
 
331
        "bin/ivle-buildjail",
329
332
    ]