1 ;;; vc-svn.el --- non-resident support for Subversion version-control
3 ;; Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
5 ;; Author: FSF (see vc.el for full credits)
6 ;; Maintainer: Stefan Monnier <monnier@gnu.org>
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 3, or (at your option)
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23 ;; Boston, MA 02110-1301, USA.
27 ;; Sync'd with Subversion's vc-svn.el as of revision 5801. but this version
28 ;; has been extensively modified since to handle filesets.
36 ;;; Customization options
39 (defcustom vc-svn-global-switches nil
40 "*Global switches to pass to any SVN command."
41 :type
'(choice (const :tag
"None" nil
)
42 (string :tag
"Argument String")
43 (repeat :tag
"Argument List"
49 (defcustom vc-svn-register-switches nil
50 "*Extra switches for registering a file into SVN.
51 A string or list of strings passed to the checkin program by
53 :type
'(choice (const :tag
"None" nil
)
54 (string :tag
"Argument String")
55 (repeat :tag
"Argument List"
61 (defcustom vc-svn-diff-switches
62 t
;`svn' doesn't support common args like -c or -b.
63 "String or list of strings specifying extra switches for svn diff under VC.
64 If nil, use the value of `vc-diff-switches'.
65 If you want to force an empty list of arguments, use t."
66 :type
'(choice (const :tag
"Unspecified" nil
)
68 (string :tag
"Argument String")
69 (repeat :tag
"Argument List"
75 (defcustom vc-svn-header
(or (cdr (assoc 'SVN vc-header-alist
)) '("\$Id\$"))
76 "*Header keywords to be inserted by `vc-insert-headers'."
78 :type
'(repeat string
)
81 ;; We want to autoload it for use by the autoloaded version of
82 ;; vc-svn-registered, but we want the value to be compiled at startup, not
85 (defconst vc-svn-admin-directory
86 (cond ((and (memq system-type
'(cygwin windows-nt ms-dos
))
87 (getenv "SVN_ASP_DOT_NET_HACK"))
90 "The name of the \".svn\" subdirectory or its equivalent.")
92 ;;; Properties of the backend
94 (defun vc-svn-revision-granularity ()
97 ;;; State-querying functions
100 ;;; vc-svn-admin-directory is generally not defined when the
101 ;;; autoloaded function is called.
103 ;;;###autoload (defun vc-svn-registered (f)
104 ;;;###autoload (let ((admin-dir (cond ((and (eq system-type 'windows-nt)
105 ;;;###autoload (getenv "SVN_ASP_DOT_NET_HACK"))
106 ;;;###autoload "_svn")
107 ;;;###autoload (t ".svn"))))
108 ;;;###autoload (when (file-readable-p (expand-file-name
109 ;;;###autoload (concat admin-dir "/entries")
110 ;;;###autoload (file-name-directory f)))
111 ;;;###autoload (load "vc-svn")
112 ;;;###autoload (vc-svn-registered f))))
115 (add-to-list 'completion-ignored-extensions
".svn/")
117 (defun vc-svn-registered (file)
118 "Check if FILE is SVN registered."
119 (when (file-readable-p (expand-file-name (concat vc-svn-admin-directory
121 (file-name-directory file
)))
123 (cd (file-name-directory file
))
126 ;; Ignore all errors.
127 (vc-svn-command t t file
"status" "-v")
128 ;; Some problem happened. E.g. We can't find an `svn'
129 ;; executable. We used to only catch `file-error' but when
130 ;; the process is run on a remote host via Tramp, the error
131 ;; is only reported via the exit status which is turned into
132 ;; an `error' by vc-do-command.
135 (let ((parsed (vc-svn-parse-status file
)))
136 (and parsed
(not (memq parsed
'(ignored unregistered
))))))))))
138 (defun vc-svn-state (file &optional localp
)
139 "SVN-specific version of `vc-state'."
140 (setq localp
(or localp
(vc-stay-local-p file
)))
142 (cd (file-name-directory file
))
143 (vc-svn-command t
0 file
"status" (if localp
"-v" "-u"))
144 (vc-svn-parse-status file
)))
146 (defun vc-svn-state-heuristic (file)
147 "SVN-specific state heuristic."
148 (vc-svn-state file
'local
))
150 (defun vc-svn-dir-state (dir &optional localp
)
151 "Find the SVN state of all files in DIR and its subdirectories."
152 (setq localp
(or localp
(vc-stay-local-p dir
)))
153 (let ((default-directory dir
))
154 ;; Don't specify DIR in this command, the default-directory is
155 ;; enough. Otherwise it might fail with remote repositories.
157 (buffer-disable-undo) ;; Because these buffers can get huge
158 (vc-svn-command t
0 nil
"status" (if localp
"-v" "-u"))
159 (vc-svn-parse-status))))
161 (defun vc-svn-after-dir-status (callback buffer
)
162 (let ((state-map '((?A . added
)
169 ;; This is what vc-svn-parse-status does.
172 (goto-char (point-min))
173 (while (re-search-forward "^\\(.\\)..... \\(.*\\)$" nil t
)
174 (let ((state (cdr (assq (aref (match-string 1) 0) state-map
)))
175 (filename (match-string 2)))
177 (setq result
(cons (cons filename state
) result
)))))
178 (funcall callback result buffer
)))
180 (defun vc-svn-dir-status (dir callback buffer
)
181 "Run 'svn status' for DIR and update BUFFER via CALLBACK.
182 CALLBACK is called as (CALLBACK RESULT BUFFER), where
183 RESULT is a list of conses (FILE . STATE) for directory DIR."
184 (with-current-buffer (get-buffer-create
185 (generate-new-buffer-name " *vc svn status*"))
186 (vc-svn-command (current-buffer) 'async nil
"status")
188 `(vc-svn-after-dir-status (quote ,callback
) ,buffer
))))
190 (defun vc-svn-working-revision (file)
191 "SVN-specific version of `vc-working-revision'."
192 ;; There is no need to consult RCS headers under SVN, because we
193 ;; get the workfile version for free when we recognize that a file
194 ;; is registered in SVN.
195 (vc-svn-registered file
)
196 (vc-file-getprop file
'vc-working-revision
))
198 (defun vc-svn-checkout-model (file)
199 "SVN-specific version of `vc-checkout-model'."
200 ;; It looks like Subversion has no equivalent of CVSREAD.
203 ;; vc-svn-mode-line-string doesn't exist because the default implementation
206 (defun vc-svn-dired-state-info (file)
207 "SVN-specific version of `vc-dired-state-info'."
208 (let ((svn-state (vc-state file
)))
209 (cond ((eq svn-state
'edited
)
210 (if (equal (vc-working-revision file
) "0")
211 "(added)" "(modified)"))
213 ;; fall back to the default VC representation
214 (vc-default-dired-state-info 'SVN file
)))))
217 (defun vc-svn-previous-revision (file rev
)
218 (let ((newrev (1- (string-to-number rev
))))
220 (number-to-string newrev
))))
222 (defun vc-svn-next-revision (file rev
)
223 (let ((newrev (1+ (string-to-number rev
))))
224 ;; The "working revision" is an uneasy conceptual fit under Subversion;
225 ;; we use it as the upper bound until a better idea comes along. If the
226 ;; workfile version W coincides with the tree's latest revision R, then
227 ;; this check prevents a "no such revision: R+1" error. Otherwise, it
228 ;; inhibits showing of W+1 through R, which could be considered anywhere
229 ;; from gracious to impolite.
230 (unless (< (string-to-number (vc-file-getprop file
'vc-working-revision
))
232 (number-to-string newrev
))))
236 ;;; State-changing functions
239 (defun vc-svn-create-repo ()
240 "Create a new SVN repository."
241 (vc-do-command nil
0 "svnadmin" '("create" "SVN"))
242 (vc-do-command nil
0 "svn" '(".")
243 "checkout" (concat "file://" default-directory
"SVN")))
245 (defun vc-svn-register (files &optional rev comment
)
246 "Register FILES into the SVN version-control system.
247 The COMMENT argument is ignored This does an add but not a commit.
249 `vc-register-switches' and `vc-svn-register-switches' are passed to
250 the SVN command (in that order)."
251 (apply 'vc-svn-command nil
0 files
"add" (vc-switches 'SVN
'register
)))
253 (defun vc-svn-responsible-p (file)
254 "Return non-nil if SVN thinks it is responsible for FILE."
255 (file-directory-p (expand-file-name vc-svn-admin-directory
256 (if (file-directory-p file
)
258 (file-name-directory file
)))))
260 (defalias 'vc-svn-could-register
'vc-svn-responsible-p
261 "Return non-nil if FILE could be registered in SVN.
262 This is only possible if SVN is responsible for FILE's directory.")
264 (defun vc-svn-checkin (files rev comment
)
265 "SVN-specific version of `vc-backend-checkin'."
266 (if rev
(error "Committing to a specific revision is unsupported in SVN"))
268 'vc-svn-command nil
1 files
"ci"
269 (nconc (list "-m" comment
) (vc-switches 'SVN
'checkin
)))))
271 (goto-char (point-min))
272 (unless (equal status
0)
273 ;; Check checkin problem.
275 ((search-forward "Transaction is out of date" nil t
)
276 (mapc (lambda (file) (vc-file-setprop file
'vc-state
'needs-merge
))
278 (error (substitute-command-keys
279 (concat "Up-to-date check failed: "
280 "type \\[vc-next-action] to merge in changes"))))
282 (pop-to-buffer (current-buffer))
283 (goto-char (point-min))
284 (shrink-window-if-larger-than-buffer)
285 (error "Check-in failed"))))
286 ;; Update file properties
288 ;; file 'vc-working-revision
289 ;; (vc-parse-buffer "^\\(new\\|initial\\) revision: \\([0-9.]+\\)" 2))
292 (defun vc-svn-find-revision (file rev buffer
)
293 "SVN-specific retrieval of a specified version into a buffer."
294 (apply 'vc-svn-command
297 (and rev
(not (string= rev
""))
299 (vc-switches 'SVN
'checkout
)))
301 (defun vc-svn-checkout (file &optional editable rev
)
302 (message "Checking out %s..." file
)
303 (with-current-buffer (or (get-file-buffer file
) (current-buffer))
304 (vc-call update file editable rev
(vc-switches 'SVN
'checkout
)))
306 (message "Checking out %s...done" file
))
308 (defun vc-svn-update (file editable rev switches
)
309 (if (and (file-exists-p file
) (not rev
))
310 ;; If no revision was specified, there's nothing to do.
312 ;; Check out a particular version (or recreate the file).
313 (vc-file-setprop file
'vc-working-revision nil
)
314 (apply 'vc-svn-command nil
0 file
316 ;; default for verbose checkout: clear the sticky tag so
317 ;; that the actual update will get the head of the trunk
319 ((null rev
) "-rBASE")
320 ((or (eq rev t
) (equal rev
"")) nil
)
321 (t (concat "-r" rev
)))
324 (defun vc-svn-delete-file (file)
325 (vc-svn-command nil
0 file
"remove"))
327 (defun vc-svn-rename-file (old new
)
328 (vc-svn-command nil
0 new
"move" (file-relative-name old
)))
330 (defun vc-svn-revert (file &optional contents-done
)
331 "Revert FILE to the version it was based on."
332 (unless contents-done
333 (vc-svn-command nil
0 file
"revert")))
335 (defun vc-svn-merge (file first-version
&optional second-version
)
336 "Merge changes into current working copy of FILE.
337 The changes are between FIRST-VERSION and SECOND-VERSION."
338 (vc-svn-command nil
0 file
340 "-r" (if second-version
341 (concat first-version
":" second-version
)
343 (vc-file-setprop file
'vc-state
'edited
)
344 (with-current-buffer (get-buffer "*vc*")
345 (goto-char (point-min))
346 (if (looking-at "C ")
348 0))) ; signal success
350 (defun vc-svn-merge-news (file)
351 "Merge in any new changes made to FILE."
352 (message "Merging changes into %s..." file
)
353 ;; (vc-file-setprop file 'vc-working-revision nil)
354 (vc-file-setprop file
'vc-checkout-time
0)
355 (vc-svn-command nil
0 file
"update")
356 ;; Analyze the merge result reported by SVN, and set
357 ;; file properties accordingly.
358 (with-current-buffer (get-buffer "*vc*")
359 (goto-char (point-min))
360 ;; get new working revision
361 (if (re-search-forward
362 "^\\(Updated to\\|At\\) revision \\([0-9]+\\)" nil t
)
363 (vc-file-setprop file
'vc-working-revision
(match-string 2))
364 (vc-file-setprop file
'vc-working-revision nil
))
366 (goto-char (point-min))
368 (if (looking-at "At revision")
369 0 ;; there were no news; indicate success
370 (if (re-search-forward
371 ;; Newer SVN clients have 3 columns of chars (one for the
372 ;; file's contents, then second for its properties, and the
373 ;; third for lock-grabbing info), before the 2 spaces.
374 ;; We also used to match the filename in column 0 without any
375 ;; meta-info before it, but I believe this can never happen.
376 (concat "^\\(\\([ACGDU]\\)\\(.[B ]\\)? \\)"
377 (regexp-quote (file-name-nondirectory file
)))
380 ;; Merge successful, we are in sync with repository now
381 ((string= (match-string 2) "U")
382 (vc-file-setprop file
'vc-state
'up-to-date
)
383 (vc-file-setprop file
'vc-checkout-time
384 (nth 5 (file-attributes file
)))
385 0);; indicate success to the caller
386 ;; Merge successful, but our own changes are still in the file
387 ((string= (match-string 2) "G")
388 (vc-file-setprop file
'vc-state
'edited
)
389 0);; indicate success to the caller
390 ;; Conflicts detected!
392 (vc-file-setprop file
'vc-state
'edited
)
393 1);; signal the error to the caller
395 (pop-to-buffer "*vc*")
396 (error "Couldn't analyze svn update result")))
397 (message "Merging changes into %s...done" file
))))
399 (defun vc-svn-modify-change-comment (files rev comment
)
400 "Modify the change comments for a specified REV.
401 You must have ssh access to the repository host, and the directory Emacs
402 uses locally for temp files must also be writeable by you on that host."
403 (vc-do-command nil
0 "svn" nil
"info")
405 (goto-char (point-min))
406 (unless (re-search-forward "Repository Root: svn\\+ssh://\\([^/]+\\)\\(/.*\\)" nil t
)
407 (error "Repository information is unavailable."))
408 (let* ((tempfile (make-temp-file user-mail-address
))
409 (host (match-string 1))
410 (directory (match-string 2))
411 (remotefile (concat host
":" tempfile
)))
414 (write-region (point-min) (point-max) tempfile
))
415 (unless (vc-do-command nil
0 "scp" nil
"-q" tempfile remotefile
)
416 (error "Copy of comment to %s failed" remotefile
))
417 (unless (vc-do-command nil
0 "ssh" nil
419 (format "svnadmin setlog --bypass-hooks %s -r %s %s; rm %s"
420 directory rev tempfile tempfile
))
421 (error "Log edit failed"))
425 ;;; History functions
428 (defun vc-svn-print-log (files &optional buffer
)
429 "Get change log(s) associated with FILES."
431 (vc-setup-buffer buffer
)
432 (let ((inhibit-read-only t
))
433 (goto-char (point-min))
436 (insert "Working file: " file
"\n")
440 ;; (if (and (= (length files) 1) (vc-stay-local-p file)) 'async 0)
443 ;; By default Subversion only shows the log up to the
444 ;; working revision, whereas we also want the log of the
445 ;; subsequent commits. At least that's what the
446 ;; vc-cvs.el code does.
448 ;; Dump log for the entire directory.
449 (vc-svn-command buffer
0 nil
"log" "-rHEAD:0")))))
451 (defun vc-svn-wash-log ()
452 "Remove all non-comment information from log output."
453 ;; FIXME: not implemented for SVN
456 (defun vc-svn-diff (files &optional oldvers newvers buffer
)
457 "Get a difference report using SVN between two revisions of fileset FILES."
461 (or (equal oldvers
(vc-working-revision f
))
464 ;; Use nil rather than the current revision because svn handles
465 ;; it better (i.e. locally). Note that if _any_ of the files
466 ;; has a different revision, we fetch the lot, which is
467 ;; obviously sub-optimal.
470 (if vc-svn-diff-switches
471 (vc-switches 'SVN
'diff
)
472 (list "-x" (mapconcat 'identity
(vc-switches nil
'diff
) " "))))
473 (async (and (not vc-disable-async-diff
)
474 (vc-stay-local-p files
)
475 (or oldvers newvers
)))) ; Svn diffs those locally.
476 (apply 'vc-svn-command buffer
482 (list "-r" (if newvers
(concat oldvers
":" newvers
)
484 (if async
1 ; async diff => pessimistic assumption
485 ;; For some reason `svn diff' does not return a useful
486 ;; status w.r.t whether the diff was empty or not.
487 (buffer-size (get-buffer buffer
)))))
493 (defun vc-svn-create-snapshot (dir name branchp
)
494 "Assign to DIR's current revision a given NAME.
495 If BRANCHP is non-nil, the name is created as a branch (and the current
496 workspace is immediately moved to that new branch).
497 NAME is assumed to be a URL."
498 (vc-svn-command nil
0 dir
"copy" name
)
499 (when branchp
(vc-svn-retrieve-snapshot dir name nil
)))
501 (defun vc-svn-retrieve-snapshot (dir name update
)
502 "Retrieve a snapshot at and below DIR.
503 NAME is the name of the snapshot; if it is empty, do a `svn update'.
504 If UPDATE is non-nil, then update (resynch) any affected buffers.
505 NAME is assumed to be a URL."
506 (vc-svn-command nil
0 dir
"switch" name
)
507 ;; FIXME: parse the output and obey `update'.
514 ;; Subversion makes backups for us, so don't bother.
515 ;; (defalias 'vc-svn-make-version-backups-p 'vc-stay-local-p
516 ;; "Return non-nil if version backups should be made for FILE.")
518 (defun vc-svn-check-headers ()
519 "Check if the current file has any headers in it."
521 (goto-char (point-min))
522 (re-search-forward "\\$[A-Za-z\300-\326\330-\366\370-\377]+\
523 \\(: [\t -#%-\176\240-\377]*\\)?\\$" nil t
)))
527 ;;; Internal functions
530 (defcustom vc-svn-program
"svn"
531 "Name of the SVN executable."
535 (defun vc-svn-root (dir)
536 (vc-find-root dir vc-svn-admin-directory t
))
538 (defun vc-svn-command (buffer okstatus file-or-list
&rest flags
)
539 "A wrapper around `vc-do-command' for use in vc-svn.el.
540 The difference to vc-do-command is that this function always invokes `svn',
541 and that it passes `vc-svn-global-switches' to it before FLAGS."
542 (apply 'vc-do-command buffer okstatus vc-svn-program file-or-list
543 (if (stringp vc-svn-global-switches
)
544 (cons vc-svn-global-switches flags
)
545 (append vc-svn-global-switches
548 (defun vc-svn-repository-hostname (dirname)
550 (let ((coding-system-for-read
551 (or file-name-coding-system
552 default-file-name-coding-system
)))
553 (vc-insert-file (expand-file-name (concat vc-svn-admin-directory
556 (goto-char (point-min))
557 (when (re-search-forward
558 ;; Old `svn' used name="svn:this_dir", newer use just name="".
559 (concat "name=\"\\(?:svn:this_dir\\)?\"[\n\t ]*"
560 "\\(?:[-a-z]+=\"[^\"]*\"[\n\t ]*\\)*?"
561 "url=\"\\(?1:[^\"]+\\)\""
562 ;; Yet newer ones don't use XML any more.
563 "\\|^\ndir\n[0-9]+\n\\(?1:.*\\)") nil t
)
564 ;; This is not a hostname but a URL. This may actually be considered
565 ;; as a feature since it allows vc-svn-stay-local to specify different
566 ;; behavior for different modules on the same server.
569 (defun vc-svn-resolve-when-done ()
570 "Call \"svn resolved\" if the conflict markers have been removed."
572 (goto-char (point-min))
573 (unless (re-search-forward "^<<<<<<< " nil t
)
574 (vc-svn-command nil
0 buffer-file-name
"resolved")
575 ;; Remove the hook so that it is not called multiple times.
576 (remove-hook 'after-save-hook
'vc-svn-resolve-when-done t
))))
578 ;; Inspired by vc-arch-find-file-hook.
579 (defun vc-svn-find-file-hook ()
580 (when (eq ?C
(vc-file-getprop buffer-file-name
'vc-svn-status
))
581 ;; If the file is marked as "conflicted", then we should try and call
582 ;; "svn resolved" when applicable.
584 (goto-char (point-min))
585 (re-search-forward "^<<<<<<< " nil t
))
586 ;; There are conflict markers.
588 (smerge-start-session)
589 (add-hook 'after-save-hook
'vc-svn-resolve-when-done nil t
))
590 ;; There are no conflict markers. This is problematic: maybe it means
591 ;; the conflict has been resolved and we should immediately call "svn
592 ;; resolved", or it means that the file's type does not allow Svn to
593 ;; use conflict markers in which case we don't really know what to do.
594 ;; So let's just punt for now.
596 (message "There are unresolved conflicts in this file")))
598 (defun vc-svn-parse-status (&optional filename
)
599 "Parse output of \"svn status\" command in the current buffer.
600 Set file properties accordingly. Unless FILENAME is non-nil, parse only
601 information about FILENAME and return its status."
603 (goto-char (point-min))
604 (while (re-search-forward
605 ;; Ignore the files with status X.
606 "^\\(\\?\\|[ ACDGIMR!~][ MC][ L][ +][ S]..\\([ *]\\) +\\([-0-9]+\\) +\\([0-9?]+\\) +\\([^ ]+\\)\\) +" nil t
)
607 ;; If the username contains spaces, the output format is ambiguous,
608 ;; so don't trust the output's filename unless we have to.
609 (setq file
(or filename
611 (buffer-substring (point) (line-end-position)))))
612 (setq status
(char-after (line-beginning-position)))
614 (vc-file-setprop file
'vc-state
'unregistered
)
615 ;; `vc-BACKEND-registered' must not set vc-backend,
616 ;; which is instead set in vc-registered.
617 (unless filename
(vc-file-setprop file
'vc-backend
'SVN
))
618 ;; Use the last-modified revision, so that searching in vc-print-log
620 (vc-file-setprop file
'vc-working-revision
(match-string 3))
621 ;; Remember Svn's own status.
622 (vc-file-setprop file
'vc-svn-status status
)
627 (if (eq (char-after (match-beginning 1)) ?
*)
629 (vc-file-setprop file
'vc-checkout-time
630 (nth 5 (file-attributes file
)))
633 ;; If the file was actually copied, (match-string 2) is "-".
634 (vc-file-setprop file
'vc-working-revision
"0")
635 (vc-file-setprop file
'vc-checkout-time
0)
637 ((memq status
'(?M ?C
))
638 (if (eq (char-after (match-beginning 1)) ?
*)
642 (vc-file-setprop file
'vc-state
'ignored
))
644 (vc-file-setprop file
'vc-state
'removed
))
646 (if filename
(vc-file-getprop filename
'vc-state
))))
648 (defun vc-svn-dir-state-heuristic (dir)
649 "Find the SVN state of all files in DIR, using only local information."
650 (vc-svn-dir-state dir
'local
))
652 (defun vc-svn-valid-symbolic-tag-name-p (tag)
653 "Return non-nil if TAG is a valid symbolic tag name."
654 ;; According to the SVN manual, a valid symbolic tag must start with
655 ;; an uppercase or lowercase letter and can contain uppercase and
656 ;; lowercase letters, digits, `-', and `_'.
657 (and (string-match "^[a-zA-Z]" tag
)
658 (not (string-match "[^a-z0-9A-Z-_]" tag
))))
660 (defun vc-svn-valid-revision-number-p (tag)
661 "Return non-nil if TAG is a valid revision number."
662 (and (string-match "^[0-9]" tag
)
663 (not (string-match "[^0-9]" tag
))))
665 ;; Support for `svn annotate'
667 (defun vc-svn-annotate-command (file buf
&optional rev
)
668 (vc-svn-command buf
0 file
"annotate" (if rev
(concat "-r" rev
))))
670 (defun vc-svn-annotate-time-of-rev (rev)
671 ;; Arbitrarily assume 10 commmits per day.
672 (/ (string-to-number rev
) 10.0))
674 (defun vc-svn-annotate-current-time ()
675 (vc-svn-annotate-time-of-rev vc-annotate-parent-rev
))
677 (defconst vc-svn-annotate-re
"[ \t]*\\([0-9]+\\)[ \t]+[^\t ]+ ")
679 (defun vc-svn-annotate-time ()
680 (when (looking-at vc-svn-annotate-re
)
681 (goto-char (match-end 0))
682 (vc-svn-annotate-time-of-rev (match-string 1))))
684 (defun vc-svn-annotate-extract-revision-at-line ()
687 (if (looking-at vc-svn-annotate-re
) (match-string 1))))
691 ;; arch-tag: 02f10c68-2b4d-453a-90fc-1eee6cfb268d
692 ;;; vc-svn.el ends here