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

« back to all changes in this revision

Viewing changes to ivle/fileservice_lib/action.py

  • Committer: William Grant
  • Date: 2009-08-02 07:06:20 UTC
  • Revision ID: grantw@unimelb.edu.au-20090802070620-ppq1zznwt6gh3fmg
Tags: 0.1.9.15
Revert browser bottom offset changes; the new one is broken in many browsers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
# action=svnupdate: Bring a file up to date with the head revision.
92
92
#       path:   The path to the file to be updated. Only one file may be
93
93
#               specified.
94
 
#       revision: The revision number to update to. If not provided this
95
 
#               defaults to HEAD.
96
94
#
97
95
# action=svnpublish: Set the "published" flag on a file to True.
98
96
#       path:   The path to the file to be published. Can be specified
121
119
#       path:   The path to the directory to be checked (under the IVLE
122
120
#               repository base).
123
121
#
124
 
# action=svncleanup: Recursively clean up the working copy, removing locks,
125
 
#   resuming unfinished operations, etc.
126
 
#       path:   The path to the directory to be cleaned
127
 
#
128
122
# TODO: Implement the following actions:
129
123
#   svnupdate (done?)
130
124
# TODO: Implement ZIP unpacking in putfiles (done?).
617
611
def action_svnupdate(req, fields):
618
612
    """Performs a "svn update" to each file specified.
619
613
 
620
 
    Reads fields: 'path' and 'revision'
 
614
    Reads fields: 'path'
621
615
    """
622
616
    path = fields.getfirst('path')
623
 
    revision = fields.getfirst('revision')
624
617
    if path is None:
625
618
        raise ActionError("Required field missing")
626
 
    if revision is None:
627
 
        revision = pysvn.Revision( pysvn.opt_revision_kind.head )
628
 
    else:
629
 
        try:
630
 
            revision = pysvn.Revision(pysvn.opt_revision_kind.number,
631
 
                    int(revision))
632
 
        except ValueError, e:
633
 
            raise ActionError("Bad revision number: '%s'"%revision,)
634
619
    path = actionpath_to_local(req, path)
635
620
 
636
621
    try:
637
 
        svnclient.update(path, recurse=True, revision=revision)
 
622
        svnclient.update(path, recurse=True)
638
623
    except pysvn.ClientError, e:
639
624
        raise ActionError(str(e))
640
625
 
776
761
            raise util.IVLEError(404, 'The specified repository path does not exist')
777
762
        else:
778
763
            raise ActionError(str(e[0]))
779
 
 
780
 
 
781
 
def action_svncleanup(req, fields):
782
 
    """Recursively clean up the working copy, removing locks, resuming 
783
 
    unfinished operations, etc.
784
 
        path:   The path to be cleaned"""
785
 
 
786
 
    path = fields.getfirst('path')
787
 
    if path is None:
788
 
        raise ActionError("Required field missing")
789
 
    path = actionpath_to_local(req, path)
790
 
 
791
 
    try:
792
 
        svnclient.cleanup(path)
793
 
    except pysvn.ClientError, e:
794
 
        raise ActionError(str(e))
795
 
 
 
764
            
796
765
 
797
766
# Table of all action functions #
798
767
# Each function has the interface f(req, fields).
818
787
    "svncheckout" : action_svncheckout,
819
788
    "svnrepomkdir" : action_svnrepomkdir,
820
789
    "svnrepostat" : action_svnrepostat,
821
 
    "svncleanup" : action_svncleanup,
822
790
}