cvs-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Cvs-cvs] ccvs/doc ChangeLog cvs.texinfo stamp-vti versio...


From: Larry Jones
Subject: [Cvs-cvs] ccvs/doc ChangeLog cvs.texinfo stamp-vti versio...
Date: Tue, 15 Dec 2009 23:17:34 +0000

CVSROOT:        /cvsroot/cvs
Module name:    ccvs
Changes by:     Larry Jones <scjones>   09/12/15 23:17:34

Modified files:
        doc            : ChangeLog cvs.texinfo stamp-vti version.texi 

Log message:
        merge changes from cvs1-11-x-branch

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/ccvs/doc/ChangeLog?cvsroot=cvs&r1=1.992&r2=1.993
http://cvs.savannah.gnu.org/viewcvs/ccvs/doc/cvs.texinfo?cvsroot=cvs&r1=1.710&r2=1.711
http://cvs.savannah.gnu.org/viewcvs/ccvs/doc/stamp-vti?cvsroot=cvs&r1=1.215&r2=1.216
http://cvs.savannah.gnu.org/viewcvs/ccvs/doc/version.texi?cvsroot=cvs&r1=1.217&r2=1.218

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/cvs/ccvs/doc/ChangeLog,v
retrieving revision 1.992
retrieving revision 1.993
diff -u -b -r1.992 -r1.993
--- ChangeLog   12 Nov 2009 02:27:30 -0000      1.992
+++ ChangeLog   15 Dec 2009 23:17:34 -0000      1.993
@@ -1,3 +1,9 @@
+2009-12-15  Larry Jones  <address@hidden>
+
+       * cvs.texinfo (commitinfo): Add example.
+       * cvs.texinfo: Minor tweaks for consistency.
+       * cvs.1, stamp-vti, version.texi: Regenerated.
+
 2009-11-11  Derek Price  <address@hidden>
 
        * cvs.texinfo (Updating Commit Files): Update default taginfo string.

Index: cvs.texinfo
===================================================================
RCS file: /cvsroot/cvs/ccvs/doc/cvs.texinfo,v
retrieving revision 1.710
retrieving revision 1.711
diff -u -b -r1.710 -r1.711
--- cvs.texinfo 12 Nov 2009 02:27:31 -0000      1.710
+++ cvs.texinfo 15 Dec 2009 23:17:34 -0000      1.711
@@ -2663,7 +2663,7 @@
 @sc{cvs} with the necessary arguments:
 
 @example
-#! /bin/sh
+#!/bin/sh
 exec /usr/local/bin/cvs -f \
      --allow-root=/repo1 \
      --allow-root=/repo2 \
@@ -14425,6 +14425,41 @@
 @c general CVS security in "Password authentication
 @c security" (the bit which is not pserver-specific).
 
+The following is a little silly example of a
address@hidden file and a verification script
+that prevents commiting files named @samp{thumbs.db}
+(case insensitive).
+
+The script @file{/usr/cvssupport/names.verify} is used to
+evaluate the names of the files being committed.
+
address@hidden
+#!/bin/sh
+#
+#       names.verify repos file...
+#
+#  Verifies that the file names are all acceptable
+#
+shift
+for file
+do
+    case "$file" in
+    [Tt][Hh][Uu][Mm][Bb][Ss].[Dd][Bb])
+        echo "Disallowed file name: $file"
+        exit 1
+        ;;
+    esac
+done
+exit 0
address@hidden example
+
+The @file{commitinfo} file contains this line:
+
address@hidden
+^tc     /usr/cvssupport/names.verify
address@hidden example
+
+
 @c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 @node verifymsg
 @appendixsubsec Verifying log messages

Index: stamp-vti
===================================================================
RCS file: /cvsroot/cvs/ccvs/doc/stamp-vti,v
retrieving revision 1.215
retrieving revision 1.216
diff -u -b -r1.215 -r1.216
--- stamp-vti   12 Nov 2009 02:27:31 -0000      1.215
+++ stamp-vti   15 Dec 2009 23:17:34 -0000      1.216
@@ -1,4 +1,4 @@
address@hidden UPDATED 11 November 2009
address@hidden UPDATED-MONTH November 2009
address@hidden UPDATED 15 December 2009
address@hidden UPDATED-MONTH December 2009
 @set EDITION 1.12.13.1
 @set VERSION 1.12.13.1

Index: version.texi
===================================================================
RCS file: /cvsroot/cvs/ccvs/doc/version.texi,v
retrieving revision 1.217
retrieving revision 1.218
diff -u -b -r1.217 -r1.218
--- version.texi        12 Nov 2009 02:27:31 -0000      1.217
+++ version.texi        15 Dec 2009 23:17:34 -0000      1.218
@@ -1,4 +1,4 @@
address@hidden UPDATED 11 November 2009
address@hidden UPDATED-MONTH November 2009
address@hidden UPDATED 15 December 2009
address@hidden UPDATED-MONTH December 2009
 @set EDITION 1.12.13.1
 @set VERSION 1.12.13.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]