summaryrefslogtreecommitdiffstats
path: root/usr.bin/cvs/annotate.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* remove trailing whitespacesjoris2005-07-071-2/+2
| | | | from deraadt@
* start server support for annotate command + some cleanup; ok joris@.xsa2005-07-041-24/+67
|
* headers ordering (alphabetically) and cleanup, from mbalmer@ and myself;xsa2005-05-311-4/+3
|
* -D and -r can be used simultaneously, pointed out by marc@ and thusxsa2005-05-301-7/+1
| | | | | | | backout my previous change + spotted another case in the annotate command... ok joris@
* correct error message...xsa2005-05-291-2/+2
|
* Merge the cvs_cmd and cvs_cmd_info structures and add the necessaryjfb2005-05-241-10/+18
| | | | | | | fields to hook local versions of the commands. This needs to go in before it gets any bigger ok joris
* correct wrong error code usage.joris2005-05-201-1/+8
| | | | ok jfb@, xsa@
* make the handlers static and remove local code that will go in anotherjfb2005-05-201-42/+28
| | | | function
* Modify the CVSFILE structure using a union to keep information aboutjfb2005-04-181-7/+2
| | | | | | | | | both files and directories. We can now keep the revision number for regular files, and don't need to fetch the appropriate entry in the command callbacks. This saves a huge amount of parsing on Entries files. ok joris@
* use the option string from the cvs_cmd entry instead of keeping ajfb2005-04-131-2/+2
| | | | | | hardcoded copy ok joris@
* introduce our own set of error codes used by the commands to reportjoris2005-04-121-7/+7
| | | | | | what exactly went wrong in case of an error. ok jfb@
* don't include sysexits.h now we don't use those error codesjoris2005-04-111-2/+1
| | | | anymore.
* remove EX_USAGE error codesjoris2005-04-111-3/+3
| | | | ok jfb@
* first round of EX_* exit codes removal; ok joris@.xsa2005-04-031-4/+4
|
* move all the client commands to the new command framework.joris2005-03-301-61/+35
| | | | | | eliminates a lot of duplicate code. ok jfb@
* fix the annotate usage (there is no -F flag) and add the missing bitsjfb2005-01-131-3/+16
| | | | | | so the -r and -f arguments are supported, and complain if both -D and -r are given. GNU CVS silently accepts to have both specified, but does not produce output as a result.
* modify the directory handling portion to behave like the one in add.c,jfb2004-12-211-7/+10
| | | | | which does not attempt to send data when running on a local repository. This will be needed to support local repository access
* First attempt at syncing the command code and doing a lot more errorjfb2004-12-141-45/+52
| | | | checking on all the protocol calls
* support the 'annotate' command, will need some polishingjfb2004-12-091-0/+191