]> git.eshelyaron.com Git - emacs.git/commitdiff
add primative implementation of vc-svn-revision-table
authorMark A. Hershberger <mah@everybody.org>
Fri, 5 Feb 2010 19:20:17 +0000 (14:20 -0500)
committerMark A. Hershberger <mah@everybody.org>
Fri, 5 Feb 2010 19:20:17 +0000 (14:20 -0500)
lisp/ChangeLog
lisp/vc-svn.el

index 9013caf202685196ecc27cbd2a40e4a50981a7bb..6982e488b449a656068bd012b6ec20c0703b624d 100644 (file)
@@ -1,3 +1,7 @@
+2010-02-05  Mark A. Hershberger  <mah@everybody.org>
+
+       * vc-svn.el (vc-svn-revision-table): New function.
+
 2010-02-05  Michael Albinus  <michael.albinus@gmx.de>
 
        * net/ange-ftp.el (ange-ftp-insert-directory):
index 9f992fdd1c87397f4e69dc812bc35eb9a53940f9..6883556f249c3b6d83ac2b98f7faaada5899beb8 100644 (file)
 (eval-when-compile
   (require 'vc))
 
+;; Clear up the cache to force vc-call to check again and discover
+;; new functions when we reload this file.
+(put 'SVN 'vc-functions nil)
+
 ;;;
 ;;; Customization options
 ;;;
@@ -722,6 +726,21 @@ information about FILENAME and return its status."
     (beginning-of-line)
     (if (looking-at vc-svn-annotate-re) (match-string 1))))
 
+(defun vc-svn-revision-table (files)
+  (let ((vc-svn-revisions '()))
+    (with-current-buffer "*vc*"
+      (vc-svn-command nil 0 files "log" "-q")
+      (goto-char (point-min))
+      (forward-line)
+      (let ((start (point-min))
+            (loglines (buffer-substring-no-properties (point-min)
+                                                      (point-max))))
+        (while (string-match "^r\\([0-9]+\\) " loglines)
+          (push (match-string 1 loglines) vc-svn-revisions)
+          (setq start (+ start (match-end 0)))
+          (setq loglines (buffer-substring-no-properties start (point-max)))))
+    vc-svn-revisions)))
+
 (provide 'vc-svn)
 
 ;; arch-tag: 02f10c68-2b4d-453a-90fc-1eee6cfb268d