annotate lisp/vc/vc-cvs.el @ 110741:d90a3bc6b730

Remove vc-header-alist, obsolete since 21.1. * lisp/vc/vc-hooks.el (vc-header-alist): Remove obsolete variable. * lisp/vc/vc.el (vc-static-header-alist): Doc fix. * lisp/vc/vc-cvs.el (vc-cvs-header): * lisp/vc/vc-rcs.el (vc-rcs-header): * lisp/vc/vc-sccs.el (vc-sccs-header): * lisp/vc/vc-svn.el (vc-svn-header): Do not consult vc-header-alist. * lisp/obsolete/vc-mcvs.el (vc-mcvs-header): * lisp/progmodes/cperl-mode.el (cperl-mode): Only set vc-header-alist on XEmacs. * etc/NEWS: Mention above change.
author Glenn Morris <rgm@gnu.org>
date Sun, 03 Oct 2010 14:05:47 -0700
parents 280c8ae2476d
children d3584b6b6247
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
31384
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
1 ;;; vc-cvs.el --- non-resident support for CVS version-control
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
2
100186
c9d564389052 (vc-cvs-diff-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents: 100171
diff changeset
3 ;; Copyright (C) 1995, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
106815
1d1d5d9bd884 Add 2010 to copyright years.
Glenn Morris <rgm@gnu.org>
parents: 106472
diff changeset
4 ;; 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
31384
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
5
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
6 ;; Author: FSF (see vc.el for full credits)
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
7 ;; Maintainer: Andre Spiegel <spiegel@gnu.org>
110015
280c8ae2476d Add "Package:" file headers to denote built-in packages.
Chong Yidong <cyd@stupidchicken.com>
parents: 108970
diff changeset
8 ;; Package: vc
31384
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
9
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
10 ;; This file is part of GNU Emacs.
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
11
94678
ee5932bf781d Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 94563
diff changeset
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
31384
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
13 ;; it under the terms of the GNU General Public License as published by
94678
ee5932bf781d Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 94563
diff changeset
14 ;; the Free Software Foundation, either version 3 of the License, or
ee5932bf781d Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 94563
diff changeset
15 ;; (at your option) any later version.
31384
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
16
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
17 ;; GNU Emacs is distributed in the hope that it will be useful,
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
20 ;; GNU General Public License for more details.
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
21
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
22 ;; You should have received a copy of the GNU General Public License
94678
ee5932bf781d Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 94563
diff changeset
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
31384
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
24
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
25 ;;; Commentary:
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
26
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
27 ;;; Code:
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
28
78359
2dd5d799a16d * vc-git.el: (vc-directory-exclusion-list, vc-handled-backends):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 78236
diff changeset
29 (eval-when-compile (require 'cl) (require 'vc))
35584
498bcc1e7c00 require vc
Sam Steingold <sds@gnu.org>
parents: 35569
diff changeset
30
81820
37a7f9bddc45 (vc-functions): Clear up the cache when reloading the file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81764
diff changeset
31 ;; Clear up the cache to force vc-call to check again and discover
37a7f9bddc45 (vc-functions): Clear up the cache when reloading the file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81764
diff changeset
32 ;; new functions when we reload this file.
37a7f9bddc45 (vc-functions): Clear up the cache when reloading the file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81764
diff changeset
33 (put 'CVS 'vc-functions nil)
35584
498bcc1e7c00 require vc
Sam Steingold <sds@gnu.org>
parents: 35569
diff changeset
34
94563
a0bb8ca25a33 Clean up vc*-revision-granularity and vc*-checkout-model.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94542
diff changeset
35 ;;; Properties of the backend.
a0bb8ca25a33 Clean up vc*-revision-granularity and vc*-checkout-model.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94542
diff changeset
36
a0bb8ca25a33 Clean up vc*-revision-granularity and vc*-checkout-model.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94542
diff changeset
37 (defun vc-cvs-revision-granularity () 'file)
a0bb8ca25a33 Clean up vc*-revision-granularity and vc*-checkout-model.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94542
diff changeset
38
a0bb8ca25a33 Clean up vc*-revision-granularity and vc*-checkout-model.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94542
diff changeset
39 (defun vc-cvs-checkout-model (files)
a0bb8ca25a33 Clean up vc*-revision-granularity and vc*-checkout-model.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94542
diff changeset
40 "CVS-specific version of `vc-checkout-model'."
a0bb8ca25a33 Clean up vc*-revision-granularity and vc*-checkout-model.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94542
diff changeset
41 (if (getenv "CVSREAD")
a0bb8ca25a33 Clean up vc*-revision-granularity and vc*-checkout-model.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94542
diff changeset
42 'announce
a0bb8ca25a33 Clean up vc*-revision-granularity and vc*-checkout-model.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94542
diff changeset
43 (let* ((file (if (consp files) (car files) files))
a0bb8ca25a33 Clean up vc*-revision-granularity and vc*-checkout-model.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94542
diff changeset
44 (attrib (file-attributes file)))
a0bb8ca25a33 Clean up vc*-revision-granularity and vc*-checkout-model.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94542
diff changeset
45 (or (vc-file-getprop file 'vc-checkout-model)
a0bb8ca25a33 Clean up vc*-revision-granularity and vc*-checkout-model.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94542
diff changeset
46 (vc-file-setprop
a0bb8ca25a33 Clean up vc*-revision-granularity and vc*-checkout-model.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94542
diff changeset
47 file 'vc-checkout-model
a0bb8ca25a33 Clean up vc*-revision-granularity and vc*-checkout-model.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94542
diff changeset
48 (if (and attrib ;; don't check further if FILE doesn't exist
a0bb8ca25a33 Clean up vc*-revision-granularity and vc*-checkout-model.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94542
diff changeset
49 ;; If the file is not writable (despite CVSREAD being
a0bb8ca25a33 Clean up vc*-revision-granularity and vc*-checkout-model.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94542
diff changeset
50 ;; undefined), this is probably because the file is being
a0bb8ca25a33 Clean up vc*-revision-granularity and vc*-checkout-model.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94542
diff changeset
51 ;; "watched" by other developers.
a0bb8ca25a33 Clean up vc*-revision-granularity and vc*-checkout-model.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94542
diff changeset
52 ;; (If vc-mistrust-permissions was t, we actually shouldn't
a0bb8ca25a33 Clean up vc*-revision-granularity and vc*-checkout-model.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94542
diff changeset
53 ;; trust this, but there is no other way to learn this from
a0bb8ca25a33 Clean up vc*-revision-granularity and vc*-checkout-model.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94542
diff changeset
54 ;; CVS at the moment (version 1.9).)
a0bb8ca25a33 Clean up vc*-revision-granularity and vc*-checkout-model.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94542
diff changeset
55 (string-match "r-..-..-." (nth 8 attrib)))
a0bb8ca25a33 Clean up vc*-revision-granularity and vc*-checkout-model.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94542
diff changeset
56 'announce
a0bb8ca25a33 Clean up vc*-revision-granularity and vc*-checkout-model.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94542
diff changeset
57 'implicit))))))
a0bb8ca25a33 Clean up vc*-revision-granularity and vc*-checkout-model.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94542
diff changeset
58
35569
5cd8ebba5a94 doc&comment fix
Sam Steingold <sds@gnu.org>
parents: 35177
diff changeset
59 ;;;
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
60 ;;; Customization options
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
61 ;;;
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
62
44197
e255f8fa4f62 (vc-cvs-global-switches): New user option.
André Spiegel <spiegel@gnu.org>
parents: 44104
diff changeset
63 (defcustom vc-cvs-global-switches nil
100171
d42aff5ca541 * align.el:
Lute Kamstra <lute@gnu.org>
parents: 99498
diff changeset
64 "Global switches to pass to any CVS command."
44197
e255f8fa4f62 (vc-cvs-global-switches): New user option.
André Spiegel <spiegel@gnu.org>
parents: 44104
diff changeset
65 :type '(choice (const :tag "None" nil)
e255f8fa4f62 (vc-cvs-global-switches): New user option.
André Spiegel <spiegel@gnu.org>
parents: 44104
diff changeset
66 (string :tag "Argument String")
e255f8fa4f62 (vc-cvs-global-switches): New user option.
André Spiegel <spiegel@gnu.org>
parents: 44104
diff changeset
67 (repeat :tag "Argument List"
e255f8fa4f62 (vc-cvs-global-switches): New user option.
André Spiegel <spiegel@gnu.org>
parents: 44104
diff changeset
68 :value ("")
e255f8fa4f62 (vc-cvs-global-switches): New user option.
André Spiegel <spiegel@gnu.org>
parents: 44104
diff changeset
69 string))
59996
aac0a33f5772 Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents: 59443
diff changeset
70 :version "22.1"
44197
e255f8fa4f62 (vc-cvs-global-switches): New user option.
André Spiegel <spiegel@gnu.org>
parents: 44104
diff changeset
71 :group 'vc)
e255f8fa4f62 (vc-cvs-global-switches): New user option.
André Spiegel <spiegel@gnu.org>
parents: 44104
diff changeset
72
31384
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
73 (defcustom vc-cvs-register-switches nil
100202
d2b36bcb9a82 (vc-cvs-register-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents: 100186
diff changeset
74 "Switches for registering a file into CVS.
31384
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
75 A string or list of strings passed to the checkin program by
100202
d2b36bcb9a82 (vc-cvs-register-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents: 100186
diff changeset
76 \\[vc-register]. If nil, use the value of `vc-register-switches'.
d2b36bcb9a82 (vc-cvs-register-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents: 100186
diff changeset
77 If t, use no switches."
d2b36bcb9a82 (vc-cvs-register-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents: 100186
diff changeset
78 :type '(choice (const :tag "Unspecified" nil)
d2b36bcb9a82 (vc-cvs-register-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents: 100186
diff changeset
79 (const :tag "None" t)
31384
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
80 (string :tag "Argument String")
100202
d2b36bcb9a82 (vc-cvs-register-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents: 100186
diff changeset
81 (repeat :tag "Argument List" :value ("") string))
31475
b25e22223eb9 DOc fixes.
Dave Love <fx@gnu.org>
parents: 31404
diff changeset
82 :version "21.1"
31384
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
83 :group 'vc)
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
84
35821
6b1ff979e045 (vc-cvs-diff-switches): New customization option.
André Spiegel <spiegel@gnu.org>
parents: 35702
diff changeset
85 (defcustom vc-cvs-diff-switches nil
100186
c9d564389052 (vc-cvs-diff-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents: 100171
diff changeset
86 "String or list of strings specifying switches for CVS diff under VC.
c9d564389052 (vc-cvs-diff-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents: 100171
diff changeset
87 If nil, use the value of `vc-diff-switches'. If t, use no switches."
c9d564389052 (vc-cvs-diff-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents: 100171
diff changeset
88 :type '(choice (const :tag "Unspecified" nil)
c9d564389052 (vc-cvs-diff-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents: 100171
diff changeset
89 (const :tag "None" t)
c9d564389052 (vc-cvs-diff-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents: 100171
diff changeset
90 (string :tag "Argument String")
c9d564389052 (vc-cvs-diff-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents: 100171
diff changeset
91 (repeat :tag "Argument List" :value ("") string))
35821
6b1ff979e045 (vc-cvs-diff-switches): New customization option.
André Spiegel <spiegel@gnu.org>
parents: 35702
diff changeset
92 :version "21.1"
6b1ff979e045 (vc-cvs-diff-switches): New customization option.
André Spiegel <spiegel@gnu.org>
parents: 35702
diff changeset
93 :group 'vc)
6b1ff979e045 (vc-cvs-diff-switches): New customization option.
André Spiegel <spiegel@gnu.org>
parents: 35702
diff changeset
94
110741
d90a3bc6b730 Remove vc-header-alist, obsolete since 21.1.
Glenn Morris <rgm@gnu.org>
parents: 110015
diff changeset
95 (defcustom vc-cvs-header '("\$Id\$")
100171
d42aff5ca541 * align.el:
Lute Kamstra <lute@gnu.org>
parents: 99498
diff changeset
96 "Header keywords to be inserted by `vc-insert-headers'."
110741
d90a3bc6b730 Remove vc-header-alist, obsolete since 21.1.
Glenn Morris <rgm@gnu.org>
parents: 110015
diff changeset
97 :version "24.1" ; no longer consult the obsolete vc-header-alist
35177
f7c511463b68 (vc-cvs-header): Fix :type.
Dave Love <fx@gnu.org>
parents: 35132
diff changeset
98 :type '(repeat string)
31384
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
99 :group 'vc)
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
100
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
101 (defcustom vc-cvs-use-edit t
100171
d42aff5ca541 * align.el:
Lute Kamstra <lute@gnu.org>
parents: 99498
diff changeset
102 "Non-nil means to use `cvs edit' to \"check out\" a file.
31384
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
103 This is only meaningful if you don't use the implicit checkout model
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
104 \(i.e. if you have $CVSREAD set)."
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
105 :type 'boolean
31475
b25e22223eb9 DOc fixes.
Dave Love <fx@gnu.org>
parents: 31404
diff changeset
106 :version "21.1"
31384
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
107 :group 'vc)
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
108
98675
2cae4bd13e67 * vc-hooks.el (vc-stay-local): Add a new choice and default to it.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98576
diff changeset
109 (defcustom vc-cvs-stay-local 'only-file
100171
d42aff5ca541 * align.el:
Lute Kamstra <lute@gnu.org>
parents: 99498
diff changeset
110 "Non-nil means use local operations when possible for remote repositories.
38288
6934c28c6bc5 (vc-cvs-stay-local): doc fix.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 37358
diff changeset
111 This avoids slow queries over the network and instead uses heuristics
6934c28c6bc5 (vc-cvs-stay-local): doc fix.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 37358
diff changeset
112 and past information to determine the current status of a file.
50671
0737c3a76291 (vc-cvs-stay-local): Keep the old default. Simplify doc string.
André Spiegel <spiegel@gnu.org>
parents: 50668
diff changeset
113
98675
2cae4bd13e67 * vc-hooks.el (vc-stay-local): Add a new choice and default to it.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98576
diff changeset
114 If value is the symbol `only-file' `vc-dir' will connect to the
2cae4bd13e67 * vc-hooks.el (vc-stay-local): Add a new choice and default to it.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98576
diff changeset
115 server, but heuristics will be used to determine the status for
2cae4bd13e67 * vc-hooks.el (vc-stay-local): Add a new choice and default to it.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98576
diff changeset
116 all other VC operations.
2cae4bd13e67 * vc-hooks.el (vc-stay-local): Add a new choice and default to it.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98576
diff changeset
117
50668
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
118 The value can also be a regular expression or list of regular
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
119 expressions to match against the host name of a repository; then VC
50671
0737c3a76291 (vc-cvs-stay-local): Keep the old default. Simplify doc string.
André Spiegel <spiegel@gnu.org>
parents: 50668
diff changeset
120 only stays local for hosts that match it. Alternatively, the value
57913
f5d7d9bbc021 (vc-cvs-annotate-command): Delete extraneous lines from beginning of buffer.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 54465
diff changeset
121 can be a list of regular expressions where the first element is the
f5d7d9bbc021 (vc-cvs-annotate-command): Delete extraneous lines from beginning of buffer.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 54465
diff changeset
122 symbol `except'; then VC always stays local except for hosts matched
50671
0737c3a76291 (vc-cvs-stay-local): Keep the old default. Simplify doc string.
André Spiegel <spiegel@gnu.org>
parents: 50668
diff changeset
123 by these regular expressions."
31384
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
124 :type '(choice (const :tag "Always stay local" t)
99190
e78a75586e10 (vc-cvs-stay-local): Fix typo in choice.
Martin Rudalics <rudalics@gmx.at>
parents: 99159
diff changeset
125 (const :tag "Only for file operations" only-file)
98675
2cae4bd13e67 * vc-hooks.el (vc-stay-local): Add a new choice and default to it.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98576
diff changeset
126 (const :tag "Don't stay local" nil)
100186
c9d564389052 (vc-cvs-diff-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents: 100171
diff changeset
127 (list :format "\nExamine hostname and %v"
c9d564389052 (vc-cvs-diff-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents: 100171
diff changeset
128 :tag "Examine hostname ..."
c9d564389052 (vc-cvs-diff-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents: 100171
diff changeset
129 (set :format "%v" :inline t
c9d564389052 (vc-cvs-diff-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents: 100171
diff changeset
130 (const :format "%t" :tag "don't" except))
c9d564389052 (vc-cvs-diff-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents: 100171
diff changeset
131 (regexp :format " stay local,\n%t: %v"
c9d564389052 (vc-cvs-diff-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents: 100171
diff changeset
132 :tag "if it matches")
50668
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
133 (repeat :format "%v%i\n" :inline t (regexp :tag "or"))))
98576
5472a993dc3a (vc-cvs-dir-stay-local): New variable.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98532
diff changeset
134 :version "23.1"
5472a993dc3a (vc-cvs-dir-stay-local): New variable.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98532
diff changeset
135 :group 'vc)
5472a993dc3a (vc-cvs-dir-stay-local): New variable.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98532
diff changeset
136
43447
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
137 (defcustom vc-cvs-sticky-date-format-string "%c"
100171
d42aff5ca541 * align.el:
Lute Kamstra <lute@gnu.org>
parents: 99498
diff changeset
138 "Format string for mode-line display of sticky date.
43447
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
139 Format is according to `format-time-string'. Only used if
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
140 `vc-cvs-sticky-tag-display' is t."
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
141 :type '(string)
59996
aac0a33f5772 Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents: 59443
diff changeset
142 :version "22.1"
43447
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
143 :group 'vc)
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
144
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
145 (defcustom vc-cvs-sticky-tag-display t
100171
d42aff5ca541 * align.el:
Lute Kamstra <lute@gnu.org>
parents: 99498
diff changeset
146 "Specify the mode-line display of sticky tags.
43447
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
147 Value t means default display, nil means no display at all. If the
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
148 value is a function or macro, it is called with the sticky tag and
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
149 its' type as parameters, in that order. TYPE can have three different
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
150 values: `symbolic-name' (TAG is a string), `revision-number' (TAG is a
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
151 string) and `date' (TAG is a date as returned by `encode-time'). The
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
152 return value of the function or macro will be displayed as a string.
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
153
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
154 Here's an example that will display the formatted date for sticky
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
155 dates and the word \"Sticky\" for sticky tag names and revisions.
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
156
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
157 (lambda (tag type)
44436
f9db51bb423b (vc-cvs-checkin): Pass the required argument to `error'.
Sam Steingold <sds@gnu.org>
parents: 44197
diff changeset
158 (cond ((eq type 'date) (format-time-string
43447
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
159 vc-cvs-sticky-date-format-string tag))
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
160 ((eq type 'revision-number) \"Sticky\")
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
161 ((eq type 'symbolic-name) \"Sticky\")))
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
162
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
163 Here's an example that will abbreviate to the first character only,
47917
ca7641fe56ba (vc-cvs-sticky-tag-display): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents: 47840
diff changeset
164 any text before the first occurrence of `-' for sticky symbolic tags.
43447
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
165 If the sticky tag is a revision number, the word \"Sticky\" is
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
166 displayed. Date and time is displayed for sticky dates.
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
167
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
168 (lambda (tag type)
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
169 (cond ((eq type 'date) (format-time-string \"%Y%m%d %H:%M\" tag))
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
170 ((eq type 'revision-number) \"Sticky\")
44436
f9db51bb423b (vc-cvs-checkin): Pass the required argument to `error'.
Sam Steingold <sds@gnu.org>
parents: 44197
diff changeset
171 ((eq type 'symbolic-name)
43447
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
172 (condition-case nil
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
173 (progn
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
174 (string-match \"\\\\([^-]*\\\\)\\\\(.*\\\\)\" tag)
44436
f9db51bb423b (vc-cvs-checkin): Pass the required argument to `error'.
Sam Steingold <sds@gnu.org>
parents: 44197
diff changeset
175 (concat (substring (match-string 1 tag) 0 1) \":\"
43447
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
176 (substring (match-string 2 tag) 1 nil)))
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
177 (error tag))))) ; Fall-back to given tag name.
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
178
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
179 See also variable `vc-cvs-sticky-date-format-string'."
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
180 :type '(choice boolean function)
59996
aac0a33f5772 Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents: 59443
diff changeset
181 :version "22.1"
43447
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
182 :group 'vc)
35569
5cd8ebba5a94 doc&comment fix
Sam Steingold <sds@gnu.org>
parents: 35177
diff changeset
183
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
184 ;;;
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
185 ;;; Internal variables
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
186 ;;;
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
187
35569
5cd8ebba5a94 doc&comment fix
Sam Steingold <sds@gnu.org>
parents: 35177
diff changeset
188
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
189 ;;;
35569
5cd8ebba5a94 doc&comment fix
Sam Steingold <sds@gnu.org>
parents: 35177
diff changeset
190 ;;; State-querying functions
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
191 ;;;
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
192
31384
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
193 ;;;###autoload (defun vc-cvs-registered (f)
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
194 ;;;###autoload (when (file-readable-p (expand-file-name
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
195 ;;;###autoload "CVS/Entries" (file-name-directory f)))
47811
8b1c72f30fea (vc-cvs-registered): In the autoload version use load instead of
Markus Rost <rost@math.uni-bielefeld.de>
parents: 47807
diff changeset
196 ;;;###autoload (load "vc-cvs")
31384
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
197 ;;;###autoload (vc-cvs-registered f)))
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
198
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
199 (defun vc-cvs-registered (file)
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
200 "Check if FILE is CVS registered."
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
201 (let ((dirname (or (file-name-directory file) ""))
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
202 (basename (file-name-nondirectory file))
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
203 ;; make sure that the file name is searched case-sensitively
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
204 (case-fold-search nil))
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
205 (if (file-readable-p (expand-file-name "CVS/Entries" dirname))
95591
fff438dcde9e (vc-cvs-registered): Consider a directory with a CVS subdirectory to be registered.
Sam Steingold <sds@gnu.org>
parents: 95524
diff changeset
206 (or (string= basename "")
fff438dcde9e (vc-cvs-registered): Consider a directory with a CVS subdirectory to be registered.
Sam Steingold <sds@gnu.org>
parents: 95524
diff changeset
207 (with-temp-buffer
fff438dcde9e (vc-cvs-registered): Consider a directory with a CVS subdirectory to be registered.
Sam Steingold <sds@gnu.org>
parents: 95524
diff changeset
208 (vc-cvs-get-entries dirname)
fff438dcde9e (vc-cvs-registered): Consider a directory with a CVS subdirectory to be registered.
Sam Steingold <sds@gnu.org>
parents: 95524
diff changeset
209 (goto-char (point-min))
fff438dcde9e (vc-cvs-registered): Consider a directory with a CVS subdirectory to be registered.
Sam Steingold <sds@gnu.org>
parents: 95524
diff changeset
210 (cond ((re-search-forward
fff438dcde9e (vc-cvs-registered): Consider a directory with a CVS subdirectory to be registered.
Sam Steingold <sds@gnu.org>
parents: 95524
diff changeset
211 (concat "^/" (regexp-quote basename) "/[^/]") nil t)
fff438dcde9e (vc-cvs-registered): Consider a directory with a CVS subdirectory to be registered.
Sam Steingold <sds@gnu.org>
parents: 95524
diff changeset
212 (beginning-of-line)
fff438dcde9e (vc-cvs-registered): Consider a directory with a CVS subdirectory to be registered.
Sam Steingold <sds@gnu.org>
parents: 95524
diff changeset
213 (vc-cvs-parse-entry file)
fff438dcde9e (vc-cvs-registered): Consider a directory with a CVS subdirectory to be registered.
Sam Steingold <sds@gnu.org>
parents: 95524
diff changeset
214 t)
fff438dcde9e (vc-cvs-registered): Consider a directory with a CVS subdirectory to be registered.
Sam Steingold <sds@gnu.org>
parents: 95524
diff changeset
215 (t nil))))
31384
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
216 nil)))
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
217
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
218 (defun vc-cvs-state (file)
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
219 "CVS-specific version of `vc-state'."
103553
af4ee0cb7fb7 * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 100908
diff changeset
220 (if (vc-stay-local-p file 'CVS)
31384
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
221 (let ((state (vc-file-getprop file 'vc-state)))
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
222 ;; If we should stay local, use the heuristic but only if
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
223 ;; we don't have a more precise state already available.
58640
0241e1689d7f (vc-cvs-state): Handle the case where vc-state is still nil.
André Spiegel <spiegel@gnu.org>
parents: 57916
diff changeset
224 (if (memq state '(up-to-date edited nil))
31384
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
225 (vc-cvs-state-heuristic file)
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
226 state))
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
227 (with-temp-buffer
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
228 (cd (file-name-directory file))
104596
5bce9145b1cc * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
Michael Albinus <michael.albinus@gmx.de>
parents: 104262
diff changeset
229 (let (process-file-side-effects)
5bce9145b1cc * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
Michael Albinus <michael.albinus@gmx.de>
parents: 104262
diff changeset
230 (vc-cvs-command t 0 file "status"))
31384
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
231 (vc-cvs-parse-status t))))
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
232
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
233 (defun vc-cvs-state-heuristic (file)
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
234 "CVS-specific state heuristic."
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
235 ;; If the file has not changed since checkout, consider it `up-to-date'.
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
236 ;; Otherwise consider it `edited'.
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
237 (let ((checkout-time (vc-file-getprop file 'vc-checkout-time))
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
238 (lastmod (nth 5 (file-attributes file))))
93124
97c5b398eee4 * vc-hooks.el (vc-default-mode-line-string): Add case for added files.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93118
diff changeset
239 (cond
97c5b398eee4 * vc-hooks.el (vc-default-mode-line-string): Add case for added files.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93118
diff changeset
240 ((equal checkout-time lastmod) 'up-to-date)
97c5b398eee4 * vc-hooks.el (vc-default-mode-line-string): Add case for added files.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93118
diff changeset
241 ((string= (vc-working-revision file) "0") 'added)
95425
72ac0c4a8ecd (vc-cvs-state-heuristic, vc-cvs-parse-status): Try and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 95321
diff changeset
242 ((null checkout-time) 'unregistered)
93124
97c5b398eee4 * vc-hooks.el (vc-default-mode-line-string): Add case for added files.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93118
diff changeset
243 (t 'edited))))
31384
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
244
85139
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 84583
diff changeset
245 (defun vc-cvs-working-revision (file)
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 84583
diff changeset
246 "CVS-specific version of `vc-working-revision'."
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
247 ;; There is no need to consult RCS headers under CVS, because we
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
248 ;; get the workfile version for free when we recognize that a file
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
249 ;; is registered in CVS.
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
250 (vc-cvs-registered file)
85139
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 84583
diff changeset
251 (vc-file-getprop file 'vc-working-revision))
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
252
31404
f2ab9420390f 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 31384
diff changeset
253 (defun vc-cvs-mode-line-string (file)
f2ab9420390f 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 31384
diff changeset
254 "Return string for placement into the modeline for FILE.
43447
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
255 Compared to the default implementation, this function does two things:
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
256 Handle the special case of a CVS file that is added but not yet
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
257 committed and support display of sticky tags."
82027
1350ba0c0448 * vc-cvs.el (vc-cvs-mode-line-string): Add support for tooltips
Dan Nicolaescu <dann@ics.uci.edu>
parents: 81988
diff changeset
258 (let* ((sticky-tag (vc-file-getprop file 'vc-cvs-sticky-tag))
1350ba0c0448 * vc-cvs.el (vc-cvs-mode-line-string): Add support for tooltips
Dan Nicolaescu <dann@ics.uci.edu>
parents: 81988
diff changeset
259 help-echo
93124
97c5b398eee4 * vc-hooks.el (vc-default-mode-line-string): Add case for added files.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93118
diff changeset
260 (string
97c5b398eee4 * vc-hooks.el (vc-default-mode-line-string): Add case for added files.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93118
diff changeset
261 (let ((def-ml (vc-default-mode-line-string 'CVS file)))
95524
75b22805a854 (vc-cvs-status-extra-headers): Remove extraneous newlines.
Sam Steingold <sds@gnu.org>
parents: 95443
diff changeset
262 (setq help-echo
93124
97c5b398eee4 * vc-hooks.el (vc-default-mode-line-string): Add case for added files.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93118
diff changeset
263 (get-text-property 0 'help-echo def-ml))
97c5b398eee4 * vc-hooks.el (vc-default-mode-line-string): Add case for added files.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93118
diff changeset
264 def-ml)))
95524
75b22805a854 (vc-cvs-status-extra-headers): Remove extraneous newlines.
Sam Steingold <sds@gnu.org>
parents: 95443
diff changeset
265 (propertize
82027
1350ba0c0448 * vc-cvs.el (vc-cvs-mode-line-string): Add support for tooltips
Dan Nicolaescu <dann@ics.uci.edu>
parents: 81988
diff changeset
266 (if (zerop (length sticky-tag))
1350ba0c0448 * vc-cvs.el (vc-cvs-mode-line-string): Add support for tooltips
Dan Nicolaescu <dann@ics.uci.edu>
parents: 81988
diff changeset
267 string
95524
75b22805a854 (vc-cvs-status-extra-headers): Remove extraneous newlines.
Sam Steingold <sds@gnu.org>
parents: 95443
diff changeset
268 (setq help-echo (format "%s on the '%s' branch"
82027
1350ba0c0448 * vc-cvs.el (vc-cvs-mode-line-string): Add support for tooltips
Dan Nicolaescu <dann@ics.uci.edu>
parents: 81988
diff changeset
269 help-echo sticky-tag))
1350ba0c0448 * vc-cvs.el (vc-cvs-mode-line-string): Add support for tooltips
Dan Nicolaescu <dann@ics.uci.edu>
parents: 81988
diff changeset
270 (concat string "[" sticky-tag "]"))
1350ba0c0448 * vc-cvs.el (vc-cvs-mode-line-string): Add support for tooltips
Dan Nicolaescu <dann@ics.uci.edu>
parents: 81988
diff changeset
271 'help-echo help-echo)))
31404
f2ab9420390f 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 31384
diff changeset
272
35569
5cd8ebba5a94 doc&comment fix
Sam Steingold <sds@gnu.org>
parents: 35177
diff changeset
273
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
274 ;;;
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
275 ;;; State-changing functions
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
276 ;;;
31384
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
277
81962
0744b309302b Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 81821
diff changeset
278 (defun vc-cvs-register (files &optional rev comment)
0744b309302b Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 81821
diff changeset
279 "Register FILES into the CVS version-control system.
0744b309302b Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 81821
diff changeset
280 COMMENT can be used to provide an initial description of FILES.
100202
d2b36bcb9a82 (vc-cvs-register-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents: 100186
diff changeset
281 Passes either `vc-cvs-register-switches' or `vc-register-switches'
d2b36bcb9a82 (vc-cvs-register-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents: 100186
diff changeset
282 to the CVS command."
92163
12326ccb66d6 (vc-cvs-register): Fix registering of directories in multiple file case.
Glenn Morris <rgm@gnu.org>
parents: 91956
diff changeset
283 ;; Register the directories if needed.
12326ccb66d6 (vc-cvs-register): Fix registering of directories in multiple file case.
Glenn Morris <rgm@gnu.org>
parents: 91956
diff changeset
284 (let (dirs)
12326ccb66d6 (vc-cvs-register): Fix registering of directories in multiple file case.
Glenn Morris <rgm@gnu.org>
parents: 91956
diff changeset
285 (dolist (file files)
12326ccb66d6 (vc-cvs-register): Fix registering of directories in multiple file case.
Glenn Morris <rgm@gnu.org>
parents: 91956
diff changeset
286 (and (not (vc-cvs-responsible-p file))
12326ccb66d6 (vc-cvs-register): Fix registering of directories in multiple file case.
Glenn Morris <rgm@gnu.org>
parents: 91956
diff changeset
287 (vc-cvs-could-register file)
12326ccb66d6 (vc-cvs-register): Fix registering of directories in multiple file case.
Glenn Morris <rgm@gnu.org>
parents: 91956
diff changeset
288 (push (directory-file-name (file-name-directory file)) dirs)))
12326ccb66d6 (vc-cvs-register): Fix registering of directories in multiple file case.
Glenn Morris <rgm@gnu.org>
parents: 91956
diff changeset
289 (if dirs (vc-cvs-register dirs)))
12326ccb66d6 (vc-cvs-register): Fix registering of directories in multiple file case.
Glenn Morris <rgm@gnu.org>
parents: 91956
diff changeset
290 (apply 'vc-cvs-command nil 0 files
12326ccb66d6 (vc-cvs-register): Fix registering of directories in multiple file case.
Glenn Morris <rgm@gnu.org>
parents: 91956
diff changeset
291 "add"
12326ccb66d6 (vc-cvs-register): Fix registering of directories in multiple file case.
Glenn Morris <rgm@gnu.org>
parents: 91956
diff changeset
292 (and comment (string-match "[^\t\n ]" comment)
12326ccb66d6 (vc-cvs-register): Fix registering of directories in multiple file case.
Glenn Morris <rgm@gnu.org>
parents: 91956
diff changeset
293 (concat "-m" comment))
12326ccb66d6 (vc-cvs-register): Fix registering of directories in multiple file case.
Glenn Morris <rgm@gnu.org>
parents: 91956
diff changeset
294 (vc-switches 'CVS 'register)))
31384
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
295
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
296 (defun vc-cvs-responsible-p (file)
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
297 "Return non-nil if CVS thinks it is responsible for FILE."
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
298 (file-directory-p (expand-file-name "CVS"
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
299 (if (file-directory-p file)
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
300 file
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
301 (file-name-directory file)))))
31384
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
302
51733
2b72fd42f02e (vc-cvs-repository-hostname): New operation.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51164
diff changeset
303 (defun vc-cvs-could-register (file)
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
304 "Return non-nil if FILE could be registered in CVS.
51733
2b72fd42f02e (vc-cvs-repository-hostname): New operation.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51164
diff changeset
305 This is only possible if CVS is managing FILE's directory or one of
2b72fd42f02e (vc-cvs-repository-hostname): New operation.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51164
diff changeset
306 its parents."
2b72fd42f02e (vc-cvs-repository-hostname): New operation.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51164
diff changeset
307 (let ((dir file))
2b72fd42f02e (vc-cvs-repository-hostname): New operation.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51164
diff changeset
308 (while (and (stringp dir)
2b72fd42f02e (vc-cvs-repository-hostname): New operation.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51164
diff changeset
309 (not (equal dir (setq dir (file-name-directory dir))))
2b72fd42f02e (vc-cvs-repository-hostname): New operation.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51164
diff changeset
310 dir)
100214
188994c9d7fe (vc-cvs-could-register): Don't use file-directory-p to
Lute Kamstra <lute@gnu.org>
parents: 100202
diff changeset
311 (setq dir (if (file-exists-p
51733
2b72fd42f02e (vc-cvs-repository-hostname): New operation.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51164
diff changeset
312 (expand-file-name "CVS/Entries" dir))
100214
188994c9d7fe (vc-cvs-could-register): Don't use file-directory-p to
Lute Kamstra <lute@gnu.org>
parents: 100202
diff changeset
313 t
188994c9d7fe (vc-cvs-could-register): Don't use file-directory-p to
Lute Kamstra <lute@gnu.org>
parents: 100202
diff changeset
314 (directory-file-name dir))))
51733
2b72fd42f02e (vc-cvs-repository-hostname): New operation.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51164
diff changeset
315 (eq dir t)))
31384
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
316
107430
1918e70c8b37 Add special markup processing for commit logs.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 107193
diff changeset
317 (defun vc-cvs-checkin (files rev comment &optional extra-args-ignored)
31384
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
318 "CVS-specific version of `vc-backend-checkin'."
85139
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 84583
diff changeset
319 (unless (or (not rev) (vc-cvs-valid-revision-number-p rev))
50910
8c4130079acf (vc-cvs-register, vc-cvs-checkin, vc-cvs-find-version, vc-cvs-diff)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50909
diff changeset
320 (if (not (vc-cvs-valid-symbolic-tag-name-p rev))
8c4130079acf (vc-cvs-register, vc-cvs-checkin, vc-cvs-find-version, vc-cvs-diff)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50909
diff changeset
321 (error "%s is not a valid symbolic tag name" rev)
8c4130079acf (vc-cvs-register, vc-cvs-checkin, vc-cvs-find-version, vc-cvs-diff)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50909
diff changeset
322 ;; If the input revison is a valid symbolic tag name, we create it
8c4130079acf (vc-cvs-register, vc-cvs-checkin, vc-cvs-find-version, vc-cvs-diff)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50909
diff changeset
323 ;; as a branch, commit and switch to it.
81962
0744b309302b Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 81821
diff changeset
324 (apply 'vc-cvs-command nil 0 files "tag" "-b" (list rev))
0744b309302b Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 81821
diff changeset
325 (apply 'vc-cvs-command nil 0 files "update" "-r" (list rev))
81976
69946487f7b5 Fix two variable-reference bugs.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 81962
diff changeset
326 (mapc (lambda (file) (vc-file-setprop file 'vc-cvs-sticky-tag rev))
69946487f7b5 Fix two variable-reference bugs.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 81962
diff changeset
327 files)))
69946487f7b5 Fix two variable-reference bugs.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 81962
diff changeset
328 (let ((status (apply 'vc-cvs-command nil 1 files
50910
8c4130079acf (vc-cvs-register, vc-cvs-checkin, vc-cvs-find-version, vc-cvs-diff)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50909
diff changeset
329 "ci" (if rev (concat "-r" rev))
8c4130079acf (vc-cvs-register, vc-cvs-checkin, vc-cvs-find-version, vc-cvs-diff)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50909
diff changeset
330 (concat "-m" comment)
8c4130079acf (vc-cvs-register, vc-cvs-checkin, vc-cvs-find-version, vc-cvs-diff)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50909
diff changeset
331 (vc-switches 'CVS 'checkin))))
31384
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
332 (set-buffer "*vc*")
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
333 (goto-char (point-min))
32948
3c95af2888f6 (vc-cvs-checkin): Check both status and error message after command.
André Spiegel <spiegel@gnu.org>
parents: 32747
diff changeset
334 (when (not (zerop status))
3c95af2888f6 (vc-cvs-checkin): Check both status and error message after command.
André Spiegel <spiegel@gnu.org>
parents: 32747
diff changeset
335 ;; Check checkin problem.
3c95af2888f6 (vc-cvs-checkin): Check both status and error message after command.
André Spiegel <spiegel@gnu.org>
parents: 32747
diff changeset
336 (cond
3c95af2888f6 (vc-cvs-checkin): Check both status and error message after command.
André Spiegel <spiegel@gnu.org>
parents: 32747
diff changeset
337 ((re-search-forward "Up-to-date check failed" nil t)
81977
ef9ebdaeea06 vc-cvs-checkin had some reference problems, now fixed.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 81976
diff changeset
338 (mapc (lambda (file) (vc-file-setprop file 'vc-state 'needs-merge))
ef9ebdaeea06 vc-cvs-checkin had some reference problems, now fixed.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 81976
diff changeset
339 files)
87139
f358a2fd5895 Fix buggy calls to `error'.
Deepak Goel <deego@gnufans.org>
parents: 86041
diff changeset
340 (error "%s" (substitute-command-keys
32948
3c95af2888f6 (vc-cvs-checkin): Check both status and error message after command.
André Spiegel <spiegel@gnu.org>
parents: 32747
diff changeset
341 (concat "Up-to-date check failed: "
3c95af2888f6 (vc-cvs-checkin): Check both status and error message after command.
André Spiegel <spiegel@gnu.org>
parents: 32747
diff changeset
342 "type \\[vc-next-action] to merge in changes"))))
3c95af2888f6 (vc-cvs-checkin): Check both status and error message after command.
André Spiegel <spiegel@gnu.org>
parents: 32747
diff changeset
343 (t
3c95af2888f6 (vc-cvs-checkin): Check both status and error message after command.
André Spiegel <spiegel@gnu.org>
parents: 32747
diff changeset
344 (pop-to-buffer (current-buffer))
3c95af2888f6 (vc-cvs-checkin): Check both status and error message after command.
André Spiegel <spiegel@gnu.org>
parents: 32747
diff changeset
345 (goto-char (point-min))
3c95af2888f6 (vc-cvs-checkin): Check both status and error message after command.
André Spiegel <spiegel@gnu.org>
parents: 32747
diff changeset
346 (shrink-window-if-larger-than-buffer)
3c95af2888f6 (vc-cvs-checkin): Check both status and error message after command.
André Spiegel <spiegel@gnu.org>
parents: 32747
diff changeset
347 (error "Check-in failed"))))
85139
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 84583
diff changeset
348 ;; Single-file commit? Then update the revision by parsing the buffer.
81962
0744b309302b Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 81821
diff changeset
349 ;; Otherwise we can't necessarily tell what goes with what; clear
0744b309302b Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 81821
diff changeset
350 ;; its properties so they have to be refetched.
0744b309302b Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 81821
diff changeset
351 (if (= (length files) 1)
0744b309302b Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 81821
diff changeset
352 (vc-file-setprop
85139
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 84583
diff changeset
353 (car files) 'vc-working-revision
81962
0744b309302b Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 81821
diff changeset
354 (vc-parse-buffer "^\\(new\\|initial\\) revision: \\([0-9.]+\\)" 2))
94481
ad6c174910db Make `checkout-model' apply to filesets.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 94210
diff changeset
355 (mapc 'vc-file-clearprops files))
81962
0744b309302b Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 81821
diff changeset
356 ;; Anyway, forget the checkout model of the file, because we might have
31384
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
357 ;; guessed wrong when we found the file. After commit, we can
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
358 ;; tell it from the permissions of the file (see
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
359 ;; vc-cvs-checkout-model).
81962
0744b309302b Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 81821
diff changeset
360 (mapc (lambda (file) (vc-file-setprop file 'vc-checkout-model nil))
0744b309302b Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 81821
diff changeset
361 files)
43447
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
362
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
363 ;; if this was an explicit check-in (does not include creation of
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
364 ;; a branch), remove the sticky tag.
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
365 (if (and rev (not (vc-cvs-valid-symbolic-tag-name-p rev)))
81962
0744b309302b Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 81821
diff changeset
366 (vc-cvs-command nil 0 files "update" "-A"))))
31384
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
367
85139
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 84583
diff changeset
368 (defun vc-cvs-find-revision (file rev buffer)
47799
0d2f83a91144 (vc-cvs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47758
diff changeset
369 (apply 'vc-cvs-command
0d2f83a91144 (vc-cvs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47758
diff changeset
370 buffer 0 file
0d2f83a91144 (vc-cvs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47758
diff changeset
371 "-Q" ; suppress diagnostic output
0d2f83a91144 (vc-cvs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47758
diff changeset
372 "update"
0d2f83a91144 (vc-cvs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47758
diff changeset
373 (and rev (not (string= rev ""))
0d2f83a91144 (vc-cvs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47758
diff changeset
374 (concat "-r" rev))
0d2f83a91144 (vc-cvs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47758
diff changeset
375 "-p"
50910
8c4130079acf (vc-cvs-register, vc-cvs-checkin, vc-cvs-find-version, vc-cvs-diff)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50909
diff changeset
376 (vc-switches 'CVS 'checkout)))
47799
0d2f83a91144 (vc-cvs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47758
diff changeset
377
81764
12e5ff38b024 (vc-cvs-revert): Use vc-default-revert.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 75347
diff changeset
378 (defun vc-cvs-checkout (file &optional editable rev)
12e5ff38b024 (vc-cvs-revert): Use vc-default-revert.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 75347
diff changeset
379 "Checkout a revision of FILE into the working area.
35132
78bce41f17c5 (vc-cvs-latest-on-branch-p): Removed.
André Spiegel <spiegel@gnu.org>
parents: 33637
diff changeset
380 EDITABLE non-nil means that the file should be writable.
81764
12e5ff38b024 (vc-cvs-revert): Use vc-default-revert.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 75347
diff changeset
381 REV is the revision to check out."
12e5ff38b024 (vc-cvs-revert): Use vc-default-revert.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 75347
diff changeset
382 (message "Checking out %s..." file)
12e5ff38b024 (vc-cvs-revert): Use vc-default-revert.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 75347
diff changeset
383 ;; Change buffers to get local value of vc-checkout-switches.
12e5ff38b024 (vc-cvs-revert): Use vc-default-revert.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 75347
diff changeset
384 (with-current-buffer (or (get-file-buffer file) (current-buffer))
12e5ff38b024 (vc-cvs-revert): Use vc-default-revert.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 75347
diff changeset
385 (if (and (file-exists-p file) (not rev))
12e5ff38b024 (vc-cvs-revert): Use vc-default-revert.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 75347
diff changeset
386 ;; If no revision was specified, just make the file writable
12e5ff38b024 (vc-cvs-revert): Use vc-default-revert.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 75347
diff changeset
387 ;; if necessary (using `cvs-edit' if requested).
94563
a0bb8ca25a33 Clean up vc*-revision-granularity and vc*-checkout-model.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94542
diff changeset
388 (and editable (not (eq (vc-cvs-checkout-model (list file)) 'implicit))
81764
12e5ff38b024 (vc-cvs-revert): Use vc-default-revert.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 75347
diff changeset
389 (if vc-cvs-use-edit
12e5ff38b024 (vc-cvs-revert): Use vc-default-revert.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 75347
diff changeset
390 (vc-cvs-command nil 0 file "edit")
12e5ff38b024 (vc-cvs-revert): Use vc-default-revert.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 75347
diff changeset
391 (set-file-modes file (logior (file-modes file) 128))
12e5ff38b024 (vc-cvs-revert): Use vc-default-revert.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 75347
diff changeset
392 (if (equal file buffer-file-name) (toggle-read-only -1))))
85139
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 84583
diff changeset
393 ;; Check out a particular revision (or recreate the file).
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 84583
diff changeset
394 (vc-file-setprop file 'vc-working-revision nil)
81764
12e5ff38b024 (vc-cvs-revert): Use vc-default-revert.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 75347
diff changeset
395 (apply 'vc-cvs-command nil 0 file
12e5ff38b024 (vc-cvs-revert): Use vc-default-revert.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 75347
diff changeset
396 (and editable "-w")
12e5ff38b024 (vc-cvs-revert): Use vc-default-revert.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 75347
diff changeset
397 "update"
12e5ff38b024 (vc-cvs-revert): Use vc-default-revert.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 75347
diff changeset
398 (when rev
12e5ff38b024 (vc-cvs-revert): Use vc-default-revert.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 75347
diff changeset
399 (unless (eq rev t)
12e5ff38b024 (vc-cvs-revert): Use vc-default-revert.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 75347
diff changeset
400 ;; default for verbose checkout: clear the
12e5ff38b024 (vc-cvs-revert): Use vc-default-revert.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 75347
diff changeset
401 ;; sticky tag so that the actual update will
12e5ff38b024 (vc-cvs-revert): Use vc-default-revert.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 75347
diff changeset
402 ;; get the head of the trunk
12e5ff38b024 (vc-cvs-revert): Use vc-default-revert.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 75347
diff changeset
403 (if (string= rev "")
12e5ff38b024 (vc-cvs-revert): Use vc-default-revert.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 75347
diff changeset
404 "-A"
12e5ff38b024 (vc-cvs-revert): Use vc-default-revert.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 75347
diff changeset
405 (concat "-r" rev))))
12e5ff38b024 (vc-cvs-revert): Use vc-default-revert.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 75347
diff changeset
406 (vc-switches 'CVS 'checkout)))
103553
af4ee0cb7fb7 * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 100908
diff changeset
407 (vc-mode-line file 'CVS))
81764
12e5ff38b024 (vc-cvs-revert): Use vc-default-revert.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 75347
diff changeset
408 (message "Checking out %s...done" file))
31384
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
409
50923
3eab629b1239 (vc-cvs-mode-line-string): Use vc-default-mode-line-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50910
diff changeset
410 (defun vc-cvs-delete-file (file)
94534
37fa7ba3820c Don't commit right after deletion.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94522
diff changeset
411 (vc-cvs-command nil 0 file "remove" "-f"))
50923
3eab629b1239 (vc-cvs-mode-line-string): Use vc-default-mode-line-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50910
diff changeset
412
39001
d13c2139752b (vc-*-revert-file): Handle new optional arg CONTENTS-DONE.
André Spiegel <spiegel@gnu.org>
parents: 38288
diff changeset
413 (defun vc-cvs-revert (file &optional contents-done)
85139
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 84583
diff changeset
414 "Revert FILE to the working revision on which it was based."
81764
12e5ff38b024 (vc-cvs-revert): Use vc-default-revert.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 75347
diff changeset
415 (vc-default-revert 'CVS file contents-done)
94563
a0bb8ca25a33 Clean up vc*-revision-granularity and vc*-checkout-model.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94542
diff changeset
416 (unless (eq (vc-cvs-checkout-model (list file)) 'implicit)
39001
d13c2139752b (vc-*-revert-file): Handle new optional arg CONTENTS-DONE.
André Spiegel <spiegel@gnu.org>
parents: 38288
diff changeset
417 (if vc-cvs-use-edit
44197
e255f8fa4f62 (vc-cvs-global-switches): New user option.
André Spiegel <spiegel@gnu.org>
parents: 44104
diff changeset
418 (vc-cvs-command nil 0 file "unedit")
39001
d13c2139752b (vc-*-revert-file): Handle new optional arg CONTENTS-DONE.
André Spiegel <spiegel@gnu.org>
parents: 38288
diff changeset
419 ;; Make the file read-only by switching off all w-bits
d13c2139752b (vc-*-revert-file): Handle new optional arg CONTENTS-DONE.
André Spiegel <spiegel@gnu.org>
parents: 38288
diff changeset
420 (set-file-modes file (logand (file-modes file) 3950)))))
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
421
85139
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 84583
diff changeset
422 (defun vc-cvs-merge (file first-revision &optional second-revision)
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
423 "Merge changes into current working copy of FILE.
85139
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 84583
diff changeset
424 The changes are between FIRST-REVISION and SECOND-REVISION."
44197
e255f8fa4f62 (vc-cvs-global-switches): New user option.
André Spiegel <spiegel@gnu.org>
parents: 44104
diff changeset
425 (vc-cvs-command nil 0 file
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
426 "update" "-kk"
85139
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 84583
diff changeset
427 (concat "-j" first-revision)
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 84583
diff changeset
428 (concat "-j" second-revision))
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
429 (vc-file-setprop file 'vc-state 'edited)
50645
4b6925d144de (vc-cvs-dir-state): Use vc-cvs-command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50453
diff changeset
430 (with-current-buffer (get-buffer "*vc*")
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
431 (goto-char (point-min))
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
432 (if (re-search-forward "conflicts during merge" nil t)
95524
75b22805a854 (vc-cvs-status-extra-headers): Remove extraneous newlines.
Sam Steingold <sds@gnu.org>
parents: 95443
diff changeset
433 (progn
93956
bfc762f0b49c * vc-hooks.el (vc-state): Add new state `conflict'.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93941
diff changeset
434 (vc-file-setprop file 'vc-state 'conflict)
bfc762f0b49c * vc-hooks.el (vc-state): Add new state `conflict'.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93941
diff changeset
435 ;; signal error
bfc762f0b49c * vc-hooks.el (vc-state): Add new state `conflict'.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93941
diff changeset
436 1)
bfc762f0b49c * vc-hooks.el (vc-state): Add new state `conflict'.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93941
diff changeset
437 (vc-file-setprop file 'vc-state 'edited)
bfc762f0b49c * vc-hooks.el (vc-state): Add new state `conflict'.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93941
diff changeset
438 ;; signal success
bfc762f0b49c * vc-hooks.el (vc-state): Add new state `conflict'.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93941
diff changeset
439 0)))
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
440
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
441 (defun vc-cvs-merge-news (file)
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
442 "Merge in any new changes made to FILE."
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
443 (message "Merging changes into %s..." file)
85139
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 84583
diff changeset
444 ;; (vc-file-setprop file 'vc-working-revision nil)
50645
4b6925d144de (vc-cvs-dir-state): Use vc-cvs-command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50453
diff changeset
445 (vc-file-setprop file 'vc-checkout-time 0)
87739
28dc34f6a246 * vc.el (vc-update): Resolve conflicts if necessary instead of
Dan Nicolaescu <dann@ics.uci.edu>
parents: 87649
diff changeset
446 (vc-cvs-command nil nil file "update")
50645
4b6925d144de (vc-cvs-dir-state): Use vc-cvs-command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50453
diff changeset
447 ;; Analyze the merge result reported by CVS, and set
4b6925d144de (vc-cvs-dir-state): Use vc-cvs-command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50453
diff changeset
448 ;; file properties accordingly.
4b6925d144de (vc-cvs-dir-state): Use vc-cvs-command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50453
diff changeset
449 (with-current-buffer (get-buffer "*vc*")
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
450 (goto-char (point-min))
85139
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 84583
diff changeset
451 ;; get new working revision
50645
4b6925d144de (vc-cvs-dir-state): Use vc-cvs-command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50453
diff changeset
452 (if (re-search-forward
4b6925d144de (vc-cvs-dir-state): Use vc-cvs-command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50453
diff changeset
453 "^Merging differences between [0-9.]* and \\([0-9.]*\\) into" nil t)
85139
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 84583
diff changeset
454 (vc-file-setprop file 'vc-working-revision (match-string 1))
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 84583
diff changeset
455 (vc-file-setprop file 'vc-working-revision nil))
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
456 ;; get file status
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
457 (prog1
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
458 (if (eq (buffer-size) 0)
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
459 0 ;; there were no news; indicate success
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
460 (if (re-search-forward
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
461 (concat "^\\([CMUP] \\)?"
103747
4f648d5b56cd (vc-cvs-merge-news): Fix message parsing for non-top-level files.
Sam Steingold <sds@gnu.org>
parents: 103553
diff changeset
462 (regexp-quote
107193
dd61cb49d199 (vc-cvs-merge-news): Yet another fix of message parsing.
Sam Steingold <sds@gnu.org>
parents: 106815
diff changeset
463 (substring file (1+ (length (expand-file-name
dd61cb49d199 (vc-cvs-merge-news): Yet another fix of message parsing.
Sam Steingold <sds@gnu.org>
parents: 106815
diff changeset
464 "." default-directory)))))
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
465 "\\( already contains the differences between \\)?")
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
466 nil t)
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
467 (cond
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
468 ;; Merge successful, we are in sync with repository now
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
469 ((or (match-string 2)
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
470 (string= (match-string 1) "U ")
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
471 (string= (match-string 1) "P "))
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
472 (vc-file-setprop file 'vc-state 'up-to-date)
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
473 (vc-file-setprop file 'vc-checkout-time
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
474 (nth 5 (file-attributes file)))
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
475 0);; indicate success to the caller
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
476 ;; Merge successful, but our own changes are still in the file
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
477 ((string= (match-string 1) "M ")
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
478 (vc-file-setprop file 'vc-state 'edited)
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
479 0);; indicate success to the caller
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
480 ;; Conflicts detected!
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
481 (t
93956
bfc762f0b49c * vc-hooks.el (vc-state): Add new state `conflict'.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93941
diff changeset
482 (vc-file-setprop file 'vc-state 'conflict)
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
483 1);; signal the error to the caller
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
484 )
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
485 (pop-to-buffer "*vc*")
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
486 (error "Couldn't analyze cvs update result")))
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
487 (message "Merging changes into %s...done" file))))
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
488
87432
315124ffb889 * (vc.el, vc-sccs.el, vc-rcs.el, vc-cs.el, vc-mcvs.el): Put
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 87427
diff changeset
489 (defun vc-cvs-modify-change-comment (files rev comment)
95524
75b22805a854 (vc-cvs-status-extra-headers): Remove extraneous newlines.
Sam Steingold <sds@gnu.org>
parents: 95443
diff changeset
490 "Modify the change comments for FILES on a specified REV.
87432
315124ffb889 * (vc.el, vc-sccs.el, vc-rcs.el, vc-cs.el, vc-mcvs.el): Put
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 87427
diff changeset
491 Will fail unless you have administrative privileges on the repo."
93867
520490ae1b9a * vc-rcs.el (vc-rcs-modify-change-comment):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93461
diff changeset
492 (vc-cvs-command nil 0 files "admin" (concat "-m" rev ":" comment)))
35569
5cd8ebba5a94 doc&comment fix
Sam Steingold <sds@gnu.org>
parents: 35177
diff changeset
493
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
494 ;;;
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
495 ;;; History functions
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
496 ;;;
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
497
104711
adeed914a5fb * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104625
diff changeset
498 (declare-function vc-rcs-print-log-cleanup "vc-rcs" ())
adeed914a5fb * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104625
diff changeset
499
106472
6e0f1038bc44 Support showing a single log entry from vc-annotate.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 106060
diff changeset
500 (defun vc-cvs-print-log (files buffer &optional shortlog start-revision-ignored limit)
87427
1aea302af710 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 87424
diff changeset
501 "Get change logs associated with FILES."
104711
adeed914a5fb * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104625
diff changeset
502 (require 'vc-rcs)
87427
1aea302af710 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 87424
diff changeset
503 ;; It's just the catenation of the individual logs.
44197
e255f8fa4f62 (vc-cvs-global-switches): New user option.
André Spiegel <spiegel@gnu.org>
parents: 44104
diff changeset
504 (vc-cvs-command
54465
2e4ddb8bfffd (vc-cvs-print-log, vc-cvs-diff): Add optional BUFFER argument.
André Spiegel <spiegel@gnu.org>
parents: 53631
diff changeset
505 buffer
103553
af4ee0cb7fb7 * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 100908
diff changeset
506 (if (vc-stay-local-p files 'CVS) 'async 0)
104711
adeed914a5fb * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104625
diff changeset
507 files "log")
adeed914a5fb * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104625
diff changeset
508 (with-current-buffer buffer
106060
2f9ecf376c7a * vc.el (vc-log-show-limit): Default to 2000.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 106033
diff changeset
509 (vc-exec-after (vc-rcs-print-log-cleanup)))
2f9ecf376c7a * vc.el (vc-log-show-limit): Default to 2000.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 106033
diff changeset
510 (when limit 'limit-unsupported))
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
511
94806
eedf64b515f0 Remove wash-log from the VC backend API.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94729
diff changeset
512 (defun vc-cvs-comment-history (file)
eedf64b515f0 Remove wash-log from the VC backend API.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94729
diff changeset
513 "Get comment history of a file."
eedf64b515f0 Remove wash-log from the VC backend API.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94729
diff changeset
514 (vc-call-backend 'RCS 'comment-history file))
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
515
81962
0744b309302b Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 81821
diff changeset
516 (defun vc-cvs-diff (files &optional oldvers newvers buffer)
85139
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 84583
diff changeset
517 "Get a difference report using CVS between two revisions of FILE."
104596
5bce9145b1cc * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
Michael Albinus <michael.albinus@gmx.de>
parents: 104262
diff changeset
518 (let* (process-file-side-effects
5bce9145b1cc * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
Michael Albinus <michael.albinus@gmx.de>
parents: 104262
diff changeset
519 (async (and (not vc-disable-async-diff)
103553
af4ee0cb7fb7 * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 100908
diff changeset
520 (vc-stay-local-p files 'CVS)))
86041
62a404545514 (vc-cvs-diff): If backup files exist, diff them
Dan Nicolaescu <dann@ics.uci.edu>
parents: 86002
diff changeset
521 (invoke-cvs-diff-list nil)
62a404545514 (vc-cvs-diff): If backup files exist, diff them
Dan Nicolaescu <dann@ics.uci.edu>
parents: 86002
diff changeset
522 status)
62a404545514 (vc-cvs-diff): If backup files exist, diff them
Dan Nicolaescu <dann@ics.uci.edu>
parents: 86002
diff changeset
523 ;; Look through the file list and see if any files have backups
62a404545514 (vc-cvs-diff): If backup files exist, diff them
Dan Nicolaescu <dann@ics.uci.edu>
parents: 86002
diff changeset
524 ;; that can be used to do a plain "diff" instead of "cvs diff".
62a404545514 (vc-cvs-diff): If backup files exist, diff them
Dan Nicolaescu <dann@ics.uci.edu>
parents: 86002
diff changeset
525 (dolist (file files)
62a404545514 (vc-cvs-diff): If backup files exist, diff them
Dan Nicolaescu <dann@ics.uci.edu>
parents: 86002
diff changeset
526 (let ((ov oldvers)
62a404545514 (vc-cvs-diff): If backup files exist, diff them
Dan Nicolaescu <dann@ics.uci.edu>
parents: 86002
diff changeset
527 (nv newvers))
62a404545514 (vc-cvs-diff): If backup files exist, diff them
Dan Nicolaescu <dann@ics.uci.edu>
parents: 86002
diff changeset
528 (when (or (not ov) (string-equal ov ""))
62a404545514 (vc-cvs-diff): If backup files exist, diff them
Dan Nicolaescu <dann@ics.uci.edu>
parents: 86002
diff changeset
529 (setq ov (vc-working-revision file)))
62a404545514 (vc-cvs-diff): If backup files exist, diff them
Dan Nicolaescu <dann@ics.uci.edu>
parents: 86002
diff changeset
530 (when (string-equal nv "")
62a404545514 (vc-cvs-diff): If backup files exist, diff them
Dan Nicolaescu <dann@ics.uci.edu>
parents: 86002
diff changeset
531 (setq nv nil))
62a404545514 (vc-cvs-diff): If backup files exist, diff them
Dan Nicolaescu <dann@ics.uci.edu>
parents: 86002
diff changeset
532 (let ((file-oldvers (vc-version-backup-file file ov))
62a404545514 (vc-cvs-diff): If backup files exist, diff them
Dan Nicolaescu <dann@ics.uci.edu>
parents: 86002
diff changeset
533 (file-newvers (if (not nv)
62a404545514 (vc-cvs-diff): If backup files exist, diff them
Dan Nicolaescu <dann@ics.uci.edu>
parents: 86002
diff changeset
534 file
62a404545514 (vc-cvs-diff): If backup files exist, diff them
Dan Nicolaescu <dann@ics.uci.edu>
parents: 86002
diff changeset
535 (vc-version-backup-file file nv)))
62a404545514 (vc-cvs-diff): If backup files exist, diff them
Dan Nicolaescu <dann@ics.uci.edu>
parents: 86002
diff changeset
536 (coding-system-for-read (vc-coding-system-for-diff file)))
62a404545514 (vc-cvs-diff): If backup files exist, diff them
Dan Nicolaescu <dann@ics.uci.edu>
parents: 86002
diff changeset
537 (if (and file-oldvers file-newvers)
62a404545514 (vc-cvs-diff): If backup files exist, diff them
Dan Nicolaescu <dann@ics.uci.edu>
parents: 86002
diff changeset
538 (progn
100186
c9d564389052 (vc-cvs-diff-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents: 100171
diff changeset
539 ;; This used to append diff-switches and vc-diff-switches,
c9d564389052 (vc-cvs-diff-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents: 100171
diff changeset
540 ;; which was consistent with the vc-diff-switches doc at that
c9d564389052 (vc-cvs-diff-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents: 100171
diff changeset
541 ;; time, but not with the actual behavior of any other VC diff.
86041
62a404545514 (vc-cvs-diff): If backup files exist, diff them
Dan Nicolaescu <dann@ics.uci.edu>
parents: 86002
diff changeset
542 (apply 'vc-do-command (or buffer "*vc-diff*") 1 "diff" nil
100186
c9d564389052 (vc-cvs-diff-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents: 100171
diff changeset
543 ;; Not a CVS diff, does not use vc-cvs-diff-switches.
c9d564389052 (vc-cvs-diff-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents: 100171
diff changeset
544 (append (vc-switches nil 'diff)
86041
62a404545514 (vc-cvs-diff): If backup files exist, diff them
Dan Nicolaescu <dann@ics.uci.edu>
parents: 86002
diff changeset
545 (list (file-relative-name file-oldvers)
62a404545514 (vc-cvs-diff): If backup files exist, diff them
Dan Nicolaescu <dann@ics.uci.edu>
parents: 86002
diff changeset
546 (file-relative-name file-newvers))))
62a404545514 (vc-cvs-diff): If backup files exist, diff them
Dan Nicolaescu <dann@ics.uci.edu>
parents: 86002
diff changeset
547 (setq status 0))
62a404545514 (vc-cvs-diff): If backup files exist, diff them
Dan Nicolaescu <dann@ics.uci.edu>
parents: 86002
diff changeset
548 (push file invoke-cvs-diff-list)))))
62a404545514 (vc-cvs-diff): If backup files exist, diff them
Dan Nicolaescu <dann@ics.uci.edu>
parents: 86002
diff changeset
549 (when invoke-cvs-diff-list
62a404545514 (vc-cvs-diff): If backup files exist, diff them
Dan Nicolaescu <dann@ics.uci.edu>
parents: 86002
diff changeset
550 (setq status (apply 'vc-cvs-command (or buffer "*vc-diff*")
50910
8c4130079acf (vc-cvs-register, vc-cvs-checkin, vc-cvs-find-version, vc-cvs-diff)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50909
diff changeset
551 (if async 'async 1)
86041
62a404545514 (vc-cvs-diff): If backup files exist, diff them
Dan Nicolaescu <dann@ics.uci.edu>
parents: 86002
diff changeset
552 invoke-cvs-diff-list "diff"
50910
8c4130079acf (vc-cvs-register, vc-cvs-checkin, vc-cvs-find-version, vc-cvs-diff)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50909
diff changeset
553 (and oldvers (concat "-r" oldvers))
8c4130079acf (vc-cvs-register, vc-cvs-checkin, vc-cvs-find-version, vc-cvs-diff)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50909
diff changeset
554 (and newvers (concat "-r" newvers))
8c4130079acf (vc-cvs-register, vc-cvs-checkin, vc-cvs-find-version, vc-cvs-diff)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50909
diff changeset
555 (vc-switches 'CVS 'diff))))
86041
62a404545514 (vc-cvs-diff): If backup files exist, diff them
Dan Nicolaescu <dann@ics.uci.edu>
parents: 86002
diff changeset
556 (if async 1 status))) ; async diff, pessimistic assumption
62a404545514 (vc-cvs-diff): If backup files exist, diff them
Dan Nicolaescu <dann@ics.uci.edu>
parents: 86002
diff changeset
557
81820
37a7f9bddc45 (vc-functions): Clear up the cache when reloading the file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81764
diff changeset
558 (defconst vc-cvs-annotate-first-line-re "^[0-9]")
37a7f9bddc45 (vc-functions): Clear up the cache when reloading the file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81764
diff changeset
559
37a7f9bddc45 (vc-functions): Clear up the cache when reloading the file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81764
diff changeset
560 (defun vc-cvs-annotate-process-filter (process string)
37a7f9bddc45 (vc-functions): Clear up the cache when reloading the file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81764
diff changeset
561 (setq string (concat (process-get process 'output) string))
37a7f9bddc45 (vc-functions): Clear up the cache when reloading the file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81764
diff changeset
562 (if (not (string-match vc-cvs-annotate-first-line-re string))
37a7f9bddc45 (vc-functions): Clear up the cache when reloading the file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81764
diff changeset
563 ;; Still waiting for the first real line.
37a7f9bddc45 (vc-functions): Clear up the cache when reloading the file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81764
diff changeset
564 (process-put process 'output string)
37a7f9bddc45 (vc-functions): Clear up the cache when reloading the file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81764
diff changeset
565 (let ((vc-filter (process-get process 'vc-filter)))
37a7f9bddc45 (vc-functions): Clear up the cache when reloading the file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81764
diff changeset
566 (set-process-filter process vc-filter)
37a7f9bddc45 (vc-functions): Clear up the cache when reloading the file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81764
diff changeset
567 (funcall vc-filter process (substring string (match-beginning 0))))))
37a7f9bddc45 (vc-functions): Clear up the cache when reloading the file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81764
diff changeset
568
85139
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 84583
diff changeset
569 (defun vc-cvs-annotate-command (file buffer &optional revision)
33545
5411250e7971 (vc-cvs-annotate-command): New optional arg VERSION. Use
André Spiegel <spiegel@gnu.org>
parents: 32959
diff changeset
570 "Execute \"cvs annotate\" on FILE, inserting the contents in BUFFER.
85139
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 84583
diff changeset
571 Optional arg REVISION is a revision to annotate from."
81820
37a7f9bddc45 (vc-functions): Clear up the cache when reloading the file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81764
diff changeset
572 (vc-cvs-command buffer
103553
af4ee0cb7fb7 * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 100908
diff changeset
573 (if (vc-stay-local-p file 'CVS)
81820
37a7f9bddc45 (vc-functions): Clear up the cache when reloading the file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81764
diff changeset
574 'async 0)
37a7f9bddc45 (vc-functions): Clear up the cache when reloading the file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81764
diff changeset
575 file "annotate"
85139
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 84583
diff changeset
576 (if revision (concat "-r" revision)))
81820
37a7f9bddc45 (vc-functions): Clear up the cache when reloading the file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81764
diff changeset
577 ;; Strip the leading few lines.
37a7f9bddc45 (vc-functions): Clear up the cache when reloading the file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81764
diff changeset
578 (let ((proc (get-buffer-process buffer)))
37a7f9bddc45 (vc-functions): Clear up the cache when reloading the file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81764
diff changeset
579 (if proc
37a7f9bddc45 (vc-functions): Clear up the cache when reloading the file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81764
diff changeset
580 ;; If running asynchronously, use a process filter.
37a7f9bddc45 (vc-functions): Clear up the cache when reloading the file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81764
diff changeset
581 (progn
37a7f9bddc45 (vc-functions): Clear up the cache when reloading the file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81764
diff changeset
582 (process-put proc 'vc-filter (process-filter proc))
37a7f9bddc45 (vc-functions): Clear up the cache when reloading the file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81764
diff changeset
583 (set-process-filter proc 'vc-cvs-annotate-process-filter))
37a7f9bddc45 (vc-functions): Clear up the cache when reloading the file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81764
diff changeset
584 (with-current-buffer buffer
37a7f9bddc45 (vc-functions): Clear up the cache when reloading the file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81764
diff changeset
585 (goto-char (point-min))
37a7f9bddc45 (vc-functions): Clear up the cache when reloading the file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81764
diff changeset
586 (re-search-forward vc-cvs-annotate-first-line-re)
37a7f9bddc45 (vc-functions): Clear up the cache when reloading the file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81764
diff changeset
587 (delete-region (point-min) (1- (point)))))))
31384
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
588
96213
09da7727f35f * vc-hg.el (vc-annotate-convert-time, vc-default-status-printer):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 96123
diff changeset
589 (declare-function vc-annotate-convert-time "vc-annotate" (time))
09da7727f35f * vc-hg.el (vc-annotate-convert-time, vc-default-status-printer):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 96123
diff changeset
590
40171
91eda91380cb New scaling algorithm for vc-annotate.
André Spiegel <spiegel@gnu.org>
parents: 40125
diff changeset
591 (defun vc-cvs-annotate-current-time ()
91eda91380cb New scaling algorithm for vc-annotate.
André Spiegel <spiegel@gnu.org>
parents: 40125
diff changeset
592 "Return the current time, based at midnight of the current day, and
91eda91380cb New scaling algorithm for vc-annotate.
André Spiegel <spiegel@gnu.org>
parents: 40125
diff changeset
593 encoded as fractional days."
91eda91380cb New scaling algorithm for vc-annotate.
André Spiegel <spiegel@gnu.org>
parents: 40125
diff changeset
594 (vc-annotate-convert-time
91eda91380cb New scaling algorithm for vc-annotate.
André Spiegel <spiegel@gnu.org>
parents: 40125
diff changeset
595 (apply 'encode-time 0 0 0 (nthcdr 3 (decode-time (current-time))))))
91eda91380cb New scaling algorithm for vc-annotate.
André Spiegel <spiegel@gnu.org>
parents: 40125
diff changeset
596
91eda91380cb New scaling algorithm for vc-annotate.
André Spiegel <spiegel@gnu.org>
parents: 40125
diff changeset
597 (defun vc-cvs-annotate-time ()
91eda91380cb New scaling algorithm for vc-annotate.
André Spiegel <spiegel@gnu.org>
parents: 40125
diff changeset
598 "Return the time of the next annotation (as fraction of days)
42206
0f4506820432 Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 41707
diff changeset
599 systime, or nil if there is none."
57916
990dbd4941c8 (vc-cvs-local-month-numbers): Delete var.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 57913
diff changeset
600 (let* ((bol (point))
990dbd4941c8 (vc-cvs-local-month-numbers): Delete var.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 57913
diff changeset
601 (cache (get-text-property bol 'vc-cvs-annotate-time))
84583
52ca2a6a41bf (vc-cvs-annotate-time): Use inhibit-read-only and inhibit-modification-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 82140
diff changeset
602 (inhibit-read-only t)
52ca2a6a41bf (vc-cvs-annotate-time): Use inhibit-read-only and inhibit-modification-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 82140
diff changeset
603 (inhibit-modification-hooks t))
57916
990dbd4941c8 (vc-cvs-local-month-numbers): Delete var.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 57913
diff changeset
604 (cond
990dbd4941c8 (vc-cvs-local-month-numbers): Delete var.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 57913
diff changeset
605 (cache)
990dbd4941c8 (vc-cvs-local-month-numbers): Delete var.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 57913
diff changeset
606 ((looking-at
990dbd4941c8 (vc-cvs-local-month-numbers): Delete var.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 57913
diff changeset
607 "^\\S-+\\s-+\\S-+\\s-+\\([0-9]+\\)-\\(\\sw+\\)-\\([0-9]+\\)): ")
990dbd4941c8 (vc-cvs-local-month-numbers): Delete var.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 57913
diff changeset
608 (let ((day (string-to-number (match-string 1)))
990dbd4941c8 (vc-cvs-local-month-numbers): Delete var.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 57913
diff changeset
609 (month (cdr (assq (intern (match-string 2))
990dbd4941c8 (vc-cvs-local-month-numbers): Delete var.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 57913
diff changeset
610 '((Jan . 1) (Feb . 2) (Mar . 3)
990dbd4941c8 (vc-cvs-local-month-numbers): Delete var.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 57913
diff changeset
611 (Apr . 4) (May . 5) (Jun . 6)
990dbd4941c8 (vc-cvs-local-month-numbers): Delete var.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 57913
diff changeset
612 (Jul . 7) (Aug . 8) (Sep . 9)
990dbd4941c8 (vc-cvs-local-month-numbers): Delete var.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 57913
diff changeset
613 (Oct . 10) (Nov . 11) (Dec . 12)))))
990dbd4941c8 (vc-cvs-local-month-numbers): Delete var.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 57913
diff changeset
614 (year (let ((tmp (string-to-number (match-string 3))))
990dbd4941c8 (vc-cvs-local-month-numbers): Delete var.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 57913
diff changeset
615 ;; Years 0..68 are 2000..2068.
990dbd4941c8 (vc-cvs-local-month-numbers): Delete var.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 57913
diff changeset
616 ;; Years 69..99 are 1969..1999.
990dbd4941c8 (vc-cvs-local-month-numbers): Delete var.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 57913
diff changeset
617 (+ (cond ((> 69 tmp) 2000)
990dbd4941c8 (vc-cvs-local-month-numbers): Delete var.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 57913
diff changeset
618 ((> 100 tmp) 1900)
990dbd4941c8 (vc-cvs-local-month-numbers): Delete var.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 57913
diff changeset
619 (t 0))
990dbd4941c8 (vc-cvs-local-month-numbers): Delete var.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 57913
diff changeset
620 tmp))))
990dbd4941c8 (vc-cvs-local-month-numbers): Delete var.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 57913
diff changeset
621 (put-text-property
990dbd4941c8 (vc-cvs-local-month-numbers): Delete var.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 57913
diff changeset
622 bol (1+ bol) 'vc-cvs-annotate-time
990dbd4941c8 (vc-cvs-local-month-numbers): Delete var.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 57913
diff changeset
623 (setq cache (cons
990dbd4941c8 (vc-cvs-local-month-numbers): Delete var.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 57913
diff changeset
624 ;; Position at end makes for nicer overlay result.
79690
be4e5f45a3eb (vc-cvs-annotate-time): Don't move backward when text
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78359
diff changeset
625 ;; Don't put actual buffer pos here, but only relative
be4e5f45a3eb (vc-cvs-annotate-time): Don't move backward when text
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78359
diff changeset
626 ;; distance, so we don't ever move backward in the
be4e5f45a3eb (vc-cvs-annotate-time): Don't move backward when text
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78359
diff changeset
627 ;; goto-char below, even if the text is moved.
be4e5f45a3eb (vc-cvs-annotate-time): Don't move backward when text
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78359
diff changeset
628 (- (match-end 0) (match-beginning 0))
57916
990dbd4941c8 (vc-cvs-local-month-numbers): Delete var.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 57913
diff changeset
629 (vc-annotate-convert-time
990dbd4941c8 (vc-cvs-local-month-numbers): Delete var.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 57913
diff changeset
630 (encode-time 0 0 0 day month year))))))))
990dbd4941c8 (vc-cvs-local-month-numbers): Delete var.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 57913
diff changeset
631 (when cache
79690
be4e5f45a3eb (vc-cvs-annotate-time): Don't move backward when text
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78359
diff changeset
632 (goto-char (+ bol (car cache))) ; Fontify from here to eol.
57916
990dbd4941c8 (vc-cvs-local-month-numbers): Delete var.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 57913
diff changeset
633 (cdr cache)))) ; days (float)
35569
5cd8ebba5a94 doc&comment fix
Sam Steingold <sds@gnu.org>
parents: 35177
diff changeset
634
53631
74e44ab76fa5 * vc-cvs.el (vc-cvs-annotate-extract-revision-at-line): New
André Spiegel <spiegel@gnu.org>
parents: 52717
diff changeset
635 (defun vc-cvs-annotate-extract-revision-at-line ()
74e44ab76fa5 * vc-cvs.el (vc-cvs-annotate-extract-revision-at-line): New
André Spiegel <spiegel@gnu.org>
parents: 52717
diff changeset
636 (save-excursion
74e44ab76fa5 * vc-cvs.el (vc-cvs-annotate-extract-revision-at-line): New
André Spiegel <spiegel@gnu.org>
parents: 52717
diff changeset
637 (beginning-of-line)
74e44ab76fa5 * vc-cvs.el (vc-cvs-annotate-extract-revision-at-line): New
André Spiegel <spiegel@gnu.org>
parents: 52717
diff changeset
638 (if (re-search-forward "^\\([0-9]+\\.[0-9]+\\(\\.[0-9]+\\)*\\) +("
74e44ab76fa5 * vc-cvs.el (vc-cvs-annotate-extract-revision-at-line): New
André Spiegel <spiegel@gnu.org>
parents: 52717
diff changeset
639 (line-end-position) t)
74e44ab76fa5 * vc-cvs.el (vc-cvs-annotate-extract-revision-at-line): New
André Spiegel <spiegel@gnu.org>
parents: 52717
diff changeset
640 (match-string-no-properties 1)
74e44ab76fa5 * vc-cvs.el (vc-cvs-annotate-extract-revision-at-line): New
André Spiegel <spiegel@gnu.org>
parents: 52717
diff changeset
641 nil)))
74e44ab76fa5 * vc-cvs.el (vc-cvs-annotate-extract-revision-at-line): New
André Spiegel <spiegel@gnu.org>
parents: 52717
diff changeset
642
104625
97ec4e51e2eb (vc-cvs-update-changelog): Fix typo.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104596
diff changeset
643 (defun vc-cvs-previous-revision (file rev)
97ec4e51e2eb (vc-cvs-update-changelog): Fix typo.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104596
diff changeset
644 (vc-call-backend 'RCS 'previous-revision file rev))
97ec4e51e2eb (vc-cvs-update-changelog): Fix typo.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104596
diff changeset
645
97ec4e51e2eb (vc-cvs-update-changelog): Fix typo.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104596
diff changeset
646 (defun vc-cvs-next-revision (file rev)
97ec4e51e2eb (vc-cvs-update-changelog): Fix typo.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104596
diff changeset
647 (vc-call-backend 'RCS 'next-revision file rev))
97ec4e51e2eb (vc-cvs-update-changelog): Fix typo.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104596
diff changeset
648
97ec4e51e2eb (vc-cvs-update-changelog): Fix typo.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104596
diff changeset
649 ;; FIXME: This should probably be replaced by code using cvs2cl.
97ec4e51e2eb (vc-cvs-update-changelog): Fix typo.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104596
diff changeset
650 (defun vc-cvs-update-changelog (files)
97ec4e51e2eb (vc-cvs-update-changelog): Fix typo.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104596
diff changeset
651 (vc-call-backend 'RCS 'update-changelog files))
97ec4e51e2eb (vc-cvs-update-changelog): Fix typo.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 104596
diff changeset
652
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
653 ;;;
95020
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
654 ;;; Tag system
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
655 ;;;
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
656
95020
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
657 (defun vc-cvs-create-tag (dir name branchp)
85139
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 84583
diff changeset
658 "Assign to DIR's current revision a given NAME.
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
659 If BRANCHP is non-nil, the name is created as a branch (and the current
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
660 workspace is immediately moved to that new branch)."
44197
e255f8fa4f62 (vc-cvs-global-switches): New user option.
André Spiegel <spiegel@gnu.org>
parents: 44104
diff changeset
661 (vc-cvs-command nil 0 dir "tag" "-c" (if branchp "-b") name)
e255f8fa4f62 (vc-cvs-global-switches): New user option.
André Spiegel <spiegel@gnu.org>
parents: 44104
diff changeset
662 (when branchp (vc-cvs-command nil 0 dir "update" "-r" name)))
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
663
95020
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
664 (defun vc-cvs-retrieve-tag (dir name update)
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
665 "Retrieve a tag at and below DIR.
4da572dc4992 Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94847
diff changeset
666 NAME is the name of the tag; if it is empty, do a `cvs update'.
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
667 If UPDATE is non-nil, then update (resynch) any affected buffers."
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
668 (with-current-buffer (get-buffer-create "*vc*")
43447
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
669 (let ((default-directory dir)
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
670 (sticky-tag))
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
671 (erase-buffer)
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
672 (if (or (not name) (string= name ""))
44197
e255f8fa4f62 (vc-cvs-global-switches): New user option.
André Spiegel <spiegel@gnu.org>
parents: 44104
diff changeset
673 (vc-cvs-command t 0 nil "update")
e255f8fa4f62 (vc-cvs-global-switches): New user option.
André Spiegel <spiegel@gnu.org>
parents: 44104
diff changeset
674 (vc-cvs-command t 0 nil "update" "-r" name)
43447
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
675 (setq sticky-tag name))
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
676 (when update
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
677 (goto-char (point-min))
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
678 (while (not (eobp))
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
679 (if (looking-at "\\([CMUP]\\) \\(.*\\)")
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
680 (let* ((file (expand-file-name (match-string 2) dir))
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
681 (state (match-string 1))
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
682 (buffer (find-buffer-visiting file)))
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
683 (when buffer
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
684 (cond
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
685 ((or (string= state "U")
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
686 (string= state "P"))
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
687 (vc-file-setprop file 'vc-state 'up-to-date)
85139
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 84583
diff changeset
688 (vc-file-setprop file 'vc-working-revision nil)
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
689 (vc-file-setprop file 'vc-checkout-time
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
690 (nth 5 (file-attributes file))))
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
691 ((or (string= state "M")
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
692 (string= state "C"))
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
693 (vc-file-setprop file 'vc-state 'edited)
85139
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 84583
diff changeset
694 (vc-file-setprop file 'vc-working-revision nil)
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
695 (vc-file-setprop file 'vc-checkout-time 0)))
43447
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
696 (vc-file-setprop file 'vc-cvs-sticky-tag sticky-tag)
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
697 (vc-resynch-buffer file t t))))
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
698 (forward-line 1))))))
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
699
35569
5cd8ebba5a94 doc&comment fix
Sam Steingold <sds@gnu.org>
parents: 35177
diff changeset
700
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
701 ;;;
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
702 ;;; Miscellaneous
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
703 ;;;
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
704
103553
af4ee0cb7fb7 * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 100908
diff changeset
705 (defun vc-cvs-make-version-backups-p (file)
af4ee0cb7fb7 * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 100908
diff changeset
706 "Return non-nil if version backups should be made for FILE."
af4ee0cb7fb7 * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 100908
diff changeset
707 (vc-stay-local-p file 'CVS))
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
708
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
709 (defun vc-cvs-check-headers ()
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
710 "Check if the current file has any headers in it."
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
711 (save-excursion
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
712 (goto-char (point-min))
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
713 (re-search-forward "\\$[A-Za-z\300-\326\330-\366\370-\377]+\
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
714 \\(: [\t -#%-\176\240-\377]*\\)?\\$" nil t)))
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
715
35569
5cd8ebba5a94 doc&comment fix
Sam Steingold <sds@gnu.org>
parents: 35177
diff changeset
716
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
717 ;;;
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
718 ;;; Internal functions
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
719 ;;;
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
720
81962
0744b309302b Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 81821
diff changeset
721 (defun vc-cvs-command (buffer okstatus files &rest flags)
44197
e255f8fa4f62 (vc-cvs-global-switches): New user option.
André Spiegel <spiegel@gnu.org>
parents: 44104
diff changeset
722 "A wrapper around `vc-do-command' for use in vc-cvs.el.
e255f8fa4f62 (vc-cvs-global-switches): New user option.
André Spiegel <spiegel@gnu.org>
parents: 44104
diff changeset
723 The difference to vc-do-command is that this function always invokes `cvs',
e255f8fa4f62 (vc-cvs-global-switches): New user option.
André Spiegel <spiegel@gnu.org>
parents: 44104
diff changeset
724 and that it passes `vc-cvs-global-switches' to it before FLAGS."
94847
5e64dca662f0 Remove assumption about what nil means as a first arument to vc-do-command.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94806
diff changeset
725 (apply 'vc-do-command (or buffer "*vc*") okstatus "cvs" files
44436
f9db51bb423b (vc-cvs-checkin): Pass the required argument to `error'.
Sam Steingold <sds@gnu.org>
parents: 44197
diff changeset
726 (if (stringp vc-cvs-global-switches)
44197
e255f8fa4f62 (vc-cvs-global-switches): New user option.
André Spiegel <spiegel@gnu.org>
parents: 44104
diff changeset
727 (cons vc-cvs-global-switches flags)
e255f8fa4f62 (vc-cvs-global-switches): New user option.
André Spiegel <spiegel@gnu.org>
parents: 44104
diff changeset
728 (append vc-cvs-global-switches
e255f8fa4f62 (vc-cvs-global-switches): New user option.
André Spiegel <spiegel@gnu.org>
parents: 44104
diff changeset
729 flags))))
e255f8fa4f62 (vc-cvs-global-switches): New user option.
André Spiegel <spiegel@gnu.org>
parents: 44104
diff changeset
730
103553
af4ee0cb7fb7 * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 100908
diff changeset
731 (defun vc-cvs-stay-local-p (file) ;Back-compatibility.
af4ee0cb7fb7 * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 100908
diff changeset
732 (vc-stay-local-p file 'CVS))
51733
2b72fd42f02e (vc-cvs-repository-hostname): New operation.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51164
diff changeset
733
2b72fd42f02e (vc-cvs-repository-hostname): New operation.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51164
diff changeset
734 (defun vc-cvs-repository-hostname (dirname)
2b72fd42f02e (vc-cvs-repository-hostname): New operation.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51164
diff changeset
735 "Hostname of the CVS server associated to workarea DIRNAME."
2b72fd42f02e (vc-cvs-repository-hostname): New operation.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51164
diff changeset
736 (let ((rootname (expand-file-name "CVS/Root" dirname)))
2b72fd42f02e (vc-cvs-repository-hostname): New operation.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51164
diff changeset
737 (when (file-readable-p rootname)
2b72fd42f02e (vc-cvs-repository-hostname): New operation.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51164
diff changeset
738 (with-temp-buffer
2b72fd42f02e (vc-cvs-repository-hostname): New operation.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51164
diff changeset
739 (let ((coding-system-for-read
2b72fd42f02e (vc-cvs-repository-hostname): New operation.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51164
diff changeset
740 (or file-name-coding-system
2b72fd42f02e (vc-cvs-repository-hostname): New operation.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51164
diff changeset
741 default-file-name-coding-system)))
2b72fd42f02e (vc-cvs-repository-hostname): New operation.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51164
diff changeset
742 (vc-insert-file rootname))
2b72fd42f02e (vc-cvs-repository-hostname): New operation.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51164
diff changeset
743 (goto-char (point-min))
2b72fd42f02e (vc-cvs-repository-hostname): New operation.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51164
diff changeset
744 (nth 2 (vc-cvs-parse-root
2b72fd42f02e (vc-cvs-repository-hostname): New operation.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51164
diff changeset
745 (buffer-substring (point)
2b72fd42f02e (vc-cvs-repository-hostname): New operation.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51164
diff changeset
746 (line-end-position))))))))
50668
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
747
99498
ea9a7a9912a9 (vc-cvs-parse-root): Handle roots without colon between hostname and path.
Sam Steingold <sds@gnu.org>
parents: 99363
diff changeset
748 (defun vc-cvs-parse-uhp (path)
ea9a7a9912a9 (vc-cvs-parse-root): Handle roots without colon between hostname and path.
Sam Steingold <sds@gnu.org>
parents: 99363
diff changeset
749 "parse user@host/path into (user@host /path)"
ea9a7a9912a9 (vc-cvs-parse-root): Handle roots without colon between hostname and path.
Sam Steingold <sds@gnu.org>
parents: 99363
diff changeset
750 (if (string-match "\\([^/]+\\)\\(/.*\\)" path)
ea9a7a9912a9 (vc-cvs-parse-root): Handle roots without colon between hostname and path.
Sam Steingold <sds@gnu.org>
parents: 99363
diff changeset
751 (list (match-string 1 path) (match-string 2 path))
ea9a7a9912a9 (vc-cvs-parse-root): Handle roots without colon between hostname and path.
Sam Steingold <sds@gnu.org>
parents: 99363
diff changeset
752 (list nil path)))
ea9a7a9912a9 (vc-cvs-parse-root): Handle roots without colon between hostname and path.
Sam Steingold <sds@gnu.org>
parents: 99363
diff changeset
753
50898
8806616471e2 (vc-cvs-dired-state-info): Use `added' for added files and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50671
diff changeset
754 (defun vc-cvs-parse-root (root)
50668
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
755 "Split CVS ROOT specification string into a list of fields.
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
756 A CVS root specification of the form
99498
ea9a7a9912a9 (vc-cvs-parse-root): Handle roots without colon between hostname and path.
Sam Steingold <sds@gnu.org>
parents: 99363
diff changeset
757 [:METHOD:][[USER@]HOSTNAME]:?/path/to/repository
50668
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
758 is converted to a normalized record with the following structure:
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
759 \(METHOD USER HOSTNAME CVS-ROOT).
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
760 The default METHOD for a CVS root of the form
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
761 /path/to/repository
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
762 is `local'.
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
763 The default METHOD for a CVS root of the form
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
764 [USER@]HOSTNAME:/path/to/repository
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
765 is `ext'.
60912
4a2ea521d778 * vc-cvs.el: Replace `illegal' with `invalid'.
Werner LEMBERG <wl@gnu.org>
parents: 59996
diff changeset
766 For an empty string, nil is returned (invalid CVS root)."
50668
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
767 ;; Split CVS root into colon separated fields (0-4).
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
768 ;; The `x:' makes sure, that leading colons are not lost;
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
769 ;; `HOST:/PATH' is then different from `:METHOD:/PATH'.
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
770 (let* ((root-list (cdr (split-string (concat "x:" root) ":")))
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
771 (len (length root-list))
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
772 ;; All syntactic varieties will get a proper METHOD.
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
773 (root-list
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
774 (cond
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
775 ((= len 0)
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
776 ;; Invalid CVS root
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
777 nil)
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
778 ((= len 1)
99498
ea9a7a9912a9 (vc-cvs-parse-root): Handle roots without colon between hostname and path.
Sam Steingold <sds@gnu.org>
parents: 99363
diff changeset
779 (let ((uhp (vc-cvs-parse-uhp (car root-list))))
ea9a7a9912a9 (vc-cvs-parse-root): Handle roots without colon between hostname and path.
Sam Steingold <sds@gnu.org>
parents: 99363
diff changeset
780 (cons (if (car uhp) "ext" "local") uhp)))
50668
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
781 ((= len 2)
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
782 ;; [USER@]HOST:PATH => method `ext'
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
783 (and (not (equal (car root-list) ""))
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
784 (cons "ext" root-list)))
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
785 ((= len 3)
99498
ea9a7a9912a9 (vc-cvs-parse-root): Handle roots without colon between hostname and path.
Sam Steingold <sds@gnu.org>
parents: 99363
diff changeset
786 ;; :METHOD:PATH or :METHOD:USER@HOSTNAME/PATH
50668
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
787 (cons (cadr root-list)
99498
ea9a7a9912a9 (vc-cvs-parse-root): Handle roots without colon between hostname and path.
Sam Steingold <sds@gnu.org>
parents: 99363
diff changeset
788 (vc-cvs-parse-uhp (caddr root-list))))
50668
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
789 (t
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
790 ;; :METHOD:[USER@]HOST:PATH
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
791 (cdr root-list)))))
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
792 (if root-list
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
793 (let ((method (car root-list))
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
794 (uhost (or (cadr root-list) ""))
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
795 (root (nth 2 root-list))
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
796 user host)
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
797 ;; Split USER@HOST
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
798 (if (string-match "\\(.*\\)@\\(.*\\)" uhost)
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
799 (setq user (match-string 1 uhost)
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
800 host (match-string 2 uhost))
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
801 (setq host uhost))
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
802 ;; Remove empty HOST
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
803 (and (equal host "")
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
804 (setq host))
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
805 ;; Fix windows style CVS root `:local:C:\\project\\cvs\\some\\dir'
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
806 (and host
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
807 (equal method "local")
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
808 (setq root (concat host ":" root) host))
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
809 ;; Normalize CVS root record
01d84e9d30e0 Patch by Wolfgang Scherer <Wolfgang.Scherer@gmx.de>
André Spiegel <spiegel@gnu.org>
parents: 50645
diff changeset
810 (list method user host root)))))
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
811
93160
22d835ffa8f7 (vc-cvs-parse-status): Note there are problems with
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93149
diff changeset
812 ;; XXX: This does not work correctly for subdirectories. "cvs status"
22d835ffa8f7 (vc-cvs-parse-status): Note there are problems with
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93149
diff changeset
813 ;; information is context sensitive, it contains lines like:
22d835ffa8f7 (vc-cvs-parse-status): Note there are problems with
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93149
diff changeset
814 ;; cvs status: Examining DIRNAME
22d835ffa8f7 (vc-cvs-parse-status): Note there are problems with
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93149
diff changeset
815 ;; and the file entries after that don't show the full path.
94542
16651da1e3ed Fix some comments to remove references to vc-dired.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94534
diff changeset
816 ;; Because of this VC directory listings only show changed files
16651da1e3ed Fix some comments to remove references to vc-dired.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94534
diff changeset
817 ;; at the top level for CVS.
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
818 (defun vc-cvs-parse-status (&optional full)
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
819 "Parse output of \"cvs status\" command in the current buffer.
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
820 Set file properties accordingly. Unless FULL is t, parse only
87450
71fc7b1db920 * vc-hooks.el (vc-state): Document new 'ignored and 'unregistered
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 87449
diff changeset
821 essential information. Note that this can never set the 'ignored
71fc7b1db920 * vc-hooks.el (vc-state): Document new 'ignored and 'unregistered
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 87449
diff changeset
822 state."
93242
0dcb59446144 (vc-cvs-parse-status, vc-cvs-after-dir-status): Detect
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93175
diff changeset
823 (let (file status missing)
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
824 (goto-char (point-min))
87450
71fc7b1db920 * vc-hooks.el (vc-state): Document new 'ignored and 'unregistered
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 87449
diff changeset
825 (while (looking-at "? \\(.*\\)")
71fc7b1db920 * vc-hooks.el (vc-state): Document new 'ignored and 'unregistered
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 87449
diff changeset
826 (setq file (expand-file-name (match-string 1)))
71fc7b1db920 * vc-hooks.el (vc-state): Document new 'ignored and 'unregistered
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 87449
diff changeset
827 (vc-file-setprop file 'vc-state 'unregistered)
71fc7b1db920 * vc-hooks.el (vc-state): Document new 'ignored and 'unregistered
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 87449
diff changeset
828 (forward-line 1))
93242
0dcb59446144 (vc-cvs-parse-status, vc-cvs-after-dir-status): Detect
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93175
diff changeset
829 (when (re-search-forward "^File: " nil t)
0dcb59446144 (vc-cvs-parse-status, vc-cvs-after-dir-status): Detect
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93175
diff changeset
830 (when (setq missing (looking-at "no file "))
0dcb59446144 (vc-cvs-parse-status, vc-cvs-after-dir-status): Detect
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93175
diff changeset
831 (goto-char (match-end 0)))
0dcb59446144 (vc-cvs-parse-status, vc-cvs-after-dir-status): Detect
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93175
diff changeset
832 (cond
0dcb59446144 (vc-cvs-parse-status, vc-cvs-after-dir-status): Detect
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93175
diff changeset
833 ((re-search-forward "\\=\\([^ \t]+\\)" nil t)
0dcb59446144 (vc-cvs-parse-status, vc-cvs-after-dir-status): Detect
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93175
diff changeset
834 (setq file (expand-file-name (match-string 1)))
95425
72ac0c4a8ecd (vc-cvs-state-heuristic, vc-cvs-parse-status): Try and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 95321
diff changeset
835 (setq status(if (re-search-forward "\\=[ \t]+Status: \\(.*\\)" nil t)
72ac0c4a8ecd (vc-cvs-state-heuristic, vc-cvs-parse-status): Try and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 95321
diff changeset
836 (match-string 1) "Unknown"))
93956
bfc762f0b49c * vc-hooks.el (vc-state): Add new state `conflict'.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93941
diff changeset
837 (when (and full
bfc762f0b49c * vc-hooks.el (vc-state): Add new state `conflict'.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93941
diff changeset
838 (re-search-forward
bfc762f0b49c * vc-hooks.el (vc-state): Add new state `conflict'.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93941
diff changeset
839 "\\(RCS Version\\|RCS Revision\\|Repository revision\\):\
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
840 \[\t ]+\\([0-9.]+\\)"
93956
bfc762f0b49c * vc-hooks.el (vc-state): Add new state `conflict'.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93941
diff changeset
841 nil t))
93242
0dcb59446144 (vc-cvs-parse-status, vc-cvs-after-dir-status): Detect
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93175
diff changeset
842 (vc-file-setprop file 'vc-latest-revision (match-string 2)))
0dcb59446144 (vc-cvs-parse-status, vc-cvs-after-dir-status): Detect
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93175
diff changeset
843 (vc-file-setprop
0dcb59446144 (vc-cvs-parse-status, vc-cvs-after-dir-status): Detect
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93175
diff changeset
844 file 'vc-state
0dcb59446144 (vc-cvs-parse-status, vc-cvs-after-dir-status): Detect
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93175
diff changeset
845 (cond
0dcb59446144 (vc-cvs-parse-status, vc-cvs-after-dir-status): Detect
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93175
diff changeset
846 ((string-match "Up-to-date" status)
0dcb59446144 (vc-cvs-parse-status, vc-cvs-after-dir-status): Detect
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93175
diff changeset
847 (vc-file-setprop file 'vc-checkout-time
0dcb59446144 (vc-cvs-parse-status, vc-cvs-after-dir-status): Detect
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93175
diff changeset
848 (nth 5 (file-attributes file)))
0dcb59446144 (vc-cvs-parse-status, vc-cvs-after-dir-status): Detect
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93175
diff changeset
849 'up-to-date)
0dcb59446144 (vc-cvs-parse-status, vc-cvs-after-dir-status): Detect
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93175
diff changeset
850 ((string-match "Locally Modified" status) 'edited)
0dcb59446144 (vc-cvs-parse-status, vc-cvs-after-dir-status): Detect
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93175
diff changeset
851 ((string-match "Needs Merge" status) 'needs-merge)
0dcb59446144 (vc-cvs-parse-status, vc-cvs-after-dir-status): Detect
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93175
diff changeset
852 ((string-match "Needs \\(Checkout\\|Patch\\)" status)
94521
2a61c5f918a5 Change 'needs-patch to 'needs-update.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94481
diff changeset
853 (if missing 'missing 'needs-update))
93242
0dcb59446144 (vc-cvs-parse-status, vc-cvs-after-dir-status): Detect
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93175
diff changeset
854 ((string-match "Locally Added" status) 'added)
0dcb59446144 (vc-cvs-parse-status, vc-cvs-after-dir-status): Detect
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93175
diff changeset
855 ((string-match "Locally Removed" status) 'removed)
93956
bfc762f0b49c * vc-hooks.el (vc-state): Add new state `conflict'.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93941
diff changeset
856 ((string-match "File had conflicts " status) 'conflict)
95425
72ac0c4a8ecd (vc-cvs-state-heuristic, vc-cvs-parse-status): Try and
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 95321
diff changeset
857 ((string-match "Unknown" status) 'unregistered)
93242
0dcb59446144 (vc-cvs-parse-status, vc-cvs-after-dir-status): Detect
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93175
diff changeset
858 (t 'edited))))))))
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
859
94003
2ecb2ea8d5b5 Change `dir-status' to not take (and pass) status-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93956
diff changeset
860 (defun vc-cvs-after-dir-status (update-function)
93149
5ec26b66bbe8 (vc-cvs-after-dir-status, vc-cvs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93124
diff changeset
861 ;; Heavily inspired by vc-cvs-parse-status. AKA a quick hack.
94522
a69dcc2c42ae Remove some XXX comments no longer needed.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94521
diff changeset
862 ;; This needs a lot of testing.
93149
5ec26b66bbe8 (vc-cvs-after-dir-status, vc-cvs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93124
diff changeset
863 (let ((status nil)
5ec26b66bbe8 (vc-cvs-after-dir-status, vc-cvs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93124
diff changeset
864 (status-str nil)
5ec26b66bbe8 (vc-cvs-after-dir-status, vc-cvs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93124
diff changeset
865 (file nil)
5ec26b66bbe8 (vc-cvs-after-dir-status, vc-cvs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93124
diff changeset
866 (result nil)
93242
0dcb59446144 (vc-cvs-parse-status, vc-cvs-after-dir-status): Detect
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93175
diff changeset
867 (missing nil)
98532
69b1ca445635 (vc-cvs-after-dir-status): Parse the output for non
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98517
diff changeset
868 (ignore-next nil)
93149
5ec26b66bbe8 (vc-cvs-after-dir-status, vc-cvs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93124
diff changeset
869 (subdir default-directory))
5ec26b66bbe8 (vc-cvs-after-dir-status, vc-cvs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93124
diff changeset
870 (goto-char (point-min))
5ec26b66bbe8 (vc-cvs-after-dir-status, vc-cvs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93124
diff changeset
871 (while
5ec26b66bbe8 (vc-cvs-after-dir-status, vc-cvs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93124
diff changeset
872 ;; Look for either a file entry, an unregistered file, or a
5ec26b66bbe8 (vc-cvs-after-dir-status, vc-cvs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93124
diff changeset
873 ;; directory change.
5ec26b66bbe8 (vc-cvs-after-dir-status, vc-cvs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93124
diff changeset
874 (re-search-forward
98532
69b1ca445635 (vc-cvs-after-dir-status): Parse the output for non
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98517
diff changeset
875 "\\(^=+\n\\([^=c?\n].*\n\\|\n\\)+\\)\\|\\(\\(^?? .*\n\\)+\\)\\|\\(^cvs status: \\(Examining\\|nothing\\) .*\n\\)"
93149
5ec26b66bbe8 (vc-cvs-after-dir-status, vc-cvs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93124
diff changeset
876 nil t)
95441
3a41427d46d9 (vc-cvs-after-dir-status): Support spaces in file
Dan Nicolaescu <dann@ics.uci.edu>
parents: 95425
diff changeset
877 ;; FIXME: get rid of narrowing here.
93149
5ec26b66bbe8 (vc-cvs-after-dir-status, vc-cvs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93124
diff changeset
878 (narrow-to-region (match-beginning 0) (match-end 0))
5ec26b66bbe8 (vc-cvs-after-dir-status, vc-cvs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93124
diff changeset
879 (goto-char (point-min))
5ec26b66bbe8 (vc-cvs-after-dir-status, vc-cvs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93124
diff changeset
880 ;; The subdir
5ec26b66bbe8 (vc-cvs-after-dir-status, vc-cvs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93124
diff changeset
881 (when (looking-at "cvs status: Examining \\(.+\\)")
5ec26b66bbe8 (vc-cvs-after-dir-status, vc-cvs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93124
diff changeset
882 (setq subdir (expand-file-name (match-string 1))))
5ec26b66bbe8 (vc-cvs-after-dir-status, vc-cvs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93124
diff changeset
883 ;; Unregistered files
5ec26b66bbe8 (vc-cvs-after-dir-status, vc-cvs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93124
diff changeset
884 (while (looking-at "? \\(.*\\)")
95524
75b22805a854 (vc-cvs-status-extra-headers): Remove extraneous newlines.
Sam Steingold <sds@gnu.org>
parents: 95443
diff changeset
885 (setq file (file-relative-name
93149
5ec26b66bbe8 (vc-cvs-after-dir-status, vc-cvs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93124
diff changeset
886 (expand-file-name (match-string 1) subdir)))
93461
3afeea9a48a3 * vc.el (vc-status-add-entry): Assume ENTRY is a list not a cons.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93382
diff changeset
887 (push (list file 'unregistered) result)
93149
5ec26b66bbe8 (vc-cvs-after-dir-status, vc-cvs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93124
diff changeset
888 (forward-line 1))
98532
69b1ca445635 (vc-cvs-after-dir-status): Parse the output for non
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98517
diff changeset
889 (when (looking-at "cvs status: nothing known about")
69b1ca445635 (vc-cvs-after-dir-status): Parse the output for non
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98517
diff changeset
890 ;; We asked about a non existent file. The output looks like this:
69b1ca445635 (vc-cvs-after-dir-status): Parse the output for non
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98517
diff changeset
891
69b1ca445635 (vc-cvs-after-dir-status): Parse the output for non
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98517
diff changeset
892 ;; cvs status: nothing known about `lisp/v.diff'
69b1ca445635 (vc-cvs-after-dir-status): Parse the output for non
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98517
diff changeset
893 ;; ===================================================================
69b1ca445635 (vc-cvs-after-dir-status): Parse the output for non
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98517
diff changeset
894 ;; File: no file v.diff Status: Unknown
69b1ca445635 (vc-cvs-after-dir-status): Parse the output for non
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98517
diff changeset
895 ;;
69b1ca445635 (vc-cvs-after-dir-status): Parse the output for non
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98517
diff changeset
896 ;; Working revision: No entry for v.diff
69b1ca445635 (vc-cvs-after-dir-status): Parse the output for non
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98517
diff changeset
897 ;; Repository revision: No revision control file
69b1ca445635 (vc-cvs-after-dir-status): Parse the output for non
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98517
diff changeset
898 ;;
69b1ca445635 (vc-cvs-after-dir-status): Parse the output for non
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98517
diff changeset
899
69b1ca445635 (vc-cvs-after-dir-status): Parse the output for non
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98517
diff changeset
900 ;; Due to narrowing in this iteration we only see the "cvs
69b1ca445635 (vc-cvs-after-dir-status): Parse the output for non
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98517
diff changeset
901 ;; status:" line, so just set a flag so that we can ignore the
69b1ca445635 (vc-cvs-after-dir-status): Parse the output for non
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98517
diff changeset
902 ;; file in the next iteration.
69b1ca445635 (vc-cvs-after-dir-status): Parse the output for non
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98517
diff changeset
903 (setq ignore-next t))
93149
5ec26b66bbe8 (vc-cvs-after-dir-status, vc-cvs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93124
diff changeset
904 ;; A file entry.
95441
3a41427d46d9 (vc-cvs-after-dir-status): Support spaces in file
Dan Nicolaescu <dann@ics.uci.edu>
parents: 95425
diff changeset
905 (when (re-search-forward "^File: \\(no file \\)?\\(.*[^ \t]\\)[ \t]+Status: \\(.*\\)" nil t)
3a41427d46d9 (vc-cvs-after-dir-status): Support spaces in file
Dan Nicolaescu <dann@ics.uci.edu>
parents: 95425
diff changeset
906 (setq missing (match-string 1))
3a41427d46d9 (vc-cvs-after-dir-status): Support spaces in file
Dan Nicolaescu <dann@ics.uci.edu>
parents: 95425
diff changeset
907 (setq file (file-relative-name
3a41427d46d9 (vc-cvs-after-dir-status): Support spaces in file
Dan Nicolaescu <dann@ics.uci.edu>
parents: 95425
diff changeset
908 (expand-file-name (match-string 2) subdir)))
3a41427d46d9 (vc-cvs-after-dir-status): Support spaces in file
Dan Nicolaescu <dann@ics.uci.edu>
parents: 95425
diff changeset
909 (setq status-str (match-string 3))
3a41427d46d9 (vc-cvs-after-dir-status): Support spaces in file
Dan Nicolaescu <dann@ics.uci.edu>
parents: 95425
diff changeset
910 (setq status
3a41427d46d9 (vc-cvs-after-dir-status): Support spaces in file
Dan Nicolaescu <dann@ics.uci.edu>
parents: 95425
diff changeset
911 (cond
3a41427d46d9 (vc-cvs-after-dir-status): Support spaces in file
Dan Nicolaescu <dann@ics.uci.edu>
parents: 95425
diff changeset
912 ((string-match "Up-to-date" status-str) 'up-to-date)
3a41427d46d9 (vc-cvs-after-dir-status): Support spaces in file
Dan Nicolaescu <dann@ics.uci.edu>
parents: 95425
diff changeset
913 ((string-match "Locally Modified" status-str) 'edited)
3a41427d46d9 (vc-cvs-after-dir-status): Support spaces in file
Dan Nicolaescu <dann@ics.uci.edu>
parents: 95425
diff changeset
914 ((string-match "Needs Merge" status-str) 'needs-merge)
3a41427d46d9 (vc-cvs-after-dir-status): Support spaces in file
Dan Nicolaescu <dann@ics.uci.edu>
parents: 95425
diff changeset
915 ((string-match "Needs \\(Checkout\\|Patch\\)" status-str)
3a41427d46d9 (vc-cvs-after-dir-status): Support spaces in file
Dan Nicolaescu <dann@ics.uci.edu>
parents: 95425
diff changeset
916 (if missing 'missing 'needs-update))
3a41427d46d9 (vc-cvs-after-dir-status): Support spaces in file
Dan Nicolaescu <dann@ics.uci.edu>
parents: 95425
diff changeset
917 ((string-match "Locally Added" status-str) 'added)
3a41427d46d9 (vc-cvs-after-dir-status): Support spaces in file
Dan Nicolaescu <dann@ics.uci.edu>
parents: 95425
diff changeset
918 ((string-match "Locally Removed" status-str) 'removed)
3a41427d46d9 (vc-cvs-after-dir-status): Support spaces in file
Dan Nicolaescu <dann@ics.uci.edu>
parents: 95425
diff changeset
919 ((string-match "File had conflicts " status-str) 'conflict)
95442
f3de1c31de14 Fix typos.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 95441
diff changeset
920 ((string-match "Unknown" status-str) 'unregistered)
95441
3a41427d46d9 (vc-cvs-after-dir-status): Support spaces in file
Dan Nicolaescu <dann@ics.uci.edu>
parents: 95425
diff changeset
921 (t 'edited)))
98532
69b1ca445635 (vc-cvs-after-dir-status): Parse the output for non
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98517
diff changeset
922 (if ignore-next
69b1ca445635 (vc-cvs-after-dir-status): Parse the output for non
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98517
diff changeset
923 (setq ignore-next nil)
69b1ca445635 (vc-cvs-after-dir-status): Parse the output for non
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98517
diff changeset
924 (unless (eq status 'up-to-date)
69b1ca445635 (vc-cvs-after-dir-status): Parse the output for non
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98517
diff changeset
925 (push (list file status) result))))
93149
5ec26b66bbe8 (vc-cvs-after-dir-status, vc-cvs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93124
diff changeset
926 (goto-char (point-max))
5ec26b66bbe8 (vc-cvs-after-dir-status, vc-cvs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93124
diff changeset
927 (widen))
95443
14f66635f87d *** empty log message ***
Dan Nicolaescu <dann@ics.uci.edu>
parents: 95442
diff changeset
928 (funcall update-function result))
94094
9ec1b62752b1 (vc-cvs-after-dir-status, vc-cvs-dir-status): Add
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94045
diff changeset
929 ;; Alternative implementation: use the "update" command instead of
9ec1b62752b1 (vc-cvs-after-dir-status, vc-cvs-dir-status): Add
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94045
diff changeset
930 ;; the "status" command.
9ec1b62752b1 (vc-cvs-after-dir-status, vc-cvs-dir-status): Add
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94045
diff changeset
931 ;; (let ((result nil)
9ec1b62752b1 (vc-cvs-after-dir-status, vc-cvs-dir-status): Add
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94045
diff changeset
932 ;; (translation '((?? . unregistered)
9ec1b62752b1 (vc-cvs-after-dir-status, vc-cvs-dir-status): Add
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94045
diff changeset
933 ;; (?A . added)
9ec1b62752b1 (vc-cvs-after-dir-status, vc-cvs-dir-status): Add
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94045
diff changeset
934 ;; (?C . conflict)
9ec1b62752b1 (vc-cvs-after-dir-status, vc-cvs-dir-status): Add
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94045
diff changeset
935 ;; (?M . edited)
9ec1b62752b1 (vc-cvs-after-dir-status, vc-cvs-dir-status): Add
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94045
diff changeset
936 ;; (?P . needs-merge)
9ec1b62752b1 (vc-cvs-after-dir-status, vc-cvs-dir-status): Add
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94045
diff changeset
937 ;; (?R . removed)
94521
2a61c5f918a5 Change 'needs-patch to 'needs-update.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 94481
diff changeset
938 ;; (?U . needs-update))))
94094
9ec1b62752b1 (vc-cvs-after-dir-status, vc-cvs-dir-status): Add
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94045
diff changeset
939 ;; (goto-char (point-min))
9ec1b62752b1 (vc-cvs-after-dir-status, vc-cvs-dir-status): Add
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94045
diff changeset
940 ;; (while (not (eobp))
9ec1b62752b1 (vc-cvs-after-dir-status, vc-cvs-dir-status): Add
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94045
diff changeset
941 ;; (if (looking-at "^[ACMPRU?] \\(.*\\)$")
95524
75b22805a854 (vc-cvs-status-extra-headers): Remove extraneous newlines.
Sam Steingold <sds@gnu.org>
parents: 95443
diff changeset
942 ;; (push (list (match-string 1)
75b22805a854 (vc-cvs-status-extra-headers): Remove extraneous newlines.
Sam Steingold <sds@gnu.org>
parents: 95443
diff changeset
943 ;; (cdr (assoc (char-after) translation)))
94094
9ec1b62752b1 (vc-cvs-after-dir-status, vc-cvs-dir-status): Add
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94045
diff changeset
944 ;; result)
9ec1b62752b1 (vc-cvs-after-dir-status, vc-cvs-dir-status): Add
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94045
diff changeset
945 ;; (cond
9ec1b62752b1 (vc-cvs-after-dir-status, vc-cvs-dir-status): Add
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94045
diff changeset
946 ;; ((looking-at "cvs update: warning: \\(.*\\) was lost")
9ec1b62752b1 (vc-cvs-after-dir-status, vc-cvs-dir-status): Add
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94045
diff changeset
947 ;; ;; Format is:
9ec1b62752b1 (vc-cvs-after-dir-status, vc-cvs-dir-status): Add
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94045
diff changeset
948 ;; ;; cvs update: warning: FILENAME was lost
9ec1b62752b1 (vc-cvs-after-dir-status, vc-cvs-dir-status): Add
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94045
diff changeset
949 ;; ;; U FILENAME
9ec1b62752b1 (vc-cvs-after-dir-status, vc-cvs-dir-status): Add
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94045
diff changeset
950 ;; (push (list (match-string 1) 'missing) result)
9ec1b62752b1 (vc-cvs-after-dir-status, vc-cvs-dir-status): Add
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94045
diff changeset
951 ;; ;; Skip the "U" line
9ec1b62752b1 (vc-cvs-after-dir-status, vc-cvs-dir-status): Add
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94045
diff changeset
952 ;; (forward-line 1))
9ec1b62752b1 (vc-cvs-after-dir-status, vc-cvs-dir-status): Add
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94045
diff changeset
953 ;; ((looking-at "cvs update: New directory `\\(.*\\)' -- ignored")
9ec1b62752b1 (vc-cvs-after-dir-status, vc-cvs-dir-status): Add
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94045
diff changeset
954 ;; (push (list (match-string 1) 'unregistered) result))))
9ec1b62752b1 (vc-cvs-after-dir-status, vc-cvs-dir-status): Add
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94045
diff changeset
955 ;; (forward-line 1))
9ec1b62752b1 (vc-cvs-after-dir-status, vc-cvs-dir-status): Add
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94045
diff changeset
956 ;; (funcall update-function result)))
9ec1b62752b1 (vc-cvs-after-dir-status, vc-cvs-dir-status): Add
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94045
diff changeset
957 )
93149
5ec26b66bbe8 (vc-cvs-after-dir-status, vc-cvs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93124
diff changeset
958
98517
04d30d4471c2 (vc-cvs-dir-status-heuristic): New function.
Glenn Morris <rgm@gnu.org>
parents: 98495
diff changeset
959 ;; Based on vc-cvs-dir-state-heuristic from Emacs 22.
105324
2701a9aa1147 (vc-cvs-parse-entry): Be more careful with the match-data. (Bug#4555).
Glenn Morris <rgm@gnu.org>
parents: 105010
diff changeset
960 ;; FIXME does not mention unregistered files.
98517
04d30d4471c2 (vc-cvs-dir-status-heuristic): New function.
Glenn Morris <rgm@gnu.org>
parents: 98495
diff changeset
961 (defun vc-cvs-dir-status-heuristic (dir update-function &optional basedir)
04d30d4471c2 (vc-cvs-dir-status-heuristic): New function.
Glenn Morris <rgm@gnu.org>
parents: 98495
diff changeset
962 "Find the CVS state of all files in DIR, using only local information."
04d30d4471c2 (vc-cvs-dir-status-heuristic): New function.
Glenn Morris <rgm@gnu.org>
parents: 98495
diff changeset
963 (let (file basename status result dirlist)
04d30d4471c2 (vc-cvs-dir-status-heuristic): New function.
Glenn Morris <rgm@gnu.org>
parents: 98495
diff changeset
964 (with-temp-buffer
04d30d4471c2 (vc-cvs-dir-status-heuristic): New function.
Glenn Morris <rgm@gnu.org>
parents: 98495
diff changeset
965 (vc-cvs-get-entries dir)
04d30d4471c2 (vc-cvs-dir-status-heuristic): New function.
Glenn Morris <rgm@gnu.org>
parents: 98495
diff changeset
966 (goto-char (point-min))
04d30d4471c2 (vc-cvs-dir-status-heuristic): New function.
Glenn Morris <rgm@gnu.org>
parents: 98495
diff changeset
967 (while (not (eobp))
04d30d4471c2 (vc-cvs-dir-status-heuristic): New function.
Glenn Morris <rgm@gnu.org>
parents: 98495
diff changeset
968 (if (looking-at "D/\\([^/]*\\)////")
04d30d4471c2 (vc-cvs-dir-status-heuristic): New function.
Glenn Morris <rgm@gnu.org>
parents: 98495
diff changeset
969 (push (expand-file-name (match-string 1) dir) dirlist)
04d30d4471c2 (vc-cvs-dir-status-heuristic): New function.
Glenn Morris <rgm@gnu.org>
parents: 98495
diff changeset
970 ;; CVS-removed files are not taken under VC control.
04d30d4471c2 (vc-cvs-dir-status-heuristic): New function.
Glenn Morris <rgm@gnu.org>
parents: 98495
diff changeset
971 (when (looking-at "/\\([^/]*\\)/[^/-]")
04d30d4471c2 (vc-cvs-dir-status-heuristic): New function.
Glenn Morris <rgm@gnu.org>
parents: 98495
diff changeset
972 (setq basename (match-string 1)
04d30d4471c2 (vc-cvs-dir-status-heuristic): New function.
Glenn Morris <rgm@gnu.org>
parents: 98495
diff changeset
973 file (expand-file-name basename dir)
04d30d4471c2 (vc-cvs-dir-status-heuristic): New function.
Glenn Morris <rgm@gnu.org>
parents: 98495
diff changeset
974 status (or (vc-file-getprop file 'vc-state)
04d30d4471c2 (vc-cvs-dir-status-heuristic): New function.
Glenn Morris <rgm@gnu.org>
parents: 98495
diff changeset
975 (vc-cvs-parse-entry file t)))
04d30d4471c2 (vc-cvs-dir-status-heuristic): New function.
Glenn Morris <rgm@gnu.org>
parents: 98495
diff changeset
976 (unless (eq status 'up-to-date)
04d30d4471c2 (vc-cvs-dir-status-heuristic): New function.
Glenn Morris <rgm@gnu.org>
parents: 98495
diff changeset
977 (push (list (if basedir
04d30d4471c2 (vc-cvs-dir-status-heuristic): New function.
Glenn Morris <rgm@gnu.org>
parents: 98495
diff changeset
978 (file-relative-name file basedir)
04d30d4471c2 (vc-cvs-dir-status-heuristic): New function.
Glenn Morris <rgm@gnu.org>
parents: 98495
diff changeset
979 basename)
04d30d4471c2 (vc-cvs-dir-status-heuristic): New function.
Glenn Morris <rgm@gnu.org>
parents: 98495
diff changeset
980 status) result))))
04d30d4471c2 (vc-cvs-dir-status-heuristic): New function.
Glenn Morris <rgm@gnu.org>
parents: 98495
diff changeset
981 (forward-line 1)))
04d30d4471c2 (vc-cvs-dir-status-heuristic): New function.
Glenn Morris <rgm@gnu.org>
parents: 98495
diff changeset
982 (dolist (subdir dirlist)
04d30d4471c2 (vc-cvs-dir-status-heuristic): New function.
Glenn Morris <rgm@gnu.org>
parents: 98495
diff changeset
983 (setq result (append result
04d30d4471c2 (vc-cvs-dir-status-heuristic): New function.
Glenn Morris <rgm@gnu.org>
parents: 98495
diff changeset
984 (vc-cvs-dir-status-heuristic subdir nil
04d30d4471c2 (vc-cvs-dir-status-heuristic): New function.
Glenn Morris <rgm@gnu.org>
parents: 98495
diff changeset
985 (or basedir dir)))))
04d30d4471c2 (vc-cvs-dir-status-heuristic): New function.
Glenn Morris <rgm@gnu.org>
parents: 98495
diff changeset
986 (if basedir result
04d30d4471c2 (vc-cvs-dir-status-heuristic): New function.
Glenn Morris <rgm@gnu.org>
parents: 98495
diff changeset
987 (funcall update-function result))))
04d30d4471c2 (vc-cvs-dir-status-heuristic): New function.
Glenn Morris <rgm@gnu.org>
parents: 98495
diff changeset
988
94003
2ecb2ea8d5b5 Change `dir-status' to not take (and pass) status-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93956
diff changeset
989 (defun vc-cvs-dir-status (dir update-function)
93149
5ec26b66bbe8 (vc-cvs-after-dir-status, vc-cvs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 93124
diff changeset
990 "Create a list of conses (file . state) for DIR."
98517
04d30d4471c2 (vc-cvs-dir-status-heuristic): New function.
Glenn Morris <rgm@gnu.org>
parents: 98495
diff changeset
991 ;; FIXME check all files in DIR instead?
103553
af4ee0cb7fb7 * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 100908
diff changeset
992 (let ((local (vc-stay-local-p dir 'CVS)))
98675
2cae4bd13e67 * vc-hooks.el (vc-stay-local): Add a new choice and default to it.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98576
diff changeset
993 (if (and local (not (eq local 'only-file)))
2cae4bd13e67 * vc-hooks.el (vc-stay-local): Add a new choice and default to it.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98576
diff changeset
994 (vc-cvs-dir-status-heuristic dir update-function)
2cae4bd13e67 * vc-hooks.el (vc-stay-local): Add a new choice and default to it.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98576
diff changeset
995 (vc-cvs-command (current-buffer) 'async dir "-f" "status")
2cae4bd13e67 * vc-hooks.el (vc-stay-local): Add a new choice and default to it.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98576
diff changeset
996 ;; Alternative implementation: use the "update" command instead of
2cae4bd13e67 * vc-hooks.el (vc-stay-local): Add a new choice and default to it.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98576
diff changeset
997 ;; the "status" command.
2cae4bd13e67 * vc-hooks.el (vc-stay-local): Add a new choice and default to it.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98576
diff changeset
998 ;; (vc-cvs-command (current-buffer) 'async
2cae4bd13e67 * vc-hooks.el (vc-stay-local): Add a new choice and default to it.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98576
diff changeset
999 ;; (file-relative-name dir)
2cae4bd13e67 * vc-hooks.el (vc-stay-local): Add a new choice and default to it.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98576
diff changeset
1000 ;; "-f" "-n" "update" "-d" "-P")
2cae4bd13e67 * vc-hooks.el (vc-stay-local): Add a new choice and default to it.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98576
diff changeset
1001 (vc-exec-after
2cae4bd13e67 * vc-hooks.el (vc-stay-local): Add a new choice and default to it.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98576
diff changeset
1002 `(vc-cvs-after-dir-status (quote ,update-function))))))
99190
e78a75586e10 (vc-cvs-stay-local): Fix typo in choice.
Martin Rudalics <rudalics@gmx.at>
parents: 99159
diff changeset
1003
98495
e8a025cdac4a * vc-svn.el (vc-svn-dir-status-files):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98086
diff changeset
1004 (defun vc-cvs-dir-status-files (dir files default-state update-function)
e8a025cdac4a * vc-svn.el (vc-svn-dir-status-files):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98086
diff changeset
1005 "Create a list of conses (file . state) for DIR."
e8a025cdac4a * vc-svn.el (vc-svn-dir-status-files):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98086
diff changeset
1006 (apply 'vc-cvs-command (current-buffer) 'async dir "-f" "status" files)
e8a025cdac4a * vc-svn.el (vc-svn-dir-status-files):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98086
diff changeset
1007 (vc-exec-after
e8a025cdac4a * vc-svn.el (vc-svn-dir-status-files):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98086
diff changeset
1008 `(vc-cvs-after-dir-status (quote ,update-function))))
e8a025cdac4a * vc-svn.el (vc-svn-dir-status-files):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 98086
diff changeset
1009
95049
438808a998aa Improved extra-headers method for CVS.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 95043
diff changeset
1010 (defun vc-cvs-file-to-string (file)
438808a998aa Improved extra-headers method for CVS.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 95043
diff changeset
1011 "Read the content of FILE and return it as a string."
438808a998aa Improved extra-headers method for CVS.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 95043
diff changeset
1012 (condition-case nil
438808a998aa Improved extra-headers method for CVS.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 95043
diff changeset
1013 (with-temp-buffer
438808a998aa Improved extra-headers method for CVS.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 95043
diff changeset
1014 (insert-file-contents file)
438808a998aa Improved extra-headers method for CVS.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 95043
diff changeset
1015 (goto-char (point-min))
438808a998aa Improved extra-headers method for CVS.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 95043
diff changeset
1016 (buffer-substring (point) (point-max)))
438808a998aa Improved extra-headers method for CVS.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 95043
diff changeset
1017 (file-error nil)))
438808a998aa Improved extra-headers method for CVS.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 95043
diff changeset
1018
99159
b0dce7f34dda * vc.el: Rename VC methods that were missed when vc-status was
Dan Nicolaescu <dann@ics.uci.edu>
parents: 99138
diff changeset
1019 (defun vc-cvs-dir-extra-headers (dir)
95049
438808a998aa Improved extra-headers method for CVS.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 95043
diff changeset
1020 "Extract and represent per-directory properties of a CVS working copy."
95042
0f15001fd142 Extract and display the CVS repository.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 95020
diff changeset
1021 (let ((repo
95049
438808a998aa Improved extra-headers method for CVS.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 95043
diff changeset
1022 (condition-case nil
438808a998aa Improved extra-headers method for CVS.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 95043
diff changeset
1023 (with-temp-buffer
438808a998aa Improved extra-headers method for CVS.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 95043
diff changeset
1024 (insert-file-contents "CVS/Root")
438808a998aa Improved extra-headers method for CVS.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 95043
diff changeset
1025 (goto-char (point-min))
95042
0f15001fd142 Extract and display the CVS repository.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 95020
diff changeset
1026 (and (looking-at ":ext:") (delete-char 5))
99363
e48aaf88b6e7 * vc-cvs.el (vc-cvs-dir-extra-headers): Add tag name to header.
Nick Roberts <nickrob@snap.net.nz>
parents: 99190
diff changeset
1027 (concat (buffer-substring (point) (1- (point-max))) "\n"))
95049
438808a998aa Improved extra-headers method for CVS.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 95043
diff changeset
1028 (file-error nil)))
438808a998aa Improved extra-headers method for CVS.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 95043
diff changeset
1029 (module
438808a998aa Improved extra-headers method for CVS.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 95043
diff changeset
1030 (condition-case nil
438808a998aa Improved extra-headers method for CVS.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 95043
diff changeset
1031 (with-temp-buffer
438808a998aa Improved extra-headers method for CVS.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 95043
diff changeset
1032 (insert-file-contents "CVS/Repository")
438808a998aa Improved extra-headers method for CVS.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 95043
diff changeset
1033 (goto-char (point-min))
99138
a479c7f4849d (vc-cvs-status-extra-headers): Use full directory name when reporting
Chong Yidong <cyd@stupidchicken.com>
parents: 98675
diff changeset
1034 (skip-chars-forward "^\n")
a479c7f4849d (vc-cvs-status-extra-headers): Use full directory name when reporting
Chong Yidong <cyd@stupidchicken.com>
parents: 98675
diff changeset
1035 (concat (buffer-substring (point-min) (point)) "\n"))
95049
438808a998aa Improved extra-headers method for CVS.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 95043
diff changeset
1036 (file-error nil))))
95042
0f15001fd142 Extract and display the CVS repository.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 95020
diff changeset
1037 (concat
99363
e48aaf88b6e7 * vc-cvs.el (vc-cvs-dir-extra-headers): Add tag name to header.
Nick Roberts <nickrob@snap.net.nz>
parents: 99190
diff changeset
1038 (cond (repo
e48aaf88b6e7 * vc-cvs.el (vc-cvs-dir-extra-headers): Add tag name to header.
Nick Roberts <nickrob@snap.net.nz>
parents: 99190
diff changeset
1039 (concat (propertize "Repository : " 'face 'font-lock-type-face)
e48aaf88b6e7 * vc-cvs.el (vc-cvs-dir-extra-headers): Add tag name to header.
Nick Roberts <nickrob@snap.net.nz>
parents: 99190
diff changeset
1040 (propertize repo 'face 'font-lock-variable-name-face)))
e48aaf88b6e7 * vc-cvs.el (vc-cvs-dir-extra-headers): Add tag name to header.
Nick Roberts <nickrob@snap.net.nz>
parents: 99190
diff changeset
1041 (t ""))
95049
438808a998aa Improved extra-headers method for CVS.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 95043
diff changeset
1042 (cond (module
95524
75b22805a854 (vc-cvs-status-extra-headers): Remove extraneous newlines.
Sam Steingold <sds@gnu.org>
parents: 95443
diff changeset
1043 (concat (propertize "Module : " 'face 'font-lock-type-face)
75b22805a854 (vc-cvs-status-extra-headers): Remove extraneous newlines.
Sam Steingold <sds@gnu.org>
parents: 95443
diff changeset
1044 (propertize module 'face 'font-lock-variable-name-face)))
95049
438808a998aa Improved extra-headers method for CVS.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 95043
diff changeset
1045 (t ""))
99363
e48aaf88b6e7 * vc-cvs.el (vc-cvs-dir-extra-headers): Add tag name to header.
Nick Roberts <nickrob@snap.net.nz>
parents: 99190
diff changeset
1046 (if (file-readable-p "CVS/Tag")
e48aaf88b6e7 * vc-cvs.el (vc-cvs-dir-extra-headers): Add tag name to header.
Nick Roberts <nickrob@snap.net.nz>
parents: 99190
diff changeset
1047 (let ((tag (vc-cvs-file-to-string "CVS/Tag")))
e48aaf88b6e7 * vc-cvs.el (vc-cvs-dir-extra-headers): Add tag name to header.
Nick Roberts <nickrob@snap.net.nz>
parents: 99190
diff changeset
1048 (cond
e48aaf88b6e7 * vc-cvs.el (vc-cvs-dir-extra-headers): Add tag name to header.
Nick Roberts <nickrob@snap.net.nz>
parents: 99190
diff changeset
1049 ((string-match "\\`T" tag)
e48aaf88b6e7 * vc-cvs.el (vc-cvs-dir-extra-headers): Add tag name to header.
Nick Roberts <nickrob@snap.net.nz>
parents: 99190
diff changeset
1050 (concat (propertize "Tag : " 'face 'font-lock-type-face)
e48aaf88b6e7 * vc-cvs.el (vc-cvs-dir-extra-headers): Add tag name to header.
Nick Roberts <nickrob@snap.net.nz>
parents: 99190
diff changeset
1051 (propertize (substring tag 1)
e48aaf88b6e7 * vc-cvs.el (vc-cvs-dir-extra-headers): Add tag name to header.
Nick Roberts <nickrob@snap.net.nz>
parents: 99190
diff changeset
1052 'face 'font-lock-variable-name-face)))
e48aaf88b6e7 * vc-cvs.el (vc-cvs-dir-extra-headers): Add tag name to header.
Nick Roberts <nickrob@snap.net.nz>
parents: 99190
diff changeset
1053 ((string-match "\\`D" tag)
e48aaf88b6e7 * vc-cvs.el (vc-cvs-dir-extra-headers): Add tag name to header.
Nick Roberts <nickrob@snap.net.nz>
parents: 99190
diff changeset
1054 (concat (propertize "Date : " 'face 'font-lock-type-face)
e48aaf88b6e7 * vc-cvs.el (vc-cvs-dir-extra-headers): Add tag name to header.
Nick Roberts <nickrob@snap.net.nz>
parents: 99190
diff changeset
1055 (propertize (substring tag 1)
e48aaf88b6e7 * vc-cvs.el (vc-cvs-dir-extra-headers): Add tag name to header.
Nick Roberts <nickrob@snap.net.nz>
parents: 99190
diff changeset
1056 'face 'font-lock-variable-name-face)))
e48aaf88b6e7 * vc-cvs.el (vc-cvs-dir-extra-headers): Add tag name to header.
Nick Roberts <nickrob@snap.net.nz>
parents: 99190
diff changeset
1057 (t ""))))
e48aaf88b6e7 * vc-cvs.el (vc-cvs-dir-extra-headers): Add tag name to header.
Nick Roberts <nickrob@snap.net.nz>
parents: 99190
diff changeset
1058
95524
75b22805a854 (vc-cvs-status-extra-headers): Remove extraneous newlines.
Sam Steingold <sds@gnu.org>
parents: 95443
diff changeset
1059 ;; In CVS, branch is a per-file property, not a per-directory property.
75b22805a854 (vc-cvs-status-extra-headers): Remove extraneous newlines.
Sam Steingold <sds@gnu.org>
parents: 95443
diff changeset
1060 ;; We can't really do this here without making dangerous assumptions.
95049
438808a998aa Improved extra-headers method for CVS.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 95043
diff changeset
1061 ;;(propertize "Branch: " 'face 'font-lock-type-face)
438808a998aa Improved extra-headers method for CVS.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 95043
diff changeset
1062 ;;(propertize "ADD CODE TO PRINT THE BRANCH NAME\n"
438808a998aa Improved extra-headers method for CVS.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 95043
diff changeset
1063 ;; 'face 'font-lock-warning-face)
438808a998aa Improved extra-headers method for CVS.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 95043
diff changeset
1064 )))
94210
7cc87e1801a6 (vc-cvs-status-extra-headers): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94120
diff changeset
1065
50453
e499daf7fb22 (vc-cvs-get-entries): New function that uses the right coding system for
André Spiegel <spiegel@gnu.org>
parents: 50321
diff changeset
1066 (defun vc-cvs-get-entries (dir)
e499daf7fb22 (vc-cvs-get-entries): New function that uses the right coding system for
André Spiegel <spiegel@gnu.org>
parents: 50321
diff changeset
1067 "Insert the CVS/Entries file from below DIR into the current buffer.
e499daf7fb22 (vc-cvs-get-entries): New function that uses the right coding system for
André Spiegel <spiegel@gnu.org>
parents: 50321
diff changeset
1068 This function ensures that the correct coding system is used for that,
e499daf7fb22 (vc-cvs-get-entries): New function that uses the right coding system for
André Spiegel <spiegel@gnu.org>
parents: 50321
diff changeset
1069 which may not be the one that is used for the files' contents.
e499daf7fb22 (vc-cvs-get-entries): New function that uses the right coding system for
André Spiegel <spiegel@gnu.org>
parents: 50321
diff changeset
1070 CVS/Entries should only be accessed through this function."
e499daf7fb22 (vc-cvs-get-entries): New function that uses the right coding system for
André Spiegel <spiegel@gnu.org>
parents: 50321
diff changeset
1071 (let ((coding-system-for-read (or file-name-coding-system
e499daf7fb22 (vc-cvs-get-entries): New function that uses the right coding system for
André Spiegel <spiegel@gnu.org>
parents: 50321
diff changeset
1072 default-file-name-coding-system)))
e499daf7fb22 (vc-cvs-get-entries): New function that uses the right coding system for
André Spiegel <spiegel@gnu.org>
parents: 50321
diff changeset
1073 (vc-insert-file (expand-file-name "CVS/Entries" dir))))
57913
f5d7d9bbc021 (vc-cvs-annotate-command): Delete extraneous lines from beginning of buffer.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 54465
diff changeset
1074
43447
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1075 (defun vc-cvs-valid-symbolic-tag-name-p (tag)
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1076 "Return non-nil if TAG is a valid symbolic tag name."
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1077 ;; According to the CVS manual, a valid symbolic tag must start with
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1078 ;; an uppercase or lowercase letter and can contain uppercase and
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1079 ;; lowercase letters, digits, `-', and `_'.
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1080 (and (string-match "^[a-zA-Z]" tag)
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1081 (not (string-match "[^a-z0-9A-Z-_]" tag))))
44436
f9db51bb423b (vc-cvs-checkin): Pass the required argument to `error'.
Sam Steingold <sds@gnu.org>
parents: 44197
diff changeset
1082
85139
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 84583
diff changeset
1083 (defun vc-cvs-valid-revision-number-p (tag)
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 84583
diff changeset
1084 "Return non-nil if TAG is a valid revision number."
44462
6eb10924e77f (vc-cvs-valid-version-number-p): New function.
Sam Steingold <sds@gnu.org>
parents: 44436
diff changeset
1085 (and (string-match "^[0-9]" tag)
6eb10924e77f (vc-cvs-valid-version-number-p): New function.
Sam Steingold <sds@gnu.org>
parents: 44436
diff changeset
1086 (not (string-match "[^0-9.]" tag))))
43447
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1087
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1088 (defun vc-cvs-parse-sticky-tag (match-type match-tag)
44436
f9db51bb423b (vc-cvs-checkin): Pass the required argument to `error'.
Sam Steingold <sds@gnu.org>
parents: 44197
diff changeset
1089 "Parse and return the sticky tag as a string.
43447
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1090 `match-data' is protected."
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1091 (let ((data (match-data))
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1092 (tag)
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1093 (type (cond ((string= match-type "D") 'date)
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1094 ((string= match-type "T")
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1095 (if (vc-cvs-valid-symbolic-tag-name-p match-tag)
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1096 'symbolic-name
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1097 'revision-number))
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1098 (t nil))))
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1099 (unwind-protect
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1100 (progn
44436
f9db51bb423b (vc-cvs-checkin): Pass the required argument to `error'.
Sam Steingold <sds@gnu.org>
parents: 44197
diff changeset
1101 (cond
46163
426c8cf1a3df Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents: 45255
diff changeset
1102 ;; Sticky Date tag. Convert to a proper date value (`encode-time')
43447
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1103 ((eq type 'date)
44436
f9db51bb423b (vc-cvs-checkin): Pass the required argument to `error'.
Sam Steingold <sds@gnu.org>
parents: 44197
diff changeset
1104 (string-match
f9db51bb423b (vc-cvs-checkin): Pass the required argument to `error'.
Sam Steingold <sds@gnu.org>
parents: 44197
diff changeset
1105 "\\([0-9]+\\)\\.\\([0-9]+\\)\\.\\([0-9]+\\)\\.\\([0-9]+\\)\\.\\([0-9]+\\)\\.\\([0-9]+\\)"
43447
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1106 match-tag)
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1107 (let* ((year-tmp (string-to-number (match-string 1 match-tag)))
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1108 (month (string-to-number (match-string 2 match-tag)))
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1109 (day (string-to-number (match-string 3 match-tag)))
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1110 (hour (string-to-number (match-string 4 match-tag)))
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1111 (min (string-to-number (match-string 5 match-tag)))
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1112 (sec (string-to-number (match-string 6 match-tag)))
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1113 ;; Years 0..68 are 2000..2068.
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1114 ;; Years 69..99 are 1969..1999.
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1115 (year (+ (cond ((> 69 year-tmp) 2000)
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1116 ((> 100 year-tmp) 1900)
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1117 (t 0))
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1118 year-tmp)))
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1119 (setq tag (encode-time sec min hour day month year))))
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1120 ;; Sticky Tag name or revision number
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1121 ((eq type 'symbolic-name) (setq tag match-tag))
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1122 ((eq type 'revision-number) (setq tag match-tag))
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1123 ;; Default is no sticky tag at all
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1124 (t nil))
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1125 (cond ((eq vc-cvs-sticky-tag-display nil) nil)
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1126 ((eq vc-cvs-sticky-tag-display t)
44436
f9db51bb423b (vc-cvs-checkin): Pass the required argument to `error'.
Sam Steingold <sds@gnu.org>
parents: 44197
diff changeset
1127 (cond ((eq type 'date) (format-time-string
43447
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1128 vc-cvs-sticky-date-format-string
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1129 tag))
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1130 ((eq type 'symbolic-name) tag)
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1131 ((eq type 'revision-number) tag)
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1132 (t nil)))
44436
f9db51bb423b (vc-cvs-checkin): Pass the required argument to `error'.
Sam Steingold <sds@gnu.org>
parents: 44197
diff changeset
1133 ((functionp vc-cvs-sticky-tag-display)
43447
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1134 (funcall vc-cvs-sticky-tag-display tag type))
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1135 (t nil)))
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1136
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1137 (set-match-data data))))
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1138
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
1139 (defun vc-cvs-parse-entry (file &optional set-state)
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
1140 "Parse a line from CVS/Entries.
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
1141 Compare modification time to that of the FILE, set file properties
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
1142 accordingly. However, `vc-state' is set only if optional arg SET-STATE
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
1143 is non-nil."
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
1144 (cond
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
1145 ;; entry for a "locally added" file (not yet committed)
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
1146 ((looking-at "/[^/]+/0/")
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
1147 (vc-file-setprop file 'vc-checkout-time 0)
85139
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 84583
diff changeset
1148 (vc-file-setprop file 'vc-working-revision "0")
93124
97c5b398eee4 * vc-hooks.el (vc-default-mode-line-string): Add case for added files.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93118
diff changeset
1149 (if set-state (vc-file-setprop file 'vc-state 'added)))
33560
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
1150 ;; normal entry
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
1151 ((looking-at
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
1152 (concat "/[^/]+"
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
1153 ;; revision
da206bbad86b Functions reordered.
André Spiegel <spiegel@gnu.org>
parents: 33554
diff changeset
1154 "/\\([^/]*\\)"
50321
17ff9d10125f (vc-cvs-parse-entry): Make sure a file with conflicts
Andreas Schwab <schwab@suse.de>
parents: 49822
diff changeset
1155 ;; timestamp and optional conflict field
17ff9d10125f (vc-cvs-parse-entry): Make sure a file with conflicts
Andreas Schwab <schwab@suse.de>
parents: 49822
diff changeset
1156 "/\\([^/]*\\)/"
43447
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1157 ;; options
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1158 "\\([^/]*\\)/"
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1159 ;; sticky tag
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1160 "\\(.\\|\\)" ;Sticky tag type (date or tag name, could be empty)
79cf46e34420 Patch by Martin.Lorentzson@telia.com.
André Spiegel <spiegel@gnu.org>
parents: 42657
diff changeset
1161 "\\(.*\\)")) ;Sticky tag
85139
8ba0e30716a5 Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 84583
diff changeset
1162 (vc-file-setprop file 'vc-working-revision (match-string 1))
44104
985526b08270 (vc-cvs-registered, vc-cvs-dir-state-heuristic):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 44005
diff changeset
1163 (vc-file-setprop file 'vc-cvs-sticky-tag
57913
f5d7d9bbc021 (vc-cvs-annotate-command): Delete extraneous lines from beginning of buffer.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 54465
diff changeset
1164 (vc-cvs-parse-sticky-tag (match-string 4)
52624
2b71ed49b8c6 (vc-cvs-parse-entry): Don't require parse-time, because it's
André Spiegel <spiegel@gnu.org>
parents: 52602
diff changeset
1165 (match-string 5)))
52602
04c9b596cce6 (vc-cvs-parse-entry): Restore the code to compare time stamps
André Spiegel <spiegel@gnu.org>
parents: 52401
diff changeset
1166 ;; Compare checkout time and modification time.
04c9b596cce6 (vc-cvs-parse-entry): Restore the code to compare time stamps
André Spiegel <spiegel@gnu.org>
parents: 52401
diff changeset
1167 ;; This is intentionally different from the algorithm that CVS uses
52624
2b71ed49b8c6 (vc-cvs-parse-entry): Don't require parse-time, because it's
André Spiegel <spiegel@gnu.org>
parents: 52602
diff changeset
1168 ;; (which is based on textual comparison), because there can be problems
52602
04c9b596cce6 (vc-cvs-parse-entry): Restore the code to compare time stamps
André Spiegel <spiegel@gnu.org>
parents: 52401
diff changeset
1169 ;; generating a time string that looks exactly like the one from CVS.
105324
2701a9aa1147 (vc-cvs-parse-entry): Be more careful with the match-data. (Bug#4555).
Glenn Morris <rgm@gnu.org>
parents: 105010
diff changeset
1170 (let* ((time (match-string 2))
2701a9aa1147 (vc-cvs-parse-entry): Be more careful with the match-data. (Bug#4555).
Glenn Morris <rgm@gnu.org>
parents: 105010
diff changeset
1171 (mtime (nth 5 (file-attributes file)))
2701a9aa1147 (vc-cvs-parse-entry): Be more careful with the match-data. (Bug#4555).
Glenn Morris <rgm@gnu.org>
parents: 105010
diff changeset
1172 (parsed-time (progn (require 'parse-time)
2701a9aa1147 (vc-cvs-parse-entry): Be more careful with the match-data. (Bug#4555).
Glenn Morris <rgm@gnu.org>
parents: 105010
diff changeset
1173 (parse-time-string (concat time " +0000")))))
2701a9aa1147 (vc-cvs-parse-entry): Be more careful with the match-data. (Bug#4555).
Glenn Morris <rgm@gnu.org>
parents: 105010
diff changeset
1174 (cond ((and (not (string-match "\\+" time))
2701a9aa1147 (vc-cvs-parse-entry): Be more careful with the match-data. (Bug#4555).
Glenn Morris <rgm@gnu.org>
parents: 105010
diff changeset
1175 (car parsed-time)
2701a9aa1147 (vc-cvs-parse-entry): Be more careful with the match-data. (Bug#4555).
Glenn Morris <rgm@gnu.org>
parents: 105010
diff changeset
1176 (equal mtime (apply 'encode-time parsed-time)))
2701a9aa1147 (vc-cvs-parse-entry): Be more careful with the match-data. (Bug#4555).
Glenn Morris <rgm@gnu.org>
parents: 105010
diff changeset
1177 (vc-file-setprop file 'vc-checkout-time mtime)
2701a9aa1147 (vc-cvs-parse-entry): Be more careful with the match-data. (Bug#4555).
Glenn Morris <rgm@gnu.org>
parents: 105010
diff changeset
1178 (if set-state (vc-file-setprop file 'vc-state 'up-to-date)))
2701a9aa1147 (vc-cvs-parse-entry): Be more careful with the match-data. (Bug#4555).
Glenn Morris <rgm@gnu.org>
parents: 105010
diff changeset
1179 (t
2701a9aa1147 (vc-cvs-parse-entry): Be more careful with the match-data. (Bug#4555).
Glenn Morris <rgm@gnu.org>
parents: 105010
diff changeset
1180 (vc-file-setprop file 'vc-checkout-time 0)
2701a9aa1147 (vc-cvs-parse-entry): Be more careful with the match-data. (Bug#4555).
Glenn Morris <rgm@gnu.org>
parents: 105010
diff changeset
1181 (if set-state (vc-file-setprop file 'vc-state 'edited))))))))
44436
f9db51bb423b (vc-cvs-checkin): Pass the required argument to `error'.
Sam Steingold <sds@gnu.org>
parents: 44197
diff changeset
1182
78359
2dd5d799a16d * vc-git.el: (vc-directory-exclusion-list, vc-handled-backends):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 78236
diff changeset
1183 ;; Completion of revision names.
2dd5d799a16d * vc-git.el: (vc-directory-exclusion-list, vc-handled-backends):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 78236
diff changeset
1184 ;; Just so I don't feel like I'm duplicating code from pcl-cvs, I'll use
2dd5d799a16d * vc-git.el: (vc-directory-exclusion-list, vc-handled-backends):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 78236
diff changeset
1185 ;; `cvs log' so I can list all the revision numbers rather than only
2dd5d799a16d * vc-git.el: (vc-directory-exclusion-list, vc-handled-backends):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 78236
diff changeset
1186 ;; tag names.
2dd5d799a16d * vc-git.el: (vc-directory-exclusion-list, vc-handled-backends):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 78236
diff changeset
1187
2dd5d799a16d * vc-git.el: (vc-directory-exclusion-list, vc-handled-backends):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 78236
diff changeset
1188 (defun vc-cvs-revision-table (file)
104596
5bce9145b1cc * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
Michael Albinus <michael.albinus@gmx.de>
parents: 104262
diff changeset
1189 (let (process-file-side-effects
5bce9145b1cc * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
Michael Albinus <michael.albinus@gmx.de>
parents: 104262
diff changeset
1190 (default-directory (file-name-directory file))
78359
2dd5d799a16d * vc-git.el: (vc-directory-exclusion-list, vc-handled-backends):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 78236
diff changeset
1191 (res nil))
2dd5d799a16d * vc-git.el: (vc-directory-exclusion-list, vc-handled-backends):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 78236
diff changeset
1192 (with-temp-buffer
2dd5d799a16d * vc-git.el: (vc-directory-exclusion-list, vc-handled-backends):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 78236
diff changeset
1193 (vc-cvs-command t nil file "log")
2dd5d799a16d * vc-git.el: (vc-directory-exclusion-list, vc-handled-backends):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 78236
diff changeset
1194 (goto-char (point-min))
2dd5d799a16d * vc-git.el: (vc-directory-exclusion-list, vc-handled-backends):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 78236
diff changeset
1195 (when (re-search-forward "^symbolic names:\n" nil t)
2dd5d799a16d * vc-git.el: (vc-directory-exclusion-list, vc-handled-backends):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 78236
diff changeset
1196 (while (looking-at "^ \\(.*\\): \\(.*\\)")
2dd5d799a16d * vc-git.el: (vc-directory-exclusion-list, vc-handled-backends):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 78236
diff changeset
1197 (push (cons (match-string 1) (match-string 2)) res)
2dd5d799a16d * vc-git.el: (vc-directory-exclusion-list, vc-handled-backends):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 78236
diff changeset
1198 (forward-line 1)))
2dd5d799a16d * vc-git.el: (vc-directory-exclusion-list, vc-handled-backends):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 78236
diff changeset
1199 (while (re-search-forward "^revision \\([0-9.]+\\)" nil t)
2dd5d799a16d * vc-git.el: (vc-directory-exclusion-list, vc-handled-backends):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 78236
diff changeset
1200 (push (match-string 1) res))
2dd5d799a16d * vc-git.el: (vc-directory-exclusion-list, vc-handled-backends):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 78236
diff changeset
1201 res)))
2dd5d799a16d * vc-git.el: (vc-directory-exclusion-list, vc-handled-backends):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 78236
diff changeset
1202
85458
119299b8a040 (vc-cvs-revision-completion-table): Make it work when the
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85139
diff changeset
1203 (defun vc-cvs-revision-completion-table (files)
119299b8a040 (vc-cvs-revision-completion-table): Make it work when the
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85139
diff changeset
1204 (lexical-let ((files files)
78359
2dd5d799a16d * vc-git.el: (vc-directory-exclusion-list, vc-handled-backends):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 78236
diff changeset
1205 table)
2dd5d799a16d * vc-git.el: (vc-directory-exclusion-list, vc-handled-backends):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 78236
diff changeset
1206 (setq table (lazy-completion-table
85458
119299b8a040 (vc-cvs-revision-completion-table): Make it work when the
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85139
diff changeset
1207 table (lambda () (vc-cvs-revision-table (car files)))))
78359
2dd5d799a16d * vc-git.el: (vc-directory-exclusion-list, vc-handled-backends):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 78236
diff changeset
1208 table))
95524
75b22805a854 (vc-cvs-status-extra-headers): Remove extraneous newlines.
Sam Steingold <sds@gnu.org>
parents: 95443
diff changeset
1209
78359
2dd5d799a16d * vc-git.el: (vc-directory-exclusion-list, vc-handled-backends):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 78236
diff changeset
1210
31384
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
1211 (provide 'vc-cvs)
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
1212
81821
0d37b602a4f0 Require CL.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81820
diff changeset
1213 ;; arch-tag: 60e1402a-aa53-4607-927a-cf74f144b432
31384
f6cb7dfe5e7c (vc-cvs-show-log-entry): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
1214 ;;; vc-cvs.el ends here