summaryrefslogtreecommitdiffstats
path: root/usr.bin/cvs/status.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* zap unused vars;xsa2005-08-081-5/+2
|
* use LP_NOTICE instead of LP_INFO where appropriate;xsa2005-07-271-2/+2
|
* use the cf_name field of the CVSFILE struct instead of using the oldjoris2005-07-221-2/+2
| | | | | | | | CVS_FILE_NAME macro. This macro used to be nifty because of all the referencing for the names, but since we don't do that anymore and use cf_name directly... byebye CVS_FILE_NAME() okay xsa@
* print existing tags if any (-v); long time ago Ok joris@.xsa2005-07-191-4/+25
|
* more use of cvs_rcs_getpath();xsa2005-07-141-12/+2
|
* no need to declare the verbosity var here as it is already done in cvs.h;xsa2005-07-101-3/+1
|
* handle -Q correctly; Ok joris@.xsa2005-07-081-6/+14
|
* if a file has been locally added, output correct info! Ok joris@.xsa2005-07-081-7/+13
|
* hrmz spaces...xsa2005-07-081-2/+2
|
* display in local mode only the mtime of a file stored in the Entries file;xsa2005-07-081-2/+16
| | | | Ok joris@.
* more snprintf(3) checks, check against the correctjoris2005-07-071-4/+13
| | | | | | size of the buffer, close RCSFILE on error. ok xsa@
* add info message when examining directories; Ok joris@.xsa2005-07-071-2/+7
|
* snprintf(3) checks.joris2005-07-071-3/+7
| | | | ok xsa@
* add comment;xsa2005-07-071-2/+2
|
* display what we should in case the file is unknown to cvs. Ok joris@.xsa2005-07-071-13/+23
|
* correct file status strings;xsa2005-07-061-4/+4
|
* correct ouput to match gnu/usr.bin/cvs; more to come.xsa2005-07-051-8/+9
| | | | ok joris@.
* `No' -> `no' in output; matches gnu/usr.bin/cvs output;xsa2005-07-051-2/+2
|
* add missing method check in pre_exec handler ... spotted by joris@.xsa2005-06-301-3/+6
| | | | options can be sent to server now without making it go crazy..
* missing \n in server-side output;xsa2005-06-301-1/+2
|
* match output with the one from GNU cvs.joris2005-06-251-9/+3
|
* headers ordering (alphabetically) and cleanup, from mbalmer@ and myself;xsa2005-05-311-3/+3
|
* Merge the cvs_cmd and cvs_cmd_info structures and add the necessaryjfb2005-05-241-40/+53
| | | | | | | 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-8/+13
| | | | ok jfb@, xsa@
* no need to query the Entries line for files anymore and a bit of cleanupjfb2005-04-271-21/+10
|
* 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@
* thought i had committed that earlier;snprintf return value check; joris okxsa2005-04-161-2/+10
|
* make sure we send the correct stuff for newly added files thatjoris2005-04-161-1/+2
| | | | are not commited yet.
* handle files which have been lost or that have no associated entryjfb2005-04-121-8/+21
| | | | | | correctly when acting in local mode spotted by joris@
* * 'Up to date' --> 'Up-to-date', and add the 'Lost' status stringjfb2005-04-121-51/+85
| | | | | * first stab at cvs_status_local(), which will run the command in local mode or remotely when acting as server (not hooked yet)
* introduce our own set of error codes used by the commands to reportjoris2005-04-121-5/+5
| | | | | | 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-2/+2
| | | | ok jfb@
* first round of EX_* exit codes removal; ok joris@.xsa2005-04-031-2/+2
|
* move all the client commands to the new command framework.joris2005-03-301-56/+28
| | | | | | eliminates a lot of duplicate code. ok jfb@
* fix a variety of things i found at coverity. ok joris@tedu2005-03-261-2/+3
|
* Many improvements to the RCS support:jfb2005-02-271-2/+2
| | | | | | | | | | | | | - make it possible to specify creation and the file mode in rcs_open() - implicitly write the contents to disk on rcs_close() if the RCS handle has been changed - fix a bug in the output of the `expand' keyword - add functions to retrieve and modify the expansion mode - rcs_parse() shouldn't be available to the outside - empty string instead of `(null)' if there is no description ok Joris
* the status command now supports the same arguments as its gnu cvsjfb2005-01-061-5/+19
| | | | counterpart (-lRv)
* modify the directory handling portion to behave like the one in add.c,jfb2004-12-211-3/+12
| | | | | 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-56/+63
| | | | checking on all the protocol calls
* less whitespace, more pretty. ok jfbtedu2004-12-071-16/+11
|
* tighten vertical spacing for else; jfb okderaadt2004-12-061-9/+5
|
* Rewrite the internals of the file management code so that we do not keepjfb2004-11-261-15/+14
| | | | | | a full path to each file we load, and cache file names so we can have multiple references to a single name. This saves a lot of memory on large trees such as /usr/src, especially on 'Makefile', 'README' and such.
* Plug in the handler for `cvs status'jfb2004-07-301-0/+189