summaryrefslogtreecommitdiffstats
path: root/CVSROOT/log_accum.pl
Commit message (Collapse)AuthorAgeFilesLines
* Synch with src repo.des2004-06-051-5/+7
|
* Catch up to projects/peter2003-02-281-0/+2
|
* * Improve a debugging message.joe2002-08-181-3/+3
| | | | | | | * There was too much space (three lines) between the diffs in commit mails. This reduces it to one. Submitted by: fanf
* Populate the branch header in the email with the vendor branch forjoe2001-12-281-2/+8
| | | | imports.
* Remove some trailing whitespace.joe2001-12-131-3/+3
| | | | Submitted by: Jun Kuriyama <kuriyama@imgsrc.co.jp>
* Define $DIFF_BLOCK_TOTAL_LINES to restrict the maximum number ofjoe2001-12-031-3/+22
| | | | lines of diff in a commit email.
* When suppressing a diff because it's too large mention what size itjoe2001-12-031-3/+6
| | | | actually was.
* Add the ability to have diffs inserted into the commit email.joe2001-12-011-0/+73
| | | | Submitted by: jesper
* Move the code that calculates the previous revision number out intojoe2001-12-011-11/+22
| | | | its own subroutine ready for the diff code to use also.
* Add blank lines between subs for consistency.joe2001-12-011-0/+8
|
* Move the map that determines the names of the log files to use intojoe2001-11-301-49/+22
| | | | the configuration file.
* Add a 'cvs-projects' log file for the projects/ subtree.joe2001-11-301-0/+1
|
* Use the template headers from the config file instead of hard codingjoe2001-11-191-11/+3
| | | | them.
* Migrate the code that determines what the name of the committer isjoe2001-11-151-3/+1
| | | | to the configuration file creating a new config variable $COMMITTER.
* Remove all references to /home/ncvs; the CVSROOT env variable is sufficientjoe2001-11-151-1/+1
| | | | | | | | to determine the location now-a-days. Move the name of the exclude file into the configuration file. Partly Submitted by: alfred
* Move the names of some system tools into the config file.joe2001-11-151-3/+5
| | | | Submitted by: alfred
* Show who mail is being sent to.joe2001-11-151-2/+2
| | | | Submitted by: Jon Parise <jon@csh.rit.edu>
* Expand tabs into spaces in the email and log file so that everythingjoe2001-11-151-3/+7
| | | | | | | stays correctly lined up after indentation. Requested by: Dan Langille <dan@langille.org> Submitted by: tobez
* Whoops, reverse the sense of a test.joe2001-11-141-1/+1
| | | | Submitted by: tobez
* Clean up some syntax for clarity.joe2001-11-131-20/+13
| | | | Partly Submitted by: tobez
* Sort filenames so that entries in the generated email are notjoe2001-10-281-2/+2
| | | | dependant upon the order that the committer specified them.
* Make the 'To:' header configurable. (Defaulting to on, and offjoe2001-10-261-2/+3
| | | | for FreeBSD).
* Add a 'To:' header at email generation time.joe2001-10-261-2/+4
| | | | | | Sendmail automatically adds one but other MTA's, like postfix, don't. This should make for a more consistant email across different platforms.
* If a committer modifies more than one area of the tree in one commitjoe2001-10-261-9/+12
| | | | | | | cvs gives them the chance to enter different log messages for each area. If they do then it's really separate commits and so treat it as such, mailing separate emails and writing separate logs for each one.
* We don't fetch the list of email addresses from the temporary filejoe2001-10-261-1/+1
| | | | | that used to be used. Move the bit of code that gets them back into the bit-rotted commented out code block.
* Rip out the final references to internat.freebsd.org.joe2001-10-241-4/+2
| | | | Requested by: will
* Rewrite the email generation routine to feed the email through anjoe2001-10-231-10/+29
| | | | | | anonymous subroutine in the cfg.pm file if it is defined. This allows the administrator to add cvsweb URL's to the email, for instance, at time of generation.
* Clear up the handling of trailing blank lines.joe2001-10-231-3/+2
| | | | | | | All log file entries are now separated by three blank lines; previously only commits were, and directory creates weren't. Email messages now aren't terminated by two trailing blank lines.
* Indent the mail banner by a couple of characters so that it playsjoe2001-10-231-1/+1
| | | | | better with the commitlogs/, and correct the way that its new line is done.
* Move the mail header that carries the list of branches that werejoe2001-10-231-4/+3
| | | | committed to into the config file.
* Back out the last commit. Looking through the cvs source code it'sjoe2001-10-221-3/+3
| | | | | | | not safe to rely on CVS_USER just yet. It doesn't get cleared in normal mode, so it would be possible for a local user to pretend that someone else made a commit in the email (even though the repository itself was correct.)
* Canonicalise the way that we obtain the username of the committer,joe2001-10-221-3/+3
| | | | | | | | | | both in the access controls and in the log message generation. Use the CVS_USER environment variable if it's defined to obtain the true username. This is set by later versions of cvs (it's in 1.11.1p1), and gets around the problem of using pserver username aliases in CVSROOT/passwd. With this fix the committer's true username is checked and reported instead of the system one.
* Avoid getting bitten by filenames that have a ',' character in them.joe2001-09-241-5/+5
| | | | Bug spotted by: alex
* Remove mention of the word 'Attic' from commit mail deltas. They'rejoe2001-09-241-1/+1
| | | | internal to CVS and shouldn't be mentioned here.
* When working out what the previous revision was, for producing thejoe2001-09-241-3/+11
| | | | | delta for a removed file for instance, take into account branch points.
* Add revision deltas for added (new) and removed (dead) files tojoe2001-09-161-22/+99
| | | | | | the commit mail. Requested by: rwatson + others.
* Centralise the generation of temporary filenames instead of havingjoe2001-08-191-30/+27
| | | | it done within each individual script.
* The CVSROOT/scripts use a file, /tmp/#cvs.files.lastdir, to storejoe2001-08-191-1/+1
| | | | | the name of the last directory in a multidirectory commit. Move the definition of this to cfg.pm so that it's defined in one place.
* Add a comment noting that the last directory is written down byjoe2001-06-181-0/+2
| | | | commit_prep.pl
* Add a configuration option to enable the sending of commit mail onjoe2001-05-221-1/+1
| | | | directory creation.
* Migrate some more configuration entries to the config file.joe2001-05-221-48/+5
|
* Finally make the script run under the 'strict' pragma.joe2001-05-211-33/+41
|
* Still working towards this script being entirely strict.joe2001-05-211-10/+14
|
* Remove support for disabling the commit summary in the email andjoe2001-05-211-38/+14
| | | | | | | commitlogs. This was controlled by tweaking the $RCSIDINFO variable, where 0 = off, 1 = mail only, and 2 = both mail and commitlog. It looks like '1' was broken and so not used by anyone, and '0' isn't so useful (I'll re-add support if anyone moans enough ;)
* Use $DEBUG and $TMPDIR from cfg.pm.joe2001-05-201-15/+15
|
* Recently Maxim Sobolev <sobomax@FreeBSD.org> introduced an MFCjoe2001-05-121-0/+1
| | | | | | | | | | | | notification service driven from 'MFC after:' headers in the commit message. This commit adds 'MFC after:' into the rcstemplate and associated code to make sure that if it's used it's used correctly. Based upon code submitted by Maxim Sobolev <sobomax@FreeBSD.org>. Submitted by: sobomax
* Log 'cvs import' reports in the commit log files in CVSROOT/commitlogs.joe2001-05-071-1/+1
| | | | | They've never been logged here before by the looks of things, which seems a little strange.
* Add a couple of missing 'my' declarations.joe2001-04-241-5/+5
| | | | Tidy up a comment.
* Disable 'use strict'. We're not ready for that just yet!!! (It crept injoe2001-04-191-1/+1
| | | | | | from my test environment). Several dunce caps to: joe
* Declare some variables before use.joe2001-04-191-8/+12
|
OpenPOWER on IntegriCloud