Added becommands/commit.py and minor fixes.
authorW. Trevor King <wking@drexel.edu>
Sun, 19 Jul 2009 14:48:12 +0000 (10:48 -0400)
committerW. Trevor King <wking@drexel.edu>
Sun, 19 Jul 2009 14:48:12 +0000 (10:48 -0400)
Now we can commit changes from the command line with a unified
interface.  The interface is much less flexible than using your
particular version control system's commit command directly, so this
command is mostly intended for user-interfaces and other tools that
don't want to be bothered with the extra flexibility.

Normalized spacing in rcs.RCS.commit to produce:
  summary
  <BLANKLINE>
  body
  <TRAILING-ENDLINE>
messages regardless of the input string format.

Also fixed a "--complete" handline bug in cmdutil, and some minor
docstring typos in libbe.rcs and .editor.

becommands/commit.py [new file with mode: 0644]
libbe/cmdutil.py
libbe/editor.py
libbe/rcs.py

diff --git a/becommands/commit.py b/becommands/commit.py
new file mode 100644 (file)
index 0000000..bda51c4
--- /dev/null
@@ -0,0 +1,68 @@
+# Copyright (C) 2009 W. Trevor King <wking@drexel.edu>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along
+# with this program; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+"""Commit the currently pending changes to the repository"""
+from libbe import cmdutil, bugdir, editor
+import sys
+__desc__ = __doc__
+
+def execute(args, manipulate_encodings=True):
+    """
+    >>> import os, time
+    >>> from libbe import bug
+    >>> bd = bugdir.simple_bug_dir()
+    >>> os.chdir(bd.root)
+    >>> full_path = "testfile"
+    >>> test_contents = "A test file"
+    >>> bd.rcs.set_file_contents(full_path, test_contents)
+    >>> execute(["Added %s." % (full_path)], manipulate_encodings=False) # doctest: +ELLIPSIS
+    Committed ...
+    """
+    parser = get_parser()
+    options, args = parser.parse_args(args)
+    cmdutil.default_complete(options, args, parser)
+    if len(args) != 1:
+        raise cmdutil.UsageError("Please supply a commit message")
+    bd = bugdir.BugDir(from_disk=True,
+                       manipulate_encodings=manipulate_encodings)
+    if args[0] == '-': # read summary from stdin
+        assert options.body != "EDITOR", \
+          "Cannot spawn and editor when the summary is using stdin."
+        summary = sys.stdin.readline()
+    else:
+        summary = args[0]
+    if options.body == None:
+        body = None
+    elif options.body == "EDITOR":
+        body = editor.editor_string("Please enter your commit message above")
+    else:
+        body = bd.rcs.get_file_contents(options.body, allow_no_rcs=True)
+    revision = bd.rcs.commit(summary, body=body)
+    print "Committed %s" % revision
+
+def get_parser():
+    parser = cmdutil.CmdOptionParser("be commit COMMENT")
+    parser.add_option("-b", "--body", metavar="FILE", dest="body",
+                      help='Provide a detailed body for the commit message.  In the special case that FILE == "EDITOR", spawn an editor to enter the body text (in which case you cannot use stdin for the summary)', default=None)
+    return parser
+
+longhelp="""
+Commit the current repository status.  The summary specified on the
+commandline is a string (only one line) that describes the commit
+briefly or "-", in which case the string will be read from stdin.
+"""
+
+def help():
+    return get_parser().help_str() + longhelp
index 36d5d9675fd5700eca14109f4be62fec2db0a7e0..bba3e0ead729d7f21820e50b2aaf0ff8aa085e6f 100644 (file)
@@ -163,7 +163,7 @@ def default_complete(options, args, parser, bugid_args={}):
     """
     for option,value in option_value_pairs(options, parser):
         if value == "--complete":
-            raise cmdutil.GetCompletions()
+            raise GetCompletions()
     if len(bugid_args.keys()) > 0:
         max_pos_arg = max(bugid_args.keys())
     else:
index 5e3f9a6d59b5d47f1b60ef28a2c424864ed2507c..93144b82001aeb276424643c73d5f9ceaafaf45a 100644 (file)
@@ -31,7 +31,7 @@ class CantFindEditor(Exception):
         Exception.__init__(self, "Can't find editor to get string from")
 
 def editor_string(comment=None, encoding=None):
-    """Invokes the editor, and returns the user_produced text as a string
+    """Invokes the editor, and returns the user-produced text as a string
 
     >>> if "EDITOR" in os.environ:
     ...     del os.environ["EDITOR"]
index 1024249255ec9ed52a7a87cfc79d45b2466d101d..7138d0148cef915cdb985c62fbcdb784b68d6d9e 100644 (file)
@@ -201,7 +201,7 @@ class RCS(object):
         """
         Commit the current working directory, using the contents of
         commitfile as the comment.  Return the name of the old
-        revision.
+        revision (or None if commits are not supported).
         """
         return None
     def installed(self):
@@ -370,8 +370,9 @@ class RCS(object):
         string summary and body.  Return the name of the old revision
         (or None if versioning is not supported).
         """
+        summary = summary.strip()
         if body is not None:
-            summary += '\n' + body
+            summary += '\n\n' + body.strip() + '\n'
         descriptor, filename = tempfile.mkstemp()
         revision = None
         try: