1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
|
2019-09-02 dann frazier <dannf@dannf.org>
* Release 1.6
2018-11-26 dann frazier <dannf@dannf.org>
* Use the python3 interpreter from the user's $PATH instead of
hardcoding /usr/bin.
2018-11-19 dann frazier <dannf@dannf.org>
* Raise an exception when an unsupported file type change is
detected, i.e. a directory becoming a regular file or vice-versa.
2018-11-17 dann frazier <dannf@dannf.org>
* Convert to python3
2018-11-17 dann frazier <dannf@dannf.org>
* Always prompt for username along with password because the svn
server username maybe different than the local username.
* Update copyright information.
* Release 1.5
2018-11-16 dann frazier <dannf@dannf.org>
* Remove pysvn usage from test.py to better reflect real
world usage.
* Fix TypeError when svn-load needs to ask for a password
(thanks Philipp Spitzer)
* Fix several issues identified by pyflakes
* test.py: Remove unused argument parsing
* Fix up (almost all) pep8 issues
* test.py: Add AuthenticatedServerPrompt test
* Release 1.4
2011-03-09 dann frazier <dannf@dannf.org>
* Add support for username/password
* Add support for --auto-props/--no-auto-props
* Release 1.3
2009-02-15 dann frazier <dannf@hp.com>
* Check that user-specified directories exist before loading
them, patch from John Wright.
* Release 1.2
2008-12-12 dann frazier <dannf@hp.com>
* Remove nocallback warning for ssl_client_cert_password_prompt
* Release 1.1
2008-10-28 dann frazier <dannf@hp.com>
* Add a callback to prompt for client cert passwords
* Warn when unimplemented callbacks are triggered
* Release 1.0
2008-04-23 dann frazier <dannf@hp.com>
* The following patches developed by Robert Hunger
* Fix issue with broken symlink becoming a regular file
* Fix issue with a preexisting non-dangling directory symlink
* Fix traceback when using --no-prompt without --move-map,
reported in Debian bug #476569
* test.py: permit running a single test from the command line
* test.py: Use a common temporary directory in BaseLoadCase.tempdir
* test.py: If initial repository load fails, fail the test
* test.py: Run svn export in quiet mode
* Release 0.10
2008-04-08 dann frazier <dannf@hp.com>
* Add support for regular files becoming symlinks, reported
in Debian bug #436751
* Fix help output to show that at least one load directory is
required, reported in Debian bug #475093
* Treat directory symlinks like files when overlaying them to
prevent a real directory (and its contents) from being added
* Release 0.9
2007-12-18 dann frazier <dannf@hp.com>
* Release 0.8
2007-12-18 dann frazier <dannf@hp.com>
* Disregard default ignores and svn:ignore properties. Assume the
user really means it.
2007-11-02 dann frazier <dannf@hp.com>
* Create this file.
* Add support for globs on Windows, contributed by Mariano Reingart
* Remove duplicate SingleFileToBrokenSymLink definition in test.py,
reported by Chaim Krause
|