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

« back to all changes in this revision

Viewing changes to ivle/svn.py

  • Committer: William Grant
  • Date: 2009-02-23 23:47:02 UTC
  • mfrom: (1099.1.211 new-dispatch)
  • Revision ID: grantw@unimelb.edu.au-20090223234702-db4b1llly46ignwo
Merge from lp:~ivle-dev/ivle/new-dispatch.

Pretty much everything changes. Reread the setup docs. Backup your databases.
Every file is now in a different installed location, the configuration system
is rewritten, the dispatch system is rewritten, URLs are different, the
database is different, worksheets and exercises are no longer on the
filesystem, we use a templating engine, jail service protocols are rewritten,
we don't repeat ourselves, we have authorization rewritten, phpBB is gone,
and probably lots of other things that I cannot remember.

This is certainly the biggest commit I have ever made, and hopefully
the largest I ever will.

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
    except pysvn.ClientError:
49
49
        return False
50
50
 
51
 
def revision_is_dir(client, path, revision):
52
 
    """Returns True if the given path+revision is a directory.
53
 
    @raises a pysvn.ClientError if it does not exist.
54
 
    """
55
 
    # XXX I *think* the first element of the list is the requested object, and
56
 
    # subsequent items are its possible children (so ignore them).
57
 
    list_object, _ = client.list(path, revision=revision)[0]
58
 
    # list_object is a PySvnList object
59
 
    return list_object.kind == pysvn.node_kind.dir
60
 
 
61
51
class PysvnListStatWrapper:
62
52
    '''Wrap a pysvn listing object to look somewhat like a result of
63
53
       os.stat.