Gabriela Gibson <gabriela.gibson_at_gmail.com>


Found Patch
r1420210 r1426480, r1423585, r1421011

r1426480 | danielsh | 2012-12-28 06:41:55 -0600 (Fri, 28 Dec 2012)

Update code comments in a number of files which refer to "main.c", where
the file has been renamed.

* subversion/svnrdump/load_editor.c:
  (get_lock): Change comment to refer to "similar" function.
    in subversion/svnsync/svnsync.c
    Change comment to fix reference to "main.c"

* subversion/svnsync/svnsync.c:
  (get_lock): Change comment to refer to "similar" function.
    in subversion/svnsync/svnsync.c

* subversion/tests/svn_test_main.c:
  (Opening comment): Fix file name after rename

* subversion/svndumpfilter/svndumpfilter.c:
  (Opening comment): Fix file name after rename

* subversion/svn/cl.h:
  (svn_cl__cmd_table[]): Fix file name in comment
  (svn_cl__global_options[]): Fix file name in comment
  (svn_cl__options[]): Fix file name in comment

* subversion/svn/svn.c:
  (Opening comment): Fix file name after rename

* subversion/svnadmin/svnadmin.c:
  (Opening comment): Fix file name after rename

* subversion/svnlook/svnlook.c:
  (Opening comment): Fix file name after rename

* subversion/svnserve/svnserve.c:
  (Opening comment): Fix file name after rename

Patch by: Gabriela Gibson <gabriela.gibson_at_gmail.com>


r1423585 | breser | 2012-12-18 13:17:15 -0600 (Tue, 18 Dec 2012)

Fix issue #4263: svnrdump: E125005: Cannot accept non-LF line endings in
'svn:log' property

Fix to ensure that no "\r" characters are present in revision or node
props.

In the case of "\r\n" character sequences, the "\r" is removed.

In the case of "\r" characters which are not followed by "\n", the "\r"
is replaced by a "\n" character.

* subversion/svnrdump/svnrdump.h:
   (svn_rdump__normalize_prop): New function declaration.

* subversion/svnrdump/util.c:
   (svn_rdump__normalize_prop): New function to allow "svnrdump load" to
     use existing logic
   (svn_rdump__normalize_props): Refactored to move logic into
     svn_rdump__normalize_prop()

* subversion/svnrdump/load_editor.c:
   (set_revision_property): Added call to svn_rdump__normalize_prop()
   (set_node_property): Added call to svn_rdump__normalize_prop()

* subversion/tests/cmdline/svnrdump_tests.py:
   (copy_bad_line_endings_load): Removed "XFail" decorator

Patch by: Gabriela Gibson <gabriela.gibson@gmail.com>


r1421011 | danielsh | 2012-12-12 16:04:13 -0600 (Wed, 12 Dec 2012)

Test for issue #4263: svnrdump: E125005: Cannot accept non-LF line endings in
'svn:log' property

Patch by: Gabriela Gibson <gabriela.gibson@gmail.com>

* subversion/tests/cmdline/svnrdump_tests.py
  (copy_bad_line_endings_load): Test for '\r' line ending bug in svnrdump
    (issue 4263).


r1420210 | julianfoad | 2012-12-11 09:04:01 -0600 (Tue, 11 Dec 2012)

* subversion/tests/README
  Update: the 'list' option was renamed to '--list' quite a while ago.

Found by: Gabriela Gibson <gabriela.gibson{_AT_}gmail.com>