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

« back to all changes in this revision

Viewing changes to lib/fileservice_lib/action.py

  • Committer: mattgiuca
  • Date: 2008-02-19 00:54:28 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:500
db: get_user and get_users now return User objects instead of dictionaries.
    This is the major part of replacing dicts with User objects, as it
    propagates upwards.

Propagated User objects up through the following modules:
    listusers.py, dispatch.login, authenticate, userservice, forumutil
All of these now treat users as an object rather than a dict.

To save on the size of the changes so far, login still individually copies
fields over to the session (so the session does not yet store a user object;
that is the second part of this refactor).

WOO!! Revision 500 :)

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
#       to:     The path of the target filename. Error if the file already
42
42
#               exists.
43
43
#
44
 
# action=putfile: Upload a file to the student workspace.
45
 
#       path:   The path to the file to be written. Error if the target
46
 
#               file is a directory.
 
44
# action=putfile: Upload a file to the student workspace, and optionally
 
45
#               accept zip files which will be unpacked.
 
46
#       path:   The path to the file to be written. If it exists, will
 
47
#               overwrite. Error if the target file is a directory.
47
48
#       data:   Bytes to be written to the file verbatim. May either be
48
49
#               a string variable or a file upload.
49
 
#       overwrite: Optional. If supplied, the file will be overwritten.
50
 
#               Otherwise, error if path already exists.
 
50
#       unpack: Optional. If "true", and the data is a valid ZIP file,
 
51
#               will create a directory instead and unpack the ZIP file
 
52
#               into it.
51
53
#
52
54
# action=putfiles: Upload multiple files to the student workspace, and
53
55
#                 optionally accept zip files which will be unpacked.
56
58
#       data:   A file upload (may not be a simple string). The filename
57
59
#               will be used to determine the target filename within
58
60
#               the given path.
59
 
#       unpack: Optional. If supplied, if any data is a valid ZIP file,
 
61
#       unpack: Optional. If "true", if any data is a valid ZIP file,
60
62
#               will create a directory instead and unpack the ZIP file
61
63
#               into it.
62
64
#
63
 
# action=mkdir: Create a directory. The parent dir must exist.
64
 
#       path:   The path to a file which does not exist, but whose parent
65
 
#               does. The dir will be made with this name.
66
 
#
67
65
# The differences between putfile and putfiles are:
68
 
# * putfile can only accept a single file, and can't unpack zipfiles.
 
66
# * putfile can only accept a single file.
69
67
# * putfile can accept string data, doesn't have to be a file upload.
70
68
# * putfile ignores the upload filename, the entire filename is specified on
71
69
#       path. putfiles calls files after the name on the user's machine.
72
70
#
73
 
# action=paste: Copy or move the files to a specified dir.
74
 
#       src:    The path to the DIRECTORY to get the files from (relative).
75
 
#       dst:    The path to the DIRECTORY to paste the files to. Must not
 
71
# Clipboard-based actions. Cut/copy/paste work in the same way as modern
 
72
# file browsers, by keeping a server-side clipboard of files that have been
 
73
# cut and copied. The clipboard is stored in the session data, so it persists
 
74
# across navigation, tabs and browser windows, but not across browser
 
75
# sessions.
 
76
 
77
# action=copy: Write file(s) to the session-based clipboard. Overrides any
 
78
#               existing clipboard data. Does not actually copy the file.
 
79
#               The files are physically copied when the clipboard is pasted.
 
80
#       path:   The path to the file or directory to copy. Can be specified
 
81
#               multiple times.
 
82
 
83
# action=cut: Write file(s) to the session-based clipboard. Overrides any
 
84
#               existing clipboard data. Does not actually move the file.
 
85
#               The files are physically moved when the clipboard is pasted.
 
86
#       path:   The path to the file or directory to cut. Can be specified
 
87
#               multiple times.
 
88
 
89
# action=paste: Copy or move the files stored in the clipboard. Clears the
 
90
#               clipboard. The files are copied or moved to a specified dir.
 
91
#       path:   The path to the DIRECTORY to paste the files to. Must not
76
92
#               be a file.
77
 
#       mode:   'copy' or 'move'
78
 
#       file:   File to be copied or moved, relative to src, to a destination
79
 
#               relative to dst. Can be specified multiple times.
80
93
#
81
94
# Subversion actions.
82
95
# action=svnadd: Add an existing file(s) to version control.
106
119
#               recursively.
107
120
#       logmsg: Text of the log message. Optional. There is a default log
108
121
#               message if unspecified.
109
 
