"be set-root" changed to "be init"
authorW. Trevor King <wking@drexel.edu>
Tue, 30 Jun 2009 23:40:01 +0000 (19:40 -0400)
committerW. Trevor King <wking@drexel.edu>
Tue, 30 Jun 2009 23:40:01 +0000 (19:40 -0400)
On the advice of
  Martin F Krafft <madduck@debian.org>
as posted in
  http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=477125
on
  Fri, 12 Jun 2009 17:03:02 +0200

README
becommands/init.py [moved from becommands/set_root.py with 95% similarity]
test_usage.sh

diff --git a/README b/README
index 6fe5d18c27e1ef9ff061a16e8d3030a651e1aa73..9562a7540913f3797d6918bede0ef986a97dfeff 100644 (file)
--- a/README
+++ b/README
@@ -13,7 +13,7 @@ Getting started
 To get started, you must set the bugtracker root.  Typically, you will want to
 set the bug root to your project root, so that Bugs Everywhere works in any
 part of your project tree.
-$ be set-root $PROJECT_ROOT
+$ be init $PROJECT_ROOT
 
 To create bugs, use "be new $DESCRIPTION".  To comment on bugs, you can can use
 "be comment $BUG_ID".  To close a bug, use "be close $BUG_ID".  For more
similarity index 95%
rename from becommands/set_root.py
rename to becommands/init.py
index 3749e287b5f4f6b203e3f45a8b18d2a54929dfa6..e3896e9ef36c8f74d75389f6d25b9f8746973840 100644 (file)
@@ -79,7 +79,7 @@ def execute(args, test=False):
     print "Directory initialized."
 
 def get_parser():
-    parser = cmdutil.CmdOptionParser("be set-root [DIRECTORY]")
+    parser = cmdutil.CmdOptionParser("be init [DIRECTORY]")
     return parser
 
 longhelp="""
@@ -90,7 +90,7 @@ system.  You can use "be set rcs_name" to change the rcs being used.
 The directory defaults to your current working directory.
 
 It is usually a good idea to put the Bugs Everywhere root at the source code
-root, but you can put it anywhere.  If you run "be set-root" in a subdirectory,
+root, but you can put it anywhere.  If you run "be init" in a subdirectory,
 then only bugs created in that subdirectory (and its children) will appear
 there.
 """
index b7391d93e697f5b4875c65519482bf29b214cdfc..b2e2cab162989758026d9500450ede5d603d55ad 100755 (executable)
@@ -96,7 +96,7 @@ then # set a default ID
 fi
 echo "I am '$ID'"
 
-be set-root
+be init
 OUT=`be new 'having too much fun'`
 echo "$OUT"
 BUG=`echo "$OUT" | sed -n 's/Created bug with ID //p'`