928
928
def get_svn_export_command(self, req):
929
929
"""Returns a Unix shell command to export a submission"""
930
930
svn_url = self.get_svn_url(req.config)
931
932
username = (req.user.login if req.user.login.isalnum() else
934
938
return "svn export --username %s -r%d '%s' %s"%(req.user.login,
938
942
def test_and_normalise_path(path):