Fix the rsync home page URL to drop a trailing "/rsync".
[rsync/rsync.git] / TODO
1 -*- indented-text -*-
2
3 BUGS ---------------------------------------------------------------
4
5 rsync-url barfs on upload
6
7   rsync foo rsync://localhost/transfer/
8
9   Fix the parser.
10
11
12 There seems to be a bug with hardlinks
13
14   mbp/2 build$ ls -l /tmp/a /tmp/b -i
15   /tmp/a:
16   total 32
17   2568307 -rw-rw-r--    3 mbp      mbp            29 Mar 25 17:30 a1
18   2568307 -rw-rw-r--    3 mbp      mbp            29 Mar 25 17:30 a2
19   2568307 -rw-rw-r--    3 mbp      mbp            29 Mar 25 17:30 a3
20   2568310 -rw-rw-r--    5 mbp      mbp            29 Mar 25 17:30 a4
21   2568310 -rw-rw-r--    5 mbp      mbp            29 Mar 25 17:30 a5
22   2568310 -rw-rw-r--    5 mbp      mbp            29 Mar 25 17:30 b1
23   2568310 -rw-rw-r--    5 mbp      mbp            29 Mar 25 17:30 b2
24   2568310 -rw-rw-r--    5 mbp      mbp            29 Mar 25 17:30 b3
25
26   /tmp/b:
27   total 32
28   2568309 -rw-rw-r--    3 mbp      mbp            29 Mar 25 17:30 a1
29   2568309 -rw-rw-r--    3 mbp      mbp            29 Mar 25 17:30 a2
30   2568309 -rw-rw-r--    3 mbp      mbp            29 Mar 25 17:30 a3
31   2568311 -rw-rw-r--    5 mbp      mbp            29 Mar 25 17:30 a4
32   2568311 -rw-rw-r--    5 mbp      mbp            29 Mar 25 17:30 a5
33   2568311 -rw-rw-r--    5 mbp      mbp            29 Mar 25 17:30 b1
34   2568311 -rw-rw-r--    5 mbp      mbp            29 Mar 25 17:30 b2
35   2568311 -rw-rw-r--    5 mbp      mbp            29 Mar 25 17:30 b3
36   mbp/2 build$ rm -r /tmp/b && ./rsync -avH /tmp/a/ /tmp/b
37   building file list ... done
38   created directory /tmp/b
39   ./
40   a1
41   a4
42   a2 => a1
43   a3 => a2
44   wrote 350 bytes  read 52 bytes  804.00 bytes/sec
45   total size is 232  speedup is 0.58
46   mbp/2 build$ rm -r /tmp/b
47   mbp/2 build$ ls -l /tmp/b
48   ls: /tmp/b: No such file or directory
49   mbp/2 build$ rm -r /tmp/b && ./rsync -avH /tmp/a/ /tmp/b
50   rm: cannot remove `/tmp/b': No such file or directory
51   mbp/2 build$ rm -f -r /tmp/b && ./rsync -avH /tmp/a/ /tmp/b
52   building file list ... done
53   created directory /tmp/b
54   ./
55   a1
56   a4
57   a2 => a1
58   a3 => a2
59   wrote 350 bytes  read 52 bytes  804.00 bytes/sec
60   total size is 232  speedup is 0.58
61   mbp/2 build$ ls -l /tmp/b
62   total 32
63   -rw-rw-r--    3 mbp      mbp            29 Mar 25 17:30 a1
64   -rw-rw-r--    3 mbp      mbp            29 Mar 25 17:30 a2
65   -rw-rw-r--    3 mbp      mbp            29 Mar 25 17:30 a3
66   -rw-rw-r--    5 mbp      mbp            29 Mar 25 17:30 a4
67   -rw-rw-r--    5 mbp      mbp            29 Mar 25 17:30 a5
68   -rw-rw-r--    5 mbp      mbp            29 Mar 25 17:30 b1
69   -rw-rw-r--    5 mbp      mbp            29 Mar 25 17:30 b2
70   -rw-rw-r--    5 mbp      mbp            29 Mar 25 17:30 b3
71   mbp/2 build$ ls -l /tmp/a
72   total 32
73   -rw-rw-r--    3 mbp      mbp            29 Mar 25 17:30 a1
74   -rw-rw-r--    3 mbp      mbp            29 Mar 25 17:30 a2
75   -rw-rw-r--    3 mbp      mbp            29 Mar 25 17:30 a3
76   -rw-rw-r--    5 mbp      mbp            29 Mar 25 17:30 a4
77   -rw-rw-r--    5 mbp      mbp            29 Mar 25 17:30 a5
78   -rw-rw-r--    5 mbp      mbp            29 Mar 25 17:30 b1
79   -rw-rw-r--    5 mbp      mbp            29 Mar 25 17:30 b2
80   -rw-rw-r--    5 mbp      mbp            29 Mar 25 17:30 b3
81
82
83 Progress indicator can produce corrupt output when transferring directories:
84
85   main/binary-arm/
86   main/binary-arm/admin/
87   main/binary-arm/base/
88   main/binary-arm/comm/8.56kB/s    0:00:52
89   main/binary-arm/devel/
90   main/binary-arm/doc/
91   main/binary-arm/editors/
92   main/binary-arm/electronics/s    0:00:53
93   main/binary-arm/games/
94   main/binary-arm/graphics/
95   main/binary-arm/hamradio/
96   main/binary-arm/interpreters/
97   main/binary-arm/libs/6.61kB/s    0:00:54
98   main/binary-arm/mail/
99   main/binary-arm/math/
100   main/binary-arm/misc/
101
102 lchmod
103   I don't think we handle this properly on systems that don't have the
104   call.
105
106 Cross-test versions
107   Part of the regression suite should be making sure that we don't
108   break backwards compatibility: old clients vs new servers and so
109   on.  Ideally we would test the cross product of versions.  
110
111   It might be sufficient to test downloads from well-known public
112   rsync servers running different versions of rsync.  This will give
113   some testing and also be the most common case for having different
114   versions and not being able to upgrade.
115
116 --no-blocking-io might be broken
117
118   in the same way as --no-whole-file; somebody needs to check.
119
120 Do not rely on having a group called "nobody"
121
122   http://www.linuxbase.org/spec/refspecs/LSB_1.1.0/gLSB/usernames.html
123
124   On Debian it's "nogroup"
125
126 DAEMON --------------------------------------------------------------
127
128 server-imposed bandwidth limits
129
130 rsyncd over ssh
131
132   There are already some patches to do this.
133
134   BitKeeper uses a server whose login shell is set to bkd.  That's
135   probably a reasonable approach.
136
137
138 FEATURES ------------------------------------------------------------
139
140
141 --dry-run is insufficiently dry
142
143   Mark Santcroos points out that -n fails to list files which have
144   only metadata changes, though it probably should.  
145
146   There may be a Debian bug about this as well.
147
148
149 use chroot
150
151   If the platform doesn't support it, then don't even try.
152
153   If running as non-root, then don't fail, just give a warning.
154   (There was a thread about this a while ago?)
155
156     http://lists.samba.org/pipermail/rsync/2001-August/thread.html
157     http://lists.samba.org/pipermail/rsync/2001-September/thread.html
158
159
160 --files-from
161
162   Avoids traversal.  Better option than a pile of --include statements
163   for people who want to generate the file list using a find(1)
164   command or a script.
165
166
167 supplementary groups
168
169   Perhaps allow supplementary groups to be specified in rsyncd.conf;
170   then make the first one the primary gid and all the rest be
171   supplementary gids.
172
173
174 File list structure in memory
175
176   Rather than one big array, perhaps have a tree in memory mirroring
177   the directory tree.  
178
179   This might make sorting much faster!  (I'm not sure it's a big CPU
180   problem, mind you.)  
181
182   It might also reduce memory use in storing repeated directory names
183   -- again I'm not sure this is a problem.
184
185 Performance
186
187   Traverse just one directory at a time.  Tridge says it's possible.
188
189   At the moment rsync reads the whole file list into memory at the
190   start, which makes us use a lot of memory and also not pipeline
191   network access as much as we could.
192
193
194 Handling duplicate names
195
196   We need to be careful of duplicate names getting into the file list.
197   See clean_flist().  This could happen if multiple arguments include
198   the same file.  Bad.
199
200   I think duplicates are only a problem if they're both flowing
201   through the pipeline at the same time.  For example we might have
202   updated the first occurrence after reading the checksums for the
203   second.  So possibly we just need to make sure that we don't have
204   both in the pipeline at the same time.  
205
206   Possibly if we did one directory at a time that would be sufficient.
207
208   Alternatively we could pre-process the arguments to make sure no
209   duplicates will ever be inserted.  There could be some bad cases
210   when we're collapsing symlinks.
211
212   We could have a hash table.
213
214   The root of the problem is that we do not want more than one file
215   list entry referring to the same file.  At first glance there are
216   several ways this could happen: symlinks, hardlinks, and repeated
217   names on the command line.
218
219   If names are repeated on the command line, they may be present in
220   different forms, perhaps by traversing directory paths in different
221   ways, traversing paths including symlinks.  Also we need to allow
222   for expansion of globs by rsync.
223
224   At the moment, clean_flist() requires having the entire file list in
225   memory.  Duplicate names are detected just by a string comparison.
226
227   We don't need to worry about hard links causing duplicates because
228   files are never updated in place.  Similarly for symlinks.
229
230   I think even if we're using a different symlink mode we don't need
231   to worry.
232
233   Unless we're really clever this will introduce a protocol
234   incompatibility, so we need to be able to accept the old format as
235   well.
236
237
238 Memory accounting
239
240   At exit, show how much memory was used for the file list, etc.
241
242   Also we do a wierd exponential-growth allocation in flist.c.  I'm
243   not sure this makes sense with modern mallocs.  At any rate it will
244   make us allocate a huge amount of memory for large file lists.
245
246
247 Hard-link handling
248
249   At the moment hardlink handling is very expensive, so it's off by
250   default.  It does not need to be so.  
251
252   Since most of the solutions are rather intertwined with the file
253   list it is probably better to fix that first, although fixing
254   hardlinks is possibly simpler.
255
256   We can rule out hardlinked directories since they will probably
257   screw us up in all kinds of ways.  They simply should not be used.
258
259   At the moment rsync only cares about hardlinks to regular files.  I
260   guess you could also use them for sockets, devices and other beasts,
261   but I have not seen them.
262
263   When trying to reproduce hard links, we only need to worry about
264   files that have more than one name (nlinks>1 && !S_ISDIR). 
265
266   The basic point of this is to discover alternate names that refer to
267   the same file.  All operations, including creating the file and
268   writing modifications to it need only to be done for the first name.
269   For all later names, we just create the link and then leave it
270   alone.
271
272   If hard links are to be preserved:
273
274     Before the generator/receiver fork, the list of files is received
275     from the sender (recv_file_list), and a table for detecting hard
276     links is built.
277
278     The generator looks for hard links within the file list and does
279     not send checksums for them, though it does send other metadata.
280
281     The sender sends the device number and inode with file entries, so
282     that files are uniquely identified.
283
284     The receiver goes through and creates hard links (do_hard_links)
285     after all data has been written, but before directory permissions
286     are set.
287
288   At the moment device and inum are sent as 4-byte integers, which
289   will probably cause problems on large filesystems.  On Linux the
290   kernel uses 64-bit ino_t's internally, and people will soon have
291   filesystems big enough to use them.  We ought to follow NFS4 in
292   using 64-bit device and inode identification, perhaps with a
293   protocol version bump.
294
295   Once we've seen all the names for a particular file, we no longer
296   need to think about it and we can deallocate the memory.
297
298   We can also have the case where there are links to a file that are
299   not in the tree being transferred.  There's nothing we can do about
300   that.  Because we rename the destination into place after writing,
301   any hardlinks to the old file are always going to be orphaned.  In
302   fact that is almost necessary because otherwise we'd get really
303   confused if we were generating checksums for one name of a file and
304   modifying another.
305
306   At the moment the code seems to make a whole second copy of the file
307   list, which seems unnecessary.
308
309   We should have a test case that exercises hard links.  Since it
310   might be hard to compare ./tls output where the inodes change we
311   might need a little program to check whether several names refer to
312   the same file.
313
314 IPv6
315
316   Perhaps put back the old socket code; if on a machine that does not
317   properly support the getaddrinfo API, then use it.  This is probably
318   much simpler than reimplementing it.
319
320   Alternatively, have two different files implementing the same
321   interface, and choose either the new or the old API.  This is
322   probably necessary for systems that e.g. have IPv6, but
323   gethostbyaddr() can't handle it.  The Linux manpage claims this is
324   currently the case.
325
326   This might get us working again on RedHat 5 and similar systems.
327   Although the Kame patch seems like a good idea, in fact it is a much
328   broader interface than the relatively narrow "open by name", "accept
329   and log" interface that rsync uses internally, and it has the
330   disadvantage of clashing with half-arsed implementations of the API.
331
332   Implement suggestions from http://www.kame.net/newsletter/19980604/
333   and ftp://ftp.iij.ad.jp/pub/RFC/rfc2553.txt
334
335   If a host has multiple addresses, then listen try to connect to all
336   in order until we get through.  (getaddrinfo may return multiple
337   addresses.)  This is kind of implemented already.
338
339   Possibly also when starting as a server we may need to listen on
340   multiple passive addresses.  This might be a bit harder, because we
341   may need to select on all of them.  Hm.
342
343   Define a syntax for IPv6 literal addresses.  Since they include
344   colons, they tend to break most naming systems, including ours.
345   Based on the HTTP IPv6 syntax, I think we should use
346  
347      rsync://[::1]/foo/bar
348      [::1]::bar
349
350   which should just take a small change to the parser code.
351
352
353 Errors
354
355   If we hang or get SIGINT, then explain where we were up to.  Perhaps
356   have a static buffer that contains the current function name, or
357   some kind of description of what we were trying to do.  This is a
358   little easier on people than needing to run strace/truss.
359
360   "The dungeon collapses!  You are killed."  Rather than "unexpected
361   eof" give a message that is more detailed if possible and also more
362   helpful.  
363
364   If we get an error writing to a socket, then we should perhaps
365   continue trying to read to see if an error message comes across
366   explaining why the socket is closed.  I'm not sure if this would
367   work, but it would certainly make our messages more helpful.
368
369   What happens if a directory is missing -x attributes.  Do we lose
370   our load?  (Debian #28416)  Probably fixed now, but a test case
371   would be good.
372
373
374 File attributes
375
376   Device major/minor numbers should be at least 32 bits each.  See
377   http://lists.samba.org/pipermail/rsync/2001-November/005357.html
378
379   Transfer ACLs.  Need to think of a standard representation.
380   Probably better not to even try to convert between NT and POSIX.
381   Possibly can share some code with Samba.
382
383 Empty directories
384
385   With the current common --include '*/' --exclude '*' pattern, people
386   can end up with many empty directories.  We might avoid this by
387   lazily creating such directories.
388
389
390 zlib
391
392   Perhaps don't use our own zlib.  
393
394   Advantages:
395    
396     - will automatically be up to date with bugfixes in zlib
397
398     - can leave it out for small rsync on e.g. recovery disks
399
400     - can use a shared library
401
402     - avoids people breaking rsync by trying to do this themselves and
403       messing up
404
405   Should we ship zlib for systems that don't have it, or require
406   people to install it separately?
407
408   Apparently this will make us incompatible with versions of rsync
409   that use the patched version of rsync.  Probably the simplest way to
410   do this is to just disable gzip (with a warning) when talking to old
411   versions.
412
413
414 logging
415
416   Perhaps flush stdout after each filename, so that people trying to
417   monitor progress in a log file can do so more easily.  See
418   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=48108
419
420   At the connections that just get a list of modules are not logged,
421   but they should be.
422
423   If a child of the rsync daemon dies with a signal, we should notice
424   that when we reap it and log a message.
425
426   Keep stderr and stdout properly separated (Debian #23626)
427
428   After we get the @RSYNCD greeting from the server, we know it's
429   version but we have not yet sent the command line, so we could just
430   remove the -z option if the server is too old.  
431
432   For ssh invocation it's not so simple, because we actually use the
433   command line to start the remote process.  However, we only actually
434   do compression in token.c, and we could therefore once we discover
435   the remote version emit an error if it's too old.  I'm not sure if
436   that's a good tradeoff or not.
437
438
439 rsyncd over ssh
440
441   There are already some patches to do this.
442
443 proxy authentication
444
445   Allow RSYNC_PROXY to be http://user:pass@proxy.foo:3128/, and do
446   HTTP Basic Proxy-Authentication.  
447
448   Multiple schemes are possible, up to and including the insanity that
449   is NTLM, but Basic probably covers most cases.
450
451 SOCKS
452
453   Add --with-socks, and then perhaps a command-line option to put them
454   on or off.  This might be more reliable than LD_PRELOAD hacks.
455
456 FAT support
457
458   rsync to a FAT partition on a Unix machine doesn't work very well
459   at the moment.  I think we get errors about invalid filenames and 
460   perhaps also trying to do atomic renames.
461
462   I guess the code to do this is currently #ifdef'd on Windows; perhaps
463   we ought to intelligently fall back to it on Unix too.
464
465
466 Better statistics:
467
468   <Rasmus> mbp: hey, how about an rsync option that just gives you the
469   summary without the list of files?  And perhaps gives more
470   information like the number of new files, number of changed,
471   deleted, etc. ?
472   <mbp> Rasmus: nice idea
473   <mbp> there is --stats
474   <mbp> but at the moment it's very tridge-oriented
475   <mbp> rather than user-friendly
476   <mbp> it would be nice to improve it
477   <mbp> that would also work well with --dryrun
478
479 TDB:
480
481   Rather than storing the file list in memory, store it in a TDB.
482
483   This *might* make memory usage lower while building the file list.
484
485   Hashtable lookup will mean files are not transmitted in order,
486   though... hm.
487
488   This would neatly eliminate one of the major post-fork shared data
489   structures.
490
491
492 chmod:
493
494   On 12 Mar 2002, Dave Dykstra <dwd@bell-labs.com> wrote:
495   > If we would add an option to do that functionality, I would vote for one
496   > that was more general which could mask off any set of permission bits and
497   > possibly add any set of bits.  Perhaps a chmod-like syntax if it could be
498   > implemented simply.
499
500   I think that would be good too.  For example, people uploading files   
501   to a web server might like to say
502
503   rsync -avzP --chmod a+rX ./ sourcefrog.net:/home/www/sourcefrog/
504
505   Ideally the patch would implement as many of the gnu chmod semantics
506   as possible.  I think the mode parser should be a separate function
507   that passes back something like (mask,set) description to the rest of
508   the program.  For bonus points there would be a test case for the  
509   parser.
510
511   Possibly also --chown
512
513   (Debian #23628)
514
515
516 --diff
517
518   Allow people to specify the diff command.  (Might want to use wdiff,
519   gnudiff, etc.)
520
521   Just diff the temporary file with the destination file, and delete
522   the tmp file rather than moving it into place.
523
524   Interaction with --partial.
525
526   Security interactions with daemon mode?
527
528   (Suggestion from david.e.sewell)
529
530
531 Incorrect timestamps (Debian #100295)
532
533   A bit hard to believe, but apparently it happens.
534
535
536 Check "refuse options works"
537
538   We need a test case for this...
539
540   Was this broken when we changed to popt?
541
542
543 PERFORMANCE ----------------------------------------------------------
544
545 MD4 file_sum
546
547   If we're doing a local transfer, or using -W, then perhaps don't
548   send the file checksum.  If we're doing a local transfer, then
549   calculating MD4 checksums uses 90% of CPU and is unlikely to be
550   useful.
551
552   Indeed for transfers over zlib or ssh we can also rely on the
553   transport to have quite strong protection against corruption.
554
555   Perhaps we should have an option to disable this, analogous to
556   --whole-file, although it would default to disabled.  The file
557   checksum takes up a definite space in the protocol -- we can either
558   set it to 0, or perhaps just leave it out.
559
560 MD4
561
562   Perhaps borrow an assembler MD4 from someone?
563
564   Make sure we call MD4 with properly-sized blocks whenever possible
565   to avoid copying into the residue region?
566
567 String area code
568
569   Test whether this is actually faster than just using malloc().  If
570   it's not (anymore), throw it out.
571           
572
573 PLATFORMS ------------------------------------------------------------
574
575 Win32
576
577   Don't detach, because this messes up --srvany.
578
579   http://sources.redhat.com/ml/cygwin/2001-08/msg00234.html
580
581   According to "Effective TCP/IP Programming" (??) close() on a socket
582   has incorrect behaviour on Windows -- it sends a RST packet to the
583   other side, which gives a "connection reset by peer" error.  On that
584   platform we should probably do shutdown() instead.  However, on Unix
585   we are correct to call close(), because shutdown() discards
586   untransmitted data.
587
588
589 DEVELOPMENT ----------------------------------------------------------
590
591 Splint
592
593   Build rsync with SPLINT to try to find security holes.  Add
594   annotations as necessary.  Keep track of the number of warnings
595   found initially, and see how many of them are real bugs, or real
596   security bugs.  Knowing the percentage of likely hits would be
597   really interesting for other projects.
598
599 Torture test
600
601   Something that just keeps running rsync continuously over a data set
602   likely to generate problems.
603
604 Cross-testing
605
606   Run current rsync versions against significant past releases.
607
608 Memory debugger
609
610   jra recommends Valgrind:
611
612     http://devel-home.kde.org/~sewardj/
613
614 Release script
615   
616   Update spec files
617
618   Build tar file; upload
619
620   Send announcement to mailing list and c.o.l.a.
621   
622   Make freshmeat announcement
623
624   Update web site
625
626
627
628 TESTING --------------------------------------------------------------
629
630 Cross-test versions
631
632   Part of the regression suite should be making sure that we don't
633   break backwards compatibility: old clients vs new servers and so
634   on.  Ideally we would test both up and down from the current release
635   to all old versions.
636
637   We might need to omit broken old versions, or versions in which
638   particular functionality is broken
639
640   It might be sufficient to test downloads from well-known public
641   rsync servers running different versions of rsync.  This will give
642   some testing and also be the most common case for having different
643   versions and not being able to upgrade.
644
645
646 Test on kernel source
647
648   Download all versions of kernel; unpack, sync between them.  Also
649   sync between uncompressed tarballs.  Compare directories after
650   transfer.
651
652   Use local mode; ssh; daemon; --whole-file and --no-whole-file.
653
654   Use awk to pull out the 'speedup' number for each transfer.  Make
655   sure it is >= x.
656
657
658 Test large files
659
660   Sparse and non-sparse
661
662 Mutator program
663
664   Insert bytes, delete bytes, swap blocks, ...
665
666 configure option to enable dangerous tests
667
668 If tests are skipped, say why.
669
670 Test daemon feature to disallow particular options.
671
672 Pipe program that makes slow/jerky connections.
673
674 Versions of read() and write() that corrupt the stream, or abruptly fail
675
676 Separate makefile target to run rough tests -- or perhaps just run
677 them every time?
678
679 Test "refuse options" works
680
681   What about for --recursive?
682
683   If you specify an unrecognized option here, you should get an error.
684
685
686 DOCUMENTATION --------------------------------------------------------
687
688 Update README
689
690 Keep list of open issues and todos on the web site
691
692 Update web site from CVS
693
694
695 Perhaps redo manual as SGML
696
697   The man page is getting rather large, and there is more information
698   that ought to be added.
699
700   TexInfo source is probably a dying format.
701
702   Linuxdoc looks like the most likely contender.  I know DocBook is
703   favoured by some people, but it's so bloody verbose, even with emacs
704   support.
705
706
707 BUILD FARM -----------------------------------------------------------
708
709 Add machines
710
711   AMDAHL UTS (Dave Dykstra)
712
713   Cygwin (on different versions of Win32?)
714
715   HP-UX variants (via HP?)
716
717   SCO
718
719
720 LOGGING --------------------------------------------------------------
721
722   Perhaps flush stdout after each filename, so that people trying to
723   monitor progress in a log file can do so more easily.  See
724   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=48108
725
726   At the connections that just get a list of modules are not logged,
727   but they should be.
728
729   If a child of the rsync daemon dies with a signal, we should notice
730   that when we reap it and log a message.
731
732   Keep stderr and stdout properly separated (Debian #23626)
733
734   Use a separate function for reporting errors; prefix it with
735   "rsync:" or "rsync(remote)", or perhaps even "rsync(local
736   generator): ".
737
738 verbose output
739   
740   Indicate whether files are new, updated, or deleted
741
742   At end of transfer, show how many files were or were not transferred
743   correctly.
744
745 -vv
746
747   Explain *why* every file is transferred or not (e.g. "local mtime
748   123123 newer than 1283198")
749
750
751 debugging of daemon
752
753   Add an rsyncd.conf parameter to turn on debugging on the server.
754
755
756
757 NICE -----------------------------------------------------------------
758
759 --no-detach and --no-fork options
760
761   Very useful for debugging.  Also good when running under a
762   daemon-monitoring process that tries to restart the service when the
763   parent exits.
764
765 hang/timeout friendliness
766
767 internationalization
768
769   Change to using gettext().  Probably need to ship this for platforms
770   that don't have it.  
771
772   Solicit translations.
773
774   Does anyone care?  Before we bother modifying the code, we ought to
775   get the manual translated first, because that's possibly more useful
776   and at any rate demonstrates desire.
777
778 rsyncsh 
779
780    Write a small emulation of interactive ftp as a Pythonn program
781    that calls rsync.  Commands such as "cd", "ls", "ls *.c" etc map
782    fairly directly into rsync commands: it just needs to remember the
783    current host, directory and so on.  We can probably even do
784    completion of remote filenames.
785
786
787 RELATED PROJECTS -----------------------------------------------------
788
789 http://rsync.samba.org/rsync-and-debian/
790
791 rsyncable gzip patch
792
793   Exhaustive, tortuous testing
794
795   Cleanups?
796
797 rsyncsplit as alternative to real integration with gzip?
798
799 reverse rsync over HTTP Range
800
801   Goswin Brederlow suggested this on Debian; I think tridge and I
802   talked about it previous in relation to rproxy.