# action=svncheckout: Checkout a file/directory from the repository.
110
 
#       path:   The [repository] path to the file or directory to be
111
 
#               checked out.
112
 
113
 
# action=svnrepomkdir: Create a directory in a repository (not WC).
114
 
#       path:   The path to the directory to be created (under the IVLE
115
 
#               repository base).
116
 
#       logmsg: Text of the log message.
117
 
118
 
# action=svnrepostat: Check if a path exists in a repository (not WC).
119
 
#       path:   The path to the directory to be checked (under the IVLE
120
 
#               repository base).
121
 
#
 
122
122
123
# TODO: Implement the following actions:
123
 
#   svnupdate (done?)
124
 
# TODO: Implement ZIP unpacking in putfiles (done?).
 
124
#   putfiles, svnrevert, svnupdate, svncommit
 
125
# TODO: Implement ZIP unpacking in putfile and putfiles.
125
126
# TODO: svnupdate needs a digest to tell the user the files that were updated.
126
127
#   This can be implemented by some message passing between action and
127
128
#   listing, and having the digest included in the listing. (Problem if
135
136
import pysvn
136
137
 
137
138
from common import (util, studpath, zip)
138
 
import conf
139
 
 
140
 
def get_login(_realm, existing_login, _may_save):
141
 
    """Callback function used by pysvn for authentication.
142
 
    realm, existing_login, _may_save: The 3 arguments passed by pysvn to
143
 
        callback_get_login.
144
 
        The following has been determined empirically, not from docs:
145
 
        existing_login will be the name of the user who owns the process on
146
 
        the first attempt, "" on subsequent attempts. We use this fact.
147
 
    """
148
 
    # Only provide credentials on the _first_ attempt.
149
 
    # If we're being asked again, then it means the credentials failed for
150
 
    # some reason and we should just fail. (This is not desirable, but it's
151
 
    # better than being asked an infinite number of times).
152
 
    return (existing_login != "", conf.login, conf.svn_pass, True)
153
139
 
154
140
# Make a Subversion client object
155
141
svnclient = pysvn.Client()
156
 
svnclient.callback_get_login = get_login
157
 
svnclient.exception_style = 0               # Simple (string) exceptions
158
142
 
159
143
DEFAULT_LOGMESSAGE = "No log message supplied."
160
144
 
248
232
    if os.path.exists(topath):
249
233
        if frompath == topath:
250
234
            raise ActionError("Source and destination are the same")
251
 
        raise ActionError("A file already exists with that name")
 
235
        raise ActionError("Another file already exists with that name")
252
236
 
253
237
    try:
254
238
        if copy:
265
249
 
266
250
### ACTIONS ###
267
251
 
268
 
def action_delete(req, fields):
 
252
def action_remove(req, fields):
 
253
    # TODO: Do an SVN rm if the file is versioned.
269
254
    # TODO: Disallow removal of student's home directory
270
255
    """Removes a list of files or directories.
271
256
 
302
287
    topath = fields.getfirst('to')
303
288
    movefile(req, frompath, topath)
304
289
 
305
 
def action_mkdir(req, fields):
306
 
    """Creates a directory with the given path.
307
 
    Reads fields: 'path'
308
 
    """
309
 
    path = fields.getfirst('path')
310
 
    if path is None:
311
 
        raise ActionError("Required field missing")
312
 
    path = actionpath_to_local(req, path)
313
 
 
314
 
    if os.path.exists(path):
315
 
        raise ActionError("A file already exists with that name")
316
 
 
317
 
    # Create the directory
318
 
    try:
319
 
        os.mkdir(path)
320
 
    except OSError:
321
 
        raise ActionError("Could not create directory")
322
 
 
323
290
def action_putfile(req, fields):
324
291
    """Writes data to a file, overwriting it if it exists and creating it if
325
292
    it doesn't.
326
293
 
327
 
    Reads fields: 'path', 'data' (file upload), 'overwrite'
 
294
    Reads fields: 'path', 'data' (file upload)
