summaryrefslogtreecommitdiff
path: root/usr.bin/cvs/getlog.c
AgeCommit message (Collapse)Author
2007-02-22general includes cleanup sweep. ok joris@ niallo@Otto Moerbeek
2007-02-09remove the cvs_file_classify() `loud' argument, it was usedJoris Vink
in the old school days and serves no purpose what so ever now. otto@ mentioned this to me a while ago
2007-01-11in a remote setup:Joris Vink
do not connect to the remote server until we are sure all the options passed to the commands are valid. noticed by xsa@
2006-11-10fix -wXavier Santolaria
2006-11-08[-s states] and [-w logins] bits.Xavier Santolaria
2006-10-24bring back support for -h, -N, -R, and -t.Xavier Santolaria
OK joris@.
2006-07-07first part of opencvs remote, fairly useable on existing treesJoris Vink
although i advise against using it on real development trees for now. only a few commands work right so far: - commit - diff - status - log - update (partially working) if you feel like testing remote and run into bugs feel free to contact me, and please include a full trace (-t).
2006-06-19kill local and remote callback and just have one called fileproc.Joris Vink
we let the commands pass the correct function. all in preparation for remote.
2006-06-16in preparation for the new remote code, proto.h becomes obsolete.Joris Vink
2006-06-02various spelling fixesDavid Krause
2006-05-30change cvs_file_classify here to, forgot to commit thisJoris Vink
when i changed its arguments in the last commit.
2006-05-29add trace messages for debugging purposeJoris Vink
2006-05-29i forgot to handle directories inside the 'log' code,Joris Vink
which resulted in a very painfull segfault later on. found by reyk@
2006-05-28teach log how to handle the revisions passed on the command line.Joris Vink
the following now works: 'opencvs log -r1.5:1.15 foobar'
2006-05-28add basic 'cvs log' support.Joris Vink
2006-04-14- swap a hack for a slightly nicer hack using a global variable. this avoidsNiall O'Higgins
adding a really nasty hack to make some upcoming rlog fixes from joris work. ok joris@
2006-02-06- use bitwise flagsXavier Santolaria
- add missing option in remote handler
2006-01-30strerror() -> rcs_errstr() when passing rcs_errno as argument;Xavier Santolaria
2006-01-29RCS_PARSE_FULLY needed here too, as in rlog(1);Xavier Santolaria
2006-01-27more errors handling cleanup;Xavier Santolaria
2006-01-02#include's cleanup; ok joris@ niallo@.Xavier Santolaria
2005-12-30minor style nits;Xavier Santolaria
2005-12-30major cleanup of the functions handling the remote cvs protocol.Joris Vink
makes the code a lot more readable and understandable. ok xsa@ and niallo@
2005-12-22cvs_rcs_getpath() cannot fail anymore;Xavier Santolaria
2005-11-03output tweaks;Xavier Santolaria
2005-08-08zap unused var;Xavier Santolaria
2005-08-05minor KNF;Xavier Santolaria
2005-07-27use LP_NOTICE instead of LP_INFO where appropriate;Xavier Santolaria
2005-07-25KNF;Xavier Santolaria
2005-07-22use the cf_name field of the CVSFILE struct instead of using the oldJoris Vink
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@
2005-07-21<sys/param.h> is already included in "cvs.h", no need to duplicate;Xavier Santolaria
2005-07-19missing CF_IGNORE, CF_NOSYMS and CF_SORT flags.Joris Vink
gets the local mode of 'log' a bit closer to reality. problems noticed by deraadt@
2005-07-15if a file has been locally added and not committed, handle it with properXavier Santolaria
warning message;
2005-07-14use cvs_rcs_getpath();Xavier Santolaria
2005-07-11display warning message about an unknown file only if -Q is not specified;Xavier Santolaria
2005-07-11display info message only if -q is not specified;Xavier Santolaria
2005-07-07remove trailing whitespacesJoris Vink
from deraadt@
2005-07-01|| should && instead ...Xavier Santolaria
2005-07-01more output tweaks in server mode ..Xavier Santolaria
2005-07-01fix output when using in server mode; more to come ... ok jorisXavier Santolaria
2005-05-31headers ordering (alphabetically) and cleanup, from mbalmer@ and myself;Xavier Santolaria
2005-05-29add missing options in usage..Xavier Santolaria
2005-05-24Merge the cvs_cmd and cvs_cmd_info structures and add the necessaryJean-Francois Brousseau
fields to hook local versions of the commands. This needs to go in before it gets any bigger ok joris
2005-05-20correct wrong error code usage.Joris Vink
ok jfb@, xsa@
2005-05-20return CVS_EX_PROTO on protocol errorsJean-Francois Brousseau
ok joris
2005-05-19handle -t option locally too; joris okXavier Santolaria
2005-05-19- add missing flags for the log commandXavier Santolaria
- enable the -h -N -R -t options ok joris
2005-05-11missing CF_IGNORE flagJoris Vink
2005-04-18Modify the CVSFILE structure using a union to keep information aboutJean-Francois Brousseau
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@
2005-04-16more snprintf return value check; joris okXavier Santolaria