Edmund Wong <ed {at} kdtc.net>


Patch
r38983, r38668, r38612, r38575

r38983 | stsp | 2009-08-28 09:01:09 -0500 (Fri, 28 Aug 2009)

Move functions concerned with EOL parsing from libsvn_subr/subst.c
to libsvn_subr/eol.c. This allows further consolidation of code
concerned with EOL-parsing instead of being all over the place.

Note that functions concerned with the svn:eol-style property are not
affected by this change.

[ Note from the future: The change to build.conf was accidentally not
  committed, and was instead committed in r38984. ]
* build.conf:
  (subst-test): Rename to ...
  (eol-test): ... this.
  (__ALL_TESTS__): Track renamed test.
  (msvc-export): Add private\svn_eol_private.h.

* subversion/include/private/svn_eol_private.h: New.

* subversion/libsvn_subr/subst.c,
  subversion/include/svn_subst.h
  (svn_subst_find_eol_start, svn_subst_detect_eol,
   svn_subst_detect_file_eol): Move these functions from here ...

* subversion/libsvn_subr/eol.c,
  subversion/include/private/svn_eol_private.h
  (svn_eol_find_eol_start, svn_eol_detect_eol,
   svn_eol_detect_file_eol): ... to these new files and rename them.

* subversion/libsvn_client/patch.c,
  subversion/libsvn_diff/diff-file.c: Track renamed functions.

* subversion/tests/libsvn_subr/subst-test.c: Rename to ...

* subversion/tests/libsvn_subr/eol-test.c: ... this, and track renamed
   functions.

Patch by: Edmund Wong <ed {at} kdtc.net>
Suggested by: stsp


r38668 | stylesen | 2009-08-11 01:44:28 -0500 (Tue, 11 Aug 2009)

Change the license type from BSD-Style to Apache License, Version 2.0.

* www/hacking.html
  s/a BSD-style/an Apache License, Version 2.0/

Patch by: Edmund Wong <ed {at} kdtc.net>


r38612 | stsp | 2009-08-07 05:04:43 -0500 (Fri, 07 Aug 2009)

Fix typo in command message that gets written to the test log.
A space was missing between the command and its arguments:
"svnadmindump" -> "svnadmin dump"

* subversion/tests/cmdline/svntest/main.py:
  (copy_repos): Put spaces between format strings.

Patch by: Edmund Wong <ed {at} kdtc.net>
(log message and indentation tweaks by me)


r38575 | stylesen | 2009-08-06 03:54:15 -0500 (Thu, 06 Aug 2009)

Fix a typo.

* subversion/tests/libsvn_wc/db-test.c
  (svn_test_descriptor_t): s/fromat/format/

Patch by: Edmund Wong <ed {at} kdtc.net>