328
295
    """
329
296
    # TODO: Read field "unpack".
330
297
    # Important: Data is "None" if the file submitted is empty.
331
298
    path = fields.getfirst('path')
332
299
    data = fields.getfirst('data')
333
 
    if path is None:
 
300
    if path is None or data is None:
334
301
        raise ActionError("Required field missing")
335
 
    if data is None:
336
 
        # Workaround - field reader treats "" as None, so this is the only
337
 
        # way to allow blank file uploads
338
 
        data = ""
339
302
    path = actionpath_to_local(req, path)
340
303
 
341
304
    if data is not None:
342
305
        data = cStringIO.StringIO(data)
343
306
 
344
 
    overwrite = fields.getfirst('overwrite')
345
 
    if overwrite is None:
346
 
        overwrite = False
347
 
    else:
348
 
        overwrite = True
349
 
 
350
 
    if overwrite:
351
 
        # Overwrite files; but can't if it's a directory
352
 
        if os.path.isdir(path):
353
 
            raise ActionError("A directory already exists "
354
 
                    + "with that name")
355
 
    else:
356
 
        if os.path.exists(path):
357
 
            raise ActionError("A file already exists with that name")
358
 
 
359
307
    # Copy the contents of file object 'data' to the path 'path'
360
308
    try:
361
309
        dest = open(path, 'wb')
362
310
        if data is not None:
363
311
            shutil.copyfileobj(data, dest)
364
 
    except (IOError, OSError), e:
365
 
        raise ActionError("Could not write to target file: %s" % e.strerror)
 
312
    except OSError:
 
313
        raise ActionError("Could not write to target file")
366
314
 
367
315
def action_putfiles(req, fields):
368
316
    """Writes data to one or more files in a directory, overwriting them if
386
334
    path = actionpath_to_urlpath(req, path)
387
335
    goterror = False
388
336
 
 
337
 
389
338
    for datum in data:
390
339
        # Each of the uploaded files
391
340
        filepath = os.path.join(path, datum.filename)
392
 
        filedata = datum.file
 
341
        filedata = datum.value
393
342
 
394
343
        if unpack and datum.filename.lower().endswith(".zip"):
395
344
            # A zip file - unpack it instead of just copying
397
346
            # Note: Just unzip into the current directory (ignore the
398
347
            # filename)
399
348
            try:
400
 
                # First get the entire path (within jail)
401
 
                _, _, abspath = studpath.url_to_jailpaths(path)
402
 
                abspath = os.path.join(os.sep, abspath)
403
 
                zip.unzip(abspath, filedata)
 
349
                zip.unzip(path, filedata)
404
350
            except (OSError, IOError):
405
351
                goterror = True
406
352
        else:
413
359
            try:
414
360
                dest = open(filepath_local, 'wb')
415
361
                if data is not None:
416
 
                    shutil.copyfileobj(filedata, dest)
 
362
                    shutil.copyfileobj(cStringIO.StringIO(filedata), dest)
417
363
            except OSError:
418
364
                goterror = True
419
365
 
424
370
            raise ActionError(
425
371
                "Could not write to one or more of the target files")
426
372
 
 
373
def action_copy_or_cut(req, fields, mode):
 
374
    """Marks specified files on the clipboard, stored in the
 
375
    browser session. Sets clipboard for either a cut or copy operation
 
376
    as specified.
 
377
 
 
378
    Reads fields: 'path'
 
379
    """
 
380
    # The clipboard object created conforms to the JSON clipboard
 
381
    # specification given at the top of listing.py.
 
382
    # Note that we do not check for the existence of files here. That is done
 
383
    # in the paste operation.
 
384
    files = fields.getlist('path')
 
385
    clipboard = { "mode" : mode, "base" : req.path, "files" : files }
 
386
    session = req.get_session()
 
387
    session['clipboard'] = clipboard
 
388
    session.save()
 
389
 
 
390
def action_copy(req, fields):
 
391
    """Marks specified files on the clipboard, stored in the
 
392
    browser session. Sets clipboard for a "copy" action.
 
393
 
 
394
    Reads fields: 'path'
 
395
    """
 
396
    action_copy_or_cut(req, fields, "copy")
 
397
 
 
398
def action_cut(req, fields):
 
399
    """Marks specified files on the clipboard, stored in the
 
400
    browser session. Sets clipboard for a "cut" action.
 
401
 
 
402
    Reads fields: 'path'
 
403
    """
 
404
    action_copy_or_cut(req, fields, "cut")
 
405
 
427
406
def action_paste(req, fields):
428
 
    """Performs the copy or move action with the files specified.
429
 
    Copies/moves the files to the specified directory.
 
407
    """Performs the copy or move action with the files stored on
 
