Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-02-28 | Added the --delete-missing-args option to delete specified | Wayne Davison | 1 | -1/+7 | |
files on the receiver that don't exist on the sender. | |||||
2009-01-30 | We only need to send --stats to a remote receiver now. | Wayne Davison | 1 | -3/+2 | |
2009-01-28 | A few more improvements to the hostspec-parsing code. | Wayne Davison | 1 | -7/+8 | |
2009-01-28 | Fixed the parsing of IPv6 literal addresses with a username | Wayne Davison | 1 | -52/+67 | |
prefixed. Fixes bug #6067. | |||||
2009-01-14 | Send the --stats option for proper del-stats operation. | Wayne Davison | 1 | -1/+4 | |
2009-01-03 | Update the copyright year. | Wayne Davison | 1 | -2/+2 | |
2008-11-15 | Adding the --usermap/--groupmap/--chown options. | Wayne Davison | 1 | -0/+92 | |
2008-11-09 | Fixed a bunch of "warn_unused_result" compiler warnings. | Wayne Davison | 1 | -1/+2 | |
2008-10-15 | Adding hashtable debugging output (--debug=hash). | Wayne Davison | 1 | -1/+2 | |
2008-09-23 | Don't send a bogus "-" option to an older server if there were | Wayne Davison | 1 | -1/+2 | |
no short options specified. | |||||
2008-09-01 | Split up the ifuncs.h file into 3 .h files. | Wayne Davison | 1 | -1/+1 | |
2008-09-01 | Output numbers in 3-digit groups by default (e.g. 1,234,567). | Wayne Davison | 1 | -2/+12 | |
Also improved the human-readable output functions, including adding the ability to output negative numbers. | |||||
2008-08-02 | Skip new symlink conversion step if the remote rsync is not | Wayne Davison | 1 | -0/+3 | |
new enough to do symlink content conversions. | |||||
2008-08-01 | Changed the iconv-related message that was being output as the | Wayne Davison | 1 | -5/+5 | |
lone --info=misc2 message into a --debug=iconv message so that all iconv info will be output when requesting iconv debugging. | |||||
2008-07-28 | Added a client --munge-links option that works like the daemon | Wayne Davison | 1 | -0/+15 | |
"munge symlinks" parameter. | |||||
2008-07-27 | Added a command-line override for daemon config parameters: | Wayne Davison | 1 | -0/+20 | |
--dparam=PARAMETER=VALUE (-M PARAMETER=VALUE). | |||||
2008-07-21 | Improved var-checker and tweaked all the issues it found. | Wayne Davison | 1 | -2/+0 | |
2008-07-20 | Added a debug-helping option, --msgs2stderr, than should help all | Wayne Davison | 1 | -0/+2 | |
messages to be seen in a situation where rsync is dying (as long as stderr is a viable output method for the remote rsync). | |||||
2008-07-20 | Changed the chksum debug flag to deltasum. | Wayne Davison | 1 | -5/+5 | |
2008-07-19 | Added a '%C' (MD5 checksum) flag for the output/logfile formatting. | Wayne Davison | 1 | -1/+2 | |
2008-07-18 | Some minor tweaking for the info+debug option parsing. | Wayne Davison | 1 | -15/+16 | |
2008-07-14 | A few more minor improvements in the --info/--debug code. | Wayne Davison | 1 | -12/+11 | |
2008-07-14 | Made the info_verbosity array 1 element larger. | Wayne Davison | 1 | -1/+1 | |
2008-07-13 | Added the --info=FLAGS an --debug=FLAGS options, which allows | Wayne Davison | 1 | -15/+375 | |
fine-grained output control (in addition to the coarse -v). | |||||
2008-07-11 | If the user specifies --protocol=29, rsync will avoid sending an -e | Wayne Davison | 1 | -12/+18 | |
option to the server (which is only useful for protocols 30 and above anyway). This gives the user an easy way to talk to a restricted server that has overly restrictive option-checking. | |||||
2008-07-05 | Added the --remote-option=OPT (-M OPT) option. | Wayne Davison | 1 | -0/+46 | |
2008-07-05 | The --progress output now leaves the cursor at the end of the line | Wayne Davison | 1 | -2/+6 | |
(instead of the start) in order to be extra sure that an error won't overwrite it. We also ensure that the progress option can't be enabled on the server side. | |||||
2008-03-30 | Some argc-based actions in parse_arguments() shouldn't happen on | Wayne Davison | 1 | -2/+2 | |
the server side. | |||||
2008-03-24 | Don't send daemon-config filter-action messages back to the user. | Wayne Davison | 1 | -4/+4 | |
2008-03-24 | Improved --dirs/--no-dirs/--list-only option handling: | Wayne Davison | 1 | -7/+17 | |
- Moved setting of list_only and xfer_dirs from main.c to options.c. - Fixed the ability of the user to force --no-dirs. - Added the --old-dirs/--old-d option to make it easier to interact in list-only mode with an older rsync. - Suggest the use of --old-d instead of "-r --exclude='/*/*'". | |||||
2008-03-20 | Some improvements to the file-name cleaning code: | Wayne Davison | 1 | -5/+5 | |
- Removed the CFN_KEEP_LEADING_DOT_DIR flag for clean_fname(). - Explicitly add an implied dot-dir to the transfer rather than keeping a leading a "./" prefix as a part of a relative pathname. - Added the CFN_KEEP_DOT_DIRS flag for clean_fname(). - Added the SP_KEEP_DOT_DIRS flag for sanitize_path(). - Call clean_fname() a couple more times. | |||||
2008-03-20 | Changed the name of the server_filter_list to be | Wayne Davison | 1 | -7/+7 | |
daemon_filter_list, for improved clarity. | |||||
2008-03-16 | A daemon no longer tries to refuse the iconv option when it is not enabled. | Wayne Davison | 1 | -0/+2 | |
2008-03-15 | Fixed the use of --protect-args (-s) with a daemon. | Wayne Davison | 1 | -10/+6 | |
2008-03-10 | (Matt) Add missing --no-y option. | Wayne Davison | 1 | -0/+1 | |
2008-03-07 | The --fake-super option conflicts with -XX (which copies internal | Wayne Davison | 1 | -1/+7 | |
rsync xattrs literally). | |||||
2008-03-06 | Added even more no-OPTION overrides. | Wayne Davison | 1 | -8/+19 | |
2008-03-03 | Updated copyright year in --version output and improved the release | Wayne Davison | 1 | -1/+1 | |
script to look for year changes in options.c and to get the version defaults totally right in the prompts. | |||||
2008-03-01 | Include 2008 in the copyright years. | Wayne Davison | 1 | -1/+1 | |
2008-02-18 | Fixed a compilation problem when iconv support is disabled. | Wayne Davison | 1 | -0/+2 | |
2008-02-18 | Extended the protocol-30 info-passing code at startup, and use it to | Wayne Davison | 1 | -12/+16 | |
tell the client if the server can set the times on a symlink (both the server->client byte and the client->server use of -e). Make use of this info to allow the proper output of the 't' flag when rsync can set the time on a symlink (and we're talking protocol >= 30). Added output of "[no] symtimes" info in the --version message. Fixed the itemize.test so that it works when rsync believes that it can set the time of a symlink, but it can't really do it. | |||||
2008-02-18 | Added --no-one-file-system and --no-x options. | Wayne Davison | 1 | -0/+2 | |
2008-02-15 | Some daemon security improvements, including the new parameters | Wayne Davison | 1 | -3/+17 | |
"charset" and "numeric ids". | |||||
2008-01-19 | Fixed the combination of --dry-run and --only-write-batch. | Wayne Davison | 1 | -1/+2 | |
2007-12-16 | Fixed the check_filter() calls that might be checking an absolute path | Wayne Davison | 1 | -9/+17 | |
in "use chroot = no" mode against a daemon's exclude restriction. | |||||
2007-12-15 | Refer to delta-transfer algorithm rather than rsync algorithm. | Wayne Davison | 1 | -1/+1 | |
2007-11-28 | Adding --contimeout=SECONDS option. | Wayne Davison | 1 | -1/+4 | |
2007-11-20 | Got rid of the unused symlink parameter to sanitize_path(). | Wayne Davison | 1 | -5/+5 | |
2007-11-08 | Improve the man page and --help descriptions of --dry-run. In | Wayne Davison | 1 | -1/+1 | |
particular, make it clear that --dry-run turns off action without turning on verbosity, and has some incomplete/inaccurate stats. | |||||
2007-11-06 | Some changes to allow an unsorted file list even if the iconv option | Wayne Davison | 1 | -1/+1 | |
was disabled via configure. |