all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Dmitry Gutov <dgutov@yandex.ru>
To: 12537@debbugs.gnu.org
Subject: bug#12537: Acknowledgement (support for git commit --amend/--signoff)
Date: Sat, 29 Sep 2012 04:14:16 +0400	[thread overview]
Message-ID: <50663D58.4010702@yandex.ru> (raw)
In-Reply-To: <handler.12537.B.134887753227659.ack@debbugs.gnu.org>

[-- Attachment #1: Type: text/plain, Size: 25 bytes --]

Sorry, here's the patch.

[-- Attachment #2: amend.diff --]
[-- Type: text/plain, Size: 6170 bytes --]

=== modified file 'lisp/ChangeLog'
--- lisp/ChangeLog	2012-09-22 15:24:26 +0000
+++ lisp/ChangeLog	2012-09-28 23:47:18 +0000
@@ -1,3 +1,18 @@
+2012-09-28  Dmitry Gutov  <dgutov@yandex.ru>
+
+	* vc/vc-git.el (vc-git-log-edit-toggle-signoff): New function.
+	(vc-git-log-edit-toggle-amend): New function.
+	(vc-git-log-edit-toggle-signoff): New function.
+	(vc-git-log-edit-mode): New major mode.
+	(vc-git-log-edit-mode-map): Keymap for it.
+	(vc-git-checkin): Handle "Amend" and "Sign-Off" headers.
+
+	* vc/log-edit.el (log-edit-font-lock-keywords): Allow non-letter
+	characters in header names, like hyphens.
+	(log-edit-toggle-header): New function.
+	(log-edit-extract-headers): Accept an alternative form of the
+	first argument's elements, allowing to handle yes/no headers.
+
 2012-09-22  Chong Yidong  <cyd@gnu.org>
 
 	* repeat.el (repeat): Doc fix (Bug#12348).

=== modified file 'lisp/vc/log-edit.el'
--- lisp/vc/log-edit.el	2012-08-28 16:01:59 +0000
+++ lisp/vc/log-edit.el	2012-09-28 23:17:10 +0000
@@ -352,7 +352,8 @@
 (defvar log-edit-font-lock-keywords
   ;; Copied/inspired by message-font-lock-keywords.
   `((log-edit-match-to-eoh
-     (,(concat "^\\(\\([[:alpha:]]+\\):\\)" log-edit-header-contents-regexp)
+     (,(concat "^\\(\\([[:alpha:]][^: \n\t]+\\):\\)"
+               log-edit-header-contents-regexp)
       (progn (goto-char (match-beginning 0)) (match-end 0)) nil
       (1 (if (assoc (match-string 2) log-edit-headers-alist)
              'log-edit-header
@@ -908,12 +909,47 @@
       (insert "\n"))
     log-edit-author))
 
+(defun log-edit-toggle-header (name value)
+  "Toggle a boolean-type header in the current buffer.
+If the value of NAME is VALUE, remove it.  Otherwise, add it if
+it's not present and set it to VALUE.  Afterward, if there are headers,
+make sure there is an empty line after them.  If there are no headers,
+remove all empty lines at the beginning of the buffer.
+Return t if toggled on, otherwise nil."
+  (let ((start (point))
+        (val t)
+        (line (concat name ": " value "\n")))
+    (save-restriction
+      (rfc822-goto-eoh)
+      (narrow-to-region (point-min) (point))
+      (goto-char (point-min))
+      (if (re-search-forward (concat "^" name ":"
+                                     log-edit-header-contents-regexp)
+                             nil t)
+          (if (setq val (not (string= (match-string 1) value)))
+              (replace-match line t t)
+            (replace-match "" t t))
+        (insert line)))
+    (rfc822-goto-eoh)
+    (if (bobp)
+        (when (looking-at "\\([ \t]*\n\\)+")
+          (delete-region (match-beginning 0) (match-end 0)))
+      (delete-horizontal-space)
+      (unless (looking-at "\n")
+        (insert "\n")))
+    (when (> start (point))
+      (goto-char start))
+    val))
+
 (defun log-edit-extract-headers (headers comment)
   "Extract headers from COMMENT to form command line arguments.
 HEADERS should be an alist with elements of the form (HEADER . CMDARG)
-associating header names to the corresponding cmdline option name and the
-result is then a list of the form (MSG CMDARG1 HDRTEXT1 CMDARG2 HDRTEXT2...).
-where MSG is the remaining text from STRING.
+or (HEADER CMDARG VALUE) associating header names to the corresponding
+cmdlineoption name and the result is then a list of the form
+\(MSG CMDARG1 HDRTEXT1 CMDARG2 HDRTEXT2...\) where MSG is the remaining text
+from STRING.  For HEADERS elements of the second type, the header value is not
+added to the list.  And CMDARG is added to the result list only if
+the header value is the same as VALUE.
 If \"Summary\" is not in HEADERS, then the \"Summary\" header is extracted
 anyway and put back as the first line of MSG."
   (with-temp-buffer
@@ -931,8 +967,11 @@
                                   nil t)
           (if (eq t (cdr header))
               (setq summary (match-string 1))
-            (push (match-string 1) res)
-            (push (or (cdr header) (car header)) res))
+            (if (consp (cdr header))
+                (when (string= (match-string 1) (nth 2 header))
+                  (push (nth 1 header) res))
+              (push (match-string 1) res)
+              (push (or (cdr header) (car header)) res)))
           (replace-match "" t t)))
       ;; Remove header separator if the header is empty.
       (widen)

=== modified file 'lisp/vc/vc-git.el'
--- lisp/vc/vc-git.el	2012-09-17 05:41:04 +0000
+++ lisp/vc/vc-git.el	2012-09-28 23:44:39 +0000
@@ -608,14 +608,39 @@
 (defun vc-git-unregister (file)
   (vc-git-command nil 0 file "rm" "-f" "--cached" "--"))
 
-(declare-function log-edit-extract-headers "log-edit" (headers string))
+(defun vc-git-log-edit-toggle-signoff ()
+  (interactive)
+  (log-edit-toggle-header "Sign-Off" "yes"))
+
+(defun vc-git-log-edit-toggle-amend ()
+  (interactive)
+  (when (log-edit-toggle-header "Amend" "yes")
+    (goto-char (point-max))
+    (unless (bolp) (insert "\n"))
+    (insert (with-output-to-string
+              (vc-git-command
+               standard-output 1 nil
+               "log" "--max-count=1" "--pretty=format:%B" "HEAD")))))
+
+(defvar vc-git-log-edit-mode-map
+  (let ((map (make-sparse-keymap "Git-Log-Edit")))
+    (define-key map "\C-c\C-s" 'vc-git-log-edit-toggle-signoff)
+    (define-key map "\C-c\C-e" 'vc-git-log-edit-toggle-amend)
+    map))
+
+(define-derived-mode vc-git-log-edit-mode log-edit-mode "*VC-log*"
+  "Major mode for editing Git log messages.
+It is based on `log-edit-mode', and has Git-specific extensions.
+\\{vc-git-log-edit-mode-map}")
 
 (defun vc-git-checkin (files _rev comment)
   (let ((coding-system-for-write vc-git-commits-coding-system))
     (apply 'vc-git-command nil 0 files
 	   (nconc (list "commit" "-m")
                   (log-edit-extract-headers '(("Author" . "--author")
-					      ("Date" . "--date"))
+                                              ("Date" . "--date")
+                                              ("Amend" "--amend" "yes")
+                                              ("Sign-Off" "--signoff" "yes"))
                                             comment)
                   (list "--only" "--")))))
 


  parent reply	other threads:[~2012-09-29  0:14 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-09-29  0:11 bug#12537: support for git commit --amend/--signoff Dmitry Gutov
     [not found] ` <handler.12537.B.134887753227659.ack@debbugs.gnu.org>
2012-09-29  0:14   ` Dmitry Gutov [this message]
2012-10-01  3:16     ` bug#12537: Acknowledgement (support for git commit --amend/--signoff) Stefan Monnier
2012-10-01  3:59       ` Dmitry Gutov
2012-10-01  4:32         ` Chong Yidong
2012-10-02  0:28           ` Dmitry Gutov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=50663D58.4010702@yandex.ru \
    --to=dgutov@yandex.ru \
    --cc=12537@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.