408
    the clipboard in the browser session. Copies/moves the files
 
409
    to the specified directory. Clears the clipboard.
430
410
 
431
 
    Reads fields: 'src', 'dst', 'mode', 'file' (multiple).
432
 
    src: Base path that all the files are relative to (source).
433
 
    dst: Destination path to paste into.
434
 
    mode: 'copy' or 'move'.
435
 
    file: (Multiple) Files relative to base, which will be copied
436
 
        or moved to new locations relative to path.
 
411
    Reads fields: 'path'
437
412
    """
438
413
    errormsg = None
439
414
 
440
 
    dst = fields.getfirst('dst')
441
 
    src = fields.getfirst('src')
442
 
    mode = fields.getfirst('mode')
443
 
    files = fields.getlist('file')
444
 
    if dst is None or src is None or mode is None:
 
415
    todir = fields.getfirst('path')
 
416
    if todir is None:
445
417
        raise ActionError("Required field missing")
446
 
    if mode == "copy":
447
 
        copy = True
448
 
    elif mode == "move":
449
 
        copy = False
450
 
    else:
451
 
        raise ActionError("Invalid mode (must be 'copy' or 'move')")
452
 
    dst_local = actionpath_to_local(req, dst)
453
 
    if not os.path.isdir(dst_local):
454
 
        raise ActionError("dst is not a directory")
 
418
    todir_local = actionpath_to_local(req, todir)
 
419
    if not os.path.isdir(todir_local):
 
420
        raise ActionError("Target is not a directory")
 
421
 
 
422
    session = req.get_session()
 
423
    try:
 
424
        clipboard = session['clipboard']
 
425
        files = clipboard['files']
 
426
        base = clipboard['base']
 
427
        if clipboard['mode'] == "copy":
 
428
            copy = True
 
429
        else:
 
430
            copy = False
 
431
    except KeyError:
 
432
        raise ActionError("Clipboard was empty")
455
433
 
456
434
    errorfiles = []
457
435
    for file in files:
458
436
        # The source must not be interpreted as relative to req.path
459
437
        # Add a slash (relative to top-level)
460
 
        if src[:1] != '/':
461
 
            src = '/' + src
462
 
        frompath = os.path.join(src, file)
 
438
        frompath = os.sep + os.path.join(base, file)
463
439
        # The destination is found by taking just the basename of the file
464
 
        topath = os.path.join(dst, os.path.basename(file))
 
440
        topath = os.path.join(todir, os.path.basename(file))
465
441
        try:
466
442
            movefile(req, frompath, topath, copy)
467
443
        except ActionError, message:
474
450
            # Add this file to errorfiles; it will be put back on the
475
451
            # clipboard for possible future pasting.
476
452
            errorfiles.append(file)
477
 
    if errormsg is not None:
 
453
    # If errors occured, augment the clipboard and raise ActionError
 
454
    if len(errorfiles) > 0:
 
455
        clipboard['files'] = errorfiles
 
456
        session['clipboard'] = clipboard
 
457
        session.save()
478
458
        raise ActionError(errormsg)
479
459
 
480
 
    # XXX errorfiles contains a list of files that couldn't be pasted.
481
 
    # we currently do nothing with this.
482
 
 
483
 
def action_publish(req,fields):
484
 
    """Marks the folder as published by adding a '.published' file to the 
485
 
    directory and ensuring that the parent directory permissions are correct
486
 
 
487
 
    Reads fields: 'path'
488
 
    """
489
 
    paths = fields.getlist('path')
490
 
    user = studpath.url_to_local(req.path)[0]
491
 
    homedir = "/home/%s" % user
492
 
    if len(paths):
493
 
        paths = map(lambda path: actionpath_to_local(req, path), paths)
494
 
    else:
495
 
        paths = [studpath.url_to_jailpaths(req.path)[2]]
496
 
 
497
 
    # Set all the dirs in home dir world browsable (o+r,o+x)
498
 
    #FIXME: Should really only do those in the direct path not all of the 
499
 
    # folders in a students home directory
500
 
    for root,dirs,files in os.walk(homedir):
501
 
        os.chmod(root, os.stat(root).st_mode|0005)
502
 
 
503
 
    try:
504
 
        for path in paths:
505
 
            if os.path.isdir(path):
506
 
                pubfile = open(os.path.join(path,'.published'),'w')
507
 
                pubfile.write("This directory is published\n")
508
 
                pubfile.close()
509
 
            else:
510
 
                raise ActionError("Can only publish directories")
511
 
    except OSError, e:
512
 
        raise ActionError("Directory could not be published")
513
 
 
514
 
def action_unpublish(req,fields):
515
 
    """Marks the folder as unpublished by removing a '.published' file in the 
516
 
    directory (if it exits). It does not change the permissions of the parent 
517
 
    directories.
518
 
 
519
 
    Reads fields: 'path'
520
 
    """
521
 
    paths = fields.getlist('path')
522
 
    if len(paths):
523
 
        paths = map(lambda path: actionpath_to_local(req, path), paths)
524
 
    else:
525
 
        paths = [studpath.url_to_jailpaths(req.path)[2]]
526
 
 
527
 
    try:
528
 
        for path in paths:
529
 
            if os.path.isdir(path):
530
 
                pubfile = os.path.join(path,'.published')
531
 
                if os.path.isfile(pubfile):
532
 
                    os.remove(pubfile)
533
 
            else:
534
 
                raise ActionError("Can only unpublish directories")
535
 
    except OSError, e:
536
 
        raise ActionError("Directory could not be unpublished")
537
 
 
 
460
    # Success: Clear the clipboard
 
461
    del session['clipboard']
 
462
    session.save()
538
463
 
539
464
def action_svnadd(req, fields):
540
465
    """Performs a "svn add" to each file specified.
546
471
 
547
472
    try:
548
473
        svnclient.add(paths, recurse=True, force=True)
549
 
    except pysvn.ClientError, e:
550
 
        raise ActionError(str(e))
551
 
 
552
 
def action_svnremove(req, fields):
553
 
    """Performs a "svn remove" on each file specified.
554
 
 
555
 
    Reads fields: 'path' (multiple)
556
 
    """
557
 
    paths = fields.getlist('path')
558
 
    paths = map(lambda path: actionpath_to_local(req, path), paths)
559
 
 
560
 
    try:
561
 
        svnclient.remove(paths, force=True)
562
 
    except pysvn.ClientError, e:
563
 
        raise ActionError(str(e))
 
474
    except pysvn.ClientError:
 
475
        raise ActionError("One or more files could not be added")
564
476
 
565
477
def action_svnupdate(req, fields):
566
478
    """Performs a "svn update" to each file specified.
574
486
 
575
487
    try:
576
488
        svnclient.update(path, recurse=True)
577
 
    except pysvn.ClientError, e:
578
 
        raise ActionError(str(e))
579
 
 
580
 
def action_svnresolved(req, fields):
581
 
    """Performs a "svn resolved" to each file specified.
582
 
 
583
 
    Reads fields: 'path'
584
 
    """
585
 
    path = fields.getfirst('path')
586
 
    if path is None:
587
 
        raise ActionError("Required field missing")
588
 
    path = actionpath_to_local(req, path)
589
 
 
590
 
    try:
591
 
        svnclient.resolved(path, recurse=True)
592
 
    except pysvn.ClientError, e:
593
 
        raise ActionError(str(e))
 
489
    except pysvn.ClientError:
 
490
        raise ActionError("One or more files could not be updated")
594
491
 
595
492
def action_svnrevert(req, fields):
596
493
    """Performs a "svn revert" to each file specified.
602
499
 
603
500
    try:
604
501
        svnclient.revert(paths, recurse=True)
605
 
    except pysvn.ClientError, e:
606
 
        raise ActionError(str(e))
 
502
    except pysvn.ClientError:
 
503
        raise ActionError("One or more files could not be reverted")
607
504
 
608
505
def action_svnpublish(req, fields):
609
506
    """Sets svn property "ivle:published" on each file specified.
611
508
    anyway).
612
509
 
613
510
    Reads fields: 'path'
614
 
 
615
 
    XXX Currently unused by the client (calls action_publish instead, which
616
 
    has a completely different publishing model).
617
511
    """
618
512
    paths = fields.getlist('path')
619
 
    if len(paths):
620
 
        paths = map(lambda path: actionpath_to_local(req, path), paths)
621
 
    else:
622
 
        paths = [studpath.url_to_jailpaths(req.path)[2]]
 
513
    paths = map(lambda path: actionpath_to_local(req, path), paths)
623
514
 
624
515
    try:
625
516
        for path in paths:
