cvs-cvs
[Top][All Lists]
Advanced

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

[Cvs-cvs] ccvs/doc ChangeLog cvs.1 cvs.texinfo stamp-vti ... [cvs1-11-x-


From: Larry Jones
Subject: [Cvs-cvs] ccvs/doc ChangeLog cvs.1 cvs.texinfo stamp-vti ... [cvs1-11-x-branch]
Date: Tue, 15 Dec 2009 23:13:11 +0000

CVSROOT:        /cvsroot/cvs
Module name:    ccvs
Branch:         cvs1-11-x-branch
Changes by:     Larry Jones <scjones>   09/12/15 23:13:10

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

Log message:
        * cvs.texinfo (commitinfo): Add example.
        * cvs.texinfo: Minor tweaks for consistency.
        * cvs.1, stamp-vti, version.texi: Regenerated.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/ccvs/doc/ChangeLog?cvsroot=cvs&only_with_tag=cvs1-11-x-branch&r1=1.721.2.138&r2=1.721.2.139
http://cvs.savannah.gnu.org/viewcvs/ccvs/doc/cvs.1?cvsroot=cvs&only_with_tag=cvs1-11-x-branch&r1=1.1.2.30&r2=1.1.2.31
http://cvs.savannah.gnu.org/viewcvs/ccvs/doc/cvs.texinfo?cvsroot=cvs&only_with_tag=cvs1-11-x-branch&r1=1.545.2.78&r2=1.545.2.79
http://cvs.savannah.gnu.org/viewcvs/ccvs/doc/stamp-vti?cvsroot=cvs&only_with_tag=cvs1-11-x-branch&r1=1.19.2.107&r2=1.19.2.108
http://cvs.savannah.gnu.org/viewcvs/ccvs/doc/version.texi?cvsroot=cvs&only_with_tag=cvs1-11-x-branch&r1=1.20.2.107&r2=1.20.2.108

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/cvs/ccvs/doc/ChangeLog,v
retrieving revision 1.721.2.138
retrieving revision 1.721.2.139
diff -u -b -r1.721.2.138 -r1.721.2.139
--- ChangeLog   22 Jul 2009 15:00:58 -0000      1.721.2.138
+++ ChangeLog   15 Dec 2009 23:13:09 -0000      1.721.2.139
@@ -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-07-22  Larry Jones  <address@hidden>
 
        * cvs.texinfo (history output, history examples): New.

Index: cvs.1
===================================================================
RCS file: /cvsroot/cvs/ccvs/doc/cvs.1,v
retrieving revision 1.1.2.30
retrieving revision 1.1.2.31
diff -u -b -r1.1.2.30 -r1.1.2.31
--- cvs.1       22 Jul 2009 15:00:58 -0000      1.1.2.30
+++ cvs.1       15 Dec 2009 23:13:09 -0000      1.1.2.31
@@ -2925,8 +2925,6 @@
 .IP "" 2
 M 2009-07-21 20:27 +0000 bach  1.5 frontend.c yoyodyne/tc     == ~/tc
 .IP "" 2
-T 2009-07-21 20:27 +0000 bach  rel_0_3     [yoyodyne/tc:A]
-.IP "" 2
 T 2009-07-21 20:27 +0000 bach  yoyodyne/tc [rel_0_3:A]
 .IP "" 2
 O 2009-07-21 20:28 +0000 cedar [rel_0_1] yoyodyne/*         =tc= <remote>/*

Index: cvs.texinfo
===================================================================
RCS file: /cvsroot/cvs/ccvs/doc/cvs.texinfo,v
retrieving revision 1.545.2.78
retrieving revision 1.545.2.79
diff -u -b -r1.545.2.78 -r1.545.2.79
--- cvs.texinfo 22 Jul 2009 15:00:59 -0000      1.545.2.78
+++ cvs.texinfo 15 Dec 2009 23:13:10 -0000      1.545.2.79
@@ -2381,7 +2381,7 @@
 @sc{cvs} with the necessary arguments:
 
 @example
-#! /bin/sh
+#!/bin/sh
 exec /usr/local/bin/cvs -f \
      --allow-root=/repo1 \
      --allow-root=/repo2 \
@@ -12948,6 +12948,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
@@ -13035,7 +13070,7 @@
 
 The following is a little silly example of a
 @file{verifymsg} file, together with the corresponding
address@hidden file, the log message template and an
address@hidden file, the log message template and a
 verification  script.  We begin with the log message template.
 We want to always record a bug-id number on the first
 line of the log message.  The rest of log message is

Index: stamp-vti
===================================================================
RCS file: /cvsroot/cvs/ccvs/doc/stamp-vti,v
retrieving revision 1.19.2.107
retrieving revision 1.19.2.108
diff -u -b -r1.19.2.107 -r1.19.2.108
--- stamp-vti   22 Jul 2009 15:00:59 -0000      1.19.2.107
+++ stamp-vti   15 Dec 2009 23:13:10 -0000      1.19.2.108
@@ -1,4 +1,4 @@
address@hidden UPDATED 22 July 2009
address@hidden UPDATED-MONTH July 2009
address@hidden UPDATED 15 December 2009
address@hidden UPDATED-MONTH December 2009
 @set EDITION 1.11.23.1
 @set VERSION 1.11.23.1

Index: version.texi
===================================================================
RCS file: /cvsroot/cvs/ccvs/doc/version.texi,v
retrieving revision 1.20.2.107
retrieving revision 1.20.2.108
diff -u -b -r1.20.2.107 -r1.20.2.108
--- version.texi        22 Jul 2009 15:01:00 -0000      1.20.2.107
+++ version.texi        15 Dec 2009 23:13:10 -0000      1.20.2.108
@@ -1,4 +1,4 @@
address@hidden UPDATED 22 July 2009
address@hidden UPDATED-MONTH July 2009
address@hidden UPDATED 15 December 2009
address@hidden UPDATED-MONTH December 2009
 @set EDITION 1.11.23.1
 @set VERSION 1.11.23.1




reply via email to

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