]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
CLI: move the 'repl' command to 'tahoe debug repl'
authorBrian Warner <warner@allmydata.com>
Tue, 12 Aug 2008 20:40:17 +0000 (13:40 -0700)
committerBrian Warner <warner@allmydata.com>
Tue, 12 Aug 2008 20:40:17 +0000 (13:40 -0700)
docs/CLI.txt
src/allmydata/scripts/cli.py
src/allmydata/scripts/debug.py

index 73679e015e16c7760b146eacaa0edd860c54c18d..d2e6ede6f70a63941712f35887a1e9fa573b0e62 100644 (file)
@@ -352,7 +352,7 @@ aspect of this command is to reveal the storage index for any given URI. This
 can be used to locate the share files that are holding the encoded+encrypted
 data for this file.
 
-"tahoe repl" will launch an interactive python interpreter in which the Tahoe
-packages and modules are available on sys.path (e.g. by using 'import
+"tahoe debug repl" will launch an interactive python interpreter in which the
+Tahoe packages and modules are available on sys.path (e.g. by using 'import
 allmydata'). This is most useful from a source tree: it simply sets the
 PYTHONPATH correctly and runs the 'python' executable.
index 183421a53c7096c0254368b24b616413ac135b4e..2de968bd913ea2a7bf74c7bce818ea9f2c8d2234 100644 (file)
@@ -194,9 +194,6 @@ class WebopenOptions(VDriveOptions):
 
     longdesc = """Opens a webbrowser to the contents of some portion of the virtual drive."""
 
-class ReplOptions(usage.Options):
-    pass
-
 subCommands = [
     ["mkdir", None, MakeDirectoryOptions, "Create a new directory"],
     ["add-alias", None, AddAliasOptions, "Add a new alias cap"],
@@ -210,7 +207,6 @@ subCommands = [
     ["mv", None, MvOptions, "Move a file within the virtual drive."],
     ["ln", None, LnOptions, "Make an additional link to an existing file."],
     ["webopen", None, WebopenOptions, "Open a webbrowser to the root_dir"],
-    ["repl", None, ReplOptions, "Open a python interpreter"],
     ]
 
 def mkdir(options):
@@ -297,10 +293,6 @@ def webopen(options, opener=None):
     opener(url)
     return 0
 
-def repl(options):
-    import code
-    return code.interact()
-
 dispatch = {
     "mkdir": mkdir,
     "add-alias": add_alias,
@@ -314,6 +306,5 @@ dispatch = {
     "mv": mv,
     "ln": ln,
     "webopen": webopen,
-    "repl": repl,
     }
 
index 08e4f42e677e28db2d9ff7f232429d64b107331f..6c604fe8853914c2251002b0a43450e009f3af93 100644 (file)
@@ -562,6 +562,14 @@ def catalog_shares(config, out=sys.stdout, err=sys.stderr):
     return 0
 
 
+class ReplOptions(usage.Options):
+    pass
+
+def repl(options, out=sys.stdout, err=sys.stderr):
+    import code
+    return code.interact()
+
+
 class DebugCommand(usage.Options):
     subCommands = [
         ["dump-share", None, DumpOptions,
@@ -569,6 +577,7 @@ class DebugCommand(usage.Options):
         ["dump-cap", None, DumpCapOptions, "Unpack a read-cap or write-cap"],
         ["find-shares", None, FindSharesOptions, "Locate sharefiles in node dirs"],
         ["catalog-shares", None, CatalogSharesOptions, "Describe shares in node dirs"],
+        ["repl", None, ReplOptions, "Open a python interpreter"],
         ]
     def postOptions(self):
         if not hasattr(self, 'subOptions'):
@@ -594,6 +603,7 @@ subDispatch = {
     "dump-cap": dump_cap,
     "find-shares": find_shares,
     "catalog-shares": catalog_shares,
+    "repl": repl,
     }