Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-05-31 | allow commit to ressurect added files that exist in Attic/ | Joris Vink | |
2006-05-30 | fill in the correct revision number we will want in file_rcsrev | Joris Vink | |
for each cvs_file struct, this will help us with sticky tags, commiting to branches and importing into existing repositories. | |||
2006-05-30 | the moment we are done commiting a removed file, move the RCS file | Joris Vink | |
into the Attic and out of our way. | |||
2006-05-28 | enable basic add command, only works on files right now. | Joris Vink | |
2006-05-28 | allow commands to shut up the output from cvs_file_classify | Joris Vink | |
if the commands want to output certain stuff themselfs | |||
2006-05-28 | teach opencvs ci how to commit files that have been added, | Joris Vink | |
opencvs can now commit modified files, removed files and added files. hip hip hurray! | |||
2006-05-28 | enable merging on update. if your file in your working copy | Joris Vink | |
has been modified by yourself and there is a newer revision we try and merge them together. if the merge fails and has conflicts it will mark them inside the file, you will need to resolve these by hand first before you will be able to commit your modified file. works transparent with gnu cvs, as it is suppose to. | |||
2006-05-27 | show which directory we are examining in our pre-commit checks. | Joris Vink | |
2006-05-27 | allow commands to respect the -l flag, if the -l flag is | Joris Vink | |
specified certain commands will not recurse into directories. at the same time introduce a method of specifying wether or not a command should look in the repository for files. | |||
2006-05-27 | dont allow commit to continue if the file that is being | Joris Vink | |
commited needs to be updated or merged first. | |||
2006-05-27 | commiting removed files now works | Joris Vink | |
2006-05-27 | commit the new opencvs code, i have been hacking on | Joris Vink | |
this for the past 2 weeks now and it should go in at the start of the hackathon so others can help out. this code is a lot safer, smarter, faster and best of all it is actually doing what it is suppose to do! basic checkout, update, status, diff and commit are working in local mode only. there is no support for any remote setups now. | |||
2006-04-14 | remove a metric buttload of excessive () | Theo de Raadt | |
no binary change; ok ray | |||
2006-04-01 | fix some bugs that lint discovered for us. | Joris Vink | |
ok niallo@ | |||
2006-03-16 | zap more unused variables. | Xavier Santolaria | |
2006-01-02 | #include's cleanup; ok joris@ niallo@. | Xavier Santolaria | |
2005-12-30 | major 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-22 | cvs_rcs_getpath() cannot fail anymore; | Xavier Santolaria | |
2005-12-21 | cvs_logmsg_open() and cvs_logmsg_get() cannot fail anymore; | Xavier Santolaria | |
2005-12-10 | switch to xmalloc stuff, me and xsa@ agreed on this a long | Joris Vink | |
time ago, but we were being held back by jfb. too bad for him. next step is to use fatal() through out the code for unrecoverable errors instead of trying to be all nice and fluffy and reach main() again. ok niallo@ and xsa@ | |||
2005-07-27 | use LP_NOTICE instead of LP_INFO where appropriate; | Xavier Santolaria | |
2005-07-25 | KNF; | Xavier Santolaria | |
2005-07-23 | rewrite of the file code. the previous one was just | Joris Vink | |
a mess and not clean. this code is much cleaner, faster, and uses less memory overall. tested by xsa@, brad@, Michael Knudsen, and myself. okay xsa@ | |||
2005-07-23 | correctly seperate added, modified and removed files for use in the | Joris Vink | |
construction of the log message in the editor. ok jfb@ | |||
2005-07-22 | use the cf_name field of the CVSFILE struct instead of using the old | Joris 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-19 | unbreak the commit command. | Joris Vink | |
2005-07-14 | use cvs_rcs_getpath(); | Xavier Santolaria | |
2005-07-12 | split this into cvs_commit_{remote,local}() functions; | Xavier Santolaria | |
ok jfb@ (Yes, Yes he IS back!!) | |||
2005-07-07 | remove trailing whitespaces | Joris Vink | |
from deraadt@ | |||
2005-05-31 | headers ordering (alphabetically) and cleanup, from mbalmer@ and myself; | Xavier Santolaria | |
2005-05-30 | don't forget to send the log message, this fixes the commit command. | Joris Vink | |
ok xsa@ | |||
2005-05-30 | handle -r option; ok joris@ | Xavier Santolaria | |
2005-05-24 | Merge the cvs_cmd and cvs_cmd_info structures and add the necessary | Jean-Francois Brousseau | |
fields to hook local versions of the commands. This needs to go in before it gets any bigger ok joris | |||
2005-05-20 | correct wrong error code usage. | Joris Vink | |
ok jfb@, xsa@ | |||
2005-05-20 | execute the command callback at the same time we are building | Joris Vink | |
the in-memory filelist. cuts down on execution time for larger trees. "put it in!" jfb@ | |||
2005-04-24 | don't send a Modified request and the file its contents when | Joris Vink | |
it has been removed. | |||
2005-04-24 | add missing CVS_CMD_ALLOWSPEC flag | Joris Vink | |
2005-04-19 | handle removed files as well when checking files to commit | Jean-Francois Brousseau | |
ok joris | |||
2005-04-19 | remove debug code | Joris Vink | |
2005-04-19 | make sure we pick up newly added files. | Joris Vink | |
2005-04-18 | Modify the CVSFILE structure using a union to keep information about | Jean-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-16 | missing cvs_ent_free(); joris ok | Xavier Santolaria | |
2005-04-15 | snprintf() return values checks; joris ok | Xavier Santolaria | |
2005-04-12 | introduce our own set of error codes used by the commands to report | Joris Vink | |
what exactly went wrong in case of an error. ok jfb@ | |||
2005-04-11 | don't include sysexits.h now we don't use those error codes | Joris Vink | |
anymore. | |||
2005-04-11 | remove EX_USAGE error codes | Joris Vink | |
ok jfb@ | |||
2005-04-03 | first round of EX_* exit codes removal; ok joris@. | Xavier Santolaria | |
2005-03-31 | fix prototype for cvs_commit_prepare() | Joris Vink | |
2005-03-30 | move all the client commands to the new command framework. | Joris Vink | |
eliminates a lot of duplicate code. ok jfb@ | |||
2005-03-29 | fix memleak | Joris Vink | |
ok jfb@ |