632
523
    """Deletes svn property "ivle:published" on each file specified.
633
524
 
634
525
    Reads fields: 'path'
635
 
 
636
 
    XXX Currently unused by the client (calls action_unpublish instead, which
637
 
    has a completely different publishing model).
638
526
    """
639
527
    paths = fields.getlist('path')
640
528
    paths = map(lambda path: actionpath_to_local(req, path), paths)
642
530
    try:
643
531
        for path in paths:
644
532
            svnclient.propdel("ivle:published", path, recurse=False)
645
 
    except pysvn.ClientError, e:
 
533
    except pysvn.ClientError:
646
534
        raise ActionError("Directory could not be unpublished")
647
535
 
648
536
def action_svncommit(req, fields):
657
545
 
658
546
    try:
659
547
        svnclient.checkin(paths, logmsg, recurse=True)
660
 
    except pysvn.ClientError, e:
661
 
        raise ActionError(str(e))
662
 
 
663
 
def action_svncheckout(req, fields):
664
 
    """Performs a "svn checkout" of the first path into the second path.
665
 
 
666
 
    Reads fields: 'path'    (multiple)
667
 
    """
668
 
    paths = fields.getlist('path')
669
 
    if len(paths) != 2:
670
 
        raise ActionError("usage: svncheckout url local-path")
671
 
    url = conf.svn_addr + "/" + paths[0]
672
 
    local_path = actionpath_to_local(req, str(paths[1]))
673
 
    try:
674
 
        svnclient.callback_get_login = get_login
675
 
        svnclient.checkout(url, local_path, recurse=True)
676
 
    except pysvn.ClientError, e:
677
 
        raise ActionError(str(e))
678
 
 
679
 
def action_svnrepomkdir(req, fields):
680
 
    """Performs a "svn mkdir" on a path under the IVLE SVN root.
681
 
 
682
 
    Reads fields: 'path'
683
 
    """
684
 
    path = fields.getfirst('path')
685
 
    logmsg = fields.getfirst('logmsg')
686
 
    url = conf.svn_addr + "/" + path
687
 
    try:
688
 
        svnclient.callback_get_login = get_login
689
 
        svnclient.mkdir(url, log_message=logmsg)
690
 
    except pysvn.ClientError, e:
691
 
        raise ActionError(str(e))
692
 
 
693
 
def action_svnrepostat(req, fields):
694
 
    """Discovers whether a path exists in a repo under the IVLE SVN root.
695
 
 
696
 
    Reads fields: 'path'
697
 
    """
698
 
    path = fields.getfirst('path')
699
 
    url = conf.svn_addr + "/" + path
700
 
    svnclient.exception_style = 1 
701
 
 
702
 
    try:
703
 
        svnclient.callback_get_login = get_login
704
 
        svnclient.info2(url)
705
 
    except pysvn.ClientError, e:
706
 
        # Error code 170000 means ENOENT in this revision.
707
 
        if e[1][0][1] == 170000:
708
 
            raise util.IVLEError(404, 'The specified repository path does not exist')
709
 
        else:
710
 
            raise ActionError(str(e[0]))
 
548
    except pysvn.ClientError:
 
549
        raise ActionError("One or more files could not be committed")
711
550
 
712
551
# Table of all action functions #
713
552
# Each function has the interface f(req, fields).
714
553
 
715
554
actions_table = {
716
 
    "delete" : action_delete,
 
555
    "remove" : action_remove,
717
556
    "move" : action_move,
718
 
    "mkdir" : action_mkdir,
719
557
    "putfile" : action_putfile,
720
558
    "putfiles" : action_putfiles,
 
559
 
 
560
    "copy" : action_copy,
 
561
    "cut" : action_cut,
721
562
    "paste" : action_paste,
722
 
    "publish" : action_publish,
723
 
    "unpublish" : action_unpublish,
724
563
 
725
564
    "svnadd" : action_svnadd,
726
 
    "svnremove" : action_svnremove,
727
565
    "svnupdate" : action_svnupdate,
728
 
    "svnresolved" : action_svnresolved,
729
566
    "svnrevert" : action_svnrevert,
730
567
    "svnpublish" : action_svnpublish,
731
568
    "svnunpublish" : action_svnunpublish,
732
569
    "svncommit" : action_svncommit,
733
 
    "svncheckout" : action_svncheckout,
734
 
    "svnrepomkdir" : action_svnrepomkdir,
735
 
    "svnrepostat" : action_svnrepostat,
736
570
}