Jens Peters <jpeters7677@gmx.de>


Found Patch Suggested
r860182 r878549, r877660, r877390, r871811, r871113, r864370, r863974, r858128, r858106 r865565, r864363

r858106 | dlr | 2006-01-10 02:53:38 +0000 (Tue, 10 Jan 2006)

Fix JavaHL compile error with Visual Studio 2005.

* subversion/bindings/java/javahl/native/JNIUtil.cpp
  (JNIUtil::JNIGlobalInit): Cast 'ucs2_path' to 'apr_wchar_t *' to
   prevent a data type mismatch error from VS2005.

Patch by: Jens Peters <jpeters7677@gmx.de>
Review by: me


r858128 | dlr | 2006-01-10 22:33:06 +0000 (Tue, 10 Jan 2006)

Fix JavaHL compile error with Visual Studio 2005 (with correct syntax,
as opposed to in r18032).

* subversion/bindings/java/javahl/native/JNIUtil.cpp
  (JNIUtil::JNIGlobalInit): Cast 'ucs2_path' to 'apr_wchar_t *' to
   prevent a data type mismatch error from VS2005.

Patch by: Jens Peters <jpeters7677@gmx.de>
Review by: me
           lundblad


r860182 | djh | 2006-06-14 22:26:13 +0000 (Wed, 14 Jun 2006)

Fix input/output encoding support when built with VC2005.

Newer versions of MS' CRT do the codepage translation for us
so we don't need to do it ourselves if the compiler is new
enough.

Found by: Jens Peters <jpeters7677@gmx.de>
Review by: brane

* subversion/libsvn_subr/cmdline.c
  (svn_cmdline_init): VC2005 doesn't need to do special encoding.



r863974 | dlr | 2007-03-19 20:29:38 +0000 (Mon, 19 Mar 2007)

Allow overriding of default "http-auth-type" configuration (e.g. to
force BASIC auth, even if your server supports SSPI and SSL).

* subversion/libsvn_ra_dav/session.c
  (svn_ra_dav__open): Initialize neon_auth_types to 0 before calling
   get_server_settings() to read the "http-auth-type" parameter from
   the configuration.  If no auth types are specified in the config,
   provide the appropriate defaults.

Patch by: me
          Jens Peters <jpeters7677@gmx.de>


r864363 | djh | 2007-03-31 02:46:58 +0000 (Sat, 31 Mar 2007)

Replace os.rmtree with the safe_rmtree implementation from the test
suite so that we can remove read-only files on Windows.

Suggested by: Chris Foote <cfoote@v21.me.uk>
              Jens Peters <jpeters7677@gmx.de>

* tools/backup/hot-backup.py.in
  (chmod_tree): New method for setting permissions on a tree.
  (safe_rmtree): New method for dropping possibly read-only directory trees.



r864370 | djh | 2007-03-31 13:25:13 +0000 (Sat, 31 Mar 2007)

Add imports missed but needed for hot-backup.py.in changes in r24289.

Patch by: Jens Peters <jpeters7677@gmx.de>

* tools/backup/hot-backup.py.in
  Add missing imports.


r865565 | dlr | 2007-06-21 20:55:35 +0000 (Thu, 21 Jun 2007)

* STATUS: Nominate r23494 for backport from trunk to the 1.4.x branch.

Suggested by: Jens Peters <jpeters7677@gmx.de>


r871113 | kfogel | 2008-05-06 01:17:59 +0000 (Tue, 06 May 2008)

Fix two translation tests that would fail when run over https://.

* subversion/tests/cmdline/trans_tests.py
  (keywords_from_birth, keyword_expanded_on_checkout): Add "https" to
    the regexp of patterns to match.

Patch by: <jpeters7677@gmx.de>
(Lines re-wrapped by me.)


r871811 | kfogel | 2008-06-15 01:46:58 +0000 (Sun, 15 Jun 2008)

Fix a compile error when building javahl with nls support for Windows x64.

Patch by: Jens Peters <jpeters7677@gmx.de>

* subversion/bindings/javahl/native/JNIUtil.cpp
  (JNIUtil::JNIGlobalInit): Change the type of 'inwords' and
    'outbytes' to apr_size_t.


r877390 | danielsh | 2009-04-17 02:41:01 +0000 (Fri, 17 Apr 2009)

Fix a translation test that would fail when run over https://.

* subversion/tests/cmdline/trans_tests.py
  (keywords_from_birth): Add "https" to the regexp of patterns to match.

Patch by: Jens Peters <jpeters7677@gmx.de>

r877660 | djames | 2009-05-05 17:33:39 +0000 (Tue, 05 May 2009)

Fixes some python testsuite failures on Windows.
("Can't remove <path>\rep-cache.db") 

* subversion/bindings/swig/python/tests/mergeinfo.py,
  subversion/bindings/swig/python/tests/wc.py
   (tearDown): Close references to the test repository so that
   it can be deleted nicely.

* subversion/bindings/swig/python/tests/ra.py,
  subversion/bindings/swig/python/tests/repository.py
   (tearDown): Override tearDown to close references to the test
   repository so that it can be deleted nicely.

Patch by: Jens Peters <jpeters7677{_AT_}gmx.de>
          me




r878549 | rdonch | 2009-07-23 15:06:56 +0000 (Thu, 23 Jul 2009)

Fix a python wc testcase failure.
(SubversionException, "Can't check path '[path][path]': The filename, 
directory name, or volume label syntax is incorrect.")
 
* subversion/bindings/swig/python/tests/wc.py:
  (SubversionWorkingCopyTestCase.test_status_editor): Put the correct
    arguments into 'wc.get_status_editor2'. The second argument should
    be 'target'.

Patch by: Jens Peters <jpeters7677@gmx.de>