Rev 592: Add framework for svn-set-revprops command. in file:///data/jelmer/bzr-svn/revprops/
Jelmer Vernooij
jelmer at samba.org
Wed Nov 21 20:44:59 GMT 2007
At file:///data/jelmer/bzr-svn/revprops/
------------------------------------------------------------
revno: 592
revision-id:jelmer at samba.org-20071121204458-4bspbs83eyhzxx5c
parent: jelmer at samba.org-20071115220722-em1nrxf9nzpsl11o
committer: Jelmer Vernooij <jelmer at samba.org>
branch nick: revprops
timestamp: Wed 2007-11-21 21:44:58 +0100
message:
Add framework for svn-set-revprops command.
modified:
__init__.py __init__.py-20051008155114-eae558e6cf149e1d
=== modified file '__init__.py'
--- a/__init__.py 2007-11-11 19:15:40 +0000
+++ b/__init__.py 2007-11-21 20:44:58 +0000
@@ -366,6 +366,24 @@
register_command(cmd_svn_branching_scheme)
+class cmd_svn_set_revprops(Command):
+ """Migrate Bazaar metadata to Subversion revision properties.
+
+ This requires that you have permission to change the
+ revision properties on the repository.
+
+ To change these permissions, edit the hooks/pre-revprop-change
+ file in the Subversion repository.
+ """
+ takes_args = ['location']
+
+ def run(self, location="."):
+ raise NotImplementedError(self.run)
+
+
+register_command(cmd_svn_set_revprops)
+
+
def test_suite():
from unittest import TestSuite
import tests
More information about the bazaar-commits
mailing list