[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

reproduction script for the repository db problems

From: <kfogel_at_collab.net>
Date: 2001-08-20 23:32:27 CEST

For those who want to help out with the recent repository issues, or
just know what's going on, here are some useful documents.

The first is a shell script called `mass-commit', which does 1000
multi-file commits to a repository that was initialized with the
Subversion source tree. This takes a while, so it gives you time to
watch the repository db grow, and time to run other repository
accessors -- such as `svnlook' -- simultaneously if you want. The
script was produced by Greg Stein (I think he wrote a Python program
to generate it), I've just mildly tweaked it below to abstract out
some hardcoded paths. Don't run it if you think your machine is
underpowered; it can really slow things down.

The `mass-commit' script allows you to witness several things:

   a) The "working copy locked" bug (issue #461)

   b) The unrestrained proliferation of Berkeley DB log files in
         the repository's db/ directory; we'll need to be cleaning
         those up, heh.

   b.5) The Berkeley DB "Cannot allocate memory" problem, which shows
         up around the middle of the 1000 commits (it happened on 567
         or 568 for me). This may be the same problem as (b).

   c) The "unexpected end of svndiff input" error. This may also
         be a side-effect of an unhealthy DB, or it may be the same as
         issue #460, which has a concise reproduction recipe.

   d) The DB_INCOMPLETE errors referred to in previous mails.

Since we don't yet have precise reproduction recipes for (a) and (d),
running the `mass-commit' script is the recipe for the time being. In
general, things really start falling shortly after the 500 mark;
toward the end, you'll see a lot of failures. One thing we need to do
is determine for sure that the repository does not contain corrupted
data. I think it's just rejecting commits, not accepting them
wrongly, but need to check that...

Anyway:

Greg Stein and Ben and I are focussed on (b*) and (d), and
data-integrity checking, since those are what's preventing
self-hosting. A fix for (a) can come later, though if Mike Pilato
clears his current stack quickly then (a) might be a good candidate
for his Implacable Bug-Broom. As far as (c) goes, it might be the
same as issue #460 or it might not -- we'll take a look when (b*) and
(d) are cleared.

The remaining excerpts in this email (delimited by "cut-here" lines)
are snapshots of a repository's Berkeley DB, taken at a intervals of a
few seconds. Watch the log files grow... and get left around even
when they're done. Bad.

--------------------8-<-------cut-here---------8-<-----------------------
#!/bin/sh

# Adjust the variables below as necessary, then run this in a
# directory that has a subdirectory "import-me" containing a plain
# Subversion source tree (i.e., an unpacked dist, but with apr/ and
# neon/ removed). One way to get such a subdir is:
#
# $ cd subversion-top-level/
# $ make dist
# $ cd location-of-mass-commit-tests/
# $ tar zxvf subversion-top-level/subversion-M?.tar.gz
# $ mv subversion-M?.tar.gz import-me
#
# You'll probably have to adjust TOP and REPOS_URL below before
# running this script, too. After a run, remember to remove
# mc-repos-* and mc-wc-*, unless you have disk space to burn.

TOP=/home/kfogel/src/subversion
SVN=${TOP}/subversion/clients/cmdline/svn
SVNADMIN=${TOP}/subversion/svnadmin/svnadmin
IMPORT_SRC=import-me
REPOS=mc-repos-$$
REPOS_URL=file://${TOP}/subversion/tests/${REPOS}
WC=mc-wc-$$

# Create the repository with a big initial tree, and check out a
# working copy.
rm -rf ${REPOS}
echo "Creating repository ${REPOS}..."
${SVNADMIN} create ${REPOS}
echo "Done."
echo "Importing to ${REPOS_URL}..."
${SVN} import ${REPOS_URL} ${IMPORT_SRC} trunk
echo "Done."
echo "Checking out from ${REPOS_URL} to ${WC}..."
${SVN} co ${REPOS_URL} -d ${WC}
echo "Done."

# Now make lots of commits, wait for something to break.

################### change 1 ###################
echo ""
echo "Doing commit #1:"
echo 'part of change #1' >> ${WC}/trunk/notes/multi-args.txt
echo 'part of change #1' >> ${WC}/trunk/subversion/include/svn_quoprint.h
echo 'part of change #1' >> ${WC}/trunk/subversion/libsvn_subr/svn_string.c
${SVN} commit -m 'commit #1' ${WC}/trunk/notes/multi-args.txt ${WC}/trunk/subversion/include/svn_quoprint.h ${WC}/trunk/subversion/libsvn_subr/svn_string.c

################### change 2 ###################
echo ""
echo "Doing commit #2:"
echo 'part of change #2' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target0.txt
echo 'part of change #2' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.def
echo 'part of change #2' >> ${WC}/trunk/subversion/libsvn_fs/txn-table.h
echo 'part of change #2' >> ${WC}/trunk/subversion/libsvn_fs/libsvn_fs.dsp
echo 'part of change #2' >> ${WC}/trunk/www/project_footer.html
echo 'part of change #2' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmTestMatrix.frm
echo 'part of change #2' >> ${WC}/trunk/notes/guis/planning.txt
${SVN} commit -m 'commit #2' ${WC}/trunk/subversion/tests/libsvn_vcdiff/target0.txt ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.def ${WC}/trunk/subversion/libsvn_fs/txn-table.h ${WC}/trunk/subversion/libsvn_fs/libsvn_fs.dsp ${WC}/trunk/www/project_footer.html ${WC}/trunk/subversion/clients/win32/SVNControls/frmTestMatrix.frm ${WC}/trunk/notes/guis/planning.txt

################### change 3 ###################
echo ""
echo "Doing commit #3:"
echo 'part of change #3' >> ${WC}/trunk/subversion/libsvn_wc/questions.c
echo 'part of change #3' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.rgs
echo 'part of change #3' >> ${WC}/trunk/doc/user/manual/removals.texi
echo 'part of change #3' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.def
echo 'part of change #3' >> ${WC}/trunk/notes/delta.dtd
echo 'part of change #3' >> ${WC}/trunk/subversion/clients/cmdline/diff.c
echo 'part of change #3' >> ${WC}/trunk/subversion/bindings/svn_string.i
echo 'part of change #3' >> ${WC}/trunk/subversion/clients/cmdline/main.c
echo 'part of change #3' >> ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py
${SVN} commit -m 'commit #3' ${WC}/trunk/subversion/libsvn_wc/questions.c ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.rgs ${WC}/trunk/doc/user/manual/removals.texi ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.def ${WC}/trunk/notes/delta.dtd ${WC}/trunk/subversion/clients/cmdline/diff.c ${WC}/trunk/subversion/bindings/svn_string.i ${WC}/trunk/subversion/clients/cmdline/main.c ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py

################### change 4 ###################
echo ""
echo "Doing commit #4:"
echo 'part of change #4' >> ${WC}/trunk/subversion/libsvn_subr/README.errors
echo 'part of change #4' >> ${WC}/trunk/subversion/clients/cmdline/delete-cmd.c
echo 'part of change #4' >> ${WC}/trunk/subversion/libsvn_wc/adm_ops.c
echo 'part of change #4' >> ${WC}/trunk/subversion/include/svn_error_codes.h
echo 'part of change #4' >> ${WC}/trunk/subversion/include/svn_path.h
echo 'part of change #4' >> ${WC}/trunk/subversion/libsvn_wc/Makefile
echo 'part of change #4' >> ${WC}/trunk/subversion/libsvn_subr/svn_string.c
echo 'part of change #4' >> ${WC}/trunk/subversion/libsvn_fs/trail.h
echo 'part of change #4' >> ${WC}/trunk/doc/programmer/design/model.texi
echo 'part of change #4' >> ${WC}/trunk/subversion/clients/cmdline/cl.h
${SVN} commit -m 'commit #4' ${WC}/trunk/subversion/libsvn_subr/README.errors ${WC}/trunk/subversion/clients/cmdline/delete-cmd.c ${WC}/trunk/subversion/libsvn_wc/adm_ops.c ${WC}/trunk/subversion/include/svn_error_codes.h ${WC}/trunk/subversion/include/svn_path.h ${WC}/trunk/subversion/libsvn_wc/Makefile ${WC}/trunk/subversion/libsvn_subr/svn_string.c ${WC}/trunk/subversion/libsvn_fs/trail.h ${WC}/trunk/doc/programmer/design/model.texi ${WC}/trunk/subversion/clients/cmdline/cl.h

################### change 5 ###################
echo ""
echo "Doing commit #5:"
echo 'part of change #5' >> ${WC}/trunk/subversion/tests/libsvn_delta/svndiff-test.c
echo 'part of change #5' >> ${WC}/trunk/subversion/libsvn_client/update.c
echo 'part of change #5' >> ${WC}/trunk/build-outputs.mk
echo 'part of change #5' >> ${WC}/trunk/expat-lite/utf8tab.h
echo 'part of change #5' >> ${WC}/trunk/subversion/LICENSE
echo 'part of change #5' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta-test.c
${SVN} commit -m 'commit #5' ${WC}/trunk/subversion/tests/libsvn_delta/svndiff-test.c ${WC}/trunk/subversion/libsvn_client/update.c ${WC}/trunk/build-outputs.mk ${WC}/trunk/expat-lite/utf8tab.h ${WC}/trunk/subversion/LICENSE ${WC}/trunk/subversion/tests/libsvn_delta/vdelta-test.c

################### change 6 ###################
echo ""
echo "Doing commit #6:"
echo 'part of change #6' >> ${WC}/trunk/subversion/libsvn_ra_local/split_url.c
echo 'part of change #6' >> ${WC}/trunk/www/project_faq.html
echo 'part of change #6' >> ${WC}/trunk/subversion/include/svn_error_codes.h
echo 'part of change #6' >> ${WC}/trunk/subversion/libsvn_subr/sorts.c
${SVN} commit -m 'commit #6' ${WC}/trunk/subversion/libsvn_ra_local/split_url.c ${WC}/trunk/www/project_faq.html ${WC}/trunk/subversion/include/svn_error_codes.h ${WC}/trunk/subversion/libsvn_subr/sorts.c

################### change 7 ###################
echo ""
echo "Doing commit #7:"
echo 'part of change #7' >> ${WC}/trunk/doc/user/manual/README
echo 'part of change #7' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc
echo 'part of change #7' >> ${WC}/trunk/subversion/tests/libsvn_wc/commit-test.c
echo 'part of change #7' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target2.txt
${SVN} commit -m 'commit #7' ${WC}/trunk/doc/user/manual/README ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc ${WC}/trunk/subversion/tests/libsvn_wc/commit-test.c ${WC}/trunk/subversion/tests/libsvn_vcdiff/target2.txt

################### change 8 ###################
echo ""
echo "Doing commit #8:"
echo 'part of change #8' >> ${WC}/trunk/subversion.dsp
echo 'part of change #8' >> ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.ctl
echo 'part of change #8' >> ${WC}/trunk/subversion/libsvn_fs/validate.h
echo 'part of change #8' >> ${WC}/trunk/subversion/tests/libsvn_subr/path-test.c
echo 'part of change #8' >> ${WC}/trunk/subversion/libsvn_fs/fs.c
echo 'part of change #8' >> ${WC}/trunk/subversion/libsvn_client/libsvn_client.dsp
echo 'part of change #8' >> ${WC}/trunk/subversion/libsvn_fs/structure
${SVN} commit -m 'commit #8' ${WC}/trunk/subversion.dsp ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.ctl ${WC}/trunk/subversion/libsvn_fs/validate.h ${WC}/trunk/subversion/tests/libsvn_subr/path-test.c ${WC}/trunk/subversion/libsvn_fs/fs.c ${WC}/trunk/subversion/libsvn_client/libsvn_client.dsp ${WC}/trunk/subversion/libsvn_fs/structure

################### change 9 ###################
echo ""
echo "Doing commit #9:"
echo 'part of change #9' >> ${WC}/trunk/subversion/tests/svn_test_editor.c
echo 'part of change #9' >> ${WC}/trunk/subversion/clients/cmdline/add-cmd.c
echo 'part of change #9' >> ${WC}/trunk/tools/cvs2svn/design-notes.txt
echo 'part of change #9' >> ${WC}/trunk/subversion/mod_dav_svn/static/Makefile.in
echo 'part of change #9' >> ${WC}/trunk/doc/svn-doc.el
echo 'part of change #9' >> ${WC}/trunk/subversion/mod_dav_svn/liveprops.c
echo 'part of change #9' >> ${WC}/trunk/subversion/tests/libsvn_wc/commit-test.c
echo 'part of change #9' >> ${WC}/trunk/expat-lite/xmltok_ns.c
echo 'part of change #9' >> ${WC}/trunk/COPYING
${SVN} commit -m 'commit #9' ${WC}/trunk/subversion/tests/svn_test_editor.c ${WC}/trunk/subversion/clients/cmdline/add-cmd.c ${WC}/trunk/tools/cvs2svn/design-notes.txt ${WC}/trunk/subversion/mod_dav_svn/static/Makefile.in ${WC}/trunk/doc/svn-doc.el ${WC}/trunk/subversion/mod_dav_svn/liveprops.c ${WC}/trunk/subversion/tests/libsvn_wc/commit-test.c ${WC}/trunk/expat-lite/xmltok_ns.c ${WC}/trunk/COPYING

################### change 10 ###################
echo ""
echo "Doing commit #10:"
echo 'part of change #10' >> ${WC}/trunk/subversion/libsvn_fs/trail.c
echo 'part of change #10' >> ${WC}/trunk/doc/user/manual/model.texi
echo 'part of change #10' >> ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.h
echo 'part of change #10' >> ${WC}/trunk/doc/programmer/design/deltas.texi
echo 'part of change #10' >> ${WC}/trunk/subversion/libsvn_wc/Makefile
echo 'part of change #10' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.h
echo 'part of change #10' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cFlatHeader.cls
echo 'part of change #10' >> ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.c
echo 'part of change #10' >> ${WC}/trunk/notes/difftools/README
${SVN} commit -m 'commit #10' ${WC}/trunk/subversion/libsvn_fs/trail.c ${WC}/trunk/doc/user/manual/model.texi ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.h ${WC}/trunk/doc/programmer/design/deltas.texi ${WC}/trunk/subversion/libsvn_wc/Makefile ${WC}/trunk/subversion/clients/win32/svn_com/SVN.h ${WC}/trunk/subversion/clients/win32/SVNControls/cFlatHeader.cls ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.c ${WC}/trunk/notes/difftools/README

################### change 11 ###################
echo ""
echo "Doing commit #11:"
echo 'part of change #11' >> ${WC}/trunk/subversion/include/svn_fs.h
echo 'part of change #11' >> ${WC}/trunk/expat-lite/iasciitab.h
echo 'part of change #11' >> ${WC}/trunk/subversion/tests/fs-helpers.h
echo 'part of change #11' >> ${WC}/trunk/subversion/tests/libsvn_subr/path-test.c
echo 'part of change #11' >> ${WC}/trunk/www/project_tasks.html
echo 'part of change #11' >> ${WC}/trunk/notes/multi-args.txt
${SVN} commit -m 'commit #11' ${WC}/trunk/subversion/include/svn_fs.h ${WC}/trunk/expat-lite/iasciitab.h ${WC}/trunk/subversion/tests/fs-helpers.h ${WC}/trunk/subversion/tests/libsvn_subr/path-test.c ${WC}/trunk/www/project_tasks.html ${WC}/trunk/notes/multi-args.txt

################### change 12 ###################
echo ""
echo "Doing commit #12:"
echo 'part of change #12' >> ${WC}/trunk/subversion/libsvn_client/revert.c
echo 'part of change #12' >> ${WC}/trunk/subversion/libsvn_subr/getdate.c
echo 'part of change #12' >> ${WC}/trunk/subversion/libsvn_fs/dag.h
echo 'part of change #12' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.def
${SVN} commit -m 'commit #12' ${WC}/trunk/subversion/libsvn_client/revert.c ${WC}/trunk/subversion/libsvn_subr/getdate.c ${WC}/trunk/subversion/libsvn_fs/dag.h ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.def

################### change 13 ###################
echo ""
echo "Doing commit #13:"
echo 'part of change #13' >> ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h
echo 'part of change #13' >> ${WC}/trunk/subversion/libsvn_fs/proplist.h
echo 'part of change #13' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/README
echo 'part of change #13' >> ${WC}/trunk/subversion.dsw
echo 'part of change #13' >> ${WC}/trunk/subversion/tests/libsvn_wc/commit-test.c
echo 'part of change #13' >> ${WC}/trunk/subversion/clients/cmdline/README
echo 'part of change #13' >> ${WC}/trunk/subversion/include/svn_config.h
echo 'part of change #13' >> ${WC}/trunk/subversion/libsvn_fs/strings-table.h
echo 'part of change #13' >> ${WC}/trunk/subversion/bindings/svn_types.i
echo 'part of change #13' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/README
${SVN} commit -m 'commit #13' ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h ${WC}/trunk/subversion/libsvn_fs/proplist.h ${WC}/trunk/subversion/tests/libsvn_vcdiff/README ${WC}/trunk/subversion.dsw ${WC}/trunk/subversion/tests/libsvn_wc/commit-test.c ${WC}/trunk/subversion/clients/cmdline/README ${WC}/trunk/subversion/include/svn_config.h ${WC}/trunk/subversion/libsvn_fs/strings-table.h ${WC}/trunk/subversion/bindings/svn_types.i ${WC}/trunk/subversion/tests/libsvn_vcdiff/README

################### change 14 ###################
echo ""
echo "Doing commit #14:"
echo 'part of change #14' >> ${WC}/trunk/subversion/libsvn_fs/fs.h
echo 'part of change #14' >> ${WC}/trunk/subversion/libsvn_client/commit.c
${SVN} commit -m 'commit #14' ${WC}/trunk/subversion/libsvn_fs/fs.h ${WC}/trunk/subversion/libsvn_client/commit.c

################### change 15 ###################
echo ""
echo "Doing commit #15:"
echo 'part of change #15' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py
echo 'part of change #15' >> ${WC}/trunk/notes/m3-checklist.txt
echo 'part of change #15' >> ${WC}/trunk/subversion/libsvn_wc/lock.c
echo 'part of change #15' >> ${WC}/trunk/subversion/libsvn_subr/target.c
echo 'part of change #15' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmVirtual.frm
echo 'part of change #15' >> ${WC}/trunk/build-outputs.mk
echo 'part of change #15' >> ${WC}/trunk/subversion/clients/cmdline/diff.c
${SVN} commit -m 'commit #15' ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py ${WC}/trunk/notes/m3-checklist.txt ${WC}/trunk/subversion/libsvn_wc/lock.c ${WC}/trunk/subversion/libsvn_subr/target.c ${WC}/trunk/subversion/clients/win32/SVNControls/frmVirtual.frm ${WC}/trunk/build-outputs.mk ${WC}/trunk/subversion/clients/cmdline/diff.c

################### change 16 ###################
echo ""
echo "Doing commit #16:"
echo 'part of change #16' >> ${WC}/trunk/subversion/libsvn_subr/README.errors
echo 'part of change #16' >> ${WC}/trunk/ac-helpers/berkeley-db.m4
${SVN} commit -m 'commit #16' ${WC}/trunk/subversion/libsvn_subr/README.errors ${WC}/trunk/ac-helpers/berkeley-db.m4

################### change 17 ###################
echo ""
echo "Doing commit #17:"
echo 'part of change #17' >> ${WC}/trunk/subversion/libsvn_wc/questions.c
echo 'part of change #17' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_1.txt
echo 'part of change #17' >> ${WC}/trunk/subversion/include/svn_hash.h
echo 'part of change #17' >> ${WC}/trunk/subversion/bindings/svn_delta.i
${SVN} commit -m 'commit #17' ${WC}/trunk/subversion/libsvn_wc/questions.c ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_1.txt ${WC}/trunk/subversion/include/svn_hash.h ${WC}/trunk/subversion/bindings/svn_delta.i

################### change 18 ###################
echo ""
echo "Doing commit #18:"
echo 'part of change #18' >> ${WC}/trunk/subversion/libsvn_ra_dav/session.c
echo 'part of change #18' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.idl
echo 'part of change #18' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmOptions.frm
echo 'part of change #18' >> ${WC}/trunk/subversion/libsvn_fs/strings-table.c
${SVN} commit -m 'commit #18' ${WC}/trunk/subversion/libsvn_ra_dav/session.c ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.idl ${WC}/trunk/subversion/clients/win32/WinSVN/frmOptions.frm ${WC}/trunk/subversion/libsvn_fs/strings-table.c

################### change 19 ###################
echo ""
echo "Doing commit #19:"
echo 'part of change #19' >> ${WC}/trunk/subversion/tests/clients/cmdline/commit_tests.py
echo 'part of change #19' >> ${WC}/trunk/doc/user/manual/model.texi
echo 'part of change #19' >> ${WC}/trunk/subversion/libsvn_fs/tree.h
echo 'part of change #19' >> ${WC}/trunk/INSTALL
${SVN} commit -m 'commit #19' ${WC}/trunk/subversion/tests/clients/cmdline/commit_tests.py ${WC}/trunk/doc/user/manual/model.texi ${WC}/trunk/subversion/libsvn_fs/tree.h ${WC}/trunk/INSTALL

################### change 20 ###################
echo ""
echo "Doing commit #20:"
echo 'part of change #20' >> ${WC}/trunk/notes/txdelta_sanity
echo 'part of change #20' >> ${WC}/trunk/subversion/libsvn_fs/node-rev.h
echo 'part of change #20' >> ${WC}/trunk/subversion/include/svn_hash.h
echo 'part of change #20' >> ${WC}/trunk/subversion/libsvn_subr/target.c
echo 'part of change #20' >> ${WC}/trunk/subversion/tests/libsvn_subr/target-test.c
echo 'part of change #20' >> ${WC}/trunk/subversion/tests/xml/up-props.xml
echo 'part of change #20' >> ${WC}/trunk/subversion/include/svn_ra.h
echo 'part of change #20' >> ${WC}/trunk/subversion/clients/win32/svn_com/misc.cpp
echo 'part of change #20' >> ${WC}/trunk/www/project_faq.html
echo 'part of change #20' >> ${WC}/trunk/notes/difftools/pics/README
${SVN} commit -m 'commit #20' ${WC}/trunk/notes/txdelta_sanity ${WC}/trunk/subversion/libsvn_fs/node-rev.h ${WC}/trunk/subversion/include/svn_hash.h ${WC}/trunk/subversion/libsvn_subr/target.c ${WC}/trunk/subversion/tests/libsvn_subr/target-test.c ${WC}/trunk/subversion/tests/xml/up-props.xml ${WC}/trunk/subversion/include/svn_ra.h ${WC}/trunk/subversion/clients/win32/svn_com/misc.cpp ${WC}/trunk/www/project_faq.html ${WC}/trunk/notes/difftools/pics/README

################### change 21 ###################
echo ""
echo "Doing commit #21:"
echo 'part of change #21' >> ${WC}/trunk/subversion/libsvn_fs/nodes-table.h
echo 'part of change #21' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.h
echo 'part of change #21' >> ${WC}/trunk/subversion/libsvn_fs/validate.h
echo 'part of change #21' >> ${WC}/trunk/subversion/libsvn_delta/xml_output.c
echo 'part of change #21' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Status.java
echo 'part of change #21' >> ${WC}/trunk/PORTING
echo 'part of change #21' >> ${WC}/trunk/doc/programmer/design/svn-design.texi
${SVN} commit -m 'commit #21' ${WC}/trunk/subversion/libsvn_fs/nodes-table.h ${WC}/trunk/subversion/clients/win32/svn_com/SVN.h ${WC}/trunk/subversion/libsvn_fs/validate.h ${WC}/trunk/subversion/libsvn_delta/xml_output.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Status.java ${WC}/trunk/PORTING ${WC}/trunk/doc/programmer/design/svn-design.texi

################### change 22 ###################
echo ""
echo "Doing commit #22:"
echo 'part of change #22' >> ${WC}/trunk/subversion/libsvn_ra_dav/ra_dav.h
echo 'part of change #22' >> ${WC}/trunk/BUGS
echo 'part of change #22' >> ${WC}/trunk/subversion/tests/xml/co1-postfix.xml
echo 'part of change #22' >> ${WC}/trunk/doc/programmer/design/svn-design.txt
echo 'part of change #22' >> ${WC}/trunk/subversion/libsvn_ra_dav/merge.c
echo 'part of change #22' >> ${WC}/trunk/notes/difftools/README
echo 'part of change #22' >> ${WC}/trunk/doc/programmer/design/future.texi
echo 'part of change #22' >> ${WC}/trunk/subversion/libsvn_delta/README.xmlparse
${SVN} commit -m 'commit #22' ${WC}/trunk/subversion/libsvn_ra_dav/ra_dav.h ${WC}/trunk/BUGS ${WC}/trunk/subversion/tests/xml/co1-postfix.xml ${WC}/trunk/doc/programmer/design/svn-design.txt ${WC}/trunk/subversion/libsvn_ra_dav/merge.c ${WC}/trunk/notes/difftools/README ${WC}/trunk/doc/programmer/design/future.texi ${WC}/trunk/subversion/libsvn_delta/README.xmlparse

################### change 23 ###################
echo ""
echo "Doing commit #23:"
echo 'part of change #23' >> ${WC}/trunk/tools/cvs2svn/README
echo 'part of change #23' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.cpp
echo 'part of change #23' >> ${WC}/trunk/doc/programmer/design/svn-design.html
echo 'part of change #23' >> ${WC}/trunk/doc/svn-doc.el
echo 'part of change #23' >> ${WC}/trunk/doc/user/manual/dirversioning.texi
echo 'part of change #23' >> ${WC}/trunk/subversion/tests/libsvn_fs/strings-reps-test.c
echo 'part of change #23' >> ${WC}/trunk/subversion/libsvn_repos/hooks.c
echo 'part of change #23' >> ${WC}/trunk/subversion/libsvn_repos/hooks.txt
${SVN} commit -m 'commit #23' ${WC}/trunk/tools/cvs2svn/README ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.cpp ${WC}/trunk/doc/programmer/design/svn-design.html ${WC}/trunk/doc/svn-doc.el ${WC}/trunk/doc/user/manual/dirversioning.texi ${WC}/trunk/subversion/tests/libsvn_fs/strings-reps-test.c ${WC}/trunk/subversion/libsvn_repos/hooks.c ${WC}/trunk/subversion/libsvn_repos/hooks.txt

################### change 24 ###################
echo ""
echo "Doing commit #24:"
echo 'part of change #24' >> ${WC}/trunk/tools/cvs2svn/design-notes.txt
echo 'part of change #24' >> ${WC}/trunk/subversion/tests/libsvn_fs/fs-test.c
echo 'part of change #24' >> ${WC}/trunk/subversion/tests/xml/up5.xml
echo 'part of change #24' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Entry.java
echo 'part of change #24' >> ${WC}/trunk/subversion/libsvn_fs/reps-strings.h
echo 'part of change #24' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaOp.java
echo 'part of change #24' >> ${WC}/trunk/subversion/bindings/svn_error.i
${SVN} commit -m 'commit #24' ${WC}/trunk/tools/cvs2svn/design-notes.txt ${WC}/trunk/subversion/tests/libsvn_fs/fs-test.c ${WC}/trunk/subversion/tests/xml/up5.xml ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Entry.java ${WC}/trunk/subversion/libsvn_fs/reps-strings.h ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaOp.java ${WC}/trunk/subversion/bindings/svn_error.i

################### change 25 ###################
echo ""
echo "Doing commit #25:"
echo 'part of change #25' >> ${WC}/trunk/subversion/clients/cmdline/help-cmd.c
echo 'part of change #25' >> ${WC}/trunk/subversion/include/svn_config.h
echo 'part of change #25' >> ${WC}/trunk/NEWS
${SVN} commit -m 'commit #25' ${WC}/trunk/subversion/clients/cmdline/help-cmd.c ${WC}/trunk/subversion/include/svn_config.h ${WC}/trunk/NEWS

################### change 26 ###################
echo ""
echo "Doing commit #26:"
echo 'part of change #26' >> ${WC}/trunk/ac-helpers/svn-apache.m4
${SVN} commit -m 'commit #26' ${WC}/trunk/ac-helpers/svn-apache.m4

################### change 27 ###################
echo ""
echo "Doing commit #27:"
echo 'part of change #27' >> ${WC}/trunk/notes/guis/README
echo 'part of change #27' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py
echo 'part of change #27' >> ${WC}/trunk/subversion/clients/win32/svn_com/misc.cpp
${SVN} commit -m 'commit #27' ${WC}/trunk/notes/guis/README ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py ${WC}/trunk/subversion/clients/win32/svn_com/misc.cpp

################### change 28 ###################
echo ""
echo "Doing commit #28:"
echo 'part of change #28' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Entry.java
echo 'part of change #28' >> ${WC}/trunk/subversion/libsvn_fs/nodes-table.h
echo 'part of change #28' >> ${WC}/trunk/tools/cvs2svn/CheckedClass.pm
echo 'part of change #28' >> ${WC}/trunk/subversion/include/svn_hash.h
echo 'part of change #28' >> ${WC}/trunk/doc/user/manual/README
echo 'part of change #28' >> ${WC}/trunk/subversion/libsvn_delta/default_editor.c
echo 'part of change #28' >> ${WC}/trunk/subversion/libsvn_ra_dav/libsvn_ra_dav.dsp
echo 'part of change #28' >> ${WC}/trunk/doc/user/manual/dirversioning.texi
${SVN} commit -m 'commit #28' ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Entry.java ${WC}/trunk/subversion/libsvn_fs/nodes-table.h ${WC}/trunk/tools/cvs2svn/CheckedClass.pm ${WC}/trunk/subversion/include/svn_hash.h ${WC}/trunk/doc/user/manual/README ${WC}/trunk/subversion/libsvn_delta/default_editor.c ${WC}/trunk/subversion/libsvn_ra_dav/libsvn_ra_dav.dsp ${WC}/trunk/doc/user/manual/dirversioning.texi

################### change 29 ###################
echo ""
echo "Doing commit #29:"
echo 'part of change #29' >> ${WC}/trunk/subversion/svn-dev.el
echo 'part of change #29' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Status.java
${SVN} commit -m 'commit #29' ${WC}/trunk/subversion/svn-dev.el ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Status.java

################### change 30 ###################
echo ""
echo "Doing commit #30:"
echo 'part of change #30' >> ${WC}/trunk/subversion/libsvn_ra_dav/merge.c
echo 'part of change #30' >> ${WC}/trunk/notes/old/karlnotes
${SVN} commit -m 'commit #30' ${WC}/trunk/subversion/libsvn_ra_dav/merge.c ${WC}/trunk/notes/old/karlnotes

################### change 31 ###################
echo ""
echo "Doing commit #31:"
echo 'part of change #31' >> ${WC}/trunk/notes/difftools/pics/FileMerge-README
${SVN} commit -m 'commit #31' ${WC}/trunk/notes/difftools/pics/FileMerge-README

################### change 32 ###################
echo ""
echo "Doing commit #32:"
echo 'part of change #32' >> ${WC}/trunk/doc/programmer/design/svn-design.texi
echo 'part of change #32' >> ${WC}/trunk/subversion/libsvn_fs/skel.h
echo 'part of change #32' >> ${WC}/trunk/subversion/clients/win32/WinSVN/DriveHelpers.bas
${SVN} commit -m 'commit #32' ${WC}/trunk/doc/programmer/design/svn-design.texi ${WC}/trunk/subversion/libsvn_fs/skel.h ${WC}/trunk/subversion/clients/win32/WinSVN/DriveHelpers.bas

################### change 33 ###################
echo ""
echo "Doing commit #33:"
echo 'part of change #33' >> ${WC}/trunk/subversion/libsvn_wc/questions.c
${SVN} commit -m 'commit #33' ${WC}/trunk/subversion/libsvn_wc/questions.c

################### change 34 ###################
echo ""
echo "Doing commit #34:"
echo 'part of change #34' >> ${WC}/trunk/subversion/include/svn_error_codes.h
echo 'part of change #34' >> ${WC}/trunk/BUGS
echo 'part of change #34' >> ${WC}/trunk/subversion/libsvn_fs/nodes-table.h
${SVN} commit -m 'commit #34' ${WC}/trunk/subversion/include/svn_error_codes.h ${WC}/trunk/BUGS ${WC}/trunk/subversion/libsvn_fs/nodes-table.h

################### change 35 ###################
echo ""
echo "Doing commit #35:"
echo 'part of change #35' >> ${WC}/trunk/subversion/include/svn_sorts.h
echo 'part of change #35' >> ${WC}/trunk/doc/programmer/design/svn-design.txt
echo 'part of change #35' >> ${WC}/trunk/ac-helpers/svn-macros.m4
echo 'part of change #35' >> ${WC}/trunk/subversion/libsvn_client/delete.c
echo 'part of change #35' >> ${WC}/trunk/subversion/include/svn_client.h
echo 'part of change #35' >> ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp
echo 'part of change #35' >> ${WC}/trunk/expat-lite/xmltok_impl.c
echo 'part of change #35' >> ${WC}/trunk/subversion/libsvn_ra/ra_loader.c
${SVN} commit -m 'commit #35' ${WC}/trunk/subversion/include/svn_sorts.h ${WC}/trunk/doc/programmer/design/svn-design.txt ${WC}/trunk/ac-helpers/svn-macros.m4 ${WC}/trunk/subversion/libsvn_client/delete.c ${WC}/trunk/subversion/include/svn_client.h ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp ${WC}/trunk/expat-lite/xmltok_impl.c ${WC}/trunk/subversion/libsvn_ra/ra_loader.c

################### change 36 ###################
echo ""
echo "Doing commit #36:"
echo 'part of change #36' >> ${WC}/trunk/www/project_status.html
echo 'part of change #36' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target0.txt
echo 'part of change #36' >> ${WC}/trunk/subversion/clients/cmdline/props.c
echo 'part of change #36' >> ${WC}/trunk/notes/fs-improvements.txt
echo 'part of change #36' >> ${WC}/trunk/subversion/tests/libsvn_delta/postfix.delta
echo 'part of change #36' >> ${WC}/trunk/PORTING
echo 'part of change #36' >> ${WC}/trunk/www/project_faq.html
echo 'part of change #36' >> ${WC}/trunk/subversion/libsvn_wc/util.c
${SVN} commit -m 'commit #36' ${WC}/trunk/www/project_status.html ${WC}/trunk/subversion/tests/libsvn_vcdiff/target0.txt ${WC}/trunk/subversion/clients/cmdline/props.c ${WC}/trunk/notes/fs-improvements.txt ${WC}/trunk/subversion/tests/libsvn_delta/postfix.delta ${WC}/trunk/PORTING ${WC}/trunk/www/project_faq.html ${WC}/trunk/subversion/libsvn_wc/util.c

################### change 37 ###################
echo ""
echo "Doing commit #37:"
echo 'part of change #37' >> ${WC}/trunk/subversion/bindings/svn_io.i
echo 'part of change #37' >> ${WC}/trunk/expat-lite/nametab.h
echo 'part of change #37' >> ${WC}/trunk/subversion/clients/cmdline/status-cmd.c
echo 'part of change #37' >> ${WC}/trunk/subversion/libsvn_wc/questions.c
echo 'part of change #37' >> ${WC}/trunk/www/project_status.html
echo 'part of change #37' >> ${WC}/trunk/subversion/libsvn_subr/io.c
echo 'part of change #37' >> ${WC}/trunk/expat-lite/xmltok_ns.c
echo 'part of change #37' >> ${WC}/trunk/subversion/libsvn_subr/sorts.c
echo 'part of change #37' >> ${WC}/trunk/subversion/tests/libsvn_wc/simple.delta
echo 'part of change #37' >> ${WC}/trunk/subversion/clients/win32/svn_com/resource.h
${SVN} commit -m 'commit #37' ${WC}/trunk/subversion/bindings/svn_io.i ${WC}/trunk/expat-lite/nametab.h ${WC}/trunk/subversion/clients/cmdline/status-cmd.c ${WC}/trunk/subversion/libsvn_wc/questions.c ${WC}/trunk/www/project_status.html ${WC}/trunk/subversion/libsvn_subr/io.c ${WC}/trunk/expat-lite/xmltok_ns.c ${WC}/trunk/subversion/libsvn_subr/sorts.c ${WC}/trunk/subversion/tests/libsvn_wc/simple.delta ${WC}/trunk/subversion/clients/win32/svn_com/resource.h

################### change 38 ###################
echo ""
echo "Doing commit #38:"
echo 'part of change #38' >> ${WC}/trunk/subversion/libsvn_fs/txn.c
echo 'part of change #38' >> ${WC}/trunk/subversion/clients/cmdline/util.c
echo 'part of change #38' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.h
echo 'part of change #38' >> ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse_test.dsp
${SVN} commit -m 'commit #38' ${WC}/trunk/subversion/libsvn_fs/txn.c ${WC}/trunk/subversion/clients/cmdline/util.c ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.h ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse_test.dsp

################### change 39 ###################
echo ""
echo "Doing commit #39:"
echo 'part of change #39' >> ${WC}/trunk/subversion/include/svn_quoprint.h
echo 'part of change #39' >> ${WC}/trunk/subversion/mod_dav_svn/deadprops.c
echo 'part of change #39' >> ${WC}/trunk/subversion/bindings/svn_fs.i
${SVN} commit -m 'commit #39' ${WC}/trunk/subversion/include/svn_quoprint.h ${WC}/trunk/subversion/mod_dav_svn/deadprops.c ${WC}/trunk/subversion/bindings/svn_fs.i

################### change 40 ###################
echo ""
echo "Doing commit #40:"
echo 'part of change #40' >> ${WC}/trunk/notes/delta.dtd
echo 'part of change #40' >> ${WC}/trunk/subversion/libsvn_wc/status.c
echo 'part of change #40' >> ${WC}/trunk/subversion/clients/cmdline/propdel-cmd.c
echo 'part of change #40' >> ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.vbp
${SVN} commit -m 'commit #40' ${WC}/trunk/notes/delta.dtd ${WC}/trunk/subversion/libsvn_wc/status.c ${WC}/trunk/subversion/clients/cmdline/propdel-cmd.c ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.vbp

################### change 41 ###################
echo ""
echo "Doing commit #41:"
echo 'part of change #41' >> ${WC}/trunk/subversion/bindings/svn_types.i
echo 'part of change #41' >> ${WC}/trunk/subversion/tests/xml/pipatch.xml
echo 'part of change #41' >> ${WC}/trunk/subversion/clients/win32/WinSVN/ExplorerViewHelpers.cls
echo 'part of change #41' >> ${WC}/trunk/doc/programmer/design/server.texi
echo 'part of change #41' >> ${WC}/trunk/notes/svn-config-files
echo 'part of change #41' >> ${WC}/trunk/svn_private_config.hw
echo 'part of change #41' >> ${WC}/trunk/subversion/libsvn_subr/quoprint.c
echo 'part of change #41' >> ${WC}/trunk/notes/auth_proposal.txt
echo 'part of change #41' >> ${WC}/trunk/doc/programmer/design/protocol.texi
echo 'part of change #41' >> ${WC}/trunk/subversion/tests/libsvn_subr/hashdump_test.dsp
${SVN} commit -m 'commit #41' ${WC}/trunk/subversion/bindings/svn_types.i ${WC}/trunk/subversion/tests/xml/pipatch.xml ${WC}/trunk/subversion/clients/win32/WinSVN/ExplorerViewHelpers.cls ${WC}/trunk/doc/programmer/design/server.texi ${WC}/trunk/notes/svn-config-files ${WC}/trunk/svn_private_config.hw ${WC}/trunk/subversion/libsvn_subr/quoprint.c ${WC}/trunk/notes/auth_proposal.txt ${WC}/trunk/doc/programmer/design/protocol.texi ${WC}/trunk/subversion/tests/libsvn_subr/hashdump_test.dsp

################### change 42 ###################
echo ""
echo "Doing commit #42:"
echo 'part of change #42' >> ${WC}/trunk/subversion/tests/xml/pipatch.xml
echo 'part of change #42' >> ${WC}/trunk/subversion/clients/win32/SVNControls/ppgColumns.pag
echo 'part of change #42' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.h
echo 'part of change #42' >> ${WC}/trunk/subversion/clients/cmdline/checkout-cmd.c
echo 'part of change #42' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.mk
${SVN} commit -m 'commit #42' ${WC}/trunk/subversion/tests/xml/pipatch.xml ${WC}/trunk/subversion/clients/win32/SVNControls/ppgColumns.pag ${WC}/trunk/subversion/libsvn_fs/reps-table.h ${WC}/trunk/subversion/clients/cmdline/checkout-cmd.c ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.mk

################### change 43 ###################
echo ""
echo "Doing commit #43:"
echo 'part of change #43' >> ${WC}/trunk/subversion/libsvn_fs/proplist.c
echo 'part of change #43' >> ${WC}/trunk/subversion/libsvn_delta/libsvn_delta.dsp
echo 'part of change #43' >> ${WC}/trunk/COPYING
echo 'part of change #43' >> ${WC}/trunk/subversion/libsvn_fs/proplist.h
echo 'part of change #43' >> ${WC}/trunk/subversion/tests/libsvn_delta/simple.delta
echo 'part of change #43' >> ${WC}/trunk/subversion.dsp
echo 'part of change #43' >> ${WC}/trunk/subversion/libsvn_wc/props.c
${SVN} commit -m 'commit #43' ${WC}/trunk/subversion/libsvn_fs/proplist.c ${WC}/trunk/subversion/libsvn_delta/libsvn_delta.dsp ${WC}/trunk/COPYING ${WC}/trunk/subversion/libsvn_fs/proplist.h ${WC}/trunk/subversion/tests/libsvn_delta/simple.delta ${WC}/trunk/subversion.dsp ${WC}/trunk/subversion/libsvn_wc/props.c

################### change 44 ###################
echo ""
echo "Doing commit #44:"
echo 'part of change #44' >> ${WC}/trunk/subversion/libsvn_fs/reps-strings.h
echo 'part of change #44' >> ${WC}/trunk/subversion/clients/win32/WinSVN/Startup.bas
echo 'part of change #44' >> ${WC}/trunk/Makefile.in
echo 'part of change #44' >> ${WC}/trunk/subversion/libsvn_repos/lock.c
echo 'part of change #44' >> ${WC}/trunk/subversion/tests/greek-tree.txt
echo 'part of change #44' >> ${WC}/trunk/subversion/libsvn_wc/libsvn_wc.dsp
echo 'part of change #44' >> ${WC}/trunk/expat-lite/xmltok.c
echo 'part of change #44' >> ${WC}/trunk/doc/svn-doc.el
echo 'part of change #44' >> ${WC}/trunk/subversion/libsvn_fs/structure
${SVN} commit -m 'commit #44' ${WC}/trunk/subversion/libsvn_fs/reps-strings.h ${WC}/trunk/subversion/clients/win32/WinSVN/Startup.bas ${WC}/trunk/Makefile.in ${WC}/trunk/subversion/libsvn_repos/lock.c ${WC}/trunk/subversion/tests/greek-tree.txt ${WC}/trunk/subversion/libsvn_wc/libsvn_wc.dsp ${WC}/trunk/expat-lite/xmltok.c ${WC}/trunk/doc/svn-doc.el ${WC}/trunk/subversion/libsvn_fs/structure

################### change 45 ###################
echo ""
echo "Doing commit #45:"
echo 'part of change #45' >> ${WC}/trunk/subversion/libsvn_fs/proplist.c
echo 'part of change #45' >> ${WC}/trunk/subversion/clients/win32/SVNControls/type.dat
echo 'part of change #45' >> ${WC}/trunk/www/testing-goals.html
echo 'part of change #45' >> ${WC}/trunk/subversion/clients/win32/WinSVN/DriveHelpers.bas
echo 'part of change #45' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.cpp
echo 'part of change #45' >> ${WC}/trunk/doc/programmer/design/svn-design.html
echo 'part of change #45' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target4.txt
echo 'part of change #45' >> ${WC}/trunk/subversion/libsvn_delta/vdelta.c
${SVN} commit -m 'commit #45' ${WC}/trunk/subversion/libsvn_fs/proplist.c ${WC}/trunk/subversion/clients/win32/SVNControls/type.dat ${WC}/trunk/www/testing-goals.html ${WC}/trunk/subversion/clients/win32/WinSVN/DriveHelpers.bas ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.cpp ${WC}/trunk/doc/programmer/design/svn-design.html ${WC}/trunk/subversion/tests/libsvn_vcdiff/target4.txt ${WC}/trunk/subversion/libsvn_delta/vdelta.c

################### change 46 ###################
echo ""
echo "Doing commit #46:"
echo 'part of change #46' >> ${WC}/trunk/subversion/libsvn_repos/libsvn_repos.dsp
echo 'part of change #46' >> ${WC}/trunk/expat-lite/xmltok_impl.h
echo 'part of change #46' >> ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta
echo 'part of change #46' >> ${WC}/trunk/subversion/tests/libsvn_delta/postfix.delta
echo 'part of change #46' >> ${WC}/trunk/www/webdav-usage.html
echo 'part of change #46' >> ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta
echo 'part of change #46' >> ${WC}/trunk/subversion/tests/fs-helpers.h
echo 'part of change #46' >> ${WC}/trunk/subversion/clients/cmdline/main.c
echo 'part of change #46' >> ${WC}/trunk/subversion/libsvn_subr/hashdump.c
echo 'part of change #46' >> ${WC}/trunk/notes/difftools/pics/xxdiff-README
${SVN} commit -m 'commit #46' ${WC}/trunk/subversion/libsvn_repos/libsvn_repos.dsp ${WC}/trunk/expat-lite/xmltok_impl.h ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta ${WC}/trunk/subversion/tests/libsvn_delta/postfix.delta ${WC}/trunk/www/webdav-usage.html ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta ${WC}/trunk/subversion/tests/fs-helpers.h ${WC}/trunk/subversion/clients/cmdline/main.c ${WC}/trunk/subversion/libsvn_subr/hashdump.c ${WC}/trunk/notes/difftools/pics/xxdiff-README

################### change 47 ###################
echo ""
echo "Doing commit #47:"
echo 'part of change #47' >> ${WC}/trunk/COPYING
echo 'part of change #47' >> ${WC}/trunk/doc/programmer/design/svn-design.texi
echo 'part of change #47' >> ${WC}/trunk/subversion/clients/cmdline/propdel-cmd.c
echo 'part of change #47' >> ${WC}/trunk/subversion/libsvn_fs/skel.c
echo 'part of change #47' >> ${WC}/trunk/subversion/clients/win32/SVNControls/ppgColumns.pag
echo 'part of change #47' >> ${WC}/trunk/subversion/tests/libsvn_wc/checkout-1.txt
echo 'part of change #47' >> ${WC}/trunk/expat-lite/xmltok_impl.h
echo 'part of change #47' >> ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py
echo 'part of change #47' >> ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h
${SVN} commit -m 'commit #47' ${WC}/trunk/COPYING ${WC}/trunk/doc/programmer/design/svn-design.texi ${WC}/trunk/subversion/clients/cmdline/propdel-cmd.c ${WC}/trunk/subversion/libsvn_fs/skel.c ${WC}/trunk/subversion/clients/win32/SVNControls/ppgColumns.pag ${WC}/trunk/subversion/tests/libsvn_wc/checkout-1.txt ${WC}/trunk/expat-lite/xmltok_impl.h ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h

################### change 48 ###################
echo ""
echo "Doing commit #48:"
echo 'part of change #48' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.rgs
echo 'part of change #48' >> ${WC}/trunk/subversion/libsvn_wc/questions.c
echo 'part of change #48' >> ${WC}/trunk/subversion/libsvn_fs/nodes-table.c
echo 'part of change #48' >> ${WC}/trunk/www/index.html
echo 'part of change #48' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/actions.py
echo 'part of change #48' >> ${WC}/trunk/subversion/clients/cmdline/prompt.c
echo 'part of change #48' >> ${WC}/trunk/subversion/libsvn_fs/err.h
echo 'part of change #48' >> ${WC}/trunk/subversion/libsvn_wc/log.c
echo 'part of change #48' >> ${WC}/trunk/doc/programmer/WritingChangeLogs.txt
echo 'part of change #48' >> ${WC}/trunk/www/project_source.html
${SVN} commit -m 'commit #48' ${WC}/trunk/subversion/clients/win32/svn_com/SVN.rgs ${WC}/trunk/subversion/libsvn_wc/questions.c ${WC}/trunk/subversion/libsvn_fs/nodes-table.c ${WC}/trunk/www/index.html ${WC}/trunk/subversion/tests/clients/cmdline/svntest/actions.py ${WC}/trunk/subversion/clients/cmdline/prompt.c ${WC}/trunk/subversion/libsvn_fs/err.h ${WC}/trunk/subversion/libsvn_wc/log.c ${WC}/trunk/doc/programmer/WritingChangeLogs.txt ${WC}/trunk/www/project_source.html

################### change 49 ###################
echo ""
echo "Doing commit #49:"
echo 'part of change #49' >> ${WC}/trunk/doc/programmer/design/svn-design.html
echo 'part of change #49' >> ${WC}/trunk/subversion/tests/xml/up1a-postfix.xml
echo 'part of change #49' >> ${WC}/trunk/subversion.dsp
echo 'part of change #49' >> ${WC}/trunk/doc/user/manual/dirversioning.texi
${SVN} commit -m 'commit #49' ${WC}/trunk/doc/programmer/design/svn-design.html ${WC}/trunk/subversion/tests/xml/up1a-postfix.xml ${WC}/trunk/subversion.dsp ${WC}/trunk/doc/user/manual/dirversioning.texi

################### change 50 ###################
echo ""
echo "Doing commit #50:"
echo 'part of change #50' >> ${WC}/trunk/subversion/clients/cmdline/propset-cmd.c
echo 'part of change #50' >> ${WC}/trunk/subversion/tests/libsvn_delta/random_test.dsp
echo 'part of change #50' >> ${WC}/trunk/subversion/svnadmin/svnadmin.dsp
echo 'part of change #50' >> ${WC}/trunk/expat-lite/CHANGES.svn
echo 'part of change #50' >> ${WC}/trunk/subversion/svnadmin/svnadmin.dsp
echo 'part of change #50' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.h
${SVN} commit -m 'commit #50' ${WC}/trunk/subversion/clients/cmdline/propset-cmd.c ${WC}/trunk/subversion/tests/libsvn_delta/random_test.dsp ${WC}/trunk/subversion/svnadmin/svnadmin.dsp ${WC}/trunk/expat-lite/CHANGES.svn ${WC}/trunk/subversion/svnadmin/svnadmin.dsp ${WC}/trunk/subversion/clients/win32/svn_com/SVN.h

################### change 51 ###################
echo ""
echo "Doing commit #51:"
echo 'part of change #51' >> ${WC}/trunk/expat-lite/hashtable.h
echo 'part of change #51' >> ${WC}/trunk/notes/difftools/pics/xxdiff-README
echo 'part of change #51' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc
echo 'part of change #51' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target1.txt
echo 'part of change #51' >> ${WC}/trunk/notes/entries-handling.txt
echo 'part of change #51' >> ${WC}/trunk/subversion/include/svn_error.h
${SVN} commit -m 'commit #51' ${WC}/trunk/expat-lite/hashtable.h ${WC}/trunk/notes/difftools/pics/xxdiff-README ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc ${WC}/trunk/subversion/tests/libsvn_vcdiff/target1.txt ${WC}/trunk/notes/entries-handling.txt ${WC}/trunk/subversion/include/svn_error.h

################### change 52 ###################
echo ""
echo "Doing commit #52:"
echo 'part of change #52' >> ${WC}/trunk/subversion/clients/cmdline/cleanup-cmd.c
echo 'part of change #52' >> ${WC}/trunk/subversion/libsvn_subr/svn_string.c
echo 'part of change #52' >> ${WC}/trunk/build.conf
echo 'part of change #52' >> ${WC}/trunk/README
echo 'part of change #52' >> ${WC}/trunk/expat-lite/CHANGES
echo 'part of change #52' >> ${WC}/trunk/expat-lite/iasciitab.h
echo 'part of change #52' >> ${WC}/trunk/ac-helpers/ltmain.sh
echo 'part of change #52' >> ${WC}/trunk/subversion/clients/win32/svn_com/misc.h
echo 'part of change #52' >> ${WC}/trunk/svn_config.dsp
${SVN} commit -m 'commit #52' ${WC}/trunk/subversion/clients/cmdline/cleanup-cmd.c ${WC}/trunk/subversion/libsvn_subr/svn_string.c ${WC}/trunk/build.conf ${WC}/trunk/README ${WC}/trunk/expat-lite/CHANGES ${WC}/trunk/expat-lite/iasciitab.h ${WC}/trunk/ac-helpers/ltmain.sh ${WC}/trunk/subversion/clients/win32/svn_com/misc.h ${WC}/trunk/svn_config.dsp

################### change 53 ###################
echo ""
echo "Doing commit #53:"
echo 'part of change #53' >> ${WC}/trunk/expat-lite/expat.html
echo 'part of change #53' >> ${WC}/trunk/expat-lite/xmlrole.c
echo 'part of change #53' >> ${WC}/trunk/notes/difftools/pics/xxdiff-README
echo 'part of change #53' >> ${WC}/trunk/subversion/libsvn_wc/lock.c
echo 'part of change #53' >> ${WC}/trunk/subversion/libsvn_wc/entries.c
${SVN} commit -m 'commit #53' ${WC}/trunk/expat-lite/expat.html ${WC}/trunk/expat-lite/xmlrole.c ${WC}/trunk/notes/difftools/pics/xxdiff-README ${WC}/trunk/subversion/libsvn_wc/lock.c ${WC}/trunk/subversion/libsvn_wc/entries.c

################### change 54 ###################
echo ""
echo "Doing commit #54:"
echo 'part of change #54' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmOptions.frm
echo 'part of change #54' >> ${WC}/trunk/subversion/clients/win32/WinSVN/DriveHelpers.bas
echo 'part of change #54' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmSplash.frm
echo 'part of change #54' >> ${WC}/trunk/subversion/clients/win32/SVNControls/gDevGrid.vbg
echo 'part of change #54' >> ${WC}/trunk/subversion/libsvn_fs/nodes-table.c
echo 'part of change #54' >> ${WC}/trunk/subversion/libsvn_fs/id.h
echo 'part of change #54' >> ${WC}/trunk/subversion/mod_dav_svn/repos.c
echo 'part of change #54' >> ${WC}/trunk/subversion/clients/cmdline/README
echo 'part of change #54' >> ${WC}/trunk/expat-lite/expat.html
echo 'part of change #54' >> ${WC}/trunk/subversion/libsvn_fs/skel.h
${SVN} commit -m 'commit #54' ${WC}/trunk/subversion/clients/win32/WinSVN/frmOptions.frm ${WC}/trunk/subversion/clients/win32/WinSVN/DriveHelpers.bas ${WC}/trunk/subversion/clients/win32/WinSVN/frmSplash.frm ${WC}/trunk/subversion/clients/win32/SVNControls/gDevGrid.vbg ${WC}/trunk/subversion/libsvn_fs/nodes-table.c ${WC}/trunk/subversion/libsvn_fs/id.h ${WC}/trunk/subversion/mod_dav_svn/repos.c ${WC}/trunk/subversion/clients/cmdline/README ${WC}/trunk/expat-lite/expat.html ${WC}/trunk/subversion/libsvn_fs/skel.h

################### change 55 ###################
echo ""
echo "Doing commit #55:"
echo 'part of change #55' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cHeaderControl.cls
echo 'part of change #55' >> ${WC}/trunk/doc/README
echo 'part of change #55' >> ${WC}/trunk/subversion/tests/libsvn_subr/tests_libsvn_subr_target_test.dsp
echo 'part of change #55' >> ${WC}/trunk/subversion/clients/cmdline/add-cmd.c
echo 'part of change #55' >> ${WC}/trunk/subversion/include/svn_xml.h
${SVN} commit -m 'commit #55' ${WC}/trunk/subversion/clients/win32/SVNControls/cHeaderControl.cls ${WC}/trunk/doc/README ${WC}/trunk/subversion/tests/libsvn_subr/tests_libsvn_subr_target_test.dsp ${WC}/trunk/subversion/clients/cmdline/add-cmd.c ${WC}/trunk/subversion/include/svn_xml.h

################### change 56 ###################
echo ""
echo "Doing commit #56:"
echo 'part of change #56' >> ${WC}/trunk/subversion/libsvn_repos/README
echo 'part of change #56' >> ${WC}/trunk/subversion/svnadmin/svnadmin.dsp
echo 'part of change #56' >> ${WC}/trunk/subversion/libsvn_subr/config.c
echo 'part of change #56' >> ${WC}/trunk/subversion/clients/win32/WinSVN/WinSVN.vbp
echo 'part of change #56' >> ${WC}/trunk/subversion/clients/cmdline/import-cmd.c
echo 'part of change #56' >> ${WC}/trunk/subversion/clients/cmdline/trace-commit.c
${SVN} commit -m 'commit #56' ${WC}/trunk/subversion/libsvn_repos/README ${WC}/trunk/subversion/svnadmin/svnadmin.dsp ${WC}/trunk/subversion/libsvn_subr/config.c ${WC}/trunk/subversion/clients/win32/WinSVN/WinSVN.vbp ${WC}/trunk/subversion/clients/cmdline/import-cmd.c ${WC}/trunk/subversion/clients/cmdline/trace-commit.c

################### change 57 ###################
echo ""
echo "Doing commit #57:"
echo 'part of change #57' >> ${WC}/trunk/subversion/clients/cmdline/status.c
echo 'part of change #57' >> ${WC}/trunk/subversion/libsvn_subr/getdate.c
echo 'part of change #57' >> ${WC}/trunk/subversion/libsvn_wc/log.c
echo 'part of change #57' >> ${WC}/trunk/subversion/tests/clients/cmdline/README
echo 'part of change #57' >> ${WC}/trunk/subversion/include/svn_io.h
${SVN} commit -m 'commit #57' ${WC}/trunk/subversion/clients/cmdline/status.c ${WC}/trunk/subversion/libsvn_subr/getdate.c ${WC}/trunk/subversion/libsvn_wc/log.c ${WC}/trunk/subversion/tests/clients/cmdline/README ${WC}/trunk/subversion/include/svn_io.h

################### change 58 ###################
echo ""
echo "Doing commit #58:"
echo 'part of change #58' >> ${WC}/trunk/doc/programmer/design/protocol.texi
echo 'part of change #58' >> ${WC}/trunk/ac-helpers/svn-macros.m4
echo 'part of change #58' >> ${WC}/trunk/subversion/include/svn_string.h
${SVN} commit -m 'commit #58' ${WC}/trunk/doc/programmer/design/protocol.texi ${WC}/trunk/ac-helpers/svn-macros.m4 ${WC}/trunk/subversion/include/svn_string.h

################### change 59 ###################
echo ""
echo "Doing commit #59:"
echo 'part of change #59' >> ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse_test.dsp
echo 'part of change #59' >> ${WC}/trunk/subversion/tests/xml/README
echo 'part of change #59' >> ${WC}/trunk/www/project_bugs.html
${SVN} commit -m 'commit #59' ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse_test.dsp ${WC}/trunk/subversion/tests/xml/README ${WC}/trunk/www/project_bugs.html

################### change 60 ###################
echo ""
echo "Doing commit #60:"
echo 'part of change #60' >> ${WC}/trunk/subversion/libsvn_wc/wc.h
echo 'part of change #60' >> ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py
echo 'part of change #60' >> ${WC}/trunk/subversion/tests/libsvn_subr/string_test.dsp
echo 'part of change #60' >> ${WC}/trunk/subversion/mod_dav_svn/activity.c
echo 'part of change #60' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.cpp
echo 'part of change #60' >> ${WC}/trunk/subversion/libsvn_wc/Makefile
echo 'part of change #60' >> ${WC}/trunk/subversion/libsvn_delta/svndiff.c
echo 'part of change #60' >> ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py
echo 'part of change #60' >> ${WC}/trunk/subversion/libsvn_repos/delta.c
echo 'part of change #60' >> ${WC}/trunk/subversion/libsvn_fs/strings-table.c
${SVN} commit -m 'commit #60' ${WC}/trunk/subversion/libsvn_wc/wc.h ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py ${WC}/trunk/subversion/tests/libsvn_subr/string_test.dsp ${WC}/trunk/subversion/mod_dav_svn/activity.c ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.cpp ${WC}/trunk/subversion/libsvn_wc/Makefile ${WC}/trunk/subversion/libsvn_delta/svndiff.c ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py ${WC}/trunk/subversion/libsvn_repos/delta.c ${WC}/trunk/subversion/libsvn_fs/strings-table.c

################### change 61 ###################
echo ""
echo "Doing commit #61:"
echo 'part of change #61' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmLogin.frm
echo 'part of change #61' >> ${WC}/trunk/subversion/libsvn_fs/err.h
${SVN} commit -m 'commit #61' ${WC}/trunk/subversion/clients/win32/WinSVN/frmLogin.frm ${WC}/trunk/subversion/libsvn_fs/err.h

################### change 62 ###################
echo ""
echo "Doing commit #62:"
echo 'part of change #62' >> ${WC}/trunk/subversion/clients/win32/SVNControls/pTest.vbp
${SVN} commit -m 'commit #62' ${WC}/trunk/subversion/clients/win32/SVNControls/pTest.vbp

################### change 63 ###################
echo ""
echo "Doing commit #63:"
echo 'part of change #63' >> ${WC}/trunk/subversion/libsvn_fs/skel.h
echo 'part of change #63' >> ${WC}/trunk/subversion/tests/libsvn_wc/checkout-test.c
echo 'part of change #63' >> ${WC}/trunk/subversion/clients/win32/svn_com/misc.cpp
${SVN} commit -m 'commit #63' ${WC}/trunk/subversion/libsvn_fs/skel.h ${WC}/trunk/subversion/tests/libsvn_wc/checkout-test.c ${WC}/trunk/subversion/clients/win32/svn_com/misc.cpp

################### change 64 ###################
echo ""
echo "Doing commit #64:"
echo 'part of change #64' >> ${WC}/trunk/subversion/include/svn_quoprint.h
echo 'part of change #64' >> ${WC}/trunk/subversion/mod_dav_svn/static/README
echo 'part of change #64' >> ${WC}/trunk/subversion/bindings/svn_ra.i
echo 'part of change #64' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cHeaderControl.cls
echo 'part of change #64' >> ${WC}/trunk/subversion/libsvn_fs/id.c
echo 'part of change #64' >> ${WC}/trunk/doc/programmer/design/goals.texi
echo 'part of change #64' >> ${WC}/trunk/doc/user/manual/dirversioning.texi
echo 'part of change #64' >> ${WC}/trunk/expat-lite/xmlrole.h
echo 'part of change #64' >> ${WC}/trunk/subversion/bindings/apr.i
echo 'part of change #64' >> ${WC}/trunk/subversion/libsvn_fs/err.c
${SVN} commit -m 'commit #64' ${WC}/trunk/subversion/include/svn_quoprint.h ${WC}/trunk/subversion/mod_dav_svn/static/README ${WC}/trunk/subversion/bindings/svn_ra.i ${WC}/trunk/subversion/clients/win32/SVNControls/cHeaderControl.cls ${WC}/trunk/subversion/libsvn_fs/id.c ${WC}/trunk/doc/programmer/design/goals.texi ${WC}/trunk/doc/user/manual/dirversioning.texi ${WC}/trunk/expat-lite/xmlrole.h ${WC}/trunk/subversion/bindings/apr.i ${WC}/trunk/subversion/libsvn_fs/err.c

################### change 65 ###################
echo ""
echo "Doing commit #65:"
echo 'part of change #65' >> ${WC}/trunk/subversion/libsvn_fs/trail.h
${SVN} commit -m 'commit #65' ${WC}/trunk/subversion/libsvn_fs/trail.h

################### change 66 ###################
echo ""
echo "Doing commit #66:"
echo 'part of change #66' >> ${WC}/trunk/subversion/libsvn_repos/delta.c
echo 'part of change #66' >> ${WC}/trunk/subversion/tests/libsvn_subr/hashdump-test.c
echo 'part of change #66' >> ${WC}/trunk/subversion/libsvn_fs/dbt.c
echo 'part of change #66' >> ${WC}/trunk/COPYING
echo 'part of change #66' >> ${WC}/trunk/subversion/libsvn_fs/err.h
echo 'part of change #66' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py
echo 'part of change #66' >> ${WC}/trunk/subversion/clients/cmdline/diff-cmd.c
echo 'part of change #66' >> ${WC}/trunk/doc/user/manual/adds.texi
echo 'part of change #66' >> ${WC}/trunk/subversion/clients/win32/WinSVN/lvh.cls
echo 'part of change #66' >> ${WC}/trunk/svn_private_config.hw
${SVN} commit -m 'commit #66' ${WC}/trunk/subversion/libsvn_repos/delta.c ${WC}/trunk/subversion/tests/libsvn_subr/hashdump-test.c ${WC}/trunk/subversion/libsvn_fs/dbt.c ${WC}/trunk/COPYING ${WC}/trunk/subversion/libsvn_fs/err.h ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py ${WC}/trunk/subversion/clients/cmdline/diff-cmd.c ${WC}/trunk/doc/user/manual/adds.texi ${WC}/trunk/subversion/clients/win32/WinSVN/lvh.cls ${WC}/trunk/svn_private_config.hw

################### change 67 ###################
echo ""
echo "Doing commit #67:"
echo 'part of change #67' >> ${WC}/trunk/subversion/mod_dav_svn/version.c
echo 'part of change #67' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cFlatHeader.cls
echo 'part of change #67' >> ${WC}/trunk/subversion.dsw
echo 'part of change #67' >> ${WC}/trunk/subversion/tests/libsvn_wc/checkout-1.txt
echo 'part of change #67' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmVirtual.frm
echo 'part of change #67' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm
echo 'part of change #67' >> ${WC}/trunk/subversion/clients/cmdline/help-cmd.c
echo 'part of change #67' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookDemo.frm
echo 'part of change #67' >> ${WC}/trunk/expat-lite/libexpat.dsp
echo 'part of change #67' >> ${WC}/trunk/subversion/libsvn_client/libsvn_client.dsp
${SVN} commit -m 'commit #67' ${WC}/trunk/subversion/mod_dav_svn/version.c ${WC}/trunk/subversion/clients/win32/SVNControls/cFlatHeader.cls ${WC}/trunk/subversion.dsw ${WC}/trunk/subversion/tests/libsvn_wc/checkout-1.txt ${WC}/trunk/subversion/clients/win32/SVNControls/frmVirtual.frm ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm ${WC}/trunk/subversion/clients/cmdline/help-cmd.c ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookDemo.frm ${WC}/trunk/expat-lite/libexpat.dsp ${WC}/trunk/subversion/libsvn_client/libsvn_client.dsp

################### change 68 ###################
echo ""
echo "Doing commit #68:"
echo 'part of change #68' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cFlatHeader.cls
echo 'part of change #68' >> ${WC}/trunk/subversion/libsvn_client/revert.c
echo 'part of change #68' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.cpp
${SVN} commit -m 'commit #68' ${WC}/trunk/subversion/clients/win32/SVNControls/cFlatHeader.cls ${WC}/trunk/subversion/libsvn_client/revert.c ${WC}/trunk/subversion/clients/win32/svn_com/SVN.cpp

################### change 69 ###################
echo ""
echo "Doing commit #69:"
echo 'part of change #69' >> ${WC}/trunk/subversion/clients/cmdline/status-cmd.c
echo 'part of change #69' >> ${WC}/trunk/doc/user/manual/adds.texi
echo 'part of change #69' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt
echo 'part of change #69' >> ${WC}/trunk/subversion/libsvn_ra_dav/commit.c
echo 'part of change #69' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.def
echo 'part of change #69' >> ${WC}/trunk/subversion/libsvn_fs/txn-table.c
echo 'part of change #69' >> ${WC}/trunk/subversion/libsvn_fs/key-gen.h
echo 'part of change #69' >> ${WC}/trunk/subversion/include/svn_error.h
${SVN} commit -m 'commit #69' ${WC}/trunk/subversion/clients/cmdline/status-cmd.c ${WC}/trunk/doc/user/manual/adds.texi ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt ${WC}/trunk/subversion/libsvn_ra_dav/commit.c ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.def ${WC}/trunk/subversion/libsvn_fs/txn-table.c ${WC}/trunk/subversion/libsvn_fs/key-gen.h ${WC}/trunk/subversion/include/svn_error.h

################### change 70 ###################
echo ""
echo "Doing commit #70:"
echo 'part of change #70' >> ${WC}/trunk/subversion/include/svn_client.h
echo 'part of change #70' >> ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp
echo 'part of change #70' >> ${WC}/trunk/subversion/tests/libsvn_delta/svndiff-test.c
echo 'part of change #70' >> ${WC}/trunk/subversion/clients/cmdline/commit-cmd.c
echo 'part of change #70' >> ${WC}/trunk/doc/programmer/design/svn-design.txt
echo 'part of change #70' >> ${WC}/trunk/subversion/libsvn_repos/reporter.c
echo 'part of change #70' >> ${WC}/trunk/subversion/bindings/svn_string.i
echo 'part of change #70' >> ${WC}/trunk/build.conf
echo 'part of change #70' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmAbout.frm
${SVN} commit -m 'commit #70' ${WC}/trunk/subversion/include/svn_client.h ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp ${WC}/trunk/subversion/tests/libsvn_delta/svndiff-test.c ${WC}/trunk/subversion/clients/cmdline/commit-cmd.c ${WC}/trunk/doc/programmer/design/svn-design.txt ${WC}/trunk/subversion/libsvn_repos/reporter.c ${WC}/trunk/subversion/bindings/svn_string.i ${WC}/trunk/build.conf ${WC}/trunk/subversion/clients/win32/WinSVN/frmAbout.frm

################### change 71 ###################
echo ""
echo "Doing commit #71:"
echo 'part of change #71' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cGridCell.cls
echo 'part of change #71' >> ${WC}/trunk/subversion/bindings/svn_error.i
echo 'part of change #71' >> ${WC}/trunk/subversion/clients/cmdline/update-cmd.c
echo 'part of change #71' >> ${WC}/trunk/www/project_license.html
echo 'part of change #71' >> ${WC}/trunk/subversion/libsvn_delta/README.xmlparse
echo 'part of change #71' >> ${WC}/trunk/subversion/clients/win32/WinSVN/DriveHelpers.bas
echo 'part of change #71' >> ${WC}/trunk/subversion/clients/cmdline/diff-cmd.c
${SVN} commit -m 'commit #71' ${WC}/trunk/subversion/clients/win32/SVNControls/cGridCell.cls ${WC}/trunk/subversion/bindings/svn_error.i ${WC}/trunk/subversion/clients/cmdline/update-cmd.c ${WC}/trunk/www/project_license.html ${WC}/trunk/subversion/libsvn_delta/README.xmlparse ${WC}/trunk/subversion/clients/win32/WinSVN/DriveHelpers.bas ${WC}/trunk/subversion/clients/cmdline/diff-cmd.c

################### change 72 ###################
echo ""
echo "Doing commit #72:"
echo 'part of change #72' >> ${WC}/trunk/subversion/libsvn_client/diff.c
echo 'part of change #72' >> ${WC}/trunk/subversion/include/svn_delta.h
echo 'part of change #72' >> ${WC}/trunk/subversion/libsvn_ra_local/split_url.c
${SVN} commit -m 'commit #72' ${WC}/trunk/subversion/libsvn_client/diff.c ${WC}/trunk/subversion/include/svn_delta.h ${WC}/trunk/subversion/libsvn_ra_local/split_url.c

################### change 73 ###################
echo ""
echo "Doing commit #73:"
echo 'part of change #73' >> ${WC}/trunk/notes/guis/pics/README
echo 'part of change #73' >> ${WC}/trunk/notes/difftools/pics/FileMerge-README
echo 'part of change #73' >> ${WC}/trunk/subversion/bindings/apr.i
echo 'part of change #73' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.cpp
echo 'part of change #73' >> ${WC}/trunk/www/index.html
echo 'part of change #73' >> ${WC}/trunk/doc/programmer/design/protocol.texi
echo 'part of change #73' >> ${WC}/trunk/subversion/tests/libsvn_wc/checkout_test.dsp
echo 'part of change #73' >> ${WC}/trunk/notes/guis/pics/README
echo 'part of change #73' >> ${WC}/trunk/notes/svn-config-files
echo 'part of change #73' >> ${WC}/trunk/subversion/tests/libsvn_repos/md5args.c
${SVN} commit -m 'commit #73' ${WC}/trunk/notes/guis/pics/README ${WC}/trunk/notes/difftools/pics/FileMerge-README ${WC}/trunk/subversion/bindings/apr.i ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.cpp ${WC}/trunk/www/index.html ${WC}/trunk/doc/programmer/design/protocol.texi ${WC}/trunk/subversion/tests/libsvn_wc/checkout_test.dsp ${WC}/trunk/notes/guis/pics/README ${WC}/trunk/notes/svn-config-files ${WC}/trunk/subversion/tests/libsvn_repos/md5args.c

################### change 74 ###################
echo ""
echo "Doing commit #74:"
echo 'part of change #74' >> ${WC}/trunk/subversion/tests/libsvn_ra_local/ra-local-test.c
echo 'part of change #74' >> ${WC}/trunk/notes/svndiff
echo 'part of change #74' >> ${WC}/trunk/www/cvs_help.html
echo 'part of change #74' >> ${WC}/trunk/subversion/tests/libsvn_fs/key-test.c
echo 'part of change #74' >> ${WC}/trunk/ac-helpers/berkeley-db.m4
echo 'part of change #74' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.idl
echo 'part of change #74' >> ${WC}/trunk/subversion/tests/libsvn_fs/strings-reps-test.c
echo 'part of change #74' >> ${WC}/trunk/doc/user/manual/svn-manual.html
echo 'part of change #74' >> ${WC}/trunk/subversion/tests/libsvn_fs/key-test.c
${SVN} commit -m 'commit #74' ${WC}/trunk/subversion/tests/libsvn_ra_local/ra-local-test.c ${WC}/trunk/notes/svndiff ${WC}/trunk/www/cvs_help.html ${WC}/trunk/subversion/tests/libsvn_fs/key-test.c ${WC}/trunk/ac-helpers/berkeley-db.m4 ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.idl ${WC}/trunk/subversion/tests/libsvn_fs/strings-reps-test.c ${WC}/trunk/doc/user/manual/svn-manual.html ${WC}/trunk/subversion/tests/libsvn_fs/key-test.c

################### change 75 ###################
echo ""
echo "Doing commit #75:"
echo 'part of change #75' >> ${WC}/trunk/www/cvs_help.html
echo 'part of change #75' >> ${WC}/trunk/doc/programmer/design/goals.texi
${SVN} commit -m 'commit #75' ${WC}/trunk/www/cvs_help.html ${WC}/trunk/doc/programmer/design/goals.texi

################### change 76 ###################
echo ""
echo "Doing commit #76:"
echo 'part of change #76' >> ${WC}/trunk/subversion/libsvn_client/status.c
echo 'part of change #76' >> ${WC}/trunk/ac-helpers/svn-macros.m4
${SVN} commit -m 'commit #76' ${WC}/trunk/subversion/libsvn_client/status.c ${WC}/trunk/ac-helpers/svn-macros.m4

################### change 77 ###################
echo ""
echo "Doing commit #77:"
echo 'part of change #77' >> ${WC}/trunk/subversion/bindings/svn_string.i
${SVN} commit -m 'commit #77' ${WC}/trunk/subversion/bindings/svn_string.i

################### change 78 ###################
echo ""
echo "Doing commit #78:"
echo 'part of change #78' >> ${WC}/trunk/subversion/libsvn_delta/xml_output.c
echo 'part of change #78' >> ${WC}/trunk/subversion/tests/clients/cmdline/README
echo 'part of change #78' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target2.txt
echo 'part of change #78' >> ${WC}/trunk/PORTING
echo 'part of change #78' >> ${WC}/trunk/subversion/libsvn_fs/this-branch.txt
echo 'part of change #78' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target5.txt
echo 'part of change #78' >> ${WC}/trunk/doc/user/manual/svn-manual.html
echo 'part of change #78' >> ${WC}/trunk/ac-helpers/libtool.m4
${SVN} commit -m 'commit #78' ${WC}/trunk/subversion/libsvn_delta/xml_output.c ${WC}/trunk/subversion/tests/clients/cmdline/README ${WC}/trunk/subversion/tests/libsvn_vcdiff/target2.txt ${WC}/trunk/PORTING ${WC}/trunk/subversion/libsvn_fs/this-branch.txt ${WC}/trunk/subversion/tests/libsvn_vcdiff/target5.txt ${WC}/trunk/doc/user/manual/svn-manual.html ${WC}/trunk/ac-helpers/libtool.m4

################### change 79 ###################
echo ""
echo "Doing commit #79:"
echo 'part of change #79' >> ${WC}/trunk/expat-lite/nametab.h
echo 'part of change #79' >> ${WC}/trunk/subversion/mod_dav_svn/static/README
echo 'part of change #79' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/source.txt
${SVN} commit -m 'commit #79' ${WC}/trunk/expat-lite/nametab.h ${WC}/trunk/subversion/mod_dav_svn/static/README ${WC}/trunk/subversion/tests/libsvn_vcdiff/source.txt

################### change 80 ###################
echo ""
echo "Doing commit #80:"
echo 'part of change #80' >> ${WC}/trunk/doc/programmer/design/architecture.texi
echo 'part of change #80' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt
echo 'part of change #80' >> ${WC}/trunk/subversion/mod_dav_svn/util.c
echo 'part of change #80' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.cpp
echo 'part of change #80' >> ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.c
echo 'part of change #80' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/WorkingCopy.java
echo 'part of change #80' >> ${WC}/trunk/doc/programmer/design/architecture.texi
echo 'part of change #80' >> ${WC}/trunk/doc/README
echo 'part of change #80' >> ${WC}/trunk/subversion/libsvn_subr/svn_error.c
${SVN} commit -m 'commit #80' ${WC}/trunk/doc/programmer/design/architecture.texi ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt ${WC}/trunk/subversion/mod_dav_svn/util.c ${WC}/trunk/subversion/clients/win32/svn_com/SVN.cpp ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/WorkingCopy.java ${WC}/trunk/doc/programmer/design/architecture.texi ${WC}/trunk/doc/README ${WC}/trunk/subversion/libsvn_subr/svn_error.c

################### change 81 ###################
echo ""
echo "Doing commit #81:"
echo 'part of change #81' >> ${WC}/trunk/subversion/tests/libsvn_ra_local/ra-local-test.c
echo 'part of change #81' >> ${WC}/trunk/subversion/libsvn_fs/tree.c
echo 'part of change #81' >> ${WC}/trunk/subversion/mod_dav_svn/dav_svn.h
echo 'part of change #81' >> ${WC}/trunk/subversion/libsvn_fs/rev-table.h
echo 'part of change #81' >> ${WC}/trunk/doc/user/manual/svn-manual.texi
echo 'part of change #81' >> ${WC}/trunk/subversion/tests/libsvn_fs/key-test.c
${SVN} commit -m 'commit #81' ${WC}/trunk/subversion/tests/libsvn_ra_local/ra-local-test.c ${WC}/trunk/subversion/libsvn_fs/tree.c ${WC}/trunk/subversion/mod_dav_svn/dav_svn.h ${WC}/trunk/subversion/libsvn_fs/rev-table.h ${WC}/trunk/doc/user/manual/svn-manual.texi ${WC}/trunk/subversion/tests/libsvn_fs/key-test.c

################### change 82 ###################
echo ""
echo "Doing commit #82:"
echo 'part of change #82' >> ${WC}/trunk/subversion/libsvn_subr/hashdump.c
${SVN} commit -m 'commit #82' ${WC}/trunk/subversion/libsvn_subr/hashdump.c

################### change 83 ###################
echo ""
echo "Doing commit #83:"
echo 'part of change #83' >> ${WC}/trunk/subversion/bindings/java/jni/README
echo 'part of change #83' >> ${WC}/trunk/www/index.html
${SVN} commit -m 'commit #83' ${WC}/trunk/subversion/bindings/java/jni/README ${WC}/trunk/www/index.html

################### change 84 ###################
echo ""
echo "Doing commit #84:"
echo 'part of change #84' >> ${WC}/trunk/expat-lite/latin1tab.h
echo 'part of change #84' >> ${WC}/trunk/subversion/include/svn_client.h
echo 'part of change #84' >> ${WC}/trunk/subversion/libsvn_delta/README.xmlparse
echo 'part of change #84' >> ${WC}/trunk/subversion/libsvn_repos/lock.c
echo 'part of change #84' >> ${WC}/trunk/subversion/libsvn_wc/props.c
echo 'part of change #84' >> ${WC}/trunk/subversion/clients/cmdline/import-cmd.c
echo 'part of change #84' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaOp.java
echo 'part of change #84' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/README
echo 'part of change #84' >> ${WC}/trunk/subversion/libsvn_fs/reps-strings.c
echo 'part of change #84' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmVirtual.frm
${SVN} commit -m 'commit #84' ${WC}/trunk/expat-lite/latin1tab.h ${WC}/trunk/subversion/include/svn_client.h ${WC}/trunk/subversion/libsvn_delta/README.xmlparse ${WC}/trunk/subversion/libsvn_repos/lock.c ${WC}/trunk/subversion/libsvn_wc/props.c ${WC}/trunk/subversion/clients/cmdline/import-cmd.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaOp.java ${WC}/trunk/subversion/tests/libsvn_vcdiff/README ${WC}/trunk/subversion/libsvn_fs/reps-strings.c ${WC}/trunk/subversion/clients/win32/SVNControls/frmVirtual.frm

################### change 85 ###################
echo ""
echo "Doing commit #85:"
echo 'part of change #85' >> ${WC}/trunk/subversion/clients/win32/WinSVN/Startup.bas
echo 'part of change #85' >> ${WC}/trunk/NEWS
echo 'part of change #85' >> ${WC}/trunk/expat-lite/CHANGES
echo 'part of change #85' >> ${WC}/trunk/subversion/libsvn_fs/proplist.h
echo 'part of change #85' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py
${SVN} commit -m 'commit #85' ${WC}/trunk/subversion/clients/win32/WinSVN/Startup.bas ${WC}/trunk/NEWS ${WC}/trunk/expat-lite/CHANGES ${WC}/trunk/subversion/libsvn_fs/proplist.h ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py

################### change 86 ###################
echo ""
echo "Doing commit #86:"
echo 'part of change #86' >> ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.c
echo 'part of change #86' >> ${WC}/trunk/subversion/tests/xml/pipatch.xml
echo 'part of change #86' >> ${WC}/trunk/subversion/include/svn_wc.h
echo 'part of change #86' >> ${WC}/trunk/subversion/tests/xml/co1-postfix.xml
echo 'part of change #86' >> ${WC}/trunk/subversion/libsvn_ra_local/ra_local.h
echo 'part of change #86' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm
echo 'part of change #86' >> ${WC}/trunk/expat-lite/xmltok.h
echo 'part of change #86' >> ${WC}/trunk/subversion/libsvn_fs/validate.h
${SVN} commit -m 'commit #86' ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.c ${WC}/trunk/subversion/tests/xml/pipatch.xml ${WC}/trunk/subversion/include/svn_wc.h ${WC}/trunk/subversion/tests/xml/co1-postfix.xml ${WC}/trunk/subversion/libsvn_ra_local/ra_local.h ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm ${WC}/trunk/expat-lite/xmltok.h ${WC}/trunk/subversion/libsvn_fs/validate.h

################### change 87 ###################
echo ""
echo "Doing commit #87:"
echo 'part of change #87' >> ${WC}/trunk/TASKS
echo 'part of change #87' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/__init__.py
echo 'part of change #87' >> ${WC}/trunk/subversion/clients/cmdline/prompt.c
echo 'part of change #87' >> ${WC}/trunk/subversion/tests/svn_test_editor.c
echo 'part of change #87' >> ${WC}/trunk/subversion/clients/win32/SVNControls/ppgMain.pag
echo 'part of change #87' >> ${WC}/trunk/subversion/mod_dav_svn/repos.c
echo 'part of change #87' >> ${WC}/trunk/subversion/include/svn_client.h
echo 'part of change #87' >> ${WC}/trunk/subversion/libsvn_subr/target.c
echo 'part of change #87' >> ${WC}/trunk/subversion/libsvn_fs/nodes-table.h
${SVN} commit -m 'commit #87' ${WC}/trunk/TASKS ${WC}/trunk/subversion/tests/clients/cmdline/svntest/__init__.py ${WC}/trunk/subversion/clients/cmdline/prompt.c ${WC}/trunk/subversion/tests/svn_test_editor.c ${WC}/trunk/subversion/clients/win32/SVNControls/ppgMain.pag ${WC}/trunk/subversion/mod_dav_svn/repos.c ${WC}/trunk/subversion/include/svn_client.h ${WC}/trunk/subversion/libsvn_subr/target.c ${WC}/trunk/subversion/libsvn_fs/nodes-table.h

################### change 88 ###################
echo ""
echo "Doing commit #88:"
echo 'part of change #88' >> ${WC}/trunk/COPYING
echo 'part of change #88' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/main.py
echo 'part of change #88' >> ${WC}/trunk/subversion/mod_dav_svn/util.c
echo 'part of change #88' >> ${WC}/trunk/subversion/clients/cmdline/delete-cmd.c
echo 'part of change #88' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.rgs
${SVN} commit -m 'commit #88' ${WC}/trunk/COPYING ${WC}/trunk/subversion/tests/clients/cmdline/svntest/main.py ${WC}/trunk/subversion/mod_dav_svn/util.c ${WC}/trunk/subversion/clients/cmdline/delete-cmd.c ${WC}/trunk/subversion/clients/win32/svn_com/SVN.rgs

################### change 89 ###################
echo ""
echo "Doing commit #89:"
echo 'part of change #89' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmOptions.frm
echo 'part of change #89' >> ${WC}/trunk/subversion/libsvn_client/client.h
echo 'part of change #89' >> ${WC}/trunk/subversion/clients/cmdline/propset-cmd.c
echo 'part of change #89' >> ${WC}/trunk/subversion/include/svn_xml.h
echo 'part of change #89' >> ${WC}/trunk/subversion/libsvn_fs/tree.c
echo 'part of change #89' >> ${WC}/trunk/subversion/libsvn_repos/libsvn_repos.dsp
echo 'part of change #89' >> ${WC}/trunk/subversion/libsvn_fs/validate.h
echo 'part of change #89' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.c
echo 'part of change #89' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TreeDeltaEditor.java
${SVN} commit -m 'commit #89' ${WC}/trunk/subversion/clients/win32/WinSVN/frmOptions.frm ${WC}/trunk/subversion/libsvn_client/client.h ${WC}/trunk/subversion/clients/cmdline/propset-cmd.c ${WC}/trunk/subversion/include/svn_xml.h ${WC}/trunk/subversion/libsvn_fs/tree.c ${WC}/trunk/subversion/libsvn_repos/libsvn_repos.dsp ${WC}/trunk/subversion/libsvn_fs/validate.h ${WC}/trunk/subversion/libsvn_fs/reps-table.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TreeDeltaEditor.java

################### change 90 ###################
echo ""
echo "Doing commit #90:"
echo 'part of change #90' >> ${WC}/trunk/doc/user/manual/svn-manual.txt
echo 'part of change #90' >> ${WC}/trunk/subversion/clients/win32/SVNControls/ppgMain.pag
echo 'part of change #90' >> ${WC}/trunk/subversion/libsvn_subr/sorts.c
echo 'part of change #90' >> ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.h
echo 'part of change #90' >> ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta
echo 'part of change #90' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/README
${SVN} commit -m 'commit #90' ${WC}/trunk/doc/user/manual/svn-manual.txt ${WC}/trunk/subversion/clients/win32/SVNControls/ppgMain.pag ${WC}/trunk/subversion/libsvn_subr/sorts.c ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.h ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta ${WC}/trunk/subversion/tests/libsvn_vcdiff/README

################### change 91 ###################
echo ""
echo "Doing commit #91:"
echo 'part of change #91' >> ${WC}/trunk/subversion/bindings/svn_io.i
echo 'part of change #91' >> ${WC}/trunk/subversion/tests/libsvn_subr/hashdump-test.c
echo 'part of change #91' >> ${WC}/trunk/doc/programmer/design/architecture.texi
echo 'part of change #91' >> ${WC}/trunk/subversion/clients/cmdline/cleanup-cmd.c
${SVN} commit -m 'commit #91' ${WC}/trunk/subversion/bindings/svn_io.i ${WC}/trunk/subversion/tests/libsvn_subr/hashdump-test.c ${WC}/trunk/doc/programmer/design/architecture.texi ${WC}/trunk/subversion/clients/cmdline/cleanup-cmd.c

################### change 92 ###################
echo ""
echo "Doing commit #92:"
echo 'part of change #92' >> ${WC}/trunk/notes/issues.txt
echo 'part of change #92' >> ${WC}/trunk/notes/difftools/pics/README
${SVN} commit -m 'commit #92' ${WC}/trunk/notes/issues.txt ${WC}/trunk/notes/difftools/pics/README

################### change 93 ###################
echo ""
echo "Doing commit #93:"
echo 'part of change #93' >> ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp
echo 'part of change #93' >> ${WC}/trunk/subversion/libsvn_fs/nodes-table.c
echo 'part of change #93' >> ${WC}/trunk/subversion/tests/xml/co1-inline.xml
echo 'part of change #93' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_test.dsp
echo 'part of change #93' >> ${WC}/trunk/www/cvs_help.html
echo 'part of change #93' >> ${WC}/trunk/COPYING
echo 'part of change #93' >> ${WC}/trunk/subversion/libsvn_subr/getdate.cw
echo 'part of change #93' >> ${WC}/trunk/subversion/libsvn_fs/txn-table.c
echo 'part of change #93' >> ${WC}/trunk/subversion/tests/libsvn_repos/repos-test.c
echo 'part of change #93' >> ${WC}/trunk/expat-lite/xmltok_impl.c
${SVN} commit -m 'commit #93' ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp ${WC}/trunk/subversion/libsvn_fs/nodes-table.c ${WC}/trunk/subversion/tests/xml/co1-inline.xml ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_test.dsp ${WC}/trunk/www/cvs_help.html ${WC}/trunk/COPYING ${WC}/trunk/subversion/libsvn_subr/getdate.cw ${WC}/trunk/subversion/libsvn_fs/txn-table.c ${WC}/trunk/subversion/tests/libsvn_repos/repos-test.c ${WC}/trunk/expat-lite/xmltok_impl.c

################### change 94 ###################
echo ""
echo "Doing commit #94:"
echo 'part of change #94' >> ${WC}/trunk/doc/user/manual/dirversioning.texi
echo 'part of change #94' >> ${WC}/trunk/subversion/libsvn_delta/svndiff.c
echo 'part of change #94' >> ${WC}/trunk/notes/old/draft-korn-vcdiff-01.txt
echo 'part of change #94' >> ${WC}/trunk/subversion/tests/libsvn_delta/xml_output_test.dsp
echo 'part of change #94' >> ${WC}/trunk/notes/txdelta_sanity
echo 'part of change #94' >> ${WC}/trunk/doc/programmer/design/license.texi
${SVN} commit -m 'commit #94' ${WC}/trunk/doc/user/manual/dirversioning.texi ${WC}/trunk/subversion/libsvn_delta/svndiff.c ${WC}/trunk/notes/old/draft-korn-vcdiff-01.txt ${WC}/trunk/subversion/tests/libsvn_delta/xml_output_test.dsp ${WC}/trunk/notes/txdelta_sanity ${WC}/trunk/doc/programmer/design/license.texi

################### change 95 ###################
echo ""
echo "Doing commit #95:"
echo 'part of change #95' >> ${WC}/trunk/subversion/libsvn_delta/vdelta.c
echo 'part of change #95' >> ${WC}/trunk/subversion/tests/libsvn_wc/commit-test.c
echo 'part of change #95' >> ${WC}/trunk/subversion/libsvn_subr/svn_base64.c
echo 'part of change #95' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Entry.java
echo 'part of change #95' >> ${WC}/trunk/expat-lite/xmlrole.c
echo 'part of change #95' >> ${WC}/trunk/doc/programmer/design/svn-design.txt
echo 'part of change #95' >> ${WC}/trunk/subversion/tests/libsvn_delta/svndiff-test.c
echo 'part of change #95' >> ${WC}/trunk/www/project_header.html
echo 'part of change #95' >> ${WC}/trunk/doc/user/manual/adds.texi
${SVN} commit -m 'commit #95' ${WC}/trunk/subversion/libsvn_delta/vdelta.c ${WC}/trunk/subversion/tests/libsvn_wc/commit-test.c ${WC}/trunk/subversion/libsvn_subr/svn_base64.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Entry.java ${WC}/trunk/expat-lite/xmlrole.c ${WC}/trunk/doc/programmer/design/svn-design.txt ${WC}/trunk/subversion/tests/libsvn_delta/svndiff-test.c ${WC}/trunk/www/project_header.html ${WC}/trunk/doc/user/manual/adds.texi

################### change 96 ###################
echo ""
echo "Doing commit #96:"
echo 'part of change #96' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TreeDeltaEditor.java
echo 'part of change #96' >> ${WC}/trunk/subversion/libsvn_client/commit.c
echo 'part of change #96' >> ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse-test.c
echo 'part of change #96' >> ${WC}/trunk/subversion/libsvn_ra_local/checkout.c
echo 'part of change #96' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/__init__.py
echo 'part of change #96' >> ${WC}/trunk/ac-helpers/berkeley-db.m4
echo 'part of change #96' >> ${WC}/trunk/notes/entries-handling.txt
echo 'part of change #96' >> ${WC}/trunk/subversion/libsvn_repos/lock.c
echo 'part of change #96' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaHandler.java
${SVN} commit -m 'commit #96' ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TreeDeltaEditor.java ${WC}/trunk/subversion/libsvn_client/commit.c ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse-test.c ${WC}/trunk/subversion/libsvn_ra_local/checkout.c ${WC}/trunk/subversion/tests/clients/cmdline/svntest/__init__.py ${WC}/trunk/ac-helpers/berkeley-db.m4 ${WC}/trunk/notes/entries-handling.txt ${WC}/trunk/subversion/libsvn_repos/lock.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaHandler.java

################### change 97 ###################
echo ""
echo "Doing commit #97:"
echo 'part of change #97' >> ${WC}/trunk/doc/programmer/design/svn-design.html
${SVN} commit -m 'commit #97' ${WC}/trunk/doc/programmer/design/svn-design.html

################### change 98 ###################
echo ""
echo "Doing commit #98:"
echo 'part of change #98' >> ${WC}/trunk/tools/cvs2svn/design-notes.txt
echo 'part of change #98' >> ${WC}/trunk/subversion/clients/cmdline/proplist-cmd.c
echo 'part of change #98' >> ${WC}/trunk/expat-lite/xmldef.h
echo 'part of change #98' >> ${WC}/trunk/INSTALL
echo 'part of change #98' >> ${WC}/trunk/notes/the_update_problem.txt
echo 'part of change #98' >> ${WC}/trunk/expat-lite/README.svn
echo 'part of change #98' >> ${WC}/trunk/notes/multi-args.txt
echo 'part of change #98' >> ${WC}/trunk/subversion/clients/cmdline/cleanup-cmd.c
${SVN} commit -m 'commit #98' ${WC}/trunk/tools/cvs2svn/design-notes.txt ${WC}/trunk/subversion/clients/cmdline/proplist-cmd.c ${WC}/trunk/expat-lite/xmldef.h ${WC}/trunk/INSTALL ${WC}/trunk/notes/the_update_problem.txt ${WC}/trunk/expat-lite/README.svn ${WC}/trunk/notes/multi-args.txt ${WC}/trunk/subversion/clients/cmdline/cleanup-cmd.c

################### change 99 ###################
echo ""
echo "Doing commit #99:"
echo 'part of change #99' >> ${WC}/trunk/subversion/tests/libsvn_subr/path-test.c
echo 'part of change #99' >> ${WC}/trunk/subversion/clients/cmdline/props.c
${SVN} commit -m 'commit #99' ${WC}/trunk/subversion/tests/libsvn_subr/path-test.c ${WC}/trunk/subversion/clients/cmdline/props.c

################### change 100 ###################
echo ""
echo "Doing commit #100:"
echo 'part of change #100' >> ${WC}/trunk/subversion/libsvn_fs/txn.c
echo 'part of change #100' >> ${WC}/trunk/subversion/clients/cmdline/checkout-cmd.c
echo 'part of change #100' >> ${WC}/trunk/notes/old/karlnotes
echo 'part of change #100' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/SubversionException.java
echo 'part of change #100' >> ${WC}/trunk/subversion/tests/svn_tests_main.c
echo 'part of change #100' >> ${WC}/trunk/expat-lite/xmlparse.c
echo 'part of change #100' >> ${WC}/trunk/notes/m3-checklist.txt
${SVN} commit -m 'commit #100' ${WC}/trunk/subversion/libsvn_fs/txn.c ${WC}/trunk/subversion/clients/cmdline/checkout-cmd.c ${WC}/trunk/notes/old/karlnotes ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/SubversionException.java ${WC}/trunk/subversion/tests/svn_tests_main.c ${WC}/trunk/expat-lite/xmlparse.c ${WC}/trunk/notes/m3-checklist.txt

################### change 101 ###################
echo ""
echo "Doing commit #101:"
echo 'part of change #101' >> ${WC}/trunk/subversion/tests/libsvn_fs/skel_test.dsp
echo 'part of change #101' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/actions.py
${SVN} commit -m 'commit #101' ${WC}/trunk/subversion/tests/libsvn_fs/skel_test.dsp ${WC}/trunk/subversion/tests/clients/cmdline/svntest/actions.py

################### change 102 ###################
echo ""
echo "Doing commit #102:"
echo 'part of change #102' >> ${WC}/trunk/subversion/include/svn_error.h
echo 'part of change #102' >> ${WC}/trunk/subversion/libsvn_subr/README.errors
echo 'part of change #102' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target2.txt
echo 'part of change #102' >> ${WC}/trunk/subversion/libsvn_fs/dag.h
${SVN} commit -m 'commit #102' ${WC}/trunk/subversion/include/svn_error.h ${WC}/trunk/subversion/libsvn_subr/README.errors ${WC}/trunk/subversion/tests/libsvn_vcdiff/target2.txt ${WC}/trunk/subversion/libsvn_fs/dag.h

################### change 103 ###################
echo ""
echo "Doing commit #103:"
echo 'part of change #103' >> ${WC}/trunk/doc/user/manual/svn-manual.html
echo 'part of change #103' >> ${WC}/trunk/subversion/libsvn_delta/README.xmlparse
echo 'part of change #103' >> ${WC}/trunk/subversion/libsvn_ra_dav/commit.c
echo 'part of change #103' >> ${WC}/trunk/subversion/libsvn_wc/wc.h
echo 'part of change #103' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/__init__.py
echo 'part of change #103' >> ${WC}/trunk/www/project_license.html
${SVN} commit -m 'commit #103' ${WC}/trunk/doc/user/manual/svn-manual.html ${WC}/trunk/subversion/libsvn_delta/README.xmlparse ${WC}/trunk/subversion/libsvn_ra_dav/commit.c ${WC}/trunk/subversion/libsvn_wc/wc.h ${WC}/trunk/subversion/tests/clients/cmdline/svntest/__init__.py ${WC}/trunk/www/project_license.html

################### change 104 ###################
echo ""
echo "Doing commit #104:"
echo 'part of change #104' >> ${WC}/trunk/subversion/clients/win32/SVNControls/pTest.vbp
echo 'part of change #104' >> ${WC}/trunk/subversion.dsp
echo 'part of change #104' >> ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.cpp
echo 'part of change #104' >> ${WC}/trunk/subversion/libsvn_subr/xml.c
${SVN} commit -m 'commit #104' ${WC}/trunk/subversion/clients/win32/SVNControls/pTest.vbp ${WC}/trunk/subversion.dsp ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.cpp ${WC}/trunk/subversion/libsvn_subr/xml.c

################### change 105 ###################
echo ""
echo "Doing commit #105:"
echo 'part of change #105' >> ${WC}/trunk/subversion/libsvn_wc/adm_crawler.c
echo 'part of change #105' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm
echo 'part of change #105' >> ${WC}/trunk/tools/cvs2svn/README
${SVN} commit -m 'commit #105' ${WC}/trunk/subversion/libsvn_wc/adm_crawler.c ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm ${WC}/trunk/tools/cvs2svn/README

################### change 106 ###################
echo ""
echo "Doing commit #106:"
echo 'part of change #106' >> ${WC}/trunk/build.conf
echo 'part of change #106' >> ${WC}/trunk/subversion/tests/fs-helpers.c
echo 'part of change #106' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.h
${SVN} commit -m 'commit #106' ${WC}/trunk/build.conf ${WC}/trunk/subversion/tests/fs-helpers.c ${WC}/trunk/subversion/libsvn_fs/reps-table.h

################### change 107 ###################
echo ""
echo "Doing commit #107:"
echo 'part of change #107' >> ${WC}/trunk/NEWS
echo 'part of change #107' >> ${WC}/trunk/subversion/libsvn_delta/track_editor.c
echo 'part of change #107' >> ${WC}/trunk/subversion.dsw
${SVN} commit -m 'commit #107' ${WC}/trunk/NEWS ${WC}/trunk/subversion/libsvn_delta/track_editor.c ${WC}/trunk/subversion.dsw

################### change 108 ###################
echo ""
echo "Doing commit #108:"
echo 'part of change #108' >> ${WC}/trunk/subversion/clients/cmdline/add-cmd.c
echo 'part of change #108' >> ${WC}/trunk/subversion/clients/win32/SVNControls/mGDI.bas
echo 'part of change #108' >> ${WC}/trunk/notes/dav_setup.txt
echo 'part of change #108' >> ${WC}/trunk/subversion/clients/win32/SVNControls/type.dat
echo 'part of change #108' >> ${WC}/trunk/subversion/tests/libsvn_delta/random_test.dsp
${SVN} commit -m 'commit #108' ${WC}/trunk/subversion/clients/cmdline/add-cmd.c ${WC}/trunk/subversion/clients/win32/SVNControls/mGDI.bas ${WC}/trunk/notes/dav_setup.txt ${WC}/trunk/subversion/clients/win32/SVNControls/type.dat ${WC}/trunk/subversion/tests/libsvn_delta/random_test.dsp

################### change 109 ###################
echo ""
echo "Doing commit #109:"
echo 'part of change #109' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Revision.java
echo 'part of change #109' >> ${WC}/trunk/subversion/clients/win32/WinSVN/lvh.cls
echo 'part of change #109' >> ${WC}/trunk/subversion/clients/cmdline/update-cmd.c
echo 'part of change #109' >> ${WC}/trunk/doc/user/svnlook/svnlook.texi
echo 'part of change #109' >> ${WC}/trunk/subversion/libsvn_fs/txn.c
echo 'part of change #109' >> ${WC}/trunk/subversion/mod_dav_svn/util.c
echo 'part of change #109' >> ${WC}/trunk/subversion/libsvn_fs/rev-table.c
${SVN} commit -m 'commit #109' ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Revision.java ${WC}/trunk/subversion/clients/win32/WinSVN/lvh.cls ${WC}/trunk/subversion/clients/cmdline/update-cmd.c ${WC}/trunk/doc/user/svnlook/svnlook.texi ${WC}/trunk/subversion/libsvn_fs/txn.c ${WC}/trunk/subversion/mod_dav_svn/util.c ${WC}/trunk/subversion/libsvn_fs/rev-table.c

################### change 110 ###################
echo ""
echo "Doing commit #110:"
echo 'part of change #110' >> ${WC}/trunk/expat-lite/xmltok_impl.h
${SVN} commit -m 'commit #110' ${WC}/trunk/expat-lite/xmltok_impl.h

################### change 111 ###################
echo ""
echo "Doing commit #111:"
echo 'part of change #111' >> ${WC}/trunk/subversion/libsvn_ra_local/split_url.c
${SVN} commit -m 'commit #111' ${WC}/trunk/subversion/libsvn_ra_local/split_url.c

################### change 112 ###################
echo ""
echo "Doing commit #112:"
echo 'part of change #112' >> ${WC}/trunk/svn_check.dsp
echo 'part of change #112' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/main.py
echo 'part of change #112' >> ${WC}/trunk/www/project_tasks.html
echo 'part of change #112' >> ${WC}/trunk/subversion/libsvn_fs/structure
${SVN} commit -m 'commit #112' ${WC}/trunk/svn_check.dsp ${WC}/trunk/subversion/tests/clients/cmdline/svntest/main.py ${WC}/trunk/www/project_tasks.html ${WC}/trunk/subversion/libsvn_fs/structure

################### change 113 ###################
echo ""
echo "Doing commit #113:"
echo 'part of change #113' >> ${WC}/trunk/subversion/libsvn_subr/config.c
echo 'part of change #113' >> ${WC}/trunk/subversion/libsvn_fs/nodes-table.c
echo 'part of change #113' >> ${WC}/trunk/tools/check-license.py
echo 'part of change #113' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.rgs
echo 'part of change #113' >> ${WC}/trunk/subversion/bindings/svn_error.i
echo 'part of change #113' >> ${WC}/trunk/subversion/include/svn_xml.h
echo 'part of change #113' >> ${WC}/trunk/notes/guis/pics/ClearCase-lsvtree-README
echo 'part of change #113' >> ${WC}/trunk/subversion/libsvn_wc/entries.c
${SVN} commit -m 'commit #113' ${WC}/trunk/subversion/libsvn_subr/config.c ${WC}/trunk/subversion/libsvn_fs/nodes-table.c ${WC}/trunk/tools/check-license.py ${WC}/trunk/subversion/clients/win32/svn_com/SVN.rgs ${WC}/trunk/subversion/bindings/svn_error.i ${WC}/trunk/subversion/include/svn_xml.h ${WC}/trunk/notes/guis/pics/ClearCase-lsvtree-README ${WC}/trunk/subversion/libsvn_wc/entries.c

################### change 114 ###################
echo ""
echo "Doing commit #114:"
echo 'part of change #114' >> ${WC}/trunk/subversion/clients/win32/svn_com/misc.cpp
echo 'part of change #114' >> ${WC}/trunk/subversion/clients/cmdline/README
echo 'part of change #114' >> ${WC}/trunk/subversion/tests/libsvn_wc/commit-test.c
echo 'part of change #114' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmSplash.frm
echo 'part of change #114' >> ${WC}/trunk/subversion/bindings/svn_client.i
echo 'part of change #114' >> ${WC}/trunk/ChangeLog.CVS
echo 'part of change #114' >> ${WC}/trunk/subversion/libsvn_subr/svn_error.c
echo 'part of change #114' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cShellSort.cls
echo 'part of change #114' >> ${WC}/trunk/subversion/libsvn_fs/dag.h
${SVN} commit -m 'commit #114' ${WC}/trunk/subversion/clients/win32/svn_com/misc.cpp ${WC}/trunk/subversion/clients/cmdline/README ${WC}/trunk/subversion/tests/libsvn_wc/commit-test.c ${WC}/trunk/subversion/clients/win32/WinSVN/frmSplash.frm ${WC}/trunk/subversion/bindings/svn_client.i ${WC}/trunk/ChangeLog.CVS ${WC}/trunk/subversion/libsvn_subr/svn_error.c ${WC}/trunk/subversion/clients/win32/SVNControls/cShellSort.cls ${WC}/trunk/subversion/libsvn_fs/dag.h

################### change 115 ###################
echo ""
echo "Doing commit #115:"
echo 'part of change #115' >> ${WC}/trunk/subversion/include/svn_error_codes.h
echo 'part of change #115' >> ${WC}/trunk/build.conf
echo 'part of change #115' >> ${WC}/trunk/doc/user/manual/license.texi
echo 'part of change #115' >> ${WC}/trunk/doc/programmer/design/svn-design.html
echo 'part of change #115' >> ${WC}/trunk/subversion/bindings/README
${SVN} commit -m 'commit #115' ${WC}/trunk/subversion/include/svn_error_codes.h ${WC}/trunk/build.conf ${WC}/trunk/doc/user/manual/license.texi ${WC}/trunk/doc/programmer/design/svn-design.html ${WC}/trunk/subversion/bindings/README

################### change 116 ###################
echo ""
echo "Doing commit #116:"
echo 'part of change #116' >> ${WC}/trunk/svn_check.dsp
echo 'part of change #116' >> ${WC}/trunk/subversion/clients/win32/WinSVN/DriveHelpers.bas
echo 'part of change #116' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.def
echo 'part of change #116' >> ${WC}/trunk/subversion/libsvn_delta/text_delta.c
echo 'part of change #116' >> ${WC}/trunk/subversion/libsvn_delta/default_editor.c
echo 'part of change #116' >> ${WC}/trunk/subversion/libsvn_subr/quoprint.c
${SVN} commit -m 'commit #116' ${WC}/trunk/svn_check.dsp ${WC}/trunk/subversion/clients/win32/WinSVN/DriveHelpers.bas ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.def ${WC}/trunk/subversion/libsvn_delta/text_delta.c ${WC}/trunk/subversion/libsvn_delta/default_editor.c ${WC}/trunk/subversion/libsvn_subr/quoprint.c

################### change 117 ###################
echo ""
echo "Doing commit #117:"
echo 'part of change #117' >> ${WC}/trunk/subversion/clients/cmdline/subversion_client.dsp
echo 'part of change #117' >> ${WC}/trunk/subversion/libsvn_wc/adm_crawler.c
${SVN} commit -m 'commit #117' ${WC}/trunk/subversion/clients/cmdline/subversion_client.dsp ${WC}/trunk/subversion/libsvn_wc/adm_crawler.c

################### change 118 ###################
echo ""
echo "Doing commit #118:"
echo 'part of change #118' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmMain.frm
echo 'part of change #118' >> ${WC}/trunk/subversion/tests/libsvn_subr/target-test.c
${SVN} commit -m 'commit #118' ${WC}/trunk/subversion/clients/win32/WinSVN/frmMain.frm ${WC}/trunk/subversion/tests/libsvn_subr/target-test.c

################### change 119 ###################
echo ""
echo "Doing commit #119:"
echo 'part of change #119' >> ${WC}/trunk/subversion/libsvn_subr/getdate.c
echo 'part of change #119' >> ${WC}/trunk/doc/programmer/design/server.texi
echo 'part of change #119' >> ${WC}/trunk/subversion/libsvn_client/delete.c
echo 'part of change #119' >> ${WC}/trunk/subversion/clients/win32/WinSVN/lvh.cls
echo 'part of change #119' >> ${WC}/trunk/subversion/mod_dav_svn/dav_svn.h
echo 'part of change #119' >> ${WC}/trunk/subversion/include/svn_string.h
echo 'part of change #119' >> ${WC}/trunk/doc/user/manual/removals.texi
echo 'part of change #119' >> ${WC}/trunk/expat-lite/CHANGES.svn
echo 'part of change #119' >> ${WC}/trunk/subversion/bindings/svn_types.i
echo 'part of change #119' >> ${WC}/trunk/subversion/libsvn_wc/get_editor.c
${SVN} commit -m 'commit #119' ${WC}/trunk/subversion/libsvn_subr/getdate.c ${WC}/trunk/doc/programmer/design/server.texi ${WC}/trunk/subversion/libsvn_client/delete.c ${WC}/trunk/subversion/clients/win32/WinSVN/lvh.cls ${WC}/trunk/subversion/mod_dav_svn/dav_svn.h ${WC}/trunk/subversion/include/svn_string.h ${WC}/trunk/doc/user/manual/removals.texi ${WC}/trunk/expat-lite/CHANGES.svn ${WC}/trunk/subversion/bindings/svn_types.i ${WC}/trunk/subversion/libsvn_wc/get_editor.c

################### change 120 ###################
echo ""
echo "Doing commit #120:"
echo 'part of change #120' >> ${WC}/trunk/subversion/libsvn_fs/txn.h
${SVN} commit -m 'commit #120' ${WC}/trunk/subversion/libsvn_fs/txn.h

################### change 121 ###################
echo ""
echo "Doing commit #121:"
echo 'part of change #121' >> ${WC}/trunk/README
${SVN} commit -m 'commit #121' ${WC}/trunk/README

################### change 122 ###################
echo ""
echo "Doing commit #122:"
echo 'part of change #122' >> ${WC}/trunk/svn_config.dsp
echo 'part of change #122' >> ${WC}/trunk/subversion/libsvn_subr/quoprint.c
echo 'part of change #122' >> ${WC}/trunk/doc/user/manual/adds.texi
echo 'part of change #122' >> ${WC}/trunk/subversion/include/svn_pools.h
echo 'part of change #122' >> ${WC}/trunk/subversion/tests/libsvn_delta/svndiff-test.c
echo 'part of change #122' >> ${WC}/trunk/subversion/libsvn_delta/track_editor.c
${SVN} commit -m 'commit #122' ${WC}/trunk/svn_config.dsp ${WC}/trunk/subversion/libsvn_subr/quoprint.c ${WC}/trunk/doc/user/manual/adds.texi ${WC}/trunk/subversion/include/svn_pools.h ${WC}/trunk/subversion/tests/libsvn_delta/svndiff-test.c ${WC}/trunk/subversion/libsvn_delta/track_editor.c

################### change 123 ###################
echo ""
echo "Doing commit #123:"
echo 'part of change #123' >> ${WC}/trunk/subversion/libsvn_repos/rev_hunt.c
echo 'part of change #123' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta-test.c
echo 'part of change #123' >> ${WC}/trunk/subversion.dsw
echo 'part of change #123' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt
echo 'part of change #123' >> ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse_test.dsp
echo 'part of change #123' >> ${WC}/trunk/subversion/libsvn_fs/skel.h
echo 'part of change #123' >> ${WC}/trunk/subversion/clients/win32/svn_com/misc.h
echo 'part of change #123' >> ${WC}/trunk/subversion/libsvn_fs/dag.h
echo 'part of change #123' >> ${WC}/trunk/notes/fs-improvements.txt
echo 'part of change #123' >> ${WC}/trunk/expat-lite/latin1tab.h
${SVN} commit -m 'commit #123' ${WC}/trunk/subversion/libsvn_repos/rev_hunt.c ${WC}/trunk/subversion/tests/libsvn_delta/vdelta-test.c ${WC}/trunk/subversion.dsw ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse_test.dsp ${WC}/trunk/subversion/libsvn_fs/skel.h ${WC}/trunk/subversion/clients/win32/svn_com/misc.h ${WC}/trunk/subversion/libsvn_fs/dag.h ${WC}/trunk/notes/fs-improvements.txt ${WC}/trunk/expat-lite/latin1tab.h

################### change 124 ###################
echo ""
echo "Doing commit #124:"
echo 'part of change #124' >> ${WC}/trunk/notes/difftools/pics/README
echo 'part of change #124' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cScrollBars.cls
echo 'part of change #124' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target2.txt
echo 'part of change #124' >> ${WC}/trunk/subversion/svn-dev.el
echo 'part of change #124' >> ${WC}/trunk/doc/programmer/design/svn-design.texi
echo 'part of change #124' >> ${WC}/trunk/subversion/clients/win32/SVNControls/link.dat
echo 'part of change #124' >> ${WC}/trunk/subversion/libsvn_ra_dav/options.c
echo 'part of change #124' >> ${WC}/trunk/subversion/include/svn_path.h
${SVN} commit -m 'commit #124' ${WC}/trunk/notes/difftools/pics/README ${WC}/trunk/subversion/clients/win32/SVNControls/cScrollBars.cls ${WC}/trunk/subversion/tests/libsvn_vcdiff/target2.txt ${WC}/trunk/subversion/svn-dev.el ${WC}/trunk/doc/programmer/design/svn-design.texi ${WC}/trunk/subversion/clients/win32/SVNControls/link.dat ${WC}/trunk/subversion/libsvn_ra_dav/options.c ${WC}/trunk/subversion/include/svn_path.h

################### change 125 ###################
echo ""
echo "Doing commit #125:"
echo 'part of change #125' >> ${WC}/trunk/subversion/tests/libsvn_repos/md5args.c
echo 'part of change #125' >> ${WC}/trunk/subversion/tests/libsvn_wc/commit-test.c
${SVN} commit -m 'commit #125' ${WC}/trunk/subversion/tests/libsvn_repos/md5args.c ${WC}/trunk/subversion/tests/libsvn_wc/commit-test.c

################### change 126 ###################
echo ""
echo "Doing commit #126:"
echo 'part of change #126' >> ${WC}/trunk/doc/programmer/design/protocol.texi
echo 'part of change #126' >> ${WC}/trunk/BUGS
${SVN} commit -m 'commit #126' ${WC}/trunk/doc/programmer/design/protocol.texi ${WC}/trunk/BUGS

################### change 127 ###################
echo ""
echo "Doing commit #127:"
echo 'part of change #127' >> ${WC}/trunk/www/project_tasks.html
echo 'part of change #127' >> ${WC}/trunk/notes/alpha-checklist.txt
echo 'part of change #127' >> ${WC}/trunk/expat-lite/xmlparse.h
echo 'part of change #127' >> ${WC}/trunk/subversion/libsvn_fs/err.c
echo 'part of change #127' >> ${WC}/trunk/doc/user/manual/svn-manual.txt
echo 'part of change #127' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmMain.frm
${SVN} commit -m 'commit #127' ${WC}/trunk/www/project_tasks.html ${WC}/trunk/notes/alpha-checklist.txt ${WC}/trunk/expat-lite/xmlparse.h ${WC}/trunk/subversion/libsvn_fs/err.c ${WC}/trunk/doc/user/manual/svn-manual.txt ${WC}/trunk/subversion/clients/win32/WinSVN/frmMain.frm

################### change 128 ###################
echo ""
echo "Doing commit #128:"
echo 'part of change #128' >> ${WC}/trunk/build.conf
echo 'part of change #128' >> ${WC}/trunk/notes/issues.txt
echo 'part of change #128' >> ${WC}/trunk/subversion/libsvn_fs/libsvn_fs.dsp
echo 'part of change #128' >> ${WC}/trunk/subversion/clients/cmdline/diff-cmd.c
echo 'part of change #128' >> ${WC}/trunk/subversion/mod_dav_svn/liveprops.c
echo 'part of change #128' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cFlatHeader.cls
echo 'part of change #128' >> ${WC}/trunk/subversion/libsvn_fs/trail.c
echo 'part of change #128' >> ${WC}/trunk/subversion/libsvn_wc/wc.h
echo 'part of change #128' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/actions.py
${SVN} commit -m 'commit #128' ${WC}/trunk/build.conf ${WC}/trunk/notes/issues.txt ${WC}/trunk/subversion/libsvn_fs/libsvn_fs.dsp ${WC}/trunk/subversion/clients/cmdline/diff-cmd.c ${WC}/trunk/subversion/mod_dav_svn/liveprops.c ${WC}/trunk/subversion/clients/win32/SVNControls/cFlatHeader.cls ${WC}/trunk/subversion/libsvn_fs/trail.c ${WC}/trunk/subversion/libsvn_wc/wc.h ${WC}/trunk/subversion/tests/clients/cmdline/svntest/actions.py

################### change 129 ###################
echo ""
echo "Doing commit #129:"
echo 'part of change #129' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc
echo 'part of change #129' >> ${WC}/trunk/subversion/libsvn_client/delete.c
echo 'part of change #129' >> ${WC}/trunk/subversion/clients/cmdline/diff-cmd.c
echo 'part of change #129' >> ${WC}/trunk/expat-lite/CHANGES.svn
echo 'part of change #129' >> ${WC}/trunk/subversion/libsvn_fs/structure
echo 'part of change #129' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/README
echo 'part of change #129' >> ${WC}/trunk/subversion/mod_dav_svn/merge.c
${SVN} commit -m 'commit #129' ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc ${WC}/trunk/subversion/libsvn_client/delete.c ${WC}/trunk/subversion/clients/cmdline/diff-cmd.c ${WC}/trunk/expat-lite/CHANGES.svn ${WC}/trunk/subversion/libsvn_fs/structure ${WC}/trunk/subversion/tests/libsvn_vcdiff/README ${WC}/trunk/subversion/mod_dav_svn/merge.c

################### change 130 ###################
echo ""
echo "Doing commit #130:"
echo 'part of change #130' >> ${WC}/trunk/subversion/bindings/svn_string.i
echo 'part of change #130' >> ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta
echo 'part of change #130' >> ${WC}/trunk/subversion/clients/win32/SVNControls/ppgMain.pag
echo 'part of change #130' >> ${WC}/trunk/tools/check-license.py
echo 'part of change #130' >> ${WC}/trunk/subversion/tests/libsvn_delta/xml-output-test.c
echo 'part of change #130' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/entry.py
${SVN} commit -m 'commit #130' ${WC}/trunk/subversion/bindings/svn_string.i ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta ${WC}/trunk/subversion/clients/win32/SVNControls/ppgMain.pag ${WC}/trunk/tools/check-license.py ${WC}/trunk/subversion/tests/libsvn_delta/xml-output-test.c ${WC}/trunk/subversion/tests/clients/cmdline/svntest/entry.py

################### change 131 ###################
echo ""
echo "Doing commit #131:"
echo 'part of change #131' >> ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.cpp
echo 'part of change #131' >> ${WC}/trunk/notes/txdelta_sanity
echo 'part of change #131' >> ${WC}/trunk/subversion/libsvn_repos/hooks.txt
echo 'part of change #131' >> ${WC}/trunk/subversion/include/svn_wc.h
echo 'part of change #131' >> ${WC}/trunk/subversion/tests/libsvn_repos/md5args.c
echo 'part of change #131' >> ${WC}/trunk/subversion/bindings/README
${SVN} commit -m 'commit #131' ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.cpp ${WC}/trunk/notes/txdelta_sanity ${WC}/trunk/subversion/libsvn_repos/hooks.txt ${WC}/trunk/subversion/include/svn_wc.h ${WC}/trunk/subversion/tests/libsvn_repos/md5args.c ${WC}/trunk/subversion/bindings/README

################### change 132 ###################
echo ""
echo "Doing commit #132:"
echo 'part of change #132' >> ${WC}/trunk/subversion/include/svn_io.h
${SVN} commit -m 'commit #132' ${WC}/trunk/subversion/include/svn_io.h

################### change 133 ###################
echo ""
echo "Doing commit #133:"
echo 'part of change #133' >> ${WC}/trunk/notes/dav_setup.txt
echo 'part of change #133' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.h
echo 'part of change #133' >> ${WC}/trunk/subversion/libsvn_fs/dbt.h
echo 'part of change #133' >> ${WC}/trunk/subversion.dsw
${SVN} commit -m 'commit #133' ${WC}/trunk/notes/dav_setup.txt ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.h ${WC}/trunk/subversion/libsvn_fs/dbt.h ${WC}/trunk/subversion.dsw

################### change 134 ###################
echo ""
echo "Doing commit #134:"
echo 'part of change #134' >> ${WC}/trunk/subversion/libsvn_repos/delta.c
echo 'part of change #134' >> ${WC}/trunk/subversion/include/svn_test.h
echo 'part of change #134' >> ${WC}/trunk/subversion/libsvn_fs/proplist.h
echo 'part of change #134' >> ${WC}/trunk/subversion/clients/cmdline/delete-cmd.c
echo 'part of change #134' >> ${WC}/trunk/subversion/tests/README
${SVN} commit -m 'commit #134' ${WC}/trunk/subversion/libsvn_repos/delta.c ${WC}/trunk/subversion/include/svn_test.h ${WC}/trunk/subversion/libsvn_fs/proplist.h ${WC}/trunk/subversion/clients/cmdline/delete-cmd.c ${WC}/trunk/subversion/tests/README

################### change 135 ###################
echo ""
echo "Doing commit #135:"
echo 'part of change #135' >> ${WC}/trunk/subversion/libsvn_repos/commit_editor.c
echo 'part of change #135' >> ${WC}/trunk/subversion/libsvn_client/update.c
echo 'part of change #135' >> ${WC}/trunk/subversion/tests/svn_tests_main.c
echo 'part of change #135' >> ${WC}/trunk/subversion/libsvn_repos/libsvn_repos.dsp
echo 'part of change #135' >> ${WC}/trunk/subversion/libsvn_subr/time.c
${SVN} commit -m 'commit #135' ${WC}/trunk/subversion/libsvn_repos/commit_editor.c ${WC}/trunk/subversion/libsvn_client/update.c ${WC}/trunk/subversion/tests/svn_tests_main.c ${WC}/trunk/subversion/libsvn_repos/libsvn_repos.dsp ${WC}/trunk/subversion/libsvn_subr/time.c

################### change 136 ###################
echo ""
echo "Doing commit #136:"
echo 'part of change #136' >> ${WC}/trunk/subversion/libsvn_fs/this-branch.txt
echo 'part of change #136' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/source.txt
echo 'part of change #136' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Revision.java
echo 'part of change #136' >> ${WC}/trunk/subversion/clients/cmdline/prompt.c
echo 'part of change #136' >> ${WC}/trunk/subversion/libsvn_wc/adm_ops.c
echo 'part of change #136' >> ${WC}/trunk/ac-helpers/svn-macros.m4
echo 'part of change #136' >> ${WC}/trunk/doc/programmer/design/architecture.texi
echo 'part of change #136' >> ${WC}/trunk/notes/fs-improvements.txt
echo 'part of change #136' >> ${WC}/trunk/build.conf
echo 'part of change #136' >> ${WC}/trunk/ac-helpers/svn-macros.m4
${SVN} commit -m 'commit #136' ${WC}/trunk/subversion/libsvn_fs/this-branch.txt ${WC}/trunk/subversion/tests/libsvn_vcdiff/source.txt ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Revision.java ${WC}/trunk/subversion/clients/cmdline/prompt.c ${WC}/trunk/subversion/libsvn_wc/adm_ops.c ${WC}/trunk/ac-helpers/svn-macros.m4 ${WC}/trunk/doc/programmer/design/architecture.texi ${WC}/trunk/notes/fs-improvements.txt ${WC}/trunk/build.conf ${WC}/trunk/ac-helpers/svn-macros.m4

################### change 137 ###################
echo ""
echo "Doing commit #137:"
echo 'part of change #137' >> ${WC}/trunk/subversion/include/svn_delta.h
echo 'part of change #137' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.idl
echo 'part of change #137' >> ${WC}/trunk/subversion/clients/win32/WinSVN/DriveHelpers.bas
echo 'part of change #137' >> ${WC}/trunk/subversion/libsvn_client/cleanup.c
${SVN} commit -m 'commit #137' ${WC}/trunk/subversion/include/svn_delta.h ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.idl ${WC}/trunk/subversion/clients/win32/WinSVN/DriveHelpers.bas ${WC}/trunk/subversion/libsvn_client/cleanup.c

################### change 138 ###################
echo ""
echo "Doing commit #138:"
echo 'part of change #138' >> ${WC}/trunk/subversion/libsvn_subr/svn_base64.c
${SVN} commit -m 'commit #138' ${WC}/trunk/subversion/libsvn_subr/svn_base64.c

################### change 139 ###################
echo ""
echo "Doing commit #139:"
echo 'part of change #139' >> ${WC}/trunk/subversion.dsp
echo 'part of change #139' >> ${WC}/trunk/subversion/tests/libsvn_wc/checkout-test.c
${SVN} commit -m 'commit #139' ${WC}/trunk/subversion.dsp ${WC}/trunk/subversion/tests/libsvn_wc/checkout-test.c

################### change 140 ###################
echo ""
echo "Doing commit #140:"
echo 'part of change #140' >> ${WC}/trunk/subversion/bindings/svn_fs.i
echo 'part of change #140' >> ${WC}/trunk/www/index.html
echo 'part of change #140' >> ${WC}/trunk/subversion/tests/libsvn_delta/random_test.dsp
${SVN} commit -m 'commit #140' ${WC}/trunk/subversion/bindings/svn_fs.i ${WC}/trunk/www/index.html ${WC}/trunk/subversion/tests/libsvn_delta/random_test.dsp

################### change 141 ###################
echo ""
echo "Doing commit #141:"
echo 'part of change #141' >> ${WC}/trunk/subversion/libsvn_client/auth.c
${SVN} commit -m 'commit #141' ${WC}/trunk/subversion/libsvn_client/auth.c

################### change 142 ###################
echo ""
echo "Doing commit #142:"
echo 'part of change #142' >> ${WC}/trunk/subversion/tests/libsvn_delta/simple.delta
echo 'part of change #142' >> ${WC}/trunk/subversion/clients/cmdline/checkout-cmd.c
${SVN} commit -m 'commit #142' ${WC}/trunk/subversion/tests/libsvn_delta/simple.delta ${WC}/trunk/subversion/clients/cmdline/checkout-cmd.c

################### change 143 ###################
echo ""
echo "Doing commit #143:"
echo 'part of change #143' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmMain.frm
echo 'part of change #143' >> ${WC}/trunk/subversion/clients/win32/WinSVN/DriveHelpers.bas
echo 'part of change #143' >> ${WC}/trunk/subversion/libsvn_subr/svn_base64.c
echo 'part of change #143' >> ${WC}/trunk/subversion/libsvn_wc/libsvn_wc.dsp
echo 'part of change #143' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.h
echo 'part of change #143' >> ${WC}/trunk/subversion/clients/cmdline/prompt.c
echo 'part of change #143' >> ${WC}/trunk/subversion/libsvn_fs/nodes-table.h
${SVN} commit -m 'commit #143' ${WC}/trunk/subversion/clients/win32/WinSVN/frmMain.frm ${WC}/trunk/subversion/clients/win32/WinSVN/DriveHelpers.bas ${WC}/trunk/subversion/libsvn_subr/svn_base64.c ${WC}/trunk/subversion/libsvn_wc/libsvn_wc.dsp ${WC}/trunk/subversion/libsvn_fs/reps-table.h ${WC}/trunk/subversion/clients/cmdline/prompt.c ${WC}/trunk/subversion/libsvn_fs/nodes-table.h

################### change 144 ###################
echo ""
echo "Doing commit #144:"
echo 'part of change #144' >> ${WC}/trunk/notes/multi-args.txt
${SVN} commit -m 'commit #144' ${WC}/trunk/notes/multi-args.txt

################### change 145 ###################
echo ""
echo "Doing commit #145:"
echo 'part of change #145' >> ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.ctl
echo 'part of change #145' >> ${WC}/trunk/subversion/libsvn_client/auth.c
echo 'part of change #145' >> ${WC}/trunk/subversion/libsvn_subr/sorts.c
echo 'part of change #145' >> ${WC}/trunk/subversion/libsvn_fs/txn-table.c
echo 'part of change #145' >> ${WC}/trunk/www/variance-adjusted-patching.html
echo 'part of change #145' >> ${WC}/trunk/notes/m3-checklist.txt
echo 'part of change #145' >> ${WC}/trunk/subversion/libsvn_client/auth.c
echo 'part of change #145' >> ${WC}/trunk/subversion/tests/libsvn_subr/hashdump-test.c
${SVN} commit -m 'commit #145' ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.ctl ${WC}/trunk/subversion/libsvn_client/auth.c ${WC}/trunk/subversion/libsvn_subr/sorts.c ${WC}/trunk/subversion/libsvn_fs/txn-table.c ${WC}/trunk/www/variance-adjusted-patching.html ${WC}/trunk/notes/m3-checklist.txt ${WC}/trunk/subversion/libsvn_client/auth.c ${WC}/trunk/subversion/tests/libsvn_subr/hashdump-test.c

################### change 146 ###################
echo ""
echo "Doing commit #146:"
echo 'part of change #146' >> ${WC}/trunk/subversion/clients/cmdline/trace-update.c
echo 'part of change #146' >> ${WC}/trunk/subversion/libsvn_delta/default_editor.c
echo 'part of change #146' >> ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp
${SVN} commit -m 'commit #146' ${WC}/trunk/subversion/clients/cmdline/trace-update.c ${WC}/trunk/subversion/libsvn_delta/default_editor.c ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp

################### change 147 ###################
echo ""
echo "Doing commit #147:"
echo 'part of change #147' >> ${WC}/trunk/subversion/clients/win32/SVNControls/pTest.vbp
echo 'part of change #147' >> ${WC}/trunk/Makefile.in
echo 'part of change #147' >> ${WC}/trunk/subversion/tests/libsvn_wc/commit_test.dsp
echo 'part of change #147' >> ${WC}/trunk/www/cvs_help.html
echo 'part of change #147' >> ${WC}/trunk/subversion/include/svn_time.h
${SVN} commit -m 'commit #147' ${WC}/trunk/subversion/clients/win32/SVNControls/pTest.vbp ${WC}/trunk/Makefile.in ${WC}/trunk/subversion/tests/libsvn_wc/commit_test.dsp ${WC}/trunk/www/cvs_help.html ${WC}/trunk/subversion/include/svn_time.h

################### change 148 ###################
echo ""
echo "Doing commit #148:"
echo 'part of change #148' >> ${WC}/trunk/subversion/mod_dav_svn/dav_svn.h
echo 'part of change #148' >> ${WC}/trunk/notes/dav_setup.txt
echo 'part of change #148' >> ${WC}/trunk/tools/cvs2svn/cvs2svn.py
echo 'part of change #148' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/entry.py
echo 'part of change #148' >> ${WC}/trunk/subversion/libsvn_ra/ra_loader.c
echo 'part of change #148' >> ${WC}/trunk/subversion/libsvn_fs/tree.c
echo 'part of change #148' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookGroup.frm
echo 'part of change #148' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.h
echo 'part of change #148' >> ${WC}/trunk/subversion/bindings/java/jni/README
echo 'part of change #148' >> ${WC}/trunk/subversion/tests/xml/README
${SVN} commit -m 'commit #148' ${WC}/trunk/subversion/mod_dav_svn/dav_svn.h ${WC}/trunk/notes/dav_setup.txt ${WC}/trunk/tools/cvs2svn/cvs2svn.py ${WC}/trunk/subversion/tests/clients/cmdline/svntest/entry.py ${WC}/trunk/subversion/libsvn_ra/ra_loader.c ${WC}/trunk/subversion/libsvn_fs/tree.c ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookGroup.frm ${WC}/trunk/subversion/clients/win32/svn_com/SVN.h ${WC}/trunk/subversion/bindings/java/jni/README ${WC}/trunk/subversion/tests/xml/README

################### change 149 ###################
echo ""
echo "Doing commit #149:"
echo 'part of change #149' >> ${WC}/trunk/svn_config.dsp
echo 'part of change #149' >> ${WC}/trunk/subversion/bindings/svn_string.i
echo 'part of change #149' >> ${WC}/trunk/subversion/clients/win32/SVNControls/pTest.vbp
echo 'part of change #149' >> ${WC}/trunk/notes/dav_setup.txt
echo 'part of change #149' >> ${WC}/trunk/subversion/libsvn_client/revert.c
echo 'part of change #149' >> ${WC}/trunk/expat-lite/xmlparse.c
${SVN} commit -m 'commit #149' ${WC}/trunk/svn_config.dsp ${WC}/trunk/subversion/bindings/svn_string.i ${WC}/trunk/subversion/clients/win32/SVNControls/pTest.vbp ${WC}/trunk/notes/dav_setup.txt ${WC}/trunk/subversion/libsvn_client/revert.c ${WC}/trunk/expat-lite/xmlparse.c

################### change 150 ###################
echo ""
echo "Doing commit #150:"
echo 'part of change #150' >> ${WC}/trunk/subversion/libsvn_subr/path.c
echo 'part of change #150' >> ${WC}/trunk/subversion/mod_dav_svn/version.c
echo 'part of change #150' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc
echo 'part of change #150' >> ${WC}/trunk/subversion/clients/cmdline/propget-cmd.c
echo 'part of change #150' >> ${WC}/trunk/subversion/clients/cmdline/revert-cmd.c
echo 'part of change #150' >> ${WC}/trunk/configure.in
echo 'part of change #150' >> ${WC}/trunk/build.conf
${SVN} commit -m 'commit #150' ${WC}/trunk/subversion/libsvn_subr/path.c ${WC}/trunk/subversion/mod_dav_svn/version.c ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc ${WC}/trunk/subversion/clients/cmdline/propget-cmd.c ${WC}/trunk/subversion/clients/cmdline/revert-cmd.c ${WC}/trunk/configure.in ${WC}/trunk/build.conf

################### change 151 ###################
echo ""
echo "Doing commit #151:"
echo 'part of change #151' >> ${WC}/trunk/subversion/libsvn_fs/key-gen.c
echo 'part of change #151' >> ${WC}/trunk/expat-lite/xmlrole.h
echo 'part of change #151' >> ${WC}/trunk/subversion/bindings/README
echo 'part of change #151' >> ${WC}/trunk/subversion/clients/cmdline/revert-cmd.c
echo 'part of change #151' >> ${WC}/trunk/subversion/libsvn_fs/txn-table.h
echo 'part of change #151' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt
echo 'part of change #151' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/WorkingCopy.java
echo 'part of change #151' >> ${WC}/trunk/subversion/tests/xml/up1b-inline.xml
echo 'part of change #151' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaWindow.java
${SVN} commit -m 'commit #151' ${WC}/trunk/subversion/libsvn_fs/key-gen.c ${WC}/trunk/expat-lite/xmlrole.h ${WC}/trunk/subversion/bindings/README ${WC}/trunk/subversion/clients/cmdline/revert-cmd.c ${WC}/trunk/subversion/libsvn_fs/txn-table.h ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/WorkingCopy.java ${WC}/trunk/subversion/tests/xml/up1b-inline.xml ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaWindow.java

################### change 152 ###################
echo ""
echo "Doing commit #152:"
echo 'part of change #152' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Entry.java
${SVN} commit -m 'commit #152' ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Entry.java

################### change 153 ###################
echo ""
echo "Doing commit #153:"
echo 'part of change #153' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmAbout.frm
${SVN} commit -m 'commit #153' ${WC}/trunk/subversion/clients/win32/WinSVN/frmAbout.frm

################### change 154 ###################
echo ""
echo "Doing commit #154:"
echo 'part of change #154' >> ${WC}/trunk/doc/user/manual/svn-manual.txt
echo 'part of change #154' >> ${WC}/trunk/subversion/libsvn_client/status.c
echo 'part of change #154' >> ${WC}/trunk/subversion/tests/clients/cmdline/README
${SVN} commit -m 'commit #154' ${WC}/trunk/doc/user/manual/svn-manual.txt ${WC}/trunk/subversion/libsvn_client/status.c ${WC}/trunk/subversion/tests/clients/cmdline/README

################### change 155 ###################
echo ""
echo "Doing commit #155:"
echo 'part of change #155' >> ${WC}/trunk/subversion/include/svn_error_codes.h
echo 'part of change #155' >> ${WC}/trunk/subversion/libsvn_repos/lock.c
${SVN} commit -m 'commit #155' ${WC}/trunk/subversion/include/svn_error_codes.h ${WC}/trunk/subversion/libsvn_repos/lock.c

################### change 156 ###################
echo ""
echo "Doing commit #156:"
echo 'part of change #156' >> ${WC}/trunk/notes/issues.txt
echo 'part of change #156' >> ${WC}/trunk/subversion/libsvn_ra/libsvn_ra.dsp
echo 'part of change #156' >> ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py
echo 'part of change #156' >> ${WC}/trunk/subversion/clients/win32/svn_com/misc.h
echo 'part of change #156' >> ${WC}/trunk/subversion/libsvn_wc/wc.h
echo 'part of change #156' >> ${WC}/trunk/subversion/mod_dav_svn/liveprops.c
echo 'part of change #156' >> ${WC}/trunk/www/project_tasks.html
echo 'part of change #156' >> ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py
echo 'part of change #156' >> ${WC}/trunk/subversion/libsvn_subr/svn_error.c
${SVN} commit -m 'commit #156' ${WC}/trunk/notes/issues.txt ${WC}/trunk/subversion/libsvn_ra/libsvn_ra.dsp ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py ${WC}/trunk/subversion/clients/win32/svn_com/misc.h ${WC}/trunk/subversion/libsvn_wc/wc.h ${WC}/trunk/subversion/mod_dav_svn/liveprops.c ${WC}/trunk/www/project_tasks.html ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py ${WC}/trunk/subversion/libsvn_subr/svn_error.c

################### change 157 ###################
echo ""
echo "Doing commit #157:"
echo 'part of change #157' >> ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.c
echo 'part of change #157' >> ${WC}/trunk/subversion/libsvn_repos/hooks.txt
echo 'part of change #157' >> ${WC}/trunk/subversion/tests/libsvn_fs/strings-reps-test.c
echo 'part of change #157' >> ${WC}/trunk/doc/programmer/design/svn-design.txt
echo 'part of change #157' >> ${WC}/trunk/subversion/tests/libsvn_delta/random-test.c
echo 'part of change #157' >> ${WC}/trunk/subversion/mod_dav_svn/liveprops.c
echo 'part of change #157' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Client.java
echo 'part of change #157' >> ${WC}/trunk/subversion/libsvn_fs/validate.h
echo 'part of change #157' >> ${WC}/trunk/subversion/clients/cmdline/propget-cmd.c
echo 'part of change #157' >> ${WC}/trunk/doc/programmer/design/server.texi
${SVN} commit -m 'commit #157' ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.c ${WC}/trunk/subversion/libsvn_repos/hooks.txt ${WC}/trunk/subversion/tests/libsvn_fs/strings-reps-test.c ${WC}/trunk/doc/programmer/design/svn-design.txt ${WC}/trunk/subversion/tests/libsvn_delta/random-test.c ${WC}/trunk/subversion/mod_dav_svn/liveprops.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Client.java ${WC}/trunk/subversion/libsvn_fs/validate.h ${WC}/trunk/subversion/clients/cmdline/propget-cmd.c ${WC}/trunk/doc/programmer/design/server.texi

################### change 158 ###################
echo ""
echo "Doing commit #158:"
echo 'part of change #158' >> ${WC}/trunk/subversion/bindings/svn_client.i
echo 'part of change #158' >> ${WC}/trunk/subversion/libsvn_client/diff.c
echo 'part of change #158' >> ${WC}/trunk/subversion/libsvn_fs/key-gen.c
echo 'part of change #158' >> ${WC}/trunk/subversion/bindings/svn_types.i
echo 'part of change #158' >> ${WC}/trunk/expat-lite/expat.html
echo 'part of change #158' >> ${WC}/trunk/subversion/clients/win32/SVNControls/type.dat
${SVN} commit -m 'commit #158' ${WC}/trunk/subversion/bindings/svn_client.i ${WC}/trunk/subversion/libsvn_client/diff.c ${WC}/trunk/subversion/libsvn_fs/key-gen.c ${WC}/trunk/subversion/bindings/svn_types.i ${WC}/trunk/expat-lite/expat.html ${WC}/trunk/subversion/clients/win32/SVNControls/type.dat

################### change 159 ###################
echo ""
echo "Doing commit #159:"
echo 'part of change #159' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaOp.java
echo 'part of change #159' >> ${WC}/trunk/doc/user/manual/README
echo 'part of change #159' >> ${WC}/trunk/subversion/libsvn_subr/sorts.c
echo 'part of change #159' >> ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.cpp
echo 'part of change #159' >> ${WC}/trunk/subversion/clients/cmdline/propset-cmd.c
echo 'part of change #159' >> ${WC}/trunk/subversion/tests/README
echo 'part of change #159' >> ${WC}/trunk/subversion/tests/libsvn_repos/repos-test.c
echo 'part of change #159' >> ${WC}/trunk/subversion/libsvn_ra_local/ra_plugin.c
echo 'part of change #159' >> ${WC}/trunk/subversion/tests/libsvn_repos/repos-test.c
echo 'part of change #159' >> ${WC}/trunk/subversion/tests/libsvn_wc/checkout_test.dsp
${SVN} commit -m 'commit #159' ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaOp.java ${WC}/trunk/doc/user/manual/README ${WC}/trunk/subversion/libsvn_subr/sorts.c ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.cpp ${WC}/trunk/subversion/clients/cmdline/propset-cmd.c ${WC}/trunk/subversion/tests/README ${WC}/trunk/subversion/tests/libsvn_repos/repos-test.c ${WC}/trunk/subversion/libsvn_ra_local/ra_plugin.c ${WC}/trunk/subversion/tests/libsvn_repos/repos-test.c ${WC}/trunk/subversion/tests/libsvn_wc/checkout_test.dsp

################### change 160 ###################
echo ""
echo "Doing commit #160:"
echo 'part of change #160' >> ${WC}/trunk/subversion/include/svn_xml.h
echo 'part of change #160' >> ${WC}/trunk/doc/user/manual/svn-manual.txt
echo 'part of change #160' >> ${WC}/trunk/subversion/tests/libsvn_subr/stringtest.c
echo 'part of change #160' >> ${WC}/trunk/subversion/include/svn_wc.h
echo 'part of change #160' >> ${WC}/trunk/subversion/libsvn_subr/time.c
${SVN} commit -m 'commit #160' ${WC}/trunk/subversion/include/svn_xml.h ${WC}/trunk/doc/user/manual/svn-manual.txt ${WC}/trunk/subversion/tests/libsvn_subr/stringtest.c ${WC}/trunk/subversion/include/svn_wc.h ${WC}/trunk/subversion/libsvn_subr/time.c

################### change 161 ###################
echo ""
echo "Doing commit #161:"
echo 'part of change #161' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.h
echo 'part of change #161' >> ${WC}/trunk/doc/programmer/design/server.texi
echo 'part of change #161' >> ${WC}/trunk/www/project_source.html
echo 'part of change #161' >> ${WC}/trunk/subversion/tests/libsvn_test_main.dsp
echo 'part of change #161' >> ${WC}/trunk/www/webdav-usage.html
echo 'part of change #161' >> ${WC}/trunk/subversion/mod_dav_svn/deadprops.c
echo 'part of change #161' >> ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.c
${SVN} commit -m 'commit #161' ${WC}/trunk/subversion/clients/win32/svn_com/SVN.h ${WC}/trunk/doc/programmer/design/server.texi ${WC}/trunk/www/project_source.html ${WC}/trunk/subversion/tests/libsvn_test_main.dsp ${WC}/trunk/www/webdav-usage.html ${WC}/trunk/subversion/mod_dav_svn/deadprops.c ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.c

################### change 162 ###################
echo ""
echo "Doing commit #162:"
echo 'part of change #162' >> ${WC}/trunk/expat-lite/utf8tab.h
echo 'part of change #162' >> ${WC}/trunk/subversion/clients/cmdline/feedback.c
echo 'part of change #162' >> ${WC}/trunk/subversion/clients/cmdline/update-cmd.c
${SVN} commit -m 'commit #162' ${WC}/trunk/expat-lite/utf8tab.h ${WC}/trunk/subversion/clients/cmdline/feedback.c ${WC}/trunk/subversion/clients/cmdline/update-cmd.c

################### change 163 ###################
echo ""
echo "Doing commit #163:"
echo 'part of change #163' >> ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.h
echo 'part of change #163' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Revision.java
echo 'part of change #163' >> ${WC}/trunk/subversion/libsvn_fs/id.c
echo 'part of change #163' >> ${WC}/trunk/ac-helpers/libtool.m4
${SVN} commit -m 'commit #163' ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.h ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Revision.java ${WC}/trunk/subversion/libsvn_fs/id.c ${WC}/trunk/ac-helpers/libtool.m4

################### change 164 ###################
echo ""
echo "Doing commit #164:"
echo 'part of change #164' >> ${WC}/trunk/subversion/mod_dav_svn/static/Makefile.in
echo 'part of change #164' >> ${WC}/trunk/subversion/tests/xml/co1-postfix.xml
echo 'part of change #164' >> ${WC}/trunk/expat-lite/latin1tab.h
${SVN} commit -m 'commit #164' ${WC}/trunk/subversion/mod_dav_svn/static/Makefile.in ${WC}/trunk/subversion/tests/xml/co1-postfix.xml ${WC}/trunk/expat-lite/latin1tab.h

################### change 165 ###################
echo ""
echo "Doing commit #165:"
echo 'part of change #165' >> ${WC}/trunk/subversion/tests/xml/up3.xml
echo 'part of change #165' >> ${WC}/trunk/subversion/tests/xml/up2.xml
echo 'part of change #165' >> ${WC}/trunk/subversion/include/svn_types.h
echo 'part of change #165' >> ${WC}/trunk/expat-lite/xmlrole.c
${SVN} commit -m 'commit #165' ${WC}/trunk/subversion/tests/xml/up3.xml ${WC}/trunk/subversion/tests/xml/up2.xml ${WC}/trunk/subversion/include/svn_types.h ${WC}/trunk/expat-lite/xmlrole.c

################### change 166 ###################
echo ""
echo "Doing commit #166:"
echo 'part of change #166' >> ${WC}/trunk/subversion/bindings/svn_fs.i
echo 'part of change #166' >> ${WC}/trunk/expat-lite/hashtable.c
echo 'part of change #166' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmOptions.frm
echo 'part of change #166' >> ${WC}/trunk/subversion/libsvn_fs/key-gen.c
echo 'part of change #166' >> ${WC}/trunk/subversion/libsvn_ra/ra_loader.c
echo 'part of change #166' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Entry.java
echo 'part of change #166' >> ${WC}/trunk/subversion/tests/libsvn_delta/xml-output-test.c
${SVN} commit -m 'commit #166' ${WC}/trunk/subversion/bindings/svn_fs.i ${WC}/trunk/expat-lite/hashtable.c ${WC}/trunk/subversion/clients/win32/WinSVN/frmOptions.frm ${WC}/trunk/subversion/libsvn_fs/key-gen.c ${WC}/trunk/subversion/libsvn_ra/ra_loader.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Entry.java ${WC}/trunk/subversion/tests/libsvn_delta/xml-output-test.c

################### change 167 ###################
echo ""
echo "Doing commit #167:"
echo 'part of change #167' >> ${WC}/trunk/subversion/libsvn_wc/adm_ops.c
echo 'part of change #167' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta-test.c
echo 'part of change #167' >> ${WC}/trunk/subversion/include/svn_error_codes.h
echo 'part of change #167' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/__init__.py
echo 'part of change #167' >> ${WC}/trunk/expat-lite/CHANGES
echo 'part of change #167' >> ${WC}/trunk/expat-lite/xmldef.h
${SVN} commit -m 'commit #167' ${WC}/trunk/subversion/libsvn_wc/adm_ops.c ${WC}/trunk/subversion/tests/libsvn_delta/vdelta-test.c ${WC}/trunk/subversion/include/svn_error_codes.h ${WC}/trunk/subversion/tests/clients/cmdline/svntest/__init__.py ${WC}/trunk/expat-lite/CHANGES ${WC}/trunk/expat-lite/xmldef.h

################### change 168 ###################
echo ""
echo "Doing commit #168:"
echo 'part of change #168' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_1.txt
echo 'part of change #168' >> ${WC}/trunk/subversion/libsvn_fs/dbt.h
${SVN} commit -m 'commit #168' ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_1.txt ${WC}/trunk/subversion/libsvn_fs/dbt.h

################### change 169 ###################
echo ""
echo "Doing commit #169:"
echo 'part of change #169' >> ${WC}/trunk/subversion/libsvn_ra_dav/options.c
echo 'part of change #169' >> ${WC}/trunk/subversion/clients/cmdline/subversion_client.dsp
echo 'part of change #169' >> ${WC}/trunk/subversion/libsvn_ra_local/ra_local.h
echo 'part of change #169' >> ${WC}/trunk/subversion/libsvn_ra_local/split_url.c
echo 'part of change #169' >> ${WC}/trunk/www/variance-adjusted-patching.html
${SVN} commit -m 'commit #169' ${WC}/trunk/subversion/libsvn_ra_dav/options.c ${WC}/trunk/subversion/clients/cmdline/subversion_client.dsp ${WC}/trunk/subversion/libsvn_ra_local/ra_local.h ${WC}/trunk/subversion/libsvn_ra_local/split_url.c ${WC}/trunk/www/variance-adjusted-patching.html

################### change 170 ###################
echo ""
echo "Doing commit #170:"
echo 'part of change #170' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target2.txt
echo 'part of change #170' >> ${WC}/trunk/subversion/libsvn_fs/this-branch.txt
${SVN} commit -m 'commit #170' ${WC}/trunk/subversion/tests/libsvn_vcdiff/target2.txt ${WC}/trunk/subversion/libsvn_fs/this-branch.txt

################### change 171 ###################
echo ""
echo "Doing commit #171:"
echo 'part of change #171' >> ${WC}/trunk/README
echo 'part of change #171' >> ${WC}/trunk/doc/programmer/design/svn-design.texi
echo 'part of change #171' >> ${WC}/trunk/subversion/include/svn_repos.h
echo 'part of change #171' >> ${WC}/trunk/notes/difftools/README
echo 'part of change #171' >> ${WC}/trunk/subversion/libsvn_fs/nodes-table.c
echo 'part of change #171' >> ${WC}/trunk/subversion/clients/cmdline/help-cmd.c
echo 'part of change #171' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/README
echo 'part of change #171' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaHandler.java
echo 'part of change #171' >> ${WC}/trunk/STACK
${SVN} commit -m 'commit #171' ${WC}/trunk/README ${WC}/trunk/doc/programmer/design/svn-design.texi ${WC}/trunk/subversion/include/svn_repos.h ${WC}/trunk/notes/difftools/README ${WC}/trunk/subversion/libsvn_fs/nodes-table.c ${WC}/trunk/subversion/clients/cmdline/help-cmd.c ${WC}/trunk/subversion/tests/libsvn_vcdiff/README ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaHandler.java ${WC}/trunk/STACK

################### change 172 ###################
echo ""
echo "Doing commit #172:"
echo 'part of change #172' >> ${WC}/trunk/subversion/include/svn_sorts.h
echo 'part of change #172' >> ${WC}/trunk/subversion/tests/libsvn_fs/key-test.c
echo 'part of change #172' >> ${WC}/trunk/subversion/libsvn_fs/txn.h
echo 'part of change #172' >> ${WC}/trunk/subversion/clients/cmdline/commit-cmd.c
echo 'part of change #172' >> ${WC}/trunk/subversion/mod_dav_svn/util.c
echo 'part of change #172' >> ${WC}/trunk/subversion/libsvn_fs/trail.c
echo 'part of change #172' >> ${WC}/trunk/subversion/libsvn_subr/time.c
echo 'part of change #172' >> ${WC}/trunk/subversion/tests/libsvn_subr/path-test.c
echo 'part of change #172' >> ${WC}/trunk/subversion/clients/win32/SVNControls/gDevGrid.vbg
echo 'part of change #172' >> ${WC}/trunk/notes/guis/README
${SVN} commit -m 'commit #172' ${WC}/trunk/subversion/include/svn_sorts.h ${WC}/trunk/subversion/tests/libsvn_fs/key-test.c ${WC}/trunk/subversion/libsvn_fs/txn.h ${WC}/trunk/subversion/clients/cmdline/commit-cmd.c ${WC}/trunk/subversion/mod_dav_svn/util.c ${WC}/trunk/subversion/libsvn_fs/trail.c ${WC}/trunk/subversion/libsvn_subr/time.c ${WC}/trunk/subversion/tests/libsvn_subr/path-test.c ${WC}/trunk/subversion/clients/win32/SVNControls/gDevGrid.vbg ${WC}/trunk/notes/guis/README

################### change 173 ###################
echo ""
echo "Doing commit #173:"
echo 'part of change #173' >> ${WC}/trunk/subversion/libsvn_client/auth.c
echo 'part of change #173' >> ${WC}/trunk/subversion/libsvn_client/diff.c
echo 'part of change #173' >> ${WC}/trunk/subversion/tests/xml/co1-postfix.xml
echo 'part of change #173' >> ${WC}/trunk/subversion/mod_dav_svn/static/Makefile.in
echo 'part of change #173' >> ${WC}/trunk/subversion/tests/libsvn_subr/hashdump-test.c
${SVN} commit -m 'commit #173' ${WC}/trunk/subversion/libsvn_client/auth.c ${WC}/trunk/subversion/libsvn_client/diff.c ${WC}/trunk/subversion/tests/xml/co1-postfix.xml ${WC}/trunk/subversion/mod_dav_svn/static/Makefile.in ${WC}/trunk/subversion/tests/libsvn_subr/hashdump-test.c

################### change 174 ###################
echo ""
echo "Doing commit #174:"
echo 'part of change #174' >> ${WC}/trunk/notes/alpha-checklist.txt
echo 'part of change #174' >> ${WC}/trunk/subversion/libsvn_delta/svndiff.c
echo 'part of change #174' >> ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.c
echo 'part of change #174' >> ${WC}/trunk/subversion/tests/libsvn_subr/hashdump_test.dsp
echo 'part of change #174' >> ${WC}/trunk/subversion/libsvn_subr/svn_error.c
${SVN} commit -m 'commit #174' ${WC}/trunk/notes/alpha-checklist.txt ${WC}/trunk/subversion/libsvn_delta/svndiff.c ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.c ${WC}/trunk/subversion/tests/libsvn_subr/hashdump_test.dsp ${WC}/trunk/subversion/libsvn_subr/svn_error.c

################### change 175 ###################
echo ""
echo "Doing commit #175:"
echo 'part of change #175' >> ${WC}/trunk/subversion/libsvn_client/apply_edits.c
echo 'part of change #175' >> ${WC}/trunk/subversion/libsvn_repos/rev_hunt.c
echo 'part of change #175' >> ${WC}/trunk/subversion/mod_dav_svn/static/Makefile.in
echo 'part of change #175' >> ${WC}/trunk/subversion/tests/libsvn_subr/stringtest.c
echo 'part of change #175' >> ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.ctl
echo 'part of change #175' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target0.txt
echo 'part of change #175' >> ${WC}/trunk/subversion/libsvn_subr/README.errors
echo 'part of change #175' >> ${WC}/trunk/subversion/bindings/svn_string.i
${SVN} commit -m 'commit #175' ${WC}/trunk/subversion/libsvn_client/apply_edits.c ${WC}/trunk/subversion/libsvn_repos/rev_hunt.c ${WC}/trunk/subversion/mod_dav_svn/static/Makefile.in ${WC}/trunk/subversion/tests/libsvn_subr/stringtest.c ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.ctl ${WC}/trunk/subversion/tests/libsvn_vcdiff/target0.txt ${WC}/trunk/subversion/libsvn_subr/README.errors ${WC}/trunk/subversion/bindings/svn_string.i

################### change 176 ###################
echo ""
echo "Doing commit #176:"
echo 'part of change #176' >> ${WC}/trunk/subversion/tests/xml/README
echo 'part of change #176' >> ${WC}/trunk/notes/issues.txt
echo 'part of change #176' >> ${WC}/trunk/www/cvs_help.html
echo 'part of change #176' >> ${WC}/trunk/expat-lite/latin1tab.h
echo 'part of change #176' >> ${WC}/trunk/subversion/libsvn_fs/skel.c
echo 'part of change #176' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.c
echo 'part of change #176' >> ${WC}/trunk/subversion/libsvn_ra_dav/options.c
echo 'part of change #176' >> ${WC}/trunk/subversion/libsvn_client/cleanup.c
${SVN} commit -m 'commit #176' ${WC}/trunk/subversion/tests/xml/README ${WC}/trunk/notes/issues.txt ${WC}/trunk/www/cvs_help.html ${WC}/trunk/expat-lite/latin1tab.h ${WC}/trunk/subversion/libsvn_fs/skel.c ${WC}/trunk/subversion/libsvn_fs/reps-table.c ${WC}/trunk/subversion/libsvn_ra_dav/options.c ${WC}/trunk/subversion/libsvn_client/cleanup.c

################### change 177 ###################
echo ""
echo "Doing commit #177:"
echo 'part of change #177' >> ${WC}/trunk/subversion/tests/libsvn_delta/svndiff-test.c
echo 'part of change #177' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/entry.py
echo 'part of change #177' >> ${WC}/trunk/expat-lite/nametab.h
echo 'part of change #177' >> ${WC}/trunk/subversion/include/svn_error_codes.h
echo 'part of change #177' >> ${WC}/trunk/subversion/libsvn_fs/key-gen.h
echo 'part of change #177' >> ${WC}/trunk/subversion/include/svn_xml.h
echo 'part of change #177' >> ${WC}/trunk/subversion/libsvn_fs/id.h
echo 'part of change #177' >> ${WC}/trunk/subversion/svnadmin/main.c
${SVN} commit -m 'commit #177' ${WC}/trunk/subversion/tests/libsvn_delta/svndiff-test.c ${WC}/trunk/subversion/tests/clients/cmdline/svntest/entry.py ${WC}/trunk/expat-lite/nametab.h ${WC}/trunk/subversion/include/svn_error_codes.h ${WC}/trunk/subversion/libsvn_fs/key-gen.h ${WC}/trunk/subversion/include/svn_xml.h ${WC}/trunk/subversion/libsvn_fs/id.h ${WC}/trunk/subversion/svnadmin/main.c

################### change 178 ###################
echo ""
echo "Doing commit #178:"
echo 'part of change #178' >> ${WC}/trunk/subversion/bindings/svn_ra.i
echo 'part of change #178' >> ${WC}/trunk/subversion/libsvn_fs/tree.c
${SVN} commit -m 'commit #178' ${WC}/trunk/subversion/bindings/svn_ra.i ${WC}/trunk/subversion/libsvn_fs/tree.c

################### change 179 ###################
echo ""
echo "Doing commit #179:"
echo 'part of change #179' >> ${WC}/trunk/doc/programmer/design/svn-design.texi
echo 'part of change #179' >> ${WC}/trunk/www/project_footer.html
echo 'part of change #179' >> ${WC}/trunk/subversion/mod_dav_svn/merge.c
echo 'part of change #179' >> ${WC}/trunk/subversion/libsvn_fs/txn-table.h
echo 'part of change #179' >> ${WC}/trunk/subversion/tests/xml/up3.xml
echo 'part of change #179' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_test.dsp
echo 'part of change #179' >> ${WC}/trunk/notes/guis/README
${SVN} commit -m 'commit #179' ${WC}/trunk/doc/programmer/design/svn-design.texi ${WC}/trunk/www/project_footer.html ${WC}/trunk/subversion/mod_dav_svn/merge.c ${WC}/trunk/subversion/libsvn_fs/txn-table.h ${WC}/trunk/subversion/tests/xml/up3.xml ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_test.dsp ${WC}/trunk/notes/guis/README

################### change 180 ###################
echo ""
echo "Doing commit #180:"
echo 'part of change #180' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmOptions.frm
echo 'part of change #180' >> ${WC}/trunk/subversion/libsvn_subr/path.c
${SVN} commit -m 'commit #180' ${WC}/trunk/subversion/clients/win32/WinSVN/frmOptions.frm ${WC}/trunk/subversion/libsvn_subr/path.c

################### change 181 ###################
echo ""
echo "Doing commit #181:"
echo 'part of change #181' >> ${WC}/trunk/expat-lite/libexpat.dsp
echo 'part of change #181' >> ${WC}/trunk/subversion/libsvn_fs/TODO
echo 'part of change #181' >> ${WC}/trunk/subversion/clients/cmdline/props.c
echo 'part of change #181' >> ${WC}/trunk/subversion/tests/xml/up3.xml
echo 'part of change #181' >> ${WC}/trunk/doc/programmer/design/model.texi
echo 'part of change #181' >> ${WC}/trunk/subversion/clients/cmdline/propset-cmd.c
echo 'part of change #181' >> ${WC}/trunk/www/cvs_help.html
echo 'part of change #181' >> ${WC}/trunk/ac-helpers/ltconfig
echo 'part of change #181' >> ${WC}/trunk/subversion/libsvn_fs/node-rev.c
echo 'part of change #181' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.idl
${SVN} commit -m 'commit #181' ${WC}/trunk/expat-lite/libexpat.dsp ${WC}/trunk/subversion/libsvn_fs/TODO ${WC}/trunk/subversion/clients/cmdline/props.c ${WC}/trunk/subversion/tests/xml/up3.xml ${WC}/trunk/doc/programmer/design/model.texi ${WC}/trunk/subversion/clients/cmdline/propset-cmd.c ${WC}/trunk/www/cvs_help.html ${WC}/trunk/ac-helpers/ltconfig ${WC}/trunk/subversion/libsvn_fs/node-rev.c ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.idl

################### change 182 ###################
echo ""
echo "Doing commit #182:"
echo 'part of change #182' >> ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse_test.dsp
echo 'part of change #182' >> ${WC}/trunk/subversion/libsvn_repos/rev_hunt.c
echo 'part of change #182' >> ${WC}/trunk/subversion/libsvn_fs/key-gen.h
echo 'part of change #182' >> ${WC}/trunk/subversion/clients/win32/svn_com/svn_comCP.h
echo 'part of change #182' >> ${WC}/trunk/expat-lite/xmldef.h
echo 'part of change #182' >> ${WC}/trunk/notes/dav_setup.txt
echo 'part of change #182' >> ${WC}/trunk/notes/issues.txt
echo 'part of change #182' >> ${WC}/trunk/expat-lite/asciitab.h
${SVN} commit -m 'commit #182' ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse_test.dsp ${WC}/trunk/subversion/libsvn_repos/rev_hunt.c ${WC}/trunk/subversion/libsvn_fs/key-gen.h ${WC}/trunk/subversion/clients/win32/svn_com/svn_comCP.h ${WC}/trunk/expat-lite/xmldef.h ${WC}/trunk/notes/dav_setup.txt ${WC}/trunk/notes/issues.txt ${WC}/trunk/expat-lite/asciitab.h

################### change 183 ###################
echo ""
echo "Doing commit #183:"
echo 'part of change #183' >> ${WC}/trunk/doc/user/manual/model.texi
echo 'part of change #183' >> ${WC}/trunk/subversion/clients/cmdline/trace-update.c
echo 'part of change #183' >> ${WC}/trunk/subversion/libsvn_fs/validate.h
${SVN} commit -m 'commit #183' ${WC}/trunk/doc/user/manual/model.texi ${WC}/trunk/subversion/clients/cmdline/trace-update.c ${WC}/trunk/subversion/libsvn_fs/validate.h

################### change 184 ###################
echo ""
echo "Doing commit #184:"
echo 'part of change #184' >> ${WC}/trunk/subversion/libsvn_fs/node-rev.c
echo 'part of change #184' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmMain.frm
echo 'part of change #184' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cFlatHeader.cls
echo 'part of change #184' >> ${WC}/trunk/tools/cvs2svn/CheckedClass.pm
echo 'part of change #184' >> ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.cpp
echo 'part of change #184' >> ${WC}/trunk/subversion/include/svn_delta.h
echo 'part of change #184' >> ${WC}/trunk/subversion/tests/xml/up-props.xml
echo 'part of change #184' >> ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.c
echo 'part of change #184' >> ${WC}/trunk/www/index.html
${SVN} commit -m 'commit #184' ${WC}/trunk/subversion/libsvn_fs/node-rev.c ${WC}/trunk/subversion/clients/win32/WinSVN/frmMain.frm ${WC}/trunk/subversion/clients/win32/SVNControls/cFlatHeader.cls ${WC}/trunk/tools/cvs2svn/CheckedClass.pm ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.cpp ${WC}/trunk/subversion/include/svn_delta.h ${WC}/trunk/subversion/tests/xml/up-props.xml ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.c ${WC}/trunk/www/index.html

################### change 185 ###################
echo ""
echo "Doing commit #185:"
echo 'part of change #185' >> ${WC}/trunk/subversion/bindings/README
echo 'part of change #185' >> ${WC}/trunk/subversion/libsvn_wc/adm_files.c
echo 'part of change #185' >> ${WC}/trunk/subversion/tests/libsvn_delta/simple.delta
${SVN} commit -m 'commit #185' ${WC}/trunk/subversion/bindings/README ${WC}/trunk/subversion/libsvn_wc/adm_files.c ${WC}/trunk/subversion/tests/libsvn_delta/simple.delta

################### change 186 ###################
echo ""
echo "Doing commit #186:"
echo 'part of change #186' >> ${WC}/trunk/doc/programmer/design/architecture.texi
echo 'part of change #186' >> ${WC}/trunk/ChangeLog.CVS
echo 'part of change #186' >> ${WC}/trunk/subversion/libsvn_fs/txn.h
echo 'part of change #186' >> ${WC}/trunk/subversion/clients/win32/SVNControls/type.dat
echo 'part of change #186' >> ${WC}/trunk/subversion/clients/cmdline/status-cmd.c
${SVN} commit -m 'commit #186' ${WC}/trunk/doc/programmer/design/architecture.texi ${WC}/trunk/ChangeLog.CVS ${WC}/trunk/subversion/libsvn_fs/txn.h ${WC}/trunk/subversion/clients/win32/SVNControls/type.dat ${WC}/trunk/subversion/clients/cmdline/status-cmd.c

################### change 187 ###################
echo ""
echo "Doing commit #187:"
echo 'part of change #187' >> ${WC}/trunk/subversion/include/svn_fs.h
echo 'part of change #187' >> ${WC}/trunk/tools/cvs2svn/cvs2svn.py
${SVN} commit -m 'commit #187' ${WC}/trunk/subversion/include/svn_fs.h ${WC}/trunk/tools/cvs2svn/cvs2svn.py

################### change 188 ###################
echo ""
echo "Doing commit #188:"
echo 'part of change #188' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cScrollBars.cls
echo 'part of change #188' >> ${WC}/trunk/subversion/libsvn_wc/status.c
echo 'part of change #188' >> ${WC}/trunk/subversion/clients/cmdline/subversion_client.dsp
echo 'part of change #188' >> ${WC}/trunk/expat-lite/xmltok.c
echo 'part of change #188' >> ${WC}/trunk/subversion/tests/libsvn_delta/svndiff-test.c
${SVN} commit -m 'commit #188' ${WC}/trunk/subversion/clients/win32/SVNControls/cScrollBars.cls ${WC}/trunk/subversion/libsvn_wc/status.c ${WC}/trunk/subversion/clients/cmdline/subversion_client.dsp ${WC}/trunk/expat-lite/xmltok.c ${WC}/trunk/subversion/tests/libsvn_delta/svndiff-test.c

################### change 189 ###################
echo ""
echo "Doing commit #189:"
echo 'part of change #189' >> ${WC}/trunk/COPYING
echo 'part of change #189' >> ${WC}/trunk/subversion/libsvn_wc/status.c
echo 'part of change #189' >> ${WC}/trunk/subversion/tests/xml/up1b-postfix.xml
echo 'part of change #189' >> ${WC}/trunk/expat-lite/xmlrole.c
echo 'part of change #189' >> ${WC}/trunk/subversion/include/svn_io.h
${SVN} commit -m 'commit #189' ${WC}/trunk/COPYING ${WC}/trunk/subversion/libsvn_wc/status.c ${WC}/trunk/subversion/tests/xml/up1b-postfix.xml ${WC}/trunk/expat-lite/xmlrole.c ${WC}/trunk/subversion/include/svn_io.h

################### change 190 ###################
echo ""
echo "Doing commit #190:"
echo 'part of change #190' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_test.dsp
echo 'part of change #190' >> ${WC}/trunk/subversion/libsvn_ra_dav/libsvn_ra_dav.dsp
echo 'part of change #190' >> ${WC}/trunk/PORTING
echo 'part of change #190' >> ${WC}/trunk/expat-lite/CHANGES
${SVN} commit -m 'commit #190' ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_test.dsp ${WC}/trunk/subversion/libsvn_ra_dav/libsvn_ra_dav.dsp ${WC}/trunk/PORTING ${WC}/trunk/expat-lite/CHANGES

################### change 191 ###################
echo ""
echo "Doing commit #191:"
echo 'part of change #191' >> ${WC}/trunk/subversion/clients/win32/SVNControls/gDevGrid.vbg
echo 'part of change #191' >> ${WC}/trunk/doc/programmer/design/svn-design.texi
echo 'part of change #191' >> ${WC}/trunk/build-outputs.mk
echo 'part of change #191' >> ${WC}/trunk/subversion/tests/libsvn_wc/commit_test.dsp
echo 'part of change #191' >> ${WC}/trunk/README
echo 'part of change #191' >> ${WC}/trunk/subversion/include/svn_test.h
echo 'part of change #191' >> ${WC}/trunk/expat-lite/asciitab.h
echo 'part of change #191' >> ${WC}/trunk/notes/guis/planning.txt
${SVN} commit -m 'commit #191' ${WC}/trunk/subversion/clients/win32/SVNControls/gDevGrid.vbg ${WC}/trunk/doc/programmer/design/svn-design.texi ${WC}/trunk/build-outputs.mk ${WC}/trunk/subversion/tests/libsvn_wc/commit_test.dsp ${WC}/trunk/README ${WC}/trunk/subversion/include/svn_test.h ${WC}/trunk/expat-lite/asciitab.h ${WC}/trunk/notes/guis/planning.txt

################### change 192 ###################
echo ""
echo "Doing commit #192:"
echo 'part of change #192' >> ${WC}/trunk/subversion/clients/win32/SVNControls/ppgMain.pag
echo 'part of change #192' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmSplash.frm
echo 'part of change #192' >> ${WC}/trunk/subversion/clients/cmdline/props.c
echo 'part of change #192' >> ${WC}/trunk/subversion/clients/cmdline/update-cmd.c
echo 'part of change #192' >> ${WC}/trunk/PORTING
echo 'part of change #192' >> ${WC}/trunk/subversion/include/svn_ra.h
echo 'part of change #192' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.h
echo 'part of change #192' >> ${WC}/trunk/subversion/libsvn_delta/compose_editors.c
echo 'part of change #192' >> ${WC}/trunk/subversion/clients/cmdline/status-cmd.c
${SVN} commit -m 'commit #192' ${WC}/trunk/subversion/clients/win32/SVNControls/ppgMain.pag ${WC}/trunk/subversion/clients/win32/WinSVN/frmSplash.frm ${WC}/trunk/subversion/clients/cmdline/props.c ${WC}/trunk/subversion/clients/cmdline/update-cmd.c ${WC}/trunk/PORTING ${WC}/trunk/subversion/include/svn_ra.h ${WC}/trunk/subversion/libsvn_fs/reps-table.h ${WC}/trunk/subversion/libsvn_delta/compose_editors.c ${WC}/trunk/subversion/clients/cmdline/status-cmd.c

################### change 193 ###################
echo ""
echo "Doing commit #193:"
echo 'part of change #193' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.c
echo 'part of change #193' >> ${WC}/trunk/notes/issues.txt
echo 'part of change #193' >> ${WC}/trunk/tools/check-license.py
echo 'part of change #193' >> ${WC}/trunk/subversion/libsvn_wc/util.c
echo 'part of change #193' >> ${WC}/trunk/doc/programmer/design/license.texi
echo 'part of change #193' >> ${WC}/trunk/doc/user/manual/removals.texi
echo 'part of change #193' >> ${WC}/trunk/subversion/clients/cmdline/help-cmd.c
${SVN} commit -m 'commit #193' ${WC}/trunk/subversion/libsvn_fs/reps-table.c ${WC}/trunk/notes/issues.txt ${WC}/trunk/tools/check-license.py ${WC}/trunk/subversion/libsvn_wc/util.c ${WC}/trunk/doc/programmer/design/license.texi ${WC}/trunk/doc/user/manual/removals.texi ${WC}/trunk/subversion/clients/cmdline/help-cmd.c

################### change 194 ###################
echo ""
echo "Doing commit #194:"
echo 'part of change #194' >> ${WC}/trunk/subversion/libsvn_ra_dav/session.c
echo 'part of change #194' >> ${WC}/trunk/subversion/libsvn_subr/config.c
${SVN} commit -m 'commit #194' ${WC}/trunk/subversion/libsvn_ra_dav/session.c ${WC}/trunk/subversion/libsvn_subr/config.c

################### change 195 ###################
echo ""
echo "Doing commit #195:"
echo 'part of change #195' >> ${WC}/trunk/doc/user/svnlook/svnlook.texi
echo 'part of change #195' >> ${WC}/trunk/subversion/libsvn_subr/quoprint.c
echo 'part of change #195' >> ${WC}/trunk/subversion/libsvn_client/delete.c
echo 'part of change #195' >> ${WC}/trunk/subversion/libsvn_fs/id.c
echo 'part of change #195' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmMain.frm
echo 'part of change #195' >> ${WC}/trunk/subversion/clients/cmdline/add-cmd.c
echo 'part of change #195' >> ${WC}/trunk/subversion/tests/clients/cmdline/svnadmin_tests.py
${SVN} commit -m 'commit #195' ${WC}/trunk/doc/user/svnlook/svnlook.texi ${WC}/trunk/subversion/libsvn_subr/quoprint.c ${WC}/trunk/subversion/libsvn_client/delete.c ${WC}/trunk/subversion/libsvn_fs/id.c ${WC}/trunk/subversion/clients/win32/WinSVN/frmMain.frm ${WC}/trunk/subversion/clients/cmdline/add-cmd.c ${WC}/trunk/subversion/tests/clients/cmdline/svnadmin_tests.py

################### change 196 ###################
echo ""
echo "Doing commit #196:"
echo 'part of change #196' >> ${WC}/trunk/doc/user/manual/model.texi
echo 'part of change #196' >> ${WC}/trunk/subversion/tests/libsvn_fs/key-test.c
echo 'part of change #196' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookGroup.frm
echo 'part of change #196' >> ${WC}/trunk/subversion/libsvn_repos/hooks.c
echo 'part of change #196' >> ${WC}/trunk/expat-lite/hashtable.c
echo 'part of change #196' >> ${WC}/trunk/subversion/bindings/svn_client.i
echo 'part of change #196' >> ${WC}/trunk/subversion/mod_dav_svn/mod_dav_svn.c
${SVN} commit -m 'commit #196' ${WC}/trunk/doc/user/manual/model.texi ${WC}/trunk/subversion/tests/libsvn_fs/key-test.c ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookGroup.frm ${WC}/trunk/subversion/libsvn_repos/hooks.c ${WC}/trunk/expat-lite/hashtable.c ${WC}/trunk/subversion/bindings/svn_client.i ${WC}/trunk/subversion/mod_dav_svn/mod_dav_svn.c

################### change 197 ###################
echo ""
echo "Doing commit #197:"
echo 'part of change #197' >> ${WC}/trunk/subversion/clients/win32/SVNControls/link.dat
echo 'part of change #197' >> ${WC}/trunk/notes/guis/README
echo 'part of change #197' >> ${WC}/trunk/subversion/libsvn_fs/txn-table.c
echo 'part of change #197' >> ${WC}/trunk/subversion/tests/xml/up1b-inline.xml
echo 'part of change #197' >> ${WC}/trunk/subversion/libsvn_delta/vdelta.c
echo 'part of change #197' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cShellSort.cls
echo 'part of change #197' >> ${WC}/trunk/subversion/libsvn_client/libsvn_client.dsp
${SVN} commit -m 'commit #197' ${WC}/trunk/subversion/clients/win32/SVNControls/link.dat ${WC}/trunk/notes/guis/README ${WC}/trunk/subversion/libsvn_fs/txn-table.c ${WC}/trunk/subversion/tests/xml/up1b-inline.xml ${WC}/trunk/subversion/libsvn_delta/vdelta.c ${WC}/trunk/subversion/clients/win32/SVNControls/cShellSort.cls ${WC}/trunk/subversion/libsvn_client/libsvn_client.dsp

################### change 198 ###################
echo ""
echo "Doing commit #198:"
echo 'part of change #198' >> ${WC}/trunk/expat-lite/iasciitab.h
echo 'part of change #198' >> ${WC}/trunk/subversion/libsvn_subr/getdate.c
echo 'part of change #198' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta-test.c
echo 'part of change #198' >> ${WC}/trunk/subversion/libsvn_fs/proplist.h
echo 'part of change #198' >> ${WC}/trunk/expat-lite/iasciitab.h
echo 'part of change #198' >> ${WC}/trunk/expat-lite/hashtable.h
echo 'part of change #198' >> ${WC}/trunk/subversion/tests/libsvn_repos/repos-test.c
echo 'part of change #198' >> ${WC}/trunk/notes/auth_proposal.txt
echo 'part of change #198' >> ${WC}/trunk/TASKS
echo 'part of change #198' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.rgs
${SVN} commit -m 'commit #198' ${WC}/trunk/expat-lite/iasciitab.h ${WC}/trunk/subversion/libsvn_subr/getdate.c ${WC}/trunk/subversion/tests/libsvn_delta/vdelta-test.c ${WC}/trunk/subversion/libsvn_fs/proplist.h ${WC}/trunk/expat-lite/iasciitab.h ${WC}/trunk/expat-lite/hashtable.h ${WC}/trunk/subversion/tests/libsvn_repos/repos-test.c ${WC}/trunk/notes/auth_proposal.txt ${WC}/trunk/TASKS ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.rgs

################### change 199 ###################
echo ""
echo "Doing commit #199:"
echo 'part of change #199' >> ${WC}/trunk/subversion/libsvn_wc/status.c
echo 'part of change #199' >> ${WC}/trunk/subversion/bindings/svn_client.i
echo 'part of change #199' >> ${WC}/trunk/subversion/clients/win32/svn_com/resource.h
echo 'part of change #199' >> ${WC}/trunk/BUGS
echo 'part of change #199' >> ${WC}/trunk/subversion/libsvn_repos/libsvn_repos.dsp
echo 'part of change #199' >> ${WC}/trunk/subversion/include/svn_fs.h
echo 'part of change #199' >> ${WC}/trunk/subversion/libsvn_repos/libsvn_repos.dsp
echo 'part of change #199' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Client.java
echo 'part of change #199' >> ${WC}/trunk/subversion/include/svn_io.h
${SVN} commit -m 'commit #199' ${WC}/trunk/subversion/libsvn_wc/status.c ${WC}/trunk/subversion/bindings/svn_client.i ${WC}/trunk/subversion/clients/win32/svn_com/resource.h ${WC}/trunk/BUGS ${WC}/trunk/subversion/libsvn_repos/libsvn_repos.dsp ${WC}/trunk/subversion/include/svn_fs.h ${WC}/trunk/subversion/libsvn_repos/libsvn_repos.dsp ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Client.java ${WC}/trunk/subversion/include/svn_io.h

################### change 200 ###################
echo ""
echo "Doing commit #200:"
echo 'part of change #200' >> ${WC}/trunk/subversion/libsvn_delta/README.xmlparse
echo 'part of change #200' >> ${WC}/trunk/subversion/libsvn_wc/get_editor.c
echo 'part of change #200' >> ${WC}/trunk/expat-lite/libexpat.dsp
${SVN} commit -m 'commit #200' ${WC}/trunk/subversion/libsvn_delta/README.xmlparse ${WC}/trunk/subversion/libsvn_wc/get_editor.c ${WC}/trunk/expat-lite/libexpat.dsp

################### change 201 ###################
echo ""
echo "Doing commit #201:"
echo 'part of change #201' >> ${WC}/trunk/build.conf
echo 'part of change #201' >> ${WC}/trunk/subversion/libsvn_subr/svn_base64.c
echo 'part of change #201' >> ${WC}/trunk/doc/programmer/design/svn-design.txt
echo 'part of change #201' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cHeaderControl.cls
${SVN} commit -m 'commit #201' ${WC}/trunk/build.conf ${WC}/trunk/subversion/libsvn_subr/svn_base64.c ${WC}/trunk/doc/programmer/design/svn-design.txt ${WC}/trunk/subversion/clients/win32/SVNControls/cHeaderControl.cls

################### change 202 ###################
echo ""
echo "Doing commit #202:"
echo 'part of change #202' >> ${WC}/trunk/subversion/mod_dav_svn/mod_dav_svn.c
echo 'part of change #202' >> ${WC}/trunk/subversion/clients/cmdline/commit-cmd.c
echo 'part of change #202' >> ${WC}/trunk/notes/difftools/README
echo 'part of change #202' >> ${WC}/trunk/subversion/libsvn_delta/delta.h
echo 'part of change #202' >> ${WC}/trunk/subversion/libsvn_repos/rev_hunt.c
echo 'part of change #202' >> ${WC}/trunk/expat-lite/xmltok.c
echo 'part of change #202' >> ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.h
echo 'part of change #202' >> ${WC}/trunk/notes/old/draft-korn-vcdiff-01.txt
${SVN} commit -m 'commit #202' ${WC}/trunk/subversion/mod_dav_svn/mod_dav_svn.c ${WC}/trunk/subversion/clients/cmdline/commit-cmd.c ${WC}/trunk/notes/difftools/README ${WC}/trunk/subversion/libsvn_delta/delta.h ${WC}/trunk/subversion/libsvn_repos/rev_hunt.c ${WC}/trunk/expat-lite/xmltok.c ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.h ${WC}/trunk/notes/old/draft-korn-vcdiff-01.txt

################### change 203 ###################
echo ""
echo "Doing commit #203:"
echo 'part of change #203' >> ${WC}/trunk/subversion/libsvn_delta/xml_parse.c
echo 'part of change #203' >> ${WC}/trunk/subversion/libsvn_delta/text_delta.c
echo 'part of change #203' >> ${WC}/trunk/subversion/libsvn_repos/delta.c
echo 'part of change #203' >> ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py
echo 'part of change #203' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.def
echo 'part of change #203' >> ${WC}/trunk/subversion/libsvn_ra/libsvn_ra.dsp
${SVN} commit -m 'commit #203' ${WC}/trunk/subversion/libsvn_delta/xml_parse.c ${WC}/trunk/subversion/libsvn_delta/text_delta.c ${WC}/trunk/subversion/libsvn_repos/delta.c ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.def ${WC}/trunk/subversion/libsvn_ra/libsvn_ra.dsp

################### change 204 ###################
echo ""
echo "Doing commit #204:"
echo 'part of change #204' >> ${WC}/trunk/subversion/libsvn_ra_dav/props.c
echo 'part of change #204' >> ${WC}/trunk/subversion/include/svn_test.h
echo 'part of change #204' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaWindow.java
echo 'part of change #204' >> ${WC}/trunk/subversion/tests/xml/co1-inline.xml
echo 'part of change #204' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.h
echo 'part of change #204' >> ${WC}/trunk/expat-lite/xmlrole.c
${SVN} commit -m 'commit #204' ${WC}/trunk/subversion/libsvn_ra_dav/props.c ${WC}/trunk/subversion/include/svn_test.h ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaWindow.java ${WC}/trunk/subversion/tests/xml/co1-inline.xml ${WC}/trunk/subversion/libsvn_fs/reps-table.h ${WC}/trunk/expat-lite/xmlrole.c

################### change 205 ###################
echo ""
echo "Doing commit #205:"
echo 'part of change #205' >> ${WC}/trunk/doc/programmer/design/goals.texi
echo 'part of change #205' >> ${WC}/trunk/subversion/libsvn_fs/proplist.c
echo 'part of change #205' >> ${WC}/trunk/subversion/clients/win32/SVNControls/mGDI.bas
echo 'part of change #205' >> ${WC}/trunk/subversion/bindings/svn_io.i
echo 'part of change #205' >> ${WC}/trunk/PORTING
echo 'part of change #205' >> ${WC}/trunk/subversion/bindings/svn_client.i
echo 'part of change #205' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.def
echo 'part of change #205' >> ${WC}/trunk/subversion/libsvn_ra_local/ra_plugin.c
echo 'part of change #205' >> ${WC}/trunk/subversion/tests/libsvn_fs/fs_test.dsp
echo 'part of change #205' >> ${WC}/trunk/subversion/tests/clients/cmdline/svnadmin_tests.py
${SVN} commit -m 'commit #205' ${WC}/trunk/doc/programmer/design/goals.texi ${WC}/trunk/subversion/libsvn_fs/proplist.c ${WC}/trunk/subversion/clients/win32/SVNControls/mGDI.bas ${WC}/trunk/subversion/bindings/svn_io.i ${WC}/trunk/PORTING ${WC}/trunk/subversion/bindings/svn_client.i ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.def ${WC}/trunk/subversion/libsvn_ra_local/ra_plugin.c ${WC}/trunk/subversion/tests/libsvn_fs/fs_test.dsp ${WC}/trunk/subversion/tests/clients/cmdline/svnadmin_tests.py

################### change 206 ###################
echo ""
echo "Doing commit #206:"
echo 'part of change #206' >> ${WC}/trunk/subversion/clients/win32/SVNControls/pTest.vbp
echo 'part of change #206' >> ${WC}/trunk/notes/auth_proposal.txt
echo 'part of change #206' >> ${WC}/trunk/subversion/clients/cmdline/status.c
echo 'part of change #206' >> ${WC}/trunk/subversion/libsvn_subr/sorts.c
echo 'part of change #206' >> ${WC}/trunk/subversion/include/svn_test.h
echo 'part of change #206' >> ${WC}/trunk/subversion/tests/xml/pipatch.xml
echo 'part of change #206' >> ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta
echo 'part of change #206' >> ${WC}/trunk/expat-lite/xmltok_impl.c
echo 'part of change #206' >> ${WC}/trunk/subversion/tests/svn_tests_main.c
${SVN} commit -m 'commit #206' ${WC}/trunk/subversion/clients/win32/SVNControls/pTest.vbp ${WC}/trunk/notes/auth_proposal.txt ${WC}/trunk/subversion/clients/cmdline/status.c ${WC}/trunk/subversion/libsvn_subr/sorts.c ${WC}/trunk/subversion/include/svn_test.h ${WC}/trunk/subversion/tests/xml/pipatch.xml ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta ${WC}/trunk/expat-lite/xmltok_impl.c ${WC}/trunk/subversion/tests/svn_tests_main.c

################### change 207 ###################
echo ""
echo "Doing commit #207:"
echo 'part of change #207' >> ${WC}/trunk/www/index.html
echo 'part of change #207' >> ${WC}/trunk/subversion/libsvn_wc/Makefile
echo 'part of change #207' >> ${WC}/trunk/subversion/LICENSE
echo 'part of change #207' >> ${WC}/trunk/subversion/libsvn_client/revert.c
echo 'part of change #207' >> ${WC}/trunk/doc/user/manual/svn-manual.html
echo 'part of change #207' >> ${WC}/trunk/subversion/bindings/svn_fs.i
echo 'part of change #207' >> ${WC}/trunk/notes/difftools/README
echo 'part of change #207' >> ${WC}/trunk/expat-lite/asciitab.h
echo 'part of change #207' >> ${WC}/trunk/subversion/libsvn_fs/id.c
echo 'part of change #207' >> ${WC}/trunk/doc/programmer/WritingChangeLogs.txt
${SVN} commit -m 'commit #207' ${WC}/trunk/www/index.html ${WC}/trunk/subversion/libsvn_wc/Makefile ${WC}/trunk/subversion/LICENSE ${WC}/trunk/subversion/libsvn_client/revert.c ${WC}/trunk/doc/user/manual/svn-manual.html ${WC}/trunk/subversion/bindings/svn_fs.i ${WC}/trunk/notes/difftools/README ${WC}/trunk/expat-lite/asciitab.h ${WC}/trunk/subversion/libsvn_fs/id.c ${WC}/trunk/doc/programmer/WritingChangeLogs.txt

################### change 208 ###################
echo ""
echo "Doing commit #208:"
echo 'part of change #208' >> ${WC}/trunk/subversion/LICENSE
echo 'part of change #208' >> ${WC}/trunk/subversion/clients/cmdline/proplist-cmd.c
echo 'part of change #208' >> ${WC}/trunk/subversion/libsvn_wc/entries.c
${SVN} commit -m 'commit #208' ${WC}/trunk/subversion/LICENSE ${WC}/trunk/subversion/clients/cmdline/proplist-cmd.c ${WC}/trunk/subversion/libsvn_wc/entries.c

################### change 209 ###################
echo ""
echo "Doing commit #209:"
echo 'part of change #209' >> ${WC}/trunk/AUTHORS
echo 'part of change #209' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.cpp
echo 'part of change #209' >> ${WC}/trunk/subversion/clients/win32/SVNControls/ppgColumns.pag
echo 'part of change #209' >> ${WC}/trunk/STACK
echo 'part of change #209' >> ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta
echo 'part of change #209' >> ${WC}/trunk/subversion/libsvn_subr/getdate.c
echo 'part of change #209' >> ${WC}/trunk/subversion/tests/libsvn_subr/hashdump-test.c
echo 'part of change #209' >> ${WC}/trunk/subversion/tests/xml/up1b-postfix.xml
${SVN} commit -m 'commit #209' ${WC}/trunk/AUTHORS ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.cpp ${WC}/trunk/subversion/clients/win32/SVNControls/ppgColumns.pag ${WC}/trunk/STACK ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta ${WC}/trunk/subversion/libsvn_subr/getdate.c ${WC}/trunk/subversion/tests/libsvn_subr/hashdump-test.c ${WC}/trunk/subversion/tests/xml/up1b-postfix.xml

################### change 210 ###################
echo ""
echo "Doing commit #210:"
echo 'part of change #210' >> ${WC}/trunk/notes/guis/planning.txt
echo 'part of change #210' >> ${WC}/trunk/tools/cvs2svn/README
${SVN} commit -m 'commit #210' ${WC}/trunk/notes/guis/planning.txt ${WC}/trunk/tools/cvs2svn/README

################### change 211 ###################
echo ""
echo "Doing commit #211:"
echo 'part of change #211' >> ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py
echo 'part of change #211' >> ${WC}/trunk/subversion/bindings/svn_string.i
${SVN} commit -m 'commit #211' ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py ${WC}/trunk/subversion/bindings/svn_string.i

################### change 212 ###################
echo ""
echo "Doing commit #212:"
echo 'part of change #212' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.h
echo 'part of change #212' >> ${WC}/trunk/subversion/libsvn_repos/reporter.c
${SVN} commit -m 'commit #212' ${WC}/trunk/subversion/libsvn_fs/reps-table.h ${WC}/trunk/subversion/libsvn_repos/reporter.c

################### change 213 ###################
echo ""
echo "Doing commit #213:"
echo 'part of change #213' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.h
echo 'part of change #213' >> ${WC}/trunk/subversion/libsvn_fs/proplist.c
${SVN} commit -m 'commit #213' ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.h ${WC}/trunk/subversion/libsvn_fs/proplist.c

################### change 214 ###################
echo ""
echo "Doing commit #214:"
echo 'part of change #214' >> ${WC}/trunk/www/project_tasks.html
echo 'part of change #214' >> ${WC}/trunk/ac-helpers/libtool.m4
echo 'part of change #214' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Revision.java
echo 'part of change #214' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.cpp
echo 'part of change #214' >> ${WC}/trunk/subversion/libsvn_fs/fs.h
echo 'part of change #214' >> ${WC}/trunk/ChangeLog.CVS
echo 'part of change #214' >> ${WC}/trunk/ac-helpers/libtool.m4
${SVN} commit -m 'commit #214' ${WC}/trunk/www/project_tasks.html ${WC}/trunk/ac-helpers/libtool.m4 ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Revision.java ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.cpp ${WC}/trunk/subversion/libsvn_fs/fs.h ${WC}/trunk/ChangeLog.CVS ${WC}/trunk/ac-helpers/libtool.m4

################### change 215 ###################
echo ""
echo "Doing commit #215:"
echo 'part of change #215' >> ${WC}/trunk/doc/README
echo 'part of change #215' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaWindow.java
echo 'part of change #215' >> ${WC}/trunk/subversion/libsvn_fs/txn-table.h
echo 'part of change #215' >> ${WC}/trunk/subversion/bindings/svn_delta.i
echo 'part of change #215' >> ${WC}/trunk/subversion/libsvn_repos/rev_hunt.c
${SVN} commit -m 'commit #215' ${WC}/trunk/doc/README ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaWindow.java ${WC}/trunk/subversion/libsvn_fs/txn-table.h ${WC}/trunk/subversion/bindings/svn_delta.i ${WC}/trunk/subversion/libsvn_repos/rev_hunt.c

################### change 216 ###################
echo ""
echo "Doing commit #216:"
echo 'part of change #216' >> ${WC}/trunk/subversion/libsvn_client/cleanup.c
echo 'part of change #216' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.h
echo 'part of change #216' >> ${WC}/trunk/doc/user/svnlook/svnlook.texi
${SVN} commit -m 'commit #216' ${WC}/trunk/subversion/libsvn_client/cleanup.c ${WC}/trunk/subversion/libsvn_fs/reps-table.h ${WC}/trunk/doc/user/svnlook/svnlook.texi

################### change 217 ###################
echo ""
echo "Doing commit #217:"
echo 'part of change #217' >> ${WC}/trunk/subversion/clients/cmdline/prompt.c
echo 'part of change #217' >> ${WC}/trunk/subversion/libsvn_delta/libsvn_delta.dsp
echo 'part of change #217' >> ${WC}/trunk/www/license-1.html
echo 'part of change #217' >> ${WC}/trunk/svn_check.dsp
echo 'part of change #217' >> ${WC}/trunk/subversion/clients/cmdline/add-cmd.c
echo 'part of change #217' >> ${WC}/trunk/subversion/libsvn_fs/dag.h
echo 'part of change #217' >> ${WC}/trunk/subversion/include/svn_delta.h
echo 'part of change #217' >> ${WC}/trunk/subversion/clients/cmdline/prompt.c
${SVN} commit -m 'commit #217' ${WC}/trunk/subversion/clients/cmdline/prompt.c ${WC}/trunk/subversion/libsvn_delta/libsvn_delta.dsp ${WC}/trunk/www/license-1.html ${WC}/trunk/svn_check.dsp ${WC}/trunk/subversion/clients/cmdline/add-cmd.c ${WC}/trunk/subversion/libsvn_fs/dag.h ${WC}/trunk/subversion/include/svn_delta.h ${WC}/trunk/subversion/clients/cmdline/prompt.c

################### change 218 ###################
echo ""
echo "Doing commit #218:"
echo 'part of change #218' >> ${WC}/trunk/subversion/libsvn_fs/reps-strings.c
echo 'part of change #218' >> ${WC}/trunk/subversion/clients/win32/WinSVN/DriveHelpers.bas
echo 'part of change #218' >> ${WC}/trunk/HACKING
echo 'part of change #218' >> ${WC}/trunk/tools/cvs2svn/CheckedClass.pm
echo 'part of change #218' >> ${WC}/trunk/subversion/tests/libsvn_fs/skel_test.dsp
echo 'part of change #218' >> ${WC}/trunk/subversion/mod_dav_svn/activity.c
echo 'part of change #218' >> ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.h
${SVN} commit -m 'commit #218' ${WC}/trunk/subversion/libsvn_fs/reps-strings.c ${WC}/trunk/subversion/clients/win32/WinSVN/DriveHelpers.bas ${WC}/trunk/HACKING ${WC}/trunk/tools/cvs2svn/CheckedClass.pm ${WC}/trunk/subversion/tests/libsvn_fs/skel_test.dsp ${WC}/trunk/subversion/mod_dav_svn/activity.c ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.h

################### change 219 ###################
echo ""
echo "Doing commit #219:"
echo 'part of change #219' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.cpp
echo 'part of change #219' >> ${WC}/trunk/subversion/svnadmin/main.c
echo 'part of change #219' >> ${WC}/trunk/doc/user/svnlook/svnlook.texi
echo 'part of change #219' >> ${WC}/trunk/subversion/include/svn_quoprint.h
echo 'part of change #219' >> ${WC}/trunk/subversion/libsvn_wc/get_editor.c
${SVN} commit -m 'commit #219' ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.cpp ${WC}/trunk/subversion/svnadmin/main.c ${WC}/trunk/doc/user/svnlook/svnlook.texi ${WC}/trunk/subversion/include/svn_quoprint.h ${WC}/trunk/subversion/libsvn_wc/get_editor.c

################### change 220 ###################
echo ""
echo "Doing commit #220:"
echo 'part of change #220' >> ${WC}/trunk/subversion/libsvn_subr/sorts.c
echo 'part of change #220' >> ${WC}/trunk/gen-make.py
echo 'part of change #220' >> ${WC}/trunk/subversion/libsvn_wc/get_editor.c
echo 'part of change #220' >> ${WC}/trunk/subversion/clients/cmdline/feedback.c
echo 'part of change #220' >> ${WC}/trunk/subversion/libsvn_fs/rev-table.c
echo 'part of change #220' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cHeaderControl.cls
${SVN} commit -m 'commit #220' ${WC}/trunk/subversion/libsvn_subr/sorts.c ${WC}/trunk/gen-make.py ${WC}/trunk/subversion/libsvn_wc/get_editor.c ${WC}/trunk/subversion/clients/cmdline/feedback.c ${WC}/trunk/subversion/libsvn_fs/rev-table.c ${WC}/trunk/subversion/clients/win32/SVNControls/cHeaderControl.cls

################### change 221 ###################
echo ""
echo "Doing commit #221:"
echo 'part of change #221' >> ${WC}/trunk/ac-helpers/ltconfig
echo 'part of change #221' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/WorkingCopy.java
echo 'part of change #221' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Status.java
${SVN} commit -m 'commit #221' ${WC}/trunk/ac-helpers/ltconfig ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/WorkingCopy.java ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Status.java

################### change 222 ###################
echo ""
echo "Doing commit #222:"
echo 'part of change #222' >> ${WC}/trunk/subversion/libsvn_fs/libsvn_fs.dsp
echo 'part of change #222' >> ${WC}/trunk/subversion/svnlook/main.c
echo 'part of change #222' >> ${WC}/trunk/subversion/libsvn_delta/delta.h
echo 'part of change #222' >> ${WC}/trunk/subversion/clients/cmdline/diff-cmd.c
echo 'part of change #222' >> ${WC}/trunk/subversion/libsvn_fs/fs.h
echo 'part of change #222' >> ${WC}/trunk/notes/multi-args.txt
echo 'part of change #222' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cShellSort.cls
echo 'part of change #222' >> ${WC}/trunk/subversion/libsvn_wc/adm_crawler.c
echo 'part of change #222' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target0.txt
${SVN} commit -m 'commit #222' ${WC}/trunk/subversion/libsvn_fs/libsvn_fs.dsp ${WC}/trunk/subversion/svnlook/main.c ${WC}/trunk/subversion/libsvn_delta/delta.h ${WC}/trunk/subversion/clients/cmdline/diff-cmd.c ${WC}/trunk/subversion/libsvn_fs/fs.h ${WC}/trunk/notes/multi-args.txt ${WC}/trunk/subversion/clients/win32/SVNControls/cShellSort.cls ${WC}/trunk/subversion/libsvn_wc/adm_crawler.c ${WC}/trunk/subversion/tests/libsvn_vcdiff/target0.txt

################### change 223 ###################
echo ""
echo "Doing commit #223:"
echo 'part of change #223' >> ${WC}/trunk/expat-lite/xmlparse.c
echo 'part of change #223' >> ${WC}/trunk/notes/old/draft-korn-vcdiff-01.txt
echo 'part of change #223' >> ${WC}/trunk/subversion/libsvn_client/diff.c
${SVN} commit -m 'commit #223' ${WC}/trunk/expat-lite/xmlparse.c ${WC}/trunk/notes/old/draft-korn-vcdiff-01.txt ${WC}/trunk/subversion/libsvn_client/diff.c

################### change 224 ###################
echo ""
echo "Doing commit #224:"
echo 'part of change #224' >> ${WC}/trunk/subversion/libsvn_wc/libsvn_wc.dsp
echo 'part of change #224' >> ${WC}/trunk/subversion/clients/cmdline/main.c
echo 'part of change #224' >> ${WC}/trunk/subversion/libsvn_subr/hashdump.c
echo 'part of change #224' >> ${WC}/trunk/doc/user/manual/svn-manual.html
echo 'part of change #224' >> ${WC}/trunk/subversion/libsvn_delta/compose_editors.c
echo 'part of change #224' >> ${WC}/trunk/expat-lite/README.svn
echo 'part of change #224' >> ${WC}/trunk/subversion/mod_dav_svn/static/README
echo 'part of change #224' >> ${WC}/trunk/expat-lite/xmlparse.h
${SVN} commit -m 'commit #224' ${WC}/trunk/subversion/libsvn_wc/libsvn_wc.dsp ${WC}/trunk/subversion/clients/cmdline/main.c ${WC}/trunk/subversion/libsvn_subr/hashdump.c ${WC}/trunk/doc/user/manual/svn-manual.html ${WC}/trunk/subversion/libsvn_delta/compose_editors.c ${WC}/trunk/expat-lite/README.svn ${WC}/trunk/subversion/mod_dav_svn/static/README ${WC}/trunk/expat-lite/xmlparse.h

################### change 225 ###################
echo ""
echo "Doing commit #225:"
echo 'part of change #225' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cScrollBars.cls
echo 'part of change #225' >> ${WC}/trunk/notes/guis/planning.txt
echo 'part of change #225' >> ${WC}/trunk/subversion/tests/xml/up1b-postfix.xml
echo 'part of change #225' >> ${WC}/trunk/subversion/tests/xml/up2.xml
echo 'part of change #225' >> ${WC}/trunk/subversion/libsvn_fs/structure
echo 'part of change #225' >> ${WC}/trunk/www/project_bugs.html
echo 'part of change #225' >> ${WC}/trunk/doc/programmer/design/svn-design.texi
echo 'part of change #225' >> ${WC}/trunk/notes/guis/planning.txt
echo 'part of change #225' >> ${WC}/trunk/subversion/libsvn_repos/delta.c
echo 'part of change #225' >> ${WC}/trunk/subversion/clients/win32/SVNControls/link.dat
${SVN} commit -m 'commit #225' ${WC}/trunk/subversion/clients/win32/SVNControls/cScrollBars.cls ${WC}/trunk/notes/guis/planning.txt ${WC}/trunk/subversion/tests/xml/up1b-postfix.xml ${WC}/trunk/subversion/tests/xml/up2.xml ${WC}/trunk/subversion/libsvn_fs/structure ${WC}/trunk/www/project_bugs.html ${WC}/trunk/doc/programmer/design/svn-design.texi ${WC}/trunk/notes/guis/planning.txt ${WC}/trunk/subversion/libsvn_repos/delta.c ${WC}/trunk/subversion/clients/win32/SVNControls/link.dat

################### change 226 ###################
echo ""
echo "Doing commit #226:"
echo 'part of change #226' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/README
echo 'part of change #226' >> ${WC}/trunk/subversion/include/svn_repos.h
echo 'part of change #226' >> ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse-test.c
echo 'part of change #226' >> ${WC}/trunk/subversion/clients/cmdline/props.c
echo 'part of change #226' >> ${WC}/trunk/notes/difftools/pics/FileMerge-README
${SVN} commit -m 'commit #226' ${WC}/trunk/subversion/tests/libsvn_vcdiff/README ${WC}/trunk/subversion/include/svn_repos.h ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse-test.c ${WC}/trunk/subversion/clients/cmdline/props.c ${WC}/trunk/notes/difftools/pics/FileMerge-README

################### change 227 ###################
echo ""
echo "Doing commit #227:"
echo 'part of change #227' >> ${WC}/trunk/ac-helpers/libtool.m4
echo 'part of change #227' >> ${WC}/trunk/subversion/libsvn_client/apply_edits.c
echo 'part of change #227' >> ${WC}/trunk/www/webdav-usage.html
echo 'part of change #227' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaOp.java
echo 'part of change #227' >> ${WC}/trunk/doc/programmer/design/svn-design.txt
echo 'part of change #227' >> ${WC}/trunk/doc/programmer/design/deltas.texi
echo 'part of change #227' >> ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h
echo 'part of change #227' >> ${WC}/trunk/notes/fs-improvements.txt
echo 'part of change #227' >> ${WC}/trunk/configure.in
${SVN} commit -m 'commit #227' ${WC}/trunk/ac-helpers/libtool.m4 ${WC}/trunk/subversion/libsvn_client/apply_edits.c ${WC}/trunk/www/webdav-usage.html ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaOp.java ${WC}/trunk/doc/programmer/design/svn-design.txt ${WC}/trunk/doc/programmer/design/deltas.texi ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h ${WC}/trunk/notes/fs-improvements.txt ${WC}/trunk/configure.in

################### change 228 ###################
echo ""
echo "Doing commit #228:"
echo 'part of change #228' >> ${WC}/trunk/subversion/libsvn_repos/delta.c
echo 'part of change #228' >> ${WC}/trunk/subversion/tests/xml/up1a-postfix.xml
echo 'part of change #228' >> ${WC}/trunk/subversion/libsvn_fs/strings-table.h
echo 'part of change #228' >> ${WC}/trunk/subversion/svnadmin/main.c
echo 'part of change #228' >> ${WC}/trunk/subversion/bindings/svn_types.i
echo 'part of change #228' >> ${WC}/trunk/subversion/bindings/svn_string.i
${SVN} commit -m 'commit #228' ${WC}/trunk/subversion/libsvn_repos/delta.c ${WC}/trunk/subversion/tests/xml/up1a-postfix.xml ${WC}/trunk/subversion/libsvn_fs/strings-table.h ${WC}/trunk/subversion/svnadmin/main.c ${WC}/trunk/subversion/bindings/svn_types.i ${WC}/trunk/subversion/bindings/svn_string.i

################### change 229 ###################
echo ""
echo "Doing commit #229:"
echo 'part of change #229' >> ${WC}/trunk/subversion/libsvn_subr/time.c
echo 'part of change #229' >> ${WC}/trunk/subversion/mod_dav_svn/static/README
echo 'part of change #229' >> ${WC}/trunk/notes/guis/pics/README
echo 'part of change #229' >> ${WC}/trunk/subversion/tests/xml/up1b-inline.xml
${SVN} commit -m 'commit #229' ${WC}/trunk/subversion/libsvn_subr/time.c ${WC}/trunk/subversion/mod_dav_svn/static/README ${WC}/trunk/notes/guis/pics/README ${WC}/trunk/subversion/tests/xml/up1b-inline.xml

################### change 230 ###################
echo ""
echo "Doing commit #230:"
echo 'part of change #230' >> ${WC}/trunk/subversion/tests/README
echo 'part of change #230' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/actions.py
echo 'part of change #230' >> ${WC}/trunk/subversion/tests/libsvn_delta/xml_output_test.dsp
echo 'part of change #230' >> ${WC}/trunk/notes/guis/pics/README
echo 'part of change #230' >> ${WC}/trunk/subversion/tests/libsvn_subr/path-test.c
echo 'part of change #230' >> ${WC}/trunk/svn_private_config.h.in
echo 'part of change #230' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target1.txt
${SVN} commit -m 'commit #230' ${WC}/trunk/subversion/tests/README ${WC}/trunk/subversion/tests/clients/cmdline/svntest/actions.py ${WC}/trunk/subversion/tests/libsvn_delta/xml_output_test.dsp ${WC}/trunk/notes/guis/pics/README ${WC}/trunk/subversion/tests/libsvn_subr/path-test.c ${WC}/trunk/svn_private_config.h.in ${WC}/trunk/subversion/tests/libsvn_vcdiff/target1.txt

################### change 231 ###################
echo ""
echo "Doing commit #231:"
echo 'part of change #231' >> ${WC}/trunk/subversion/tests/libsvn_wc/checkout_test.dsp
echo 'part of change #231' >> ${WC}/trunk/subversion/libsvn_client/checkout.c
echo 'part of change #231' >> ${WC}/trunk/subversion/clients/cmdline/prompt.c
${SVN} commit -m 'commit #231' ${WC}/trunk/subversion/tests/libsvn_wc/checkout_test.dsp ${WC}/trunk/subversion/libsvn_client/checkout.c ${WC}/trunk/subversion/clients/cmdline/prompt.c

################### change 232 ###################
echo ""
echo "Doing commit #232:"
echo 'part of change #232' >> ${WC}/trunk/tools/check-license.py
echo 'part of change #232' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/main.py
echo 'part of change #232' >> ${WC}/trunk/doc/programmer/design/goals.texi
echo 'part of change #232' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmTestMatrix.frm
echo 'part of change #232' >> ${WC}/trunk/subversion/include/svn_ra.h
echo 'part of change #232' >> ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.ctl
echo 'part of change #232' >> ${WC}/trunk/doc/programmer/design/goals.texi
echo 'part of change #232' >> ${WC}/trunk/subversion/clients/cmdline/subversion_client.dsp
echo 'part of change #232' >> ${WC}/trunk/subversion/tests/libsvn_repos/md5args.c
echo 'part of change #232' >> ${WC}/trunk/subversion/svnlook/main.c
${SVN} commit -m 'commit #232' ${WC}/trunk/tools/check-license.py ${WC}/trunk/subversion/tests/clients/cmdline/svntest/main.py ${WC}/trunk/doc/programmer/design/goals.texi ${WC}/trunk/subversion/clients/win32/SVNControls/frmTestMatrix.frm ${WC}/trunk/subversion/include/svn_ra.h ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.ctl ${WC}/trunk/doc/programmer/design/goals.texi ${WC}/trunk/subversion/clients/cmdline/subversion_client.dsp ${WC}/trunk/subversion/tests/libsvn_repos/md5args.c ${WC}/trunk/subversion/svnlook/main.c

################### change 233 ###################
echo ""
echo "Doing commit #233:"
echo 'part of change #233' >> ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.vbp
echo 'part of change #233' >> ${WC}/trunk/subversion/libsvn_fs/txn-table.h
echo 'part of change #233' >> ${WC}/trunk/www/project_nav.html
echo 'part of change #233' >> ${WC}/trunk/subversion/libsvn_fs/this-branch.txt
echo 'part of change #233' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaOp.java
echo 'part of change #233' >> ${WC}/trunk/subversion/include/svn_base64.h
${SVN} commit -m 'commit #233' ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.vbp ${WC}/trunk/subversion/libsvn_fs/txn-table.h ${WC}/trunk/www/project_nav.html ${WC}/trunk/subversion/libsvn_fs/this-branch.txt ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaOp.java ${WC}/trunk/subversion/include/svn_base64.h

################### change 234 ###################
echo ""
echo "Doing commit #234:"
echo 'part of change #234' >> ${WC}/trunk/subversion/libsvn_subr/path.c
echo 'part of change #234' >> ${WC}/trunk/subversion/libsvn_wc/props.c
echo 'part of change #234' >> ${WC}/trunk/subversion/libsvn_wc/status.c
echo 'part of change #234' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.cpp
echo 'part of change #234' >> ${WC}/trunk/expat-lite/libexpat.dsp
echo 'part of change #234' >> ${WC}/trunk/subversion/tests/xml/pipatch.xml
echo 'part of change #234' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.idl
echo 'part of change #234' >> ${WC}/trunk/subversion/clients/win32/SVNControls/ppgColumns.pag
echo 'part of change #234' >> ${WC}/trunk/subversion/libsvn_repos/node_tree.c
echo 'part of change #234' >> ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp
${SVN} commit -m 'commit #234' ${WC}/trunk/subversion/libsvn_subr/path.c ${WC}/trunk/subversion/libsvn_wc/props.c ${WC}/trunk/subversion/libsvn_wc/status.c ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.cpp ${WC}/trunk/expat-lite/libexpat.dsp ${WC}/trunk/subversion/tests/xml/pipatch.xml ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.idl ${WC}/trunk/subversion/clients/win32/SVNControls/ppgColumns.pag ${WC}/trunk/subversion/libsvn_repos/node_tree.c ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp

################### change 235 ###################
echo ""
echo "Doing commit #235:"
echo 'part of change #235' >> ${WC}/trunk/www/project_status.html
echo 'part of change #235' >> ${WC}/trunk/subversion/clients/win32/svn_com/misc.h
echo 'part of change #235' >> ${WC}/trunk/doc/programmer/WritingChangeLogs.txt
echo 'part of change #235' >> ${WC}/trunk/doc/user/manual/adds.texi
echo 'part of change #235' >> ${WC}/trunk/subversion/tests/libsvn_fs/fs_test.dsp
echo 'part of change #235' >> ${WC}/trunk/subversion/clients/cmdline/trace-update.c
echo 'part of change #235' >> ${WC}/trunk/subversion/libsvn_delta/default_editor.c
echo 'part of change #235' >> ${WC}/trunk/subversion/libsvn_delta/README.xmlparse
echo 'part of change #235' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TreeDeltaEditor.java
echo 'part of change #235' >> ${WC}/trunk/subversion/libsvn_fs/tree.h
${SVN} commit -m 'commit #235' ${WC}/trunk/www/project_status.html ${WC}/trunk/subversion/clients/win32/svn_com/misc.h ${WC}/trunk/doc/programmer/WritingChangeLogs.txt ${WC}/trunk/doc/user/manual/adds.texi ${WC}/trunk/subversion/tests/libsvn_fs/fs_test.dsp ${WC}/trunk/subversion/clients/cmdline/trace-update.c ${WC}/trunk/subversion/libsvn_delta/default_editor.c ${WC}/trunk/subversion/libsvn_delta/README.xmlparse ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TreeDeltaEditor.java ${WC}/trunk/subversion/libsvn_fs/tree.h

################### change 236 ###################
echo ""
echo "Doing commit #236:"
echo 'part of change #236' >> ${WC}/trunk/subversion/libsvn_fs/structure
echo 'part of change #236' >> ${WC}/trunk/expat-lite/CHANGES
echo 'part of change #236' >> ${WC}/trunk/subversion/mod_dav_svn/merge.c
echo 'part of change #236' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/entry.py
echo 'part of change #236' >> ${WC}/trunk/expat-lite/xmlparse.c
echo 'part of change #236' >> ${WC}/trunk/subversion/libsvn_fs/proplist.h
echo 'part of change #236' >> ${WC}/trunk/subversion/mod_dav_svn/liveprops.c
${SVN} commit -m 'commit #236' ${WC}/trunk/subversion/libsvn_fs/structure ${WC}/trunk/expat-lite/CHANGES ${WC}/trunk/subversion/mod_dav_svn/merge.c ${WC}/trunk/subversion/tests/clients/cmdline/svntest/entry.py ${WC}/trunk/expat-lite/xmlparse.c ${WC}/trunk/subversion/libsvn_fs/proplist.h ${WC}/trunk/subversion/mod_dav_svn/liveprops.c

################### change 237 ###################
echo ""
echo "Doing commit #237:"
echo 'part of change #237' >> ${WC}/trunk/subversion/tests/xml/up5.xml
echo 'part of change #237' >> ${WC}/trunk/notes/auth_proposal.txt
${SVN} commit -m 'commit #237' ${WC}/trunk/subversion/tests/xml/up5.xml ${WC}/trunk/notes/auth_proposal.txt

################### change 238 ###################
echo ""
echo "Doing commit #238:"
echo 'part of change #238' >> ${WC}/trunk/expat-lite/xmlparse.c
echo 'part of change #238' >> ${WC}/trunk/subversion/bindings/apr.i
echo 'part of change #238' >> ${WC}/trunk/subversion/libsvn_wc/status.c
${SVN} commit -m 'commit #238' ${WC}/trunk/expat-lite/xmlparse.c ${WC}/trunk/subversion/bindings/apr.i ${WC}/trunk/subversion/libsvn_wc/status.c

################### change 239 ###################
echo ""
echo "Doing commit #239:"
echo 'part of change #239' >> ${WC}/trunk/subversion/bindings/svn_ra.i
echo 'part of change #239' >> ${WC}/trunk/doc/programmer/design/deltas.texi
echo 'part of change #239' >> ${WC}/trunk/notes/difftools/pics/FileMerge-README
echo 'part of change #239' >> ${WC}/trunk/expat-lite/nametab.h
echo 'part of change #239' >> ${WC}/trunk/subversion/mod_dav_svn/liveprops.c
echo 'part of change #239' >> ${WC}/trunk/subversion/clients/cmdline/propget-cmd.c
echo 'part of change #239' >> ${WC}/trunk/subversion/libsvn_wc/adm_files.c
echo 'part of change #239' >> ${WC}/trunk/notes/issues.txt
echo 'part of change #239' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta-test.c
${SVN} commit -m 'commit #239' ${WC}/trunk/subversion/bindings/svn_ra.i ${WC}/trunk/doc/programmer/design/deltas.texi ${WC}/trunk/notes/difftools/pics/FileMerge-README ${WC}/trunk/expat-lite/nametab.h ${WC}/trunk/subversion/mod_dav_svn/liveprops.c ${WC}/trunk/subversion/clients/cmdline/propget-cmd.c ${WC}/trunk/subversion/libsvn_wc/adm_files.c ${WC}/trunk/notes/issues.txt ${WC}/trunk/subversion/tests/libsvn_delta/vdelta-test.c

################### change 240 ###################
echo ""
echo "Doing commit #240:"
echo 'part of change #240' >> ${WC}/trunk/subversion/libsvn_fs/libsvn_fs.dsp
echo 'part of change #240' >> ${WC}/trunk/subversion/libsvn_fs/tree.h
echo 'part of change #240' >> ${WC}/trunk/subversion/clients/cmdline/status-cmd.c
echo 'part of change #240' >> ${WC}/trunk/tools/cvs2svn/README
echo 'part of change #240' >> ${WC}/trunk/subversion/libsvn_wc/util.c
echo 'part of change #240' >> ${WC}/trunk/subversion/libsvn_subr/xml.c
echo 'part of change #240' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookDemo.frm
echo 'part of change #240' >> ${WC}/trunk/subversion/mod_dav_svn/repos.c
echo 'part of change #240' >> ${WC}/trunk/subversion/libsvn_subr/svn_string.c
${SVN} commit -m 'commit #240' ${WC}/trunk/subversion/libsvn_fs/libsvn_fs.dsp ${WC}/trunk/subversion/libsvn_fs/tree.h ${WC}/trunk/subversion/clients/cmdline/status-cmd.c ${WC}/trunk/tools/cvs2svn/README ${WC}/trunk/subversion/libsvn_wc/util.c ${WC}/trunk/subversion/libsvn_subr/xml.c ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookDemo.frm ${WC}/trunk/subversion/mod_dav_svn/repos.c ${WC}/trunk/subversion/libsvn_subr/svn_string.c

################### change 241 ###################
echo ""
echo "Doing commit #241:"
echo 'part of change #241' >> ${WC}/trunk/HACKING
echo 'part of change #241' >> ${WC}/trunk/subversion/libsvn_subr/hashdump.c
${SVN} commit -m 'commit #241' ${WC}/trunk/HACKING ${WC}/trunk/subversion/libsvn_subr/hashdump.c

################### change 242 ###################
echo ""
echo "Doing commit #242:"
echo 'part of change #242' >> ${WC}/trunk/notes/alpha-checklist.txt
echo 'part of change #242' >> ${WC}/trunk/expat-lite/xmlrole.c
echo 'part of change #242' >> ${WC}/trunk/subversion/libsvn_fs/txn-table.c
echo 'part of change #242' >> ${WC}/trunk/subversion/clients/cmdline/commit-cmd.c
echo 'part of change #242' >> ${WC}/trunk/subversion/tests/libsvn_fs/skel_test.dsp
echo 'part of change #242' >> ${WC}/trunk/subversion/tests/libsvn_delta/xml_output_test.dsp
echo 'part of change #242' >> ${WC}/trunk/doc/svn-doc.el
echo 'part of change #242' >> ${WC}/trunk/subversion/include/svn_io.h
echo 'part of change #242' >> ${WC}/trunk/subversion/libsvn_fs/dag.h
echo 'part of change #242' >> ${WC}/trunk/subversion/libsvn_ra/ra_loader.c
${SVN} commit -m 'commit #242' ${WC}/trunk/notes/alpha-checklist.txt ${WC}/trunk/expat-lite/xmlrole.c ${WC}/trunk/subversion/libsvn_fs/txn-table.c ${WC}/trunk/subversion/clients/cmdline/commit-cmd.c ${WC}/trunk/subversion/tests/libsvn_fs/skel_test.dsp ${WC}/trunk/subversion/tests/libsvn_delta/xml_output_test.dsp ${WC}/trunk/doc/svn-doc.el ${WC}/trunk/subversion/include/svn_io.h ${WC}/trunk/subversion/libsvn_fs/dag.h ${WC}/trunk/subversion/libsvn_ra/ra_loader.c

################### change 243 ###################
echo ""
echo "Doing commit #243:"
echo 'part of change #243' >> ${WC}/trunk/subversion/libsvn_subr/config.c
echo 'part of change #243' >> ${WC}/trunk/subversion/libsvn_repos/libsvn_repos.dsp
echo 'part of change #243' >> ${WC}/trunk/doc/user/manual/removals.texi
echo 'part of change #243' >> ${WC}/trunk/subversion/libsvn_client/update.c
${SVN} commit -m 'commit #243' ${WC}/trunk/subversion/libsvn_subr/config.c ${WC}/trunk/subversion/libsvn_repos/libsvn_repos.dsp ${WC}/trunk/doc/user/manual/removals.texi ${WC}/trunk/subversion/libsvn_client/update.c

################### change 244 ###################
echo ""
echo "Doing commit #244:"
echo 'part of change #244' >> ${WC}/trunk/subversion/mod_dav_svn/static/Makefile.in
echo 'part of change #244' >> ${WC}/trunk/subversion/include/svn_hash.h
echo 'part of change #244' >> ${WC}/trunk/tools/cvs2svn/README
echo 'part of change #244' >> ${WC}/trunk/subversion/bindings/svn_io.i
echo 'part of change #244' >> ${WC}/trunk/svn_private_config.hw
echo 'part of change #244' >> ${WC}/trunk/subversion/include/svn_test.h
echo 'part of change #244' >> ${WC}/trunk/subversion/tests/xml/up1a-postfix.xml
echo 'part of change #244' >> ${WC}/trunk/subversion/bindings/svn_client.i
${SVN} commit -m 'commit #244' ${WC}/trunk/subversion/mod_dav_svn/static/Makefile.in ${WC}/trunk/subversion/include/svn_hash.h ${WC}/trunk/tools/cvs2svn/README ${WC}/trunk/subversion/bindings/svn_io.i ${WC}/trunk/svn_private_config.hw ${WC}/trunk/subversion/include/svn_test.h ${WC}/trunk/subversion/tests/xml/up1a-postfix.xml ${WC}/trunk/subversion/bindings/svn_client.i

################### change 245 ###################
echo ""
echo "Doing commit #245:"
echo 'part of change #245' >> ${WC}/trunk/notes/delta.dtd
echo 'part of change #245' >> ${WC}/trunk/subversion/bindings/apr.i
echo 'part of change #245' >> ${WC}/trunk/subversion/libsvn_repos/rev_hunt.c
echo 'part of change #245' >> ${WC}/trunk/subversion/libsvn_fs/trail.h
echo 'part of change #245' >> ${WC}/trunk/subversion/svnlook/svnlook.dsp
echo 'part of change #245' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Revision.java
${SVN} commit -m 'commit #245' ${WC}/trunk/notes/delta.dtd ${WC}/trunk/subversion/bindings/apr.i ${WC}/trunk/subversion/libsvn_repos/rev_hunt.c ${WC}/trunk/subversion/libsvn_fs/trail.h ${WC}/trunk/subversion/svnlook/svnlook.dsp ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Revision.java

################### change 246 ###################
echo ""
echo "Doing commit #246:"
echo 'part of change #246' >> ${WC}/trunk/subversion/bindings/svn_fs.i
echo 'part of change #246' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_1.txt
${SVN} commit -m 'commit #246' ${WC}/trunk/subversion/bindings/svn_fs.i ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_1.txt

################### change 247 ###################
echo ""
echo "Doing commit #247:"
echo 'part of change #247' >> ${WC}/trunk/subversion/tests/libsvn_fs/skel_test.dsp
echo 'part of change #247' >> ${WC}/trunk/subversion/libsvn_fs/dag.h
echo 'part of change #247' >> ${WC}/trunk/subversion/tests/libsvn_repos/repos-test.c
echo 'part of change #247' >> ${WC}/trunk/www/project_license.html
${SVN} commit -m 'commit #247' ${WC}/trunk/subversion/tests/libsvn_fs/skel_test.dsp ${WC}/trunk/subversion/libsvn_fs/dag.h ${WC}/trunk/subversion/tests/libsvn_repos/repos-test.c ${WC}/trunk/www/project_license.html

################### change 248 ###################
echo ""
echo "Doing commit #248:"
echo 'part of change #248' >> ${WC}/trunk/notes/old/draft-korn-vcdiff-01.txt
echo 'part of change #248' >> ${WC}/trunk/subversion.dsw
echo 'part of change #248' >> ${WC}/trunk/subversion/clients/win32/WinSVN/Startup.bas
echo 'part of change #248' >> ${WC}/trunk/STACK
echo 'part of change #248' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TreeDeltaEditor.java
echo 'part of change #248' >> ${WC}/trunk/doc/README
${SVN} commit -m 'commit #248' ${WC}/trunk/notes/old/draft-korn-vcdiff-01.txt ${WC}/trunk/subversion.dsw ${WC}/trunk/subversion/clients/win32/WinSVN/Startup.bas ${WC}/trunk/STACK ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TreeDeltaEditor.java ${WC}/trunk/doc/README

################### change 249 ###################
echo ""
echo "Doing commit #249:"
echo 'part of change #249' >> ${WC}/trunk/subversion/mod_dav_svn/merge.c
echo 'part of change #249' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target5.txt
echo 'part of change #249' >> ${WC}/trunk/subversion/clients/cmdline/util.c
echo 'part of change #249' >> ${WC}/trunk/notes/fs-improvements.txt
echo 'part of change #249' >> ${WC}/trunk/subversion/tests/xml/up1a-postfix.xml
echo 'part of change #249' >> ${WC}/trunk/expat-lite/xmlparse.h
echo 'part of change #249' >> ${WC}/trunk/tools/cvs2svn/README
${SVN} commit -m 'commit #249' ${WC}/trunk/subversion/mod_dav_svn/merge.c ${WC}/trunk/subversion/tests/libsvn_vcdiff/target5.txt ${WC}/trunk/subversion/clients/cmdline/util.c ${WC}/trunk/notes/fs-improvements.txt ${WC}/trunk/subversion/tests/xml/up1a-postfix.xml ${WC}/trunk/expat-lite/xmlparse.h ${WC}/trunk/tools/cvs2svn/README

################### change 250 ###################
echo ""
echo "Doing commit #250:"
echo 'part of change #250' >> ${WC}/trunk/subversion/libsvn_delta/vdelta.c
echo 'part of change #250' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaOp.java
echo 'part of change #250' >> ${WC}/trunk/doc/programmer/design/client.texi
${SVN} commit -m 'commit #250' ${WC}/trunk/subversion/libsvn_delta/vdelta.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaOp.java ${WC}/trunk/doc/programmer/design/client.texi

################### change 251 ###################
echo ""
echo "Doing commit #251:"
echo 'part of change #251' >> ${WC}/trunk/subversion/libsvn_fs/txn.h
echo 'part of change #251' >> ${WC}/trunk/tools/check-license.py
echo 'part of change #251' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc
echo 'part of change #251' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/__init__.py
echo 'part of change #251' >> ${WC}/trunk/doc/programmer/design/deltas.texi
echo 'part of change #251' >> ${WC}/trunk/subversion/include/svn_error.h
echo 'part of change #251' >> ${WC}/trunk/subversion/libsvn_repos/reporter.c
echo 'part of change #251' >> ${WC}/trunk/subversion/clients/cmdline/commit-cmd.c
${SVN} commit -m 'commit #251' ${WC}/trunk/subversion/libsvn_fs/txn.h ${WC}/trunk/tools/check-license.py ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc ${WC}/trunk/subversion/tests/clients/cmdline/svntest/__init__.py ${WC}/trunk/doc/programmer/design/deltas.texi ${WC}/trunk/subversion/include/svn_error.h ${WC}/trunk/subversion/libsvn_repos/reporter.c ${WC}/trunk/subversion/clients/cmdline/commit-cmd.c

################### change 252 ###################
echo ""
echo "Doing commit #252:"
echo 'part of change #252' >> ${WC}/trunk/doc/user/manual/removals.texi
echo 'part of change #252' >> ${WC}/trunk/subversion/libsvn_ra_dav/options.c
${SVN} commit -m 'commit #252' ${WC}/trunk/doc/user/manual/removals.texi ${WC}/trunk/subversion/libsvn_ra_dav/options.c

################### change 253 ###################
echo ""
echo "Doing commit #253:"
echo 'part of change #253' >> ${WC}/trunk/subversion/tests/libsvn_wc/simple.delta
echo 'part of change #253' >> ${WC}/trunk/subversion/libsvn_client/commit.c
echo 'part of change #253' >> ${WC}/trunk/subversion/tests/libsvn_wc/simple.delta
echo 'part of change #253' >> ${WC}/trunk/subversion/libsvn_delta/text_delta.c
echo 'part of change #253' >> ${WC}/trunk/expat-lite/xmlrole.c
echo 'part of change #253' >> ${WC}/trunk/subversion/mod_dav_svn/merge.c
echo 'part of change #253' >> ${WC}/trunk/subversion/tests/libsvn_fs/fs_test.dsp
echo 'part of change #253' >> ${WC}/trunk/subversion/clients/cmdline/util.c
echo 'part of change #253' >> ${WC}/trunk/subversion/libsvn_ra_local/ra_plugin.c
echo 'part of change #253' >> ${WC}/trunk/ac-helpers/ltmain.sh
${SVN} commit -m 'commit #253' ${WC}/trunk/subversion/tests/libsvn_wc/simple.delta ${WC}/trunk/subversion/libsvn_client/commit.c ${WC}/trunk/subversion/tests/libsvn_wc/simple.delta ${WC}/trunk/subversion/libsvn_delta/text_delta.c ${WC}/trunk/expat-lite/xmlrole.c ${WC}/trunk/subversion/mod_dav_svn/merge.c ${WC}/trunk/subversion/tests/libsvn_fs/fs_test.dsp ${WC}/trunk/subversion/clients/cmdline/util.c ${WC}/trunk/subversion/libsvn_ra_local/ra_plugin.c ${WC}/trunk/ac-helpers/ltmain.sh

################### change 254 ###################
echo ""
echo "Doing commit #254:"
echo 'part of change #254' >> ${WC}/trunk/subversion/clients/win32/svn_com/resource.h
echo 'part of change #254' >> ${WC}/trunk/INSTALL
echo 'part of change #254' >> ${WC}/trunk/subversion/libsvn_wc/adm_files.c
${SVN} commit -m 'commit #254' ${WC}/trunk/subversion/clients/win32/svn_com/resource.h ${WC}/trunk/INSTALL ${WC}/trunk/subversion/libsvn_wc/adm_files.c

################### change 255 ###################
echo ""
echo "Doing commit #255:"
echo 'part of change #255' >> ${WC}/trunk/subversion/libsvn_wc/status.c
echo 'part of change #255' >> ${WC}/trunk/subversion/bindings/svn_io.i
echo 'part of change #255' >> ${WC}/trunk/subversion/tests/libsvn_delta/xml-output-test.c
echo 'part of change #255' >> ${WC}/trunk/subversion/tests/libsvn_delta/xml-output-test.c
${SVN} commit -m 'commit #255' ${WC}/trunk/subversion/libsvn_wc/status.c ${WC}/trunk/subversion/bindings/svn_io.i ${WC}/trunk/subversion/tests/libsvn_delta/xml-output-test.c ${WC}/trunk/subversion/tests/libsvn_delta/xml-output-test.c

################### change 256 ###################
echo ""
echo "Doing commit #256:"
echo 'part of change #256' >> ${WC}/trunk/www/cvs_help.html
${SVN} commit -m 'commit #256' ${WC}/trunk/www/cvs_help.html

################### change 257 ###################
echo ""
echo "Doing commit #257:"
echo 'part of change #257' >> ${WC}/trunk/subversion/libsvn_client/update.c
echo 'part of change #257' >> ${WC}/trunk/subversion/include/svn_error.h
echo 'part of change #257' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc
echo 'part of change #257' >> ${WC}/trunk/subversion/mod_dav_svn/deadprops.c
echo 'part of change #257' >> ${WC}/trunk/subversion.dsw
${SVN} commit -m 'commit #257' ${WC}/trunk/subversion/libsvn_client/update.c ${WC}/trunk/subversion/include/svn_error.h ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc ${WC}/trunk/subversion/mod_dav_svn/deadprops.c ${WC}/trunk/subversion.dsw

################### change 258 ###################
echo ""
echo "Doing commit #258:"
echo 'part of change #258' >> ${WC}/trunk/subversion/libsvn_delta/track_editor.c
echo 'part of change #258' >> ${WC}/trunk/subversion/clients/cmdline/util.c
echo 'part of change #258' >> ${WC}/trunk/subversion/clients/cmdline/prompt.c
echo 'part of change #258' >> ${WC}/trunk/subversion/libsvn_wc/libsvn_wc.dsp
echo 'part of change #258' >> ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.vbp
echo 'part of change #258' >> ${WC}/trunk/subversion/clients/cmdline/status-cmd.c
echo 'part of change #258' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/README
echo 'part of change #258' >> ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py
echo 'part of change #258' >> ${WC}/trunk/subversion/libsvn_subr/config.c
echo 'part of change #258' >> ${WC}/trunk/subversion/libsvn_fs/structure
${SVN} commit -m 'commit #258' ${WC}/trunk/subversion/libsvn_delta/track_editor.c ${WC}/trunk/subversion/clients/cmdline/util.c ${WC}/trunk/subversion/clients/cmdline/prompt.c ${WC}/trunk/subversion/libsvn_wc/libsvn_wc.dsp ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.vbp ${WC}/trunk/subversion/clients/cmdline/status-cmd.c ${WC}/trunk/subversion/tests/libsvn_vcdiff/README ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py ${WC}/trunk/subversion/libsvn_subr/config.c ${WC}/trunk/subversion/libsvn_fs/structure

################### change 259 ###################
echo ""
echo "Doing commit #259:"
echo 'part of change #259' >> ${WC}/trunk/subversion/clients/cmdline/commit-cmd.c
echo 'part of change #259' >> ${WC}/trunk/INSTALL
echo 'part of change #259' >> ${WC}/trunk/subversion/libsvn_ra_local/split_url.c
echo 'part of change #259' >> ${WC}/trunk/subversion/bindings/svn_string.i
echo 'part of change #259' >> ${WC}/trunk/subversion/libsvn_client/update.c
echo 'part of change #259' >> ${WC}/trunk/STACK
${SVN} commit -m 'commit #259' ${WC}/trunk/subversion/clients/cmdline/commit-cmd.c ${WC}/trunk/INSTALL ${WC}/trunk/subversion/libsvn_ra_local/split_url.c ${WC}/trunk/subversion/bindings/svn_string.i ${WC}/trunk/subversion/libsvn_client/update.c ${WC}/trunk/STACK

################### change 260 ###################
echo ""
echo "Doing commit #260:"
echo 'part of change #260' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target4.txt
echo 'part of change #260' >> ${WC}/trunk/subversion/libsvn_repos/libsvn_repos.dsp
echo 'part of change #260' >> ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse_test.dsp
echo 'part of change #260' >> ${WC}/trunk/subversion/libsvn_subr/target.c
echo 'part of change #260' >> ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.h
${SVN} commit -m 'commit #260' ${WC}/trunk/subversion/tests/libsvn_vcdiff/target4.txt ${WC}/trunk/subversion/libsvn_repos/libsvn_repos.dsp ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse_test.dsp ${WC}/trunk/subversion/libsvn_subr/target.c ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.h

################### change 261 ###################
echo ""
echo "Doing commit #261:"
echo 'part of change #261' >> ${WC}/trunk/subversion/libsvn_fs/err.h
echo 'part of change #261' >> ${WC}/trunk/subversion/tests/svn_test_editor.c
echo 'part of change #261' >> ${WC}/trunk/subversion/libsvn_wc/log.c
echo 'part of change #261' >> ${WC}/trunk/BUGS
echo 'part of change #261' >> ${WC}/trunk/www/project_header.html
${SVN} commit -m 'commit #261' ${WC}/trunk/subversion/libsvn_fs/err.h ${WC}/trunk/subversion/tests/svn_test_editor.c ${WC}/trunk/subversion/libsvn_wc/log.c ${WC}/trunk/BUGS ${WC}/trunk/www/project_header.html

################### change 262 ###################
echo ""
echo "Doing commit #262:"
echo 'part of change #262' >> ${WC}/trunk/subversion/libsvn_client/apply_edits.c
echo 'part of change #262' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc
${SVN} commit -m 'commit #262' ${WC}/trunk/subversion/libsvn_client/apply_edits.c ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc

################### change 263 ###################
echo ""
echo "Doing commit #263:"
echo 'part of change #263' >> ${WC}/trunk/subversion/libsvn_client/libsvn_client.dsp
echo 'part of change #263' >> ${WC}/trunk/subversion/libsvn_fs/dbt.c
echo 'part of change #263' >> ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta
echo 'part of change #263' >> ${WC}/trunk/subversion/clients/win32/SVNControls/ppgColumns.pag
echo 'part of change #263' >> ${WC}/trunk/subversion/bindings/svn_wc.i
echo 'part of change #263' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta-test.c
echo 'part of change #263' >> ${WC}/trunk/doc/user/manual/svn-manual.html
echo 'part of change #263' >> ${WC}/trunk/notes/the_update_problem.txt
echo 'part of change #263' >> ${WC}/trunk/subversion/libsvn_client/libsvn_client.dsp
echo 'part of change #263' >> ${WC}/trunk/subversion/libsvn_wc/util.c
${SVN} commit -m 'commit #263' ${WC}/trunk/subversion/libsvn_client/libsvn_client.dsp ${WC}/trunk/subversion/libsvn_fs/dbt.c ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta ${WC}/trunk/subversion/clients/win32/SVNControls/ppgColumns.pag ${WC}/trunk/subversion/bindings/svn_wc.i ${WC}/trunk/subversion/tests/libsvn_delta/vdelta-test.c ${WC}/trunk/doc/user/manual/svn-manual.html ${WC}/trunk/notes/the_update_problem.txt ${WC}/trunk/subversion/libsvn_client/libsvn_client.dsp ${WC}/trunk/subversion/libsvn_wc/util.c

################### change 264 ###################
echo ""
echo "Doing commit #264:"
echo 'part of change #264' >> ${WC}/trunk/gen-make.py
echo 'part of change #264' >> ${WC}/trunk/doc/programmer/design/server.texi
echo 'part of change #264' >> ${WC}/trunk/subversion/mod_dav_svn/mod_dav_svn.c
echo 'part of change #264' >> ${WC}/trunk/notes/delta.dtd
echo 'part of change #264' >> ${WC}/trunk/subversion/libsvn_client/libsvn_client.dsp
echo 'part of change #264' >> ${WC}/trunk/subversion/tests/libsvn_fs/fs-test.c
echo 'part of change #264' >> ${WC}/trunk/subversion/libsvn_client/libsvn_client.dsp
${SVN} commit -m 'commit #264' ${WC}/trunk/gen-make.py ${WC}/trunk/doc/programmer/design/server.texi ${WC}/trunk/subversion/mod_dav_svn/mod_dav_svn.c ${WC}/trunk/notes/delta.dtd ${WC}/trunk/subversion/libsvn_client/libsvn_client.dsp ${WC}/trunk/subversion/tests/libsvn_fs/fs-test.c ${WC}/trunk/subversion/libsvn_client/libsvn_client.dsp

################### change 265 ###################
echo ""
echo "Doing commit #265:"
echo 'part of change #265' >> ${WC}/trunk/notes/delta.dtd
echo 'part of change #265' >> ${WC}/trunk/subversion/tests/xml/co1-inline.xml
echo 'part of change #265' >> ${WC}/trunk/subversion/libsvn_fs/txn-table.h
echo 'part of change #265' >> ${WC}/trunk/subversion/libsvn_repos/reporter.c
echo 'part of change #265' >> ${WC}/trunk/tools/hook-scripts/README
echo 'part of change #265' >> ${WC}/trunk/subversion/include/svn_types.h
${SVN} commit -m 'commit #265' ${WC}/trunk/notes/delta.dtd ${WC}/trunk/subversion/tests/xml/co1-inline.xml ${WC}/trunk/subversion/libsvn_fs/txn-table.h ${WC}/trunk/subversion/libsvn_repos/reporter.c ${WC}/trunk/tools/hook-scripts/README ${WC}/trunk/subversion/include/svn_types.h

################### change 266 ###################
echo ""
echo "Doing commit #266:"
echo 'part of change #266' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmSplash.frm
echo 'part of change #266' >> ${WC}/trunk/doc/programmer/design/license.texi
echo 'part of change #266' >> ${WC}/trunk/BUGS
echo 'part of change #266' >> ${WC}/trunk/subversion/clients/win32/SVNControls/ppgColumns.pag
echo 'part of change #266' >> ${WC}/trunk/doc/programmer/design/svn-design.texi
echo 'part of change #266' >> ${WC}/trunk/subversion/libsvn_delta/compose_editors.c
${SVN} commit -m 'commit #266' ${WC}/trunk/subversion/clients/win32/WinSVN/frmSplash.frm ${WC}/trunk/doc/programmer/design/license.texi ${WC}/trunk/BUGS ${WC}/trunk/subversion/clients/win32/SVNControls/ppgColumns.pag ${WC}/trunk/doc/programmer/design/svn-design.texi ${WC}/trunk/subversion/libsvn_delta/compose_editors.c

################### change 267 ###################
echo ""
echo "Doing commit #267:"
echo 'part of change #267' >> ${WC}/trunk/subversion/clients/win32/SVNControls/type.dat
echo 'part of change #267' >> ${WC}/trunk/subversion/libsvn_fs/validate.h
echo 'part of change #267' >> ${WC}/trunk/subversion/mod_dav_svn/liveprops.c
echo 'part of change #267' >> ${WC}/trunk/notes/svn-config-files
echo 'part of change #267' >> ${WC}/trunk/subversion/libsvn_fs/strings-table.h
${SVN} commit -m 'commit #267' ${WC}/trunk/subversion/clients/win32/SVNControls/type.dat ${WC}/trunk/subversion/libsvn_fs/validate.h ${WC}/trunk/subversion/mod_dav_svn/liveprops.c ${WC}/trunk/notes/svn-config-files ${WC}/trunk/subversion/libsvn_fs/strings-table.h

################### change 268 ###################
echo ""
echo "Doing commit #268:"
echo 'part of change #268' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.h
echo 'part of change #268' >> ${WC}/trunk/subversion/libsvn_client/commit.c
echo 'part of change #268' >> ${WC}/trunk/subversion/bindings/svn_delta.i
echo 'part of change #268' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmSplash.frm
echo 'part of change #268' >> ${WC}/trunk/subversion/tests/libsvn_delta/postfix.delta
${SVN} commit -m 'commit #268' ${WC}/trunk/subversion/libsvn_fs/reps-table.h ${WC}/trunk/subversion/libsvn_client/commit.c ${WC}/trunk/subversion/bindings/svn_delta.i ${WC}/trunk/subversion/clients/win32/WinSVN/frmSplash.frm ${WC}/trunk/subversion/tests/libsvn_delta/postfix.delta

################### change 269 ###################
echo ""
echo "Doing commit #269:"
echo 'part of change #269' >> ${WC}/trunk/subversion/clients/win32/WinSVN/WinSVN.vbp
echo 'part of change #269' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaWindow.java
echo 'part of change #269' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc
echo 'part of change #269' >> ${WC}/trunk/notes/guis/README
echo 'part of change #269' >> ${WC}/trunk/subversion/clients/cmdline/cl.h
${SVN} commit -m 'commit #269' ${WC}/trunk/subversion/clients/win32/WinSVN/WinSVN.vbp ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaWindow.java ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc ${WC}/trunk/notes/guis/README ${WC}/trunk/subversion/clients/cmdline/cl.h

################### change 270 ###################
echo ""
echo "Doing commit #270:"
echo 'part of change #270' >> ${WC}/trunk/subversion/tests/libsvn_ra_local/ra-local-test.c
echo 'part of change #270' >> ${WC}/trunk/subversion/svnlook/main.c
echo 'part of change #270' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target4.txt
echo 'part of change #270' >> ${WC}/trunk/subversion/mod_dav_svn/dav_svn.h
echo 'part of change #270' >> ${WC}/trunk/subversion/libsvn_fs/dbt.h
echo 'part of change #270' >> ${WC}/trunk/subversion/tests/xml/up3.xml
echo 'part of change #270' >> ${WC}/trunk/subversion/libsvn_repos/node_tree.c
echo 'part of change #270' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_test.dsp
echo 'part of change #270' >> ${WC}/trunk/subversion/libsvn_fs/err.h
echo 'part of change #270' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cShellSort.cls
${SVN} commit -m 'commit #270' ${WC}/trunk/subversion/tests/libsvn_ra_local/ra-local-test.c ${WC}/trunk/subversion/svnlook/main.c ${WC}/trunk/subversion/tests/libsvn_vcdiff/target4.txt ${WC}/trunk/subversion/mod_dav_svn/dav_svn.h ${WC}/trunk/subversion/libsvn_fs/dbt.h ${WC}/trunk/subversion/tests/xml/up3.xml ${WC}/trunk/subversion/libsvn_repos/node_tree.c ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_test.dsp ${WC}/trunk/subversion/libsvn_fs/err.h ${WC}/trunk/subversion/clients/win32/SVNControls/cShellSort.cls

################### change 271 ###################
echo ""
echo "Doing commit #271:"
echo 'part of change #271' >> ${WC}/trunk/subversion/libsvn_ra/libsvn_ra.dsp
echo 'part of change #271' >> ${WC}/trunk/doc/user/manual/svn-manual.html
echo 'part of change #271' >> ${WC}/trunk/notes/guis/pics/README
echo 'part of change #271' >> ${WC}/trunk/subversion/mod_dav_svn/dav_svn.h
echo 'part of change #271' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target2.txt
echo 'part of change #271' >> ${WC}/trunk/subversion/libsvn_fs/txn-table.c
echo 'part of change #271' >> ${WC}/trunk/doc/programmer/design/goals.texi
echo 'part of change #271' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookGroup.frm
echo 'part of change #271' >> ${WC}/trunk/expat-lite/libexpat.dsp
${SVN} commit -m 'commit #271' ${WC}/trunk/subversion/libsvn_ra/libsvn_ra.dsp ${WC}/trunk/doc/user/manual/svn-manual.html ${WC}/trunk/notes/guis/pics/README ${WC}/trunk/subversion/mod_dav_svn/dav_svn.h ${WC}/trunk/subversion/tests/libsvn_vcdiff/target2.txt ${WC}/trunk/subversion/libsvn_fs/txn-table.c ${WC}/trunk/doc/programmer/design/goals.texi ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookGroup.frm ${WC}/trunk/expat-lite/libexpat.dsp

################### change 272 ###################
echo ""
echo "Doing commit #272:"
echo 'part of change #272' >> ${WC}/trunk/subversion/libsvn_fs/dbt.c
echo 'part of change #272' >> ${WC}/trunk/subversion/clients/cmdline/status-cmd.c
echo 'part of change #272' >> ${WC}/trunk/www/project_footer.html
echo 'part of change #272' >> ${WC}/trunk/subversion/mod_dav_svn/deadprops.c
echo 'part of change #272' >> ${WC}/trunk/notes/auth_proposal.txt
echo 'part of change #272' >> ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h
${SVN} commit -m 'commit #272' ${WC}/trunk/subversion/libsvn_fs/dbt.c ${WC}/trunk/subversion/clients/cmdline/status-cmd.c ${WC}/trunk/www/project_footer.html ${WC}/trunk/subversion/mod_dav_svn/deadprops.c ${WC}/trunk/notes/auth_proposal.txt ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h

################### change 273 ###################
echo ""
echo "Doing commit #273:"
echo 'part of change #273' >> ${WC}/trunk/subversion/libsvn_fs/txn-table.h
${SVN} commit -m 'commit #273' ${WC}/trunk/subversion/libsvn_fs/txn-table.h

################### change 274 ###################
echo ""
echo "Doing commit #274:"
echo 'part of change #274' >> ${WC}/trunk/subversion/libsvn_client/delete.c
echo 'part of change #274' >> ${WC}/trunk/subversion/include/svn_quoprint.h
echo 'part of change #274' >> ${WC}/trunk/tools/cvs2svn/README
echo 'part of change #274' >> ${WC}/trunk/doc/user/manual/svn-manual.texi
echo 'part of change #274' >> ${WC}/trunk/expat-lite/libexpat.dsp
echo 'part of change #274' >> ${WC}/trunk/subversion/libsvn_subr/sorts.c
echo 'part of change #274' >> ${WC}/trunk/gen-make.py
echo 'part of change #274' >> ${WC}/trunk/subversion/include/svn_delta.h
echo 'part of change #274' >> ${WC}/trunk/subversion/tests/libsvn_subr/hashdump-test.c
${SVN} commit -m 'commit #274' ${WC}/trunk/subversion/libsvn_client/delete.c ${WC}/trunk/subversion/include/svn_quoprint.h ${WC}/trunk/tools/cvs2svn/README ${WC}/trunk/doc/user/manual/svn-manual.texi ${WC}/trunk/expat-lite/libexpat.dsp ${WC}/trunk/subversion/libsvn_subr/sorts.c ${WC}/trunk/gen-make.py ${WC}/trunk/subversion/include/svn_delta.h ${WC}/trunk/subversion/tests/libsvn_subr/hashdump-test.c

################### change 275 ###################
echo ""
echo "Doing commit #275:"
echo 'part of change #275' >> ${WC}/trunk/subversion/tests/xml/up1a-postfix.xml
echo 'part of change #275' >> ${WC}/trunk/notes/svndiff
echo 'part of change #275' >> ${WC}/trunk/subversion/libsvn_fs/node-rev.c
echo 'part of change #275' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.cpp
echo 'part of change #275' >> ${WC}/trunk/subversion/libsvn_fs/fs.c
${SVN} commit -m 'commit #275' ${WC}/trunk/subversion/tests/xml/up1a-postfix.xml ${WC}/trunk/notes/svndiff ${WC}/trunk/subversion/libsvn_fs/node-rev.c ${WC}/trunk/subversion/clients/win32/svn_com/SVN.cpp ${WC}/trunk/subversion/libsvn_fs/fs.c

################### change 276 ###################
echo ""
echo "Doing commit #276:"
echo 'part of change #276' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/source.txt
echo 'part of change #276' >> ${WC}/trunk/subversion.dsw
echo 'part of change #276' >> ${WC}/trunk/subversion/libsvn_client/apply_edits.c
echo 'part of change #276' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/SubversionException.java
echo 'part of change #276' >> ${WC}/trunk/subversion/libsvn_delta/xml_output.c
echo 'part of change #276' >> ${WC}/trunk/subversion/libsvn_fs/trail.c
echo 'part of change #276' >> ${WC}/trunk/subversion/libsvn_fs/TODO
echo 'part of change #276' >> ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.h
${SVN} commit -m 'commit #276' ${WC}/trunk/subversion/tests/libsvn_vcdiff/source.txt ${WC}/trunk/subversion.dsw ${WC}/trunk/subversion/libsvn_client/apply_edits.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/SubversionException.java ${WC}/trunk/subversion/libsvn_delta/xml_output.c ${WC}/trunk/subversion/libsvn_fs/trail.c ${WC}/trunk/subversion/libsvn_fs/TODO ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.h

################### change 277 ###################
echo ""
echo "Doing commit #277:"
echo 'part of change #277' >> ${WC}/trunk/subversion/tests/xml/up1a-inline.xml
echo 'part of change #277' >> ${WC}/trunk/subversion/libsvn_fs/key-gen.h
echo 'part of change #277' >> ${WC}/trunk/subversion/libsvn_subr/quoprint.c
echo 'part of change #277' >> ${WC}/trunk/subversion/libsvn_delta/delta.h
echo 'part of change #277' >> ${WC}/trunk/subversion/mod_dav_svn/dav_svn.h
echo 'part of change #277' >> ${WC}/trunk/subversion/include/svn_test.h
${SVN} commit -m 'commit #277' ${WC}/trunk/subversion/tests/xml/up1a-inline.xml ${WC}/trunk/subversion/libsvn_fs/key-gen.h ${WC}/trunk/subversion/libsvn_subr/quoprint.c ${WC}/trunk/subversion/libsvn_delta/delta.h ${WC}/trunk/subversion/mod_dav_svn/dav_svn.h ${WC}/trunk/subversion/include/svn_test.h

################### change 278 ###################
echo ""
echo "Doing commit #278:"
echo 'part of change #278' >> ${WC}/trunk/subversion/clients/win32/svn_com/resource.h
echo 'part of change #278' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.idl
echo 'part of change #278' >> ${WC}/trunk/subversion/libsvn_delta/vdelta.c
echo 'part of change #278' >> ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.h
echo 'part of change #278' >> ${WC}/trunk/subversion/tests/xml/up1a-inline.xml
echo 'part of change #278' >> ${WC}/trunk/svn_private_config.h.in
echo 'part of change #278' >> ${WC}/trunk/doc/programmer/design/future.texi
echo 'part of change #278' >> ${WC}/trunk/subversion/tests/libsvn_test_main.dsp
echo 'part of change #278' >> ${WC}/trunk/subversion/tests/libsvn_subr/hashdump-test.c
${SVN} commit -m 'commit #278' ${WC}/trunk/subversion/clients/win32/svn_com/resource.h ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.idl ${WC}/trunk/subversion/libsvn_delta/vdelta.c ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.h ${WC}/trunk/subversion/tests/xml/up1a-inline.xml ${WC}/trunk/svn_private_config.h.in ${WC}/trunk/doc/programmer/design/future.texi ${WC}/trunk/subversion/tests/libsvn_test_main.dsp ${WC}/trunk/subversion/tests/libsvn_subr/hashdump-test.c

################### change 279 ###################
echo ""
echo "Doing commit #279:"
echo 'part of change #279' >> ${WC}/trunk/subversion/libsvn_repos/commit_editor.c
${SVN} commit -m 'commit #279' ${WC}/trunk/subversion/libsvn_repos/commit_editor.c

################### change 280 ###################
echo ""
echo "Doing commit #280:"
echo 'part of change #280' >> ${WC}/trunk/subversion/libsvn_fs/nodes-table.h
echo 'part of change #280' >> ${WC}/trunk/notes/the_update_problem.txt
echo 'part of change #280' >> ${WC}/trunk/subversion/libsvn_wc/util.c
echo 'part of change #280' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm
echo 'part of change #280' >> ${WC}/trunk/subversion/libsvn_ra_local/ra_plugin.c
echo 'part of change #280' >> ${WC}/trunk/subversion/libsvn_fs/validate.c
echo 'part of change #280' >> ${WC}/trunk/subversion/tests/libsvn_wc/commit-test.c
echo 'part of change #280' >> ${WC}/trunk/subversion/clients/win32/svn_com/svn_comCP.h
${SVN} commit -m 'commit #280' ${WC}/trunk/subversion/libsvn_fs/nodes-table.h ${WC}/trunk/notes/the_update_problem.txt ${WC}/trunk/subversion/libsvn_wc/util.c ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm ${WC}/trunk/subversion/libsvn_ra_local/ra_plugin.c ${WC}/trunk/subversion/libsvn_fs/validate.c ${WC}/trunk/subversion/tests/libsvn_wc/commit-test.c ${WC}/trunk/subversion/clients/win32/svn_com/svn_comCP.h

################### change 281 ###################
echo ""
echo "Doing commit #281:"
echo 'part of change #281' >> ${WC}/trunk/subversion/libsvn_repos/lock.c
echo 'part of change #281' >> ${WC}/trunk/subversion/clients/cmdline/prompt.c
echo 'part of change #281' >> ${WC}/trunk/subversion/tests/xml/up1a-inline.xml
echo 'part of change #281' >> ${WC}/trunk/subversion/tests/libsvn_delta/random-test.c
echo 'part of change #281' >> ${WC}/trunk/subversion/libsvn_fs/trail.c
echo 'part of change #281' >> ${WC}/trunk/subversion/include/svn_time.h
echo 'part of change #281' >> ${WC}/trunk/subversion/libsvn_subr/quoprint.c
echo 'part of change #281' >> ${WC}/trunk/subversion/libsvn_fs/trail.c
echo 'part of change #281' >> ${WC}/trunk/doc/programmer/WritingChangeLogs.txt
${SVN} commit -m 'commit #281' ${WC}/trunk/subversion/libsvn_repos/lock.c ${WC}/trunk/subversion/clients/cmdline/prompt.c ${WC}/trunk/subversion/tests/xml/up1a-inline.xml ${WC}/trunk/subversion/tests/libsvn_delta/random-test.c ${WC}/trunk/subversion/libsvn_fs/trail.c ${WC}/trunk/subversion/include/svn_time.h ${WC}/trunk/subversion/libsvn_subr/quoprint.c ${WC}/trunk/subversion/libsvn_fs/trail.c ${WC}/trunk/doc/programmer/WritingChangeLogs.txt

################### change 282 ###################
echo ""
echo "Doing commit #282:"
echo 'part of change #282' >> ${WC}/trunk/notes/issues.txt
echo 'part of change #282' >> ${WC}/trunk/subversion/tests/libsvn_repos/repos_test.dsp
echo 'part of change #282' >> ${WC}/trunk/subversion/bindings/svn_wc.i
echo 'part of change #282' >> ${WC}/trunk/doc/programmer/design/protocol.texi
${SVN} commit -m 'commit #282' ${WC}/trunk/notes/issues.txt ${WC}/trunk/subversion/tests/libsvn_repos/repos_test.dsp ${WC}/trunk/subversion/bindings/svn_wc.i ${WC}/trunk/doc/programmer/design/protocol.texi

################### change 283 ###################
echo ""
echo "Doing commit #283:"
echo 'part of change #283' >> ${WC}/trunk/tools/hook-scripts/README
echo 'part of change #283' >> ${WC}/trunk/ac-helpers/libtool.m4
echo 'part of change #283' >> ${WC}/trunk/subversion/libsvn_subr/hashdump.c
echo 'part of change #283' >> ${WC}/trunk/expat-lite/expat.html
echo 'part of change #283' >> ${WC}/trunk/subversion/libsvn_subr/xml.c
echo 'part of change #283' >> ${WC}/trunk/subversion/tests/libsvn_delta/xml_output_test.dsp
echo 'part of change #283' >> ${WC}/trunk/doc/user/manual/svn-manual.texi
echo 'part of change #283' >> ${WC}/trunk/tools/cvs2svn/cvs2svn.py
echo 'part of change #283' >> ${WC}/trunk/expat-lite/README.svn
${SVN} commit -m 'commit #283' ${WC}/trunk/tools/hook-scripts/README ${WC}/trunk/ac-helpers/libtool.m4 ${WC}/trunk/subversion/libsvn_subr/hashdump.c ${WC}/trunk/expat-lite/expat.html ${WC}/trunk/subversion/libsvn_subr/xml.c ${WC}/trunk/subversion/tests/libsvn_delta/xml_output_test.dsp ${WC}/trunk/doc/user/manual/svn-manual.texi ${WC}/trunk/tools/cvs2svn/cvs2svn.py ${WC}/trunk/expat-lite/README.svn

################### change 284 ###################
echo ""
echo "Doing commit #284:"
echo 'part of change #284' >> ${WC}/trunk/subversion/clients/cmdline/trace-update.c
${SVN} commit -m 'commit #284' ${WC}/trunk/subversion/clients/cmdline/trace-update.c

################### change 285 ###################
echo ""
echo "Doing commit #285:"
echo 'part of change #285' >> ${WC}/trunk/subversion/clients/win32/SVNControls/ppgColumns.pag
echo 'part of change #285' >> ${WC}/trunk/ac-helpers/ltmain.sh
echo 'part of change #285' >> ${WC}/trunk/doc/user/manual/adds.texi
echo 'part of change #285' >> ${WC}/trunk/notes/dav_setup.txt
echo 'part of change #285' >> ${WC}/trunk/subversion/libsvn_fs/nodes-table.h
echo 'part of change #285' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmLogin.frm
echo 'part of change #285' >> ${WC}/trunk/expat-lite/hashtable.h
echo 'part of change #285' >> ${WC}/trunk/www/index.html
${SVN} commit -m 'commit #285' ${WC}/trunk/subversion/clients/win32/SVNControls/ppgColumns.pag ${WC}/trunk/ac-helpers/ltmain.sh ${WC}/trunk/doc/user/manual/adds.texi ${WC}/trunk/notes/dav_setup.txt ${WC}/trunk/subversion/libsvn_fs/nodes-table.h ${WC}/trunk/subversion/clients/win32/WinSVN/frmLogin.frm ${WC}/trunk/expat-lite/hashtable.h ${WC}/trunk/www/index.html

################### change 286 ###################
echo ""
echo "Doing commit #286:"
echo 'part of change #286' >> ${WC}/trunk/subversion/clients/win32/svn_com/svn_comCP.h
echo 'part of change #286' >> ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse-test.c
echo 'part of change #286' >> ${WC}/trunk/subversion/tests/libsvn_delta/postfix.delta
${SVN} commit -m 'commit #286' ${WC}/trunk/subversion/clients/win32/svn_com/svn_comCP.h ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse-test.c ${WC}/trunk/subversion/tests/libsvn_delta/postfix.delta

################### change 287 ###################
echo ""
echo "Doing commit #287:"
echo 'part of change #287' >> ${WC}/trunk/subversion/tests/clients/cmdline/commit_tests.py
echo 'part of change #287' >> ${WC}/trunk/subversion/libsvn_ra_dav/libsvn_ra_dav.dsp
echo 'part of change #287' >> ${WC}/trunk/subversion.dsp
echo 'part of change #287' >> ${WC}/trunk/expat-lite/hashtable.c
echo 'part of change #287' >> ${WC}/trunk/doc/programmer/design/client.texi
echo 'part of change #287' >> ${WC}/trunk/subversion/bindings/java/jni/README
${SVN} commit -m 'commit #287' ${WC}/trunk/subversion/tests/clients/cmdline/commit_tests.py ${WC}/trunk/subversion/libsvn_ra_dav/libsvn_ra_dav.dsp ${WC}/trunk/subversion.dsp ${WC}/trunk/expat-lite/hashtable.c ${WC}/trunk/doc/programmer/design/client.texi ${WC}/trunk/subversion/bindings/java/jni/README

################### change 288 ###################
echo ""
echo "Doing commit #288:"
echo 'part of change #288' >> ${WC}/trunk/expat-lite/expat.html
echo 'part of change #288' >> ${WC}/trunk/subversion/libsvn_client/libsvn_client.dsp
echo 'part of change #288' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc
echo 'part of change #288' >> ${WC}/trunk/subversion/include/svn_error_codes.h
echo 'part of change #288' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target4.txt
echo 'part of change #288' >> ${WC}/trunk/subversion/libsvn_repos/commit_editor.c
${SVN} commit -m 'commit #288' ${WC}/trunk/expat-lite/expat.html ${WC}/trunk/subversion/libsvn_client/libsvn_client.dsp ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc ${WC}/trunk/subversion/include/svn_error_codes.h ${WC}/trunk/subversion/tests/libsvn_vcdiff/target4.txt ${WC}/trunk/subversion/libsvn_repos/commit_editor.c

################### change 289 ###################
echo ""
echo "Doing commit #289:"
echo 'part of change #289' >> ${WC}/trunk/subversion/libsvn_fs/id.c
${SVN} commit -m 'commit #289' ${WC}/trunk/subversion/libsvn_fs/id.c

################### change 290 ###################
echo ""
echo "Doing commit #290:"
echo 'part of change #290' >> ${WC}/trunk/subversion/libsvn_subr/getdate.cw
echo 'part of change #290' >> ${WC}/trunk/subversion/mod_dav_svn/util.c
echo 'part of change #290' >> ${WC}/trunk/subversion/libsvn_ra_dav/util.c
echo 'part of change #290' >> ${WC}/trunk/notes/auth_proposal.txt
echo 'part of change #290' >> ${WC}/trunk/subversion/clients/win32/WinSVN/WinSVN.vbp
echo 'part of change #290' >> ${WC}/trunk/subversion/svnlook/main.c
echo 'part of change #290' >> ${WC}/trunk/subversion/mod_dav_svn/version.c
echo 'part of change #290' >> ${WC}/trunk/subversion/libsvn_fs/fs.h
echo 'part of change #290' >> ${WC}/trunk/subversion/tests/xml/up2.xml
${SVN} commit -m 'commit #290' ${WC}/trunk/subversion/libsvn_subr/getdate.cw ${WC}/trunk/subversion/mod_dav_svn/util.c ${WC}/trunk/subversion/libsvn_ra_dav/util.c ${WC}/trunk/notes/auth_proposal.txt ${WC}/trunk/subversion/clients/win32/WinSVN/WinSVN.vbp ${WC}/trunk/subversion/svnlook/main.c ${WC}/trunk/subversion/mod_dav_svn/version.c ${WC}/trunk/subversion/libsvn_fs/fs.h ${WC}/trunk/subversion/tests/xml/up2.xml

################### change 291 ###################
echo ""
echo "Doing commit #291:"
echo 'part of change #291' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cGridCell.cls
echo 'part of change #291' >> ${WC}/trunk/subversion/libsvn_fs/id.h
echo 'part of change #291' >> ${WC}/trunk/subversion/libsvn_subr/getdate.y
${SVN} commit -m 'commit #291' ${WC}/trunk/subversion/clients/win32/SVNControls/cGridCell.cls ${WC}/trunk/subversion/libsvn_fs/id.h ${WC}/trunk/subversion/libsvn_subr/getdate.y

################### change 292 ###################
echo ""
echo "Doing commit #292:"
echo 'part of change #292' >> ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py
echo 'part of change #292' >> ${WC}/trunk/subversion/clients/win32/WinSVN/Startup.bas
echo 'part of change #292' >> ${WC}/trunk/notes/multi-args.txt
${SVN} commit -m 'commit #292' ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py ${WC}/trunk/subversion/clients/win32/WinSVN/Startup.bas ${WC}/trunk/notes/multi-args.txt

################### change 293 ###################
echo ""
echo "Doing commit #293:"
echo 'part of change #293' >> ${WC}/trunk/subversion/libsvn_client/update.c
echo 'part of change #293' >> ${WC}/trunk/subversion/tests/xml/up1a-inline.xml
echo 'part of change #293' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.c
${SVN} commit -m 'commit #293' ${WC}/trunk/subversion/libsvn_client/update.c ${WC}/trunk/subversion/tests/xml/up1a-inline.xml ${WC}/trunk/subversion/libsvn_fs/reps-table.c

################### change 294 ###################
echo ""
echo "Doing commit #294:"
echo 'part of change #294' >> ${WC}/trunk/doc/programmer/design/svn-design.texi
echo 'part of change #294' >> ${WC}/trunk/subversion/clients/win32/SVNControls/mGDI.bas
echo 'part of change #294' >> ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse-test.c
echo 'part of change #294' >> ${WC}/trunk/subversion/tests/libsvn_wc/commit-test.c
echo 'part of change #294' >> ${WC}/trunk/subversion/clients/cmdline/feedback.c
echo 'part of change #294' >> ${WC}/trunk/HACKING
echo 'part of change #294' >> ${WC}/trunk/doc/programmer/design/architecture.texi
echo 'part of change #294' >> ${WC}/trunk/subversion/include/svn_xml.h
${SVN} commit -m 'commit #294' ${WC}/trunk/doc/programmer/design/svn-design.texi ${WC}/trunk/subversion/clients/win32/SVNControls/mGDI.bas ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse-test.c ${WC}/trunk/subversion/tests/libsvn_wc/commit-test.c ${WC}/trunk/subversion/clients/cmdline/feedback.c ${WC}/trunk/HACKING ${WC}/trunk/doc/programmer/design/architecture.texi ${WC}/trunk/subversion/include/svn_xml.h

################### change 295 ###################
echo ""
echo "Doing commit #295:"
echo 'part of change #295' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/actions.py
echo 'part of change #295' >> ${WC}/trunk/expat-lite/xmlrole.c
echo 'part of change #295' >> ${WC}/trunk/subversion/libsvn_delta/xml_parse.c
echo 'part of change #295' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Reporter.java
echo 'part of change #295' >> ${WC}/trunk/subversion/tests/libsvn_delta/random_test.dsp
${SVN} commit -m 'commit #295' ${WC}/trunk/subversion/tests/clients/cmdline/svntest/actions.py ${WC}/trunk/expat-lite/xmlrole.c ${WC}/trunk/subversion/libsvn_delta/xml_parse.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Reporter.java ${WC}/trunk/subversion/tests/libsvn_delta/random_test.dsp

################### change 296 ###################
echo ""
echo "Doing commit #296:"
echo 'part of change #296' >> ${WC}/trunk/subversion.dsw
echo 'part of change #296' >> ${WC}/trunk/subversion/libsvn_wc/status.c
echo 'part of change #296' >> ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py
echo 'part of change #296' >> ${WC}/trunk/subversion/libsvn_fs/trail.c
${SVN} commit -m 'commit #296' ${WC}/trunk/subversion.dsw ${WC}/trunk/subversion/libsvn_wc/status.c ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py ${WC}/trunk/subversion/libsvn_fs/trail.c

################### change 297 ###################
echo ""
echo "Doing commit #297:"
echo 'part of change #297' >> ${WC}/trunk/www/license-1.html
echo 'part of change #297' >> ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h
echo 'part of change #297' >> ${WC}/trunk/subversion/bindings/svn_io.i
echo 'part of change #297' >> ${WC}/trunk/subversion/libsvn_fs/structure
${SVN} commit -m 'commit #297' ${WC}/trunk/www/license-1.html ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h ${WC}/trunk/subversion/bindings/svn_io.i ${WC}/trunk/subversion/libsvn_fs/structure

################### change 298 ###################
echo ""
echo "Doing commit #298:"
echo 'part of change #298' >> ${WC}/trunk/subversion/include/svn_delta.h
echo 'part of change #298' >> ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta
echo 'part of change #298' >> ${WC}/trunk/subversion/tests/libsvn_subr/path-test.c
echo 'part of change #298' >> ${WC}/trunk/subversion/include/svn_pools.h
echo 'part of change #298' >> ${WC}/trunk/subversion/include/svn_error_codes.h
echo 'part of change #298' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmLogin.frm
echo 'part of change #298' >> ${WC}/trunk/www/project_status.html
echo 'part of change #298' >> ${WC}/trunk/subversion/libsvn_repos/hooks.c
${SVN} commit -m 'commit #298' ${WC}/trunk/subversion/include/svn_delta.h ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta ${WC}/trunk/subversion/tests/libsvn_subr/path-test.c ${WC}/trunk/subversion/include/svn_pools.h ${WC}/trunk/subversion/include/svn_error_codes.h ${WC}/trunk/subversion/clients/win32/WinSVN/frmLogin.frm ${WC}/trunk/www/project_status.html ${WC}/trunk/subversion/libsvn_repos/hooks.c

################### change 299 ###################
echo ""
echo "Doing commit #299:"
echo 'part of change #299' >> ${WC}/trunk/doc/user/manual/svn-manual.txt
echo 'part of change #299' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.mk
echo 'part of change #299' >> ${WC}/trunk/notes/dav_setup.txt
echo 'part of change #299' >> ${WC}/trunk/tools/cvs2svn/design-notes.txt
echo 'part of change #299' >> ${WC}/trunk/subversion/mod_dav_svn/activity.c
echo 'part of change #299' >> ${WC}/trunk/subversion/libsvn_fs/skel.c
echo 'part of change #299' >> ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.h
echo 'part of change #299' >> ${WC}/trunk/subversion/tests/fs-helpers.c
echo 'part of change #299' >> ${WC}/trunk/subversion/clients/cmdline/cleanup-cmd.c
echo 'part of change #299' >> ${WC}/trunk/notes/dav_setup.txt
${SVN} commit -m 'commit #299' ${WC}/trunk/doc/user/manual/svn-manual.txt ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.mk ${WC}/trunk/notes/dav_setup.txt ${WC}/trunk/tools/cvs2svn/design-notes.txt ${WC}/trunk/subversion/mod_dav_svn/activity.c ${WC}/trunk/subversion/libsvn_fs/skel.c ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.h ${WC}/trunk/subversion/tests/fs-helpers.c ${WC}/trunk/subversion/clients/cmdline/cleanup-cmd.c ${WC}/trunk/notes/dav_setup.txt

################### change 300 ###################
echo ""
echo "Doing commit #300:"
echo 'part of change #300' >> ${WC}/trunk/www/project_nav.html
echo 'part of change #300' >> ${WC}/trunk/subversion/libsvn_client/status.c
${SVN} commit -m 'commit #300' ${WC}/trunk/www/project_nav.html ${WC}/trunk/subversion/libsvn_client/status.c

################### change 301 ###################
echo ""
echo "Doing commit #301:"
echo 'part of change #301' >> ${WC}/trunk/subversion/include/svn_hash.h
echo 'part of change #301' >> ${WC}/trunk/notes/difftools/pics/xxdiff-README
echo 'part of change #301' >> ${WC}/trunk/subversion/libsvn_delta/delta.h
echo 'part of change #301' >> ${WC}/trunk/expat-lite/xmlrole.h
echo 'part of change #301' >> ${WC}/trunk/expat-lite/CHANGES.svn
${SVN} commit -m 'commit #301' ${WC}/trunk/subversion/include/svn_hash.h ${WC}/trunk/notes/difftools/pics/xxdiff-README ${WC}/trunk/subversion/libsvn_delta/delta.h ${WC}/trunk/expat-lite/xmlrole.h ${WC}/trunk/expat-lite/CHANGES.svn

################### change 302 ###################
echo ""
echo "Doing commit #302:"
echo 'part of change #302' >> ${WC}/trunk/gen-make.py
echo 'part of change #302' >> ${WC}/trunk/expat-lite/xmltok.h
${SVN} commit -m 'commit #302' ${WC}/trunk/gen-make.py ${WC}/trunk/expat-lite/xmltok.h

################### change 303 ###################
echo ""
echo "Doing commit #303:"
echo 'part of change #303' >> ${WC}/trunk/subversion/libsvn_delta/xml_parse.c
echo 'part of change #303' >> ${WC}/trunk/subversion/libsvn_fs/fs.h
echo 'part of change #303' >> ${WC}/trunk/subversion/clients/cmdline/cleanup-cmd.c
echo 'part of change #303' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_test.dsp
echo 'part of change #303' >> ${WC}/trunk/subversion/libsvn_ra_dav/props.c
echo 'part of change #303' >> ${WC}/trunk/subversion/bindings/java/jni/README
echo 'part of change #303' >> ${WC}/trunk/doc/svn-doc.el
echo 'part of change #303' >> ${WC}/trunk/subversion.dsw
echo 'part of change #303' >> ${WC}/trunk/expat-lite/iasciitab.h
${SVN} commit -m 'commit #303' ${WC}/trunk/subversion/libsvn_delta/xml_parse.c ${WC}/trunk/subversion/libsvn_fs/fs.h ${WC}/trunk/subversion/clients/cmdline/cleanup-cmd.c ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_test.dsp ${WC}/trunk/subversion/libsvn_ra_dav/props.c ${WC}/trunk/subversion/bindings/java/jni/README ${WC}/trunk/doc/svn-doc.el ${WC}/trunk/subversion.dsw ${WC}/trunk/expat-lite/iasciitab.h

################### change 304 ###################
echo ""
echo "Doing commit #304:"
echo 'part of change #304' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt
echo 'part of change #304' >> ${WC}/trunk/subversion/clients/cmdline/propset-cmd.c
echo 'part of change #304' >> ${WC}/trunk/subversion/libsvn_ra_dav/commit.c
${SVN} commit -m 'commit #304' ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt ${WC}/trunk/subversion/clients/cmdline/propset-cmd.c ${WC}/trunk/subversion/libsvn_ra_dav/commit.c

################### change 305 ###################
echo ""
echo "Doing commit #305:"
echo 'part of change #305' >> ${WC}/trunk/subversion/svnlook/main.c
echo 'part of change #305' >> ${WC}/trunk/subversion/mod_dav_svn/activity.c
echo 'part of change #305' >> ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse_test.dsp
echo 'part of change #305' >> ${WC}/trunk/subversion/libsvn_ra_local/checkout.c
echo 'part of change #305' >> ${WC}/trunk/expat-lite/nametab.h
${SVN} commit -m 'commit #305' ${WC}/trunk/subversion/svnlook/main.c ${WC}/trunk/subversion/mod_dav_svn/activity.c ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse_test.dsp ${WC}/trunk/subversion/libsvn_ra_local/checkout.c ${WC}/trunk/expat-lite/nametab.h

################### change 306 ###################
echo ""
echo "Doing commit #306:"
echo 'part of change #306' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.rgs
echo 'part of change #306' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Status.java
echo 'part of change #306' >> ${WC}/trunk/notes/issues.txt
echo 'part of change #306' >> ${WC}/trunk/subversion/bindings/svn_string.i
echo 'part of change #306' >> ${WC}/trunk/subversion/clients/win32/SVNControls/ppgMain.pag
echo 'part of change #306' >> ${WC}/trunk/subversion/libsvn_fs/proplist.c
echo 'part of change #306' >> ${WC}/trunk/subversion/clients/win32/WinSVN/WinSVN.vbp
echo 'part of change #306' >> ${WC}/trunk/subversion/clients/cmdline/import-cmd.c
echo 'part of change #306' >> ${WC}/trunk/doc/user/svnlook/svnlook.texi
${SVN} commit -m 'commit #306' ${WC}/trunk/subversion/clients/win32/svn_com/SVN.rgs ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Status.java ${WC}/trunk/notes/issues.txt ${WC}/trunk/subversion/bindings/svn_string.i ${WC}/trunk/subversion/clients/win32/SVNControls/ppgMain.pag ${WC}/trunk/subversion/libsvn_fs/proplist.c ${WC}/trunk/subversion/clients/win32/WinSVN/WinSVN.vbp ${WC}/trunk/subversion/clients/cmdline/import-cmd.c ${WC}/trunk/doc/user/svnlook/svnlook.texi

################### change 307 ###################
echo ""
echo "Doing commit #307:"
echo 'part of change #307' >> ${WC}/trunk/doc/user/manual/license.texi
${SVN} commit -m 'commit #307' ${WC}/trunk/doc/user/manual/license.texi

################### change 308 ###################
echo ""
echo "Doing commit #308:"
echo 'part of change #308' >> ${WC}/trunk/expat-lite/latin1tab.h
echo 'part of change #308' >> ${WC}/trunk/subversion/bindings/svn_types.i
echo 'part of change #308' >> ${WC}/trunk/doc/programmer/design/svn-design.txt
echo 'part of change #308' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmOptions.frm
echo 'part of change #308' >> ${WC}/trunk/notes/txdelta_sanity
echo 'part of change #308' >> ${WC}/trunk/doc/programmer/design/deltas.texi
echo 'part of change #308' >> ${WC}/trunk/expat-lite/hashtable.h
echo 'part of change #308' >> ${WC}/trunk/subversion/libsvn_repos/node_tree.c
echo 'part of change #308' >> ${WC}/trunk/subversion/libsvn_fs/TODO
${SVN} commit -m 'commit #308' ${WC}/trunk/expat-lite/latin1tab.h ${WC}/trunk/subversion/bindings/svn_types.i ${WC}/trunk/doc/programmer/design/svn-design.txt ${WC}/trunk/subversion/clients/win32/WinSVN/frmOptions.frm ${WC}/trunk/notes/txdelta_sanity ${WC}/trunk/doc/programmer/design/deltas.texi ${WC}/trunk/expat-lite/hashtable.h ${WC}/trunk/subversion/libsvn_repos/node_tree.c ${WC}/trunk/subversion/libsvn_fs/TODO

################### change 309 ###################
echo ""
echo "Doing commit #309:"
echo 'part of change #309' >> ${WC}/trunk/subversion/tests/fs-helpers.c
echo 'part of change #309' >> ${WC}/trunk/subversion/libsvn_ra_dav/util.c
echo 'part of change #309' >> ${WC}/trunk/subversion/clients/win32/WinSVN/DriveHelpers.bas
${SVN} commit -m 'commit #309' ${WC}/trunk/subversion/tests/fs-helpers.c ${WC}/trunk/subversion/libsvn_ra_dav/util.c ${WC}/trunk/subversion/clients/win32/WinSVN/DriveHelpers.bas

################### change 310 ###################
echo ""
echo "Doing commit #310:"
echo 'part of change #310' >> ${WC}/trunk/subversion/clients/cmdline/checkout-cmd.c
${SVN} commit -m 'commit #310' ${WC}/trunk/subversion/clients/cmdline/checkout-cmd.c

################### change 311 ###################
echo ""
echo "Doing commit #311:"
echo 'part of change #311' >> ${WC}/trunk/subversion/libsvn_repos/lock.c
echo 'part of change #311' >> ${WC}/trunk/www/project_footer.html
echo 'part of change #311' >> ${WC}/trunk/expat-lite/hashtable.c
echo 'part of change #311' >> ${WC}/trunk/subversion/mod_dav_svn/deadprops.c
echo 'part of change #311' >> ${WC}/trunk/subversion/tests/libsvn_repos/repos-test.c
echo 'part of change #311' >> ${WC}/trunk/subversion/libsvn_client/apply_edits.c
${SVN} commit -m 'commit #311' ${WC}/trunk/subversion/libsvn_repos/lock.c ${WC}/trunk/www/project_footer.html ${WC}/trunk/expat-lite/hashtable.c ${WC}/trunk/subversion/mod_dav_svn/deadprops.c ${WC}/trunk/subversion/tests/libsvn_repos/repos-test.c ${WC}/trunk/subversion/libsvn_client/apply_edits.c

################### change 312 ###################
echo ""
echo "Doing commit #312:"
echo 'part of change #312' >> ${WC}/trunk/subversion/include/svn_types.h
echo 'part of change #312' >> ${WC}/trunk/subversion/libsvn_subr/sorts.c
echo 'part of change #312' >> ${WC}/trunk/subversion/clients/cmdline/commit-cmd.c
echo 'part of change #312' >> ${WC}/trunk/subversion/libsvn_client/apply_edits.c
echo 'part of change #312' >> ${WC}/trunk/HACKING
echo 'part of change #312' >> ${WC}/trunk/notes/difftools/pics/README
echo 'part of change #312' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/SubversionException.java
echo 'part of change #312' >> ${WC}/trunk/subversion/libsvn_ra_dav/props.c
echo 'part of change #312' >> ${WC}/trunk/subversion/clients/cmdline/README
${SVN} commit -m 'commit #312' ${WC}/trunk/subversion/include/svn_types.h ${WC}/trunk/subversion/libsvn_subr/sorts.c ${WC}/trunk/subversion/clients/cmdline/commit-cmd.c ${WC}/trunk/subversion/libsvn_client/apply_edits.c ${WC}/trunk/HACKING ${WC}/trunk/notes/difftools/pics/README ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/SubversionException.java ${WC}/trunk/subversion/libsvn_ra_dav/props.c ${WC}/trunk/subversion/clients/cmdline/README

################### change 313 ###################
echo ""
echo "Doing commit #313:"
echo 'part of change #313' >> ${WC}/trunk/subversion/bindings/svn_types.i
echo 'part of change #313' >> ${WC}/trunk/tools/cvs2svn/design-notes.txt
${SVN} commit -m 'commit #313' ${WC}/trunk/subversion/bindings/svn_types.i ${WC}/trunk/tools/cvs2svn/design-notes.txt

################### change 314 ###################
echo ""
echo "Doing commit #314:"
echo 'part of change #314' >> ${WC}/trunk/subversion/bindings/svn_error.i
echo 'part of change #314' >> ${WC}/trunk/svn_private_config.hw
echo 'part of change #314' >> ${WC}/trunk/subversion/libsvn_fs/rev-table.c
echo 'part of change #314' >> ${WC}/trunk/doc/user/manual/README
echo 'part of change #314' >> ${WC}/trunk/subversion/tests/libsvn_delta/xml_output_test.dsp
echo 'part of change #314' >> ${WC}/trunk/subversion/libsvn_fs/key-gen.h
echo 'part of change #314' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookDemo.frm
echo 'part of change #314' >> ${WC}/trunk/subversion/clients/cmdline/util.c
echo 'part of change #314' >> ${WC}/trunk/subversion/tests/libsvn_wc/commit-test.c
${SVN} commit -m 'commit #314' ${WC}/trunk/subversion/bindings/svn_error.i ${WC}/trunk/svn_private_config.hw ${WC}/trunk/subversion/libsvn_fs/rev-table.c ${WC}/trunk/doc/user/manual/README ${WC}/trunk/subversion/tests/libsvn_delta/xml_output_test.dsp ${WC}/trunk/subversion/libsvn_fs/key-gen.h ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookDemo.frm ${WC}/trunk/subversion/clients/cmdline/util.c ${WC}/trunk/subversion/tests/libsvn_wc/commit-test.c

################### change 315 ###################
echo ""
echo "Doing commit #315:"
echo 'part of change #315' >> ${WC}/trunk/subversion/mod_dav_svn/update.c
echo 'part of change #315' >> ${WC}/trunk/COPYING
echo 'part of change #315' >> ${WC}/trunk/notes/issues.txt
echo 'part of change #315' >> ${WC}/trunk/notes/fs-improvements.txt
echo 'part of change #315' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/WorkingCopy.java
echo 'part of change #315' >> ${WC}/trunk/subversion/libsvn_fs/structure
echo 'part of change #315' >> ${WC}/trunk/gen-make.py
${SVN} commit -m 'commit #315' ${WC}/trunk/subversion/mod_dav_svn/update.c ${WC}/trunk/COPYING ${WC}/trunk/notes/issues.txt ${WC}/trunk/notes/fs-improvements.txt ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/WorkingCopy.java ${WC}/trunk/subversion/libsvn_fs/structure ${WC}/trunk/gen-make.py

################### change 316 ###################
echo ""
echo "Doing commit #316:"
echo 'part of change #316' >> ${WC}/trunk/subversion/clients/cmdline/add-cmd.c
${SVN} commit -m 'commit #316' ${WC}/trunk/subversion/clients/cmdline/add-cmd.c

################### change 317 ###################
echo ""
echo "Doing commit #317:"
echo 'part of change #317' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/source.txt
echo 'part of change #317' >> ${WC}/trunk/expat-lite/nametab.h
echo 'part of change #317' >> ${WC}/trunk/notes/guis/pics/ClearCase-lsvtree-README
echo 'part of change #317' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookGroup.frm
echo 'part of change #317' >> ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.h
${SVN} commit -m 'commit #317' ${WC}/trunk/subversion/tests/libsvn_vcdiff/source.txt ${WC}/trunk/expat-lite/nametab.h ${WC}/trunk/notes/guis/pics/ClearCase-lsvtree-README ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookGroup.frm ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.h

################### change 318 ###################
echo ""
echo "Doing commit #318:"
echo 'part of change #318' >> ${WC}/trunk/subversion/bindings/svn_wc.i
echo 'part of change #318' >> ${WC}/trunk/subversion/clients/cmdline/diff-cmd.c
echo 'part of change #318' >> ${WC}/trunk/subversion/libsvn_client/diff.c
echo 'part of change #318' >> ${WC}/trunk/www/index.html
${SVN} commit -m 'commit #318' ${WC}/trunk/subversion/bindings/svn_wc.i ${WC}/trunk/subversion/clients/cmdline/diff-cmd.c ${WC}/trunk/subversion/libsvn_client/diff.c ${WC}/trunk/www/index.html

################### change 319 ###################
echo ""
echo "Doing commit #319:"
echo 'part of change #319' >> ${WC}/trunk/subversion/mod_dav_svn/version.c
${SVN} commit -m 'commit #319' ${WC}/trunk/subversion/mod_dav_svn/version.c

################### change 320 ###################
echo ""
echo "Doing commit #320:"
echo 'part of change #320' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py
echo 'part of change #320' >> ${WC}/trunk/subversion/clients/win32/WinSVN/WinSVN.vbp
echo 'part of change #320' >> ${WC}/trunk/subversion/libsvn_fs/fs.c
echo 'part of change #320' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt
${SVN} commit -m 'commit #320' ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py ${WC}/trunk/subversion/clients/win32/WinSVN/WinSVN.vbp ${WC}/trunk/subversion/libsvn_fs/fs.c ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt

################### change 321 ###################
echo ""
echo "Doing commit #321:"
echo 'part of change #321' >> ${WC}/trunk/build.conf
echo 'part of change #321' >> ${WC}/trunk/subversion/bindings/svn_client.i
echo 'part of change #321' >> ${WC}/trunk/subversion/libsvn_fs/txn-table.c
echo 'part of change #321' >> ${WC}/trunk/notes/guis/planning.txt
echo 'part of change #321' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/actions.py
echo 'part of change #321' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cScrollBars.cls
echo 'part of change #321' >> ${WC}/trunk/subversion/clients/win32/svn_com/resource.h
echo 'part of change #321' >> ${WC}/trunk/subversion/tests/libsvn_subr/path-test.c
${SVN} commit -m 'commit #321' ${WC}/trunk/build.conf ${WC}/trunk/subversion/bindings/svn_client.i ${WC}/trunk/subversion/libsvn_fs/txn-table.c ${WC}/trunk/notes/guis/planning.txt ${WC}/trunk/subversion/tests/clients/cmdline/svntest/actions.py ${WC}/trunk/subversion/clients/win32/SVNControls/cScrollBars.cls ${WC}/trunk/subversion/clients/win32/svn_com/resource.h ${WC}/trunk/subversion/tests/libsvn_subr/path-test.c

################### change 322 ###################
echo ""
echo "Doing commit #322:"
echo 'part of change #322' >> ${WC}/trunk/subversion/clients/win32/SVNControls/type.dat
echo 'part of change #322' >> ${WC}/trunk/subversion/clients/cmdline/update-cmd.c
${SVN} commit -m 'commit #322' ${WC}/trunk/subversion/clients/win32/SVNControls/type.dat ${WC}/trunk/subversion/clients/cmdline/update-cmd.c

################### change 323 ###################
echo ""
echo "Doing commit #323:"
echo 'part of change #323' >> ${WC}/trunk/www/project_nav.html
echo 'part of change #323' >> ${WC}/trunk/subversion/libsvn_subr/config.c
echo 'part of change #323' >> ${WC}/trunk/subversion/tests/README
echo 'part of change #323' >> ${WC}/trunk/doc/user/manual/dirversioning.texi
echo 'part of change #323' >> ${WC}/trunk/AUTHORS
echo 'part of change #323' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm
${SVN} commit -m 'commit #323' ${WC}/trunk/www/project_nav.html ${WC}/trunk/subversion/libsvn_subr/config.c ${WC}/trunk/subversion/tests/README ${WC}/trunk/doc/user/manual/dirversioning.texi ${WC}/trunk/AUTHORS ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm

################### change 324 ###################
echo ""
echo "Doing commit #324:"
echo 'part of change #324' >> ${WC}/trunk/subversion/libsvn_ra_dav/props.c
echo 'part of change #324' >> ${WC}/trunk/subversion/bindings/svn_io.i
echo 'part of change #324' >> ${WC}/trunk/subversion/libsvn_wc/adm_ops.c
echo 'part of change #324' >> ${WC}/trunk/subversion/svnlook/main.c
${SVN} commit -m 'commit #324' ${WC}/trunk/subversion/libsvn_ra_dav/props.c ${WC}/trunk/subversion/bindings/svn_io.i ${WC}/trunk/subversion/libsvn_wc/adm_ops.c ${WC}/trunk/subversion/svnlook/main.c

################### change 325 ###################
echo ""
echo "Doing commit #325:"
echo 'part of change #325' >> ${WC}/trunk/subversion/include/svn_ra.h
echo 'part of change #325' >> ${WC}/trunk/subversion/tests/xml/up1b-inline.xml
echo 'part of change #325' >> ${WC}/trunk/subversion/libsvn_delta/svndiff.c
echo 'part of change #325' >> ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py
echo 'part of change #325' >> ${WC}/trunk/subversion/clients/cmdline/import-cmd.c
echo 'part of change #325' >> ${WC}/trunk/subversion/tests/xml/up2.xml
echo 'part of change #325' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmVirtual.frm
${SVN} commit -m 'commit #325' ${WC}/trunk/subversion/include/svn_ra.h ${WC}/trunk/subversion/tests/xml/up1b-inline.xml ${WC}/trunk/subversion/libsvn_delta/svndiff.c ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py ${WC}/trunk/subversion/clients/cmdline/import-cmd.c ${WC}/trunk/subversion/tests/xml/up2.xml ${WC}/trunk/subversion/clients/win32/SVNControls/frmVirtual.frm

################### change 326 ###################
echo ""
echo "Doing commit #326:"
echo 'part of change #326' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookGroup.frm
echo 'part of change #326' >> ${WC}/trunk/subversion/mod_dav_svn/merge.c
echo 'part of change #326' >> ${WC}/trunk/subversion/bindings/svn_delta.i
echo 'part of change #326' >> ${WC}/trunk/doc/programmer/design/svn-design.html
echo 'part of change #326' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target2.txt
echo 'part of change #326' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/SubversionException.java
echo 'part of change #326' >> ${WC}/trunk/subversion/libsvn_subr/path.c
echo 'part of change #326' >> ${WC}/trunk/subversion/clients/cmdline/props.c
echo 'part of change #326' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmVirtual.frm
${SVN} commit -m 'commit #326' ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookGroup.frm ${WC}/trunk/subversion/mod_dav_svn/merge.c ${WC}/trunk/subversion/bindings/svn_delta.i ${WC}/trunk/doc/programmer/design/svn-design.html ${WC}/trunk/subversion/tests/libsvn_vcdiff/target2.txt ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/SubversionException.java ${WC}/trunk/subversion/libsvn_subr/path.c ${WC}/trunk/subversion/clients/cmdline/props.c ${WC}/trunk/subversion/clients/win32/SVNControls/frmVirtual.frm

################### change 327 ###################
echo ""
echo "Doing commit #327:"
echo 'part of change #327' >> ${WC}/trunk/subversion/tests/libsvn_test_main.dsp
${SVN} commit -m 'commit #327' ${WC}/trunk/subversion/tests/libsvn_test_main.dsp

################### change 328 ###################
echo ""
echo "Doing commit #328:"
echo 'part of change #328' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cGridCell.cls
echo 'part of change #328' >> ${WC}/trunk/notes/entries-handling.txt
echo 'part of change #328' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/source.txt
${SVN} commit -m 'commit #328' ${WC}/trunk/subversion/clients/win32/SVNControls/cGridCell.cls ${WC}/trunk/notes/entries-handling.txt ${WC}/trunk/subversion/tests/libsvn_vcdiff/source.txt

################### change 329 ###################
echo ""
echo "Doing commit #329:"
echo 'part of change #329' >> ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.c
echo 'part of change #329' >> ${WC}/trunk/subversion/tests/libsvn_repos/repos_test.dsp
echo 'part of change #329' >> ${WC}/trunk/subversion/tests/libsvn_delta/postfix.delta
echo 'part of change #329' >> ${WC}/trunk/subversion/libsvn_ra/ra_loader.c
echo 'part of change #329' >> ${WC}/trunk/subversion/libsvn_delta/track_editor.c
${SVN} commit -m 'commit #329' ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.c ${WC}/trunk/subversion/tests/libsvn_repos/repos_test.dsp ${WC}/trunk/subversion/tests/libsvn_delta/postfix.delta ${WC}/trunk/subversion/libsvn_ra/ra_loader.c ${WC}/trunk/subversion/libsvn_delta/track_editor.c

################### change 330 ###################
echo ""
echo "Doing commit #330:"
echo 'part of change #330' >> ${WC}/trunk/subversion/libsvn_wc/adm_crawler.c
echo 'part of change #330' >> ${WC}/trunk/subversion/clients/win32/SVNControls/mGDI.bas
${SVN} commit -m 'commit #330' ${WC}/trunk/subversion/libsvn_wc/adm_crawler.c ${WC}/trunk/subversion/clients/win32/SVNControls/mGDI.bas

################### change 331 ###################
echo ""
echo "Doing commit #331:"
echo 'part of change #331' >> ${WC}/trunk/notes/guis/pics/README
echo 'part of change #331' >> ${WC}/trunk/www/webdav-usage.html
echo 'part of change #331' >> ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse_test.dsp
echo 'part of change #331' >> ${WC}/trunk/AUTHORS
echo 'part of change #331' >> ${WC}/trunk/subversion/libsvn_wc/wc.h
${SVN} commit -m 'commit #331' ${WC}/trunk/notes/guis/pics/README ${WC}/trunk/www/webdav-usage.html ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse_test.dsp ${WC}/trunk/AUTHORS ${WC}/trunk/subversion/libsvn_wc/wc.h

################### change 332 ###################
echo ""
echo "Doing commit #332:"
echo 'part of change #332' >> ${WC}/trunk/subversion/svnlook/svnlook.dsp
echo 'part of change #332' >> ${WC}/trunk/subversion/tests/libsvn_subr/string_test.dsp
echo 'part of change #332' >> ${WC}/trunk/subversion/clients/cmdline/status-cmd.c
echo 'part of change #332' >> ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta
echo 'part of change #332' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.cpp
echo 'part of change #332' >> ${WC}/trunk/www/project_status.html
echo 'part of change #332' >> ${WC}/trunk/README
echo 'part of change #332' >> ${WC}/trunk/www/project_bugs.html
${SVN} commit -m 'commit #332' ${WC}/trunk/subversion/svnlook/svnlook.dsp ${WC}/trunk/subversion/tests/libsvn_subr/string_test.dsp ${WC}/trunk/subversion/clients/cmdline/status-cmd.c ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta ${WC}/trunk/subversion/clients/win32/svn_com/SVN.cpp ${WC}/trunk/www/project_status.html ${WC}/trunk/README ${WC}/trunk/www/project_bugs.html

################### change 333 ###################
echo ""
echo "Doing commit #333:"
echo 'part of change #333' >> ${WC}/trunk/www/project_tasks.html
echo 'part of change #333' >> ${WC}/trunk/subversion/libsvn_fs/dbt.c
echo 'part of change #333' >> ${WC}/trunk/subversion/tests/xml/README
echo 'part of change #333' >> ${WC}/trunk/tools/cvs2svn/README
echo 'part of change #333' >> ${WC}/trunk/tools/cvs2svn/design-notes.txt
echo 'part of change #333' >> ${WC}/trunk/notes/old/karlnotes
echo 'part of change #333' >> ${WC}/trunk/subversion/tests/libsvn_fs/skel_test.dsp
${SVN} commit -m 'commit #333' ${WC}/trunk/www/project_tasks.html ${WC}/trunk/subversion/libsvn_fs/dbt.c ${WC}/trunk/subversion/tests/xml/README ${WC}/trunk/tools/cvs2svn/README ${WC}/trunk/tools/cvs2svn/design-notes.txt ${WC}/trunk/notes/old/karlnotes ${WC}/trunk/subversion/tests/libsvn_fs/skel_test.dsp

################### change 334 ###################
echo ""
echo "Doing commit #334:"
echo 'part of change #334' >> ${WC}/trunk/tools/cvs2svn/README
echo 'part of change #334' >> ${WC}/trunk/subversion/libsvn_subr/time.c
echo 'part of change #334' >> ${WC}/trunk/expat-lite/latin1tab.h
echo 'part of change #334' >> ${WC}/trunk/subversion/libsvn_wc/libsvn_wc.dsp
echo 'part of change #334' >> ${WC}/trunk/subversion/libsvn_fs/proplist.h
${SVN} commit -m 'commit #334' ${WC}/trunk/tools/cvs2svn/README ${WC}/trunk/subversion/libsvn_subr/time.c ${WC}/trunk/expat-lite/latin1tab.h ${WC}/trunk/subversion/libsvn_wc/libsvn_wc.dsp ${WC}/trunk/subversion/libsvn_fs/proplist.h

################### change 335 ###################
echo ""
echo "Doing commit #335:"
echo 'part of change #335' >> ${WC}/trunk/subversion/bindings/svn_string.i
echo 'part of change #335' >> ${WC}/trunk/subversion/bindings/svn_types.i
echo 'part of change #335' >> ${WC}/trunk/subversion/libsvn_repos/commit_editor.c
${SVN} commit -m 'commit #335' ${WC}/trunk/subversion/bindings/svn_string.i ${WC}/trunk/subversion/bindings/svn_types.i ${WC}/trunk/subversion/libsvn_repos/commit_editor.c

################### change 336 ###################
echo ""
echo "Doing commit #336:"
echo 'part of change #336' >> ${WC}/trunk/subversion/libsvn_fs/nodes-table.h
echo 'part of change #336' >> ${WC}/trunk/subversion/mod_dav_svn/static/README
echo 'part of change #336' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.h
echo 'part of change #336' >> ${WC}/trunk/ac-helpers/berkeley-db.m4
${SVN} commit -m 'commit #336' ${WC}/trunk/subversion/libsvn_fs/nodes-table.h ${WC}/trunk/subversion/mod_dav_svn/static/README ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.h ${WC}/trunk/ac-helpers/berkeley-db.m4

################### change 337 ###################
echo ""
echo "Doing commit #337:"
echo 'part of change #337' >> ${WC}/trunk/www/project_footer.html
echo 'part of change #337' >> ${WC}/trunk/subversion/clients/cmdline/propget-cmd.c
echo 'part of change #337' >> ${WC}/trunk/ac-helpers/svn-apache.m4
echo 'part of change #337' >> ${WC}/trunk/ac-helpers/ltconfig
echo 'part of change #337' >> ${WC}/trunk/subversion/libsvn_fs/txn-table.c
${SVN} commit -m 'commit #337' ${WC}/trunk/www/project_footer.html ${WC}/trunk/subversion/clients/cmdline/propget-cmd.c ${WC}/trunk/ac-helpers/svn-apache.m4 ${WC}/trunk/ac-helpers/ltconfig ${WC}/trunk/subversion/libsvn_fs/txn-table.c

################### change 338 ###################
echo ""
echo "Doing commit #338:"
echo 'part of change #338' >> ${WC}/trunk/www/project_footer.html
echo 'part of change #338' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc
echo 'part of change #338' >> ${WC}/trunk/doc/programmer/design/server.texi
echo 'part of change #338' >> ${WC}/trunk/subversion/clients/cmdline/update-cmd.c
echo 'part of change #338' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookDemo.frm
echo 'part of change #338' >> ${WC}/trunk/subversion/clients/cmdline/add-cmd.c
${SVN} commit -m 'commit #338' ${WC}/trunk/www/project_footer.html ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc ${WC}/trunk/doc/programmer/design/server.texi ${WC}/trunk/subversion/clients/cmdline/update-cmd.c ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookDemo.frm ${WC}/trunk/subversion/clients/cmdline/add-cmd.c

################### change 339 ###################
echo ""
echo "Doing commit #339:"
echo 'part of change #339' >> ${WC}/trunk/subversion/libsvn_ra_dav/merge.c
echo 'part of change #339' >> ${WC}/trunk/expat-lite/expat.html
echo 'part of change #339' >> ${WC}/trunk/subversion/tests/libsvn_ra_local/ra-local-test.c
echo 'part of change #339' >> ${WC}/trunk/subversion/clients/cmdline/TODO
echo 'part of change #339' >> ${WC}/trunk/subversion/libsvn_fs/node-rev.h
echo 'part of change #339' >> ${WC}/trunk/notes/dav_setup.txt
echo 'part of change #339' >> ${WC}/trunk/subversion/libsvn_fs/this-branch.txt
${SVN} commit -m 'commit #339' ${WC}/trunk/subversion/libsvn_ra_dav/merge.c ${WC}/trunk/expat-lite/expat.html ${WC}/trunk/subversion/tests/libsvn_ra_local/ra-local-test.c ${WC}/trunk/subversion/clients/cmdline/TODO ${WC}/trunk/subversion/libsvn_fs/node-rev.h ${WC}/trunk/notes/dav_setup.txt ${WC}/trunk/subversion/libsvn_fs/this-branch.txt

################### change 340 ###################
echo ""
echo "Doing commit #340:"
echo 'part of change #340' >> ${WC}/trunk/subversion/tests/fs-helpers.h
echo 'part of change #340' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/entry.py
echo 'part of change #340' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaHandler.java
echo 'part of change #340' >> ${WC}/trunk/build-outputs.mk
echo 'part of change #340' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Status.java
${SVN} commit -m 'commit #340' ${WC}/trunk/subversion/tests/fs-helpers.h ${WC}/trunk/subversion/tests/clients/cmdline/svntest/entry.py ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaHandler.java ${WC}/trunk/build-outputs.mk ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Status.java

################### change 341 ###################
echo ""
echo "Doing commit #341:"
echo 'part of change #341' >> ${WC}/trunk/subversion/libsvn_ra_dav/merge.c
echo 'part of change #341' >> ${WC}/trunk/doc/programmer/design/protocol.texi
echo 'part of change #341' >> ${WC}/trunk/README
echo 'part of change #341' >> ${WC}/trunk/expat-lite/xmltok_ns.c
echo 'part of change #341' >> ${WC}/trunk/expat-lite/xmltok_impl.c
echo 'part of change #341' >> ${WC}/trunk/doc/programmer/WritingChangeLogs.txt
echo 'part of change #341' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmTestMatrix.frm
echo 'part of change #341' >> ${WC}/trunk/subversion/libsvn_fs/skel.h
${SVN} commit -m 'commit #341' ${WC}/trunk/subversion/libsvn_ra_dav/merge.c ${WC}/trunk/doc/programmer/design/protocol.texi ${WC}/trunk/README ${WC}/trunk/expat-lite/xmltok_ns.c ${WC}/trunk/expat-lite/xmltok_impl.c ${WC}/trunk/doc/programmer/WritingChangeLogs.txt ${WC}/trunk/subversion/clients/win32/SVNControls/frmTestMatrix.frm ${WC}/trunk/subversion/libsvn_fs/skel.h

################### change 342 ###################
echo ""
echo "Doing commit #342:"
echo 'part of change #342' >> ${WC}/trunk/subversion/tests/clients/cmdline/commit_tests.py
echo 'part of change #342' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_test.dsp
echo 'part of change #342' >> ${WC}/trunk/ac-helpers/libtool.m4
echo 'part of change #342' >> ${WC}/trunk/subversion/include/svn_types.h
echo 'part of change #342' >> ${WC}/trunk/subversion/include/svn_fs.h
echo 'part of change #342' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cShellSort.cls
${SVN} commit -m 'commit #342' ${WC}/trunk/subversion/tests/clients/cmdline/commit_tests.py ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_test.dsp ${WC}/trunk/ac-helpers/libtool.m4 ${WC}/trunk/subversion/include/svn_types.h ${WC}/trunk/subversion/include/svn_fs.h ${WC}/trunk/subversion/clients/win32/SVNControls/cShellSort.cls

################### change 343 ###################
echo ""
echo "Doing commit #343:"
echo 'part of change #343' >> ${WC}/trunk/ac-helpers/svn-macros.m4
echo 'part of change #343' >> ${WC}/trunk/expat-lite/xmldef.h
echo 'part of change #343' >> ${WC}/trunk/subversion/clients/cmdline/subversion_client.dsp
echo 'part of change #343' >> ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.h
echo 'part of change #343' >> ${WC}/trunk/subversion/tests/fs-helpers.c
echo 'part of change #343' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookDemo.frm
echo 'part of change #343' >> ${WC}/trunk/doc/programmer/WritingChangeLogs.txt
echo 'part of change #343' >> ${WC}/trunk/README
echo 'part of change #343' >> ${WC}/trunk/www/project_footer.html
echo 'part of change #343' >> ${WC}/trunk/subversion/mod_dav_svn/mod_dav_svn.c
${SVN} commit -m 'commit #343' ${WC}/trunk/ac-helpers/svn-macros.m4 ${WC}/trunk/expat-lite/xmldef.h ${WC}/trunk/subversion/clients/cmdline/subversion_client.dsp ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.h ${WC}/trunk/subversion/tests/fs-helpers.c ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookDemo.frm ${WC}/trunk/doc/programmer/WritingChangeLogs.txt ${WC}/trunk/README ${WC}/trunk/www/project_footer.html ${WC}/trunk/subversion/mod_dav_svn/mod_dav_svn.c

################### change 344 ###################
echo ""
echo "Doing commit #344:"
echo 'part of change #344' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.def
echo 'part of change #344' >> ${WC}/trunk/subversion.dsp
echo 'part of change #344' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cHeaderControl.cls
${SVN} commit -m 'commit #344' ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.def ${WC}/trunk/subversion.dsp ${WC}/trunk/subversion/clients/win32/SVNControls/cHeaderControl.cls

################### change 345 ###################
echo ""
echo "Doing commit #345:"
echo 'part of change #345' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookDemo.frm
echo 'part of change #345' >> ${WC}/trunk/notes/old/karlnotes
echo 'part of change #345' >> ${WC}/trunk/subversion/tests/libsvn_delta/random_test.dsp
echo 'part of change #345' >> ${WC}/trunk/doc/programmer/design/model.texi
echo 'part of change #345' >> ${WC}/trunk/subversion/clients/win32/svn_com/svn_comCP.h
echo 'part of change #345' >> ${WC}/trunk/subversion/libsvn_fs/txn-table.h
echo 'part of change #345' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmMain.frm
echo 'part of change #345' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.rgs
echo 'part of change #345' >> ${WC}/trunk/build-outputs.mk
${SVN} commit -m 'commit #345' ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookDemo.frm ${WC}/trunk/notes/old/karlnotes ${WC}/trunk/subversion/tests/libsvn_delta/random_test.dsp ${WC}/trunk/doc/programmer/design/model.texi ${WC}/trunk/subversion/clients/win32/svn_com/svn_comCP.h ${WC}/trunk/subversion/libsvn_fs/txn-table.h ${WC}/trunk/subversion/clients/win32/WinSVN/frmMain.frm ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.rgs ${WC}/trunk/build-outputs.mk

################### change 346 ###################
echo ""
echo "Doing commit #346:"
echo 'part of change #346' >> ${WC}/trunk/subversion/libsvn_client/diff.c
echo 'part of change #346' >> ${WC}/trunk/subversion/tests/libsvn_test_main.dsp
echo 'part of change #346' >> ${WC}/trunk/subversion/mod_dav_svn/liveprops.c
echo 'part of change #346' >> ${WC}/trunk/doc/README
echo 'part of change #346' >> ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.h
echo 'part of change #346' >> ${WC}/trunk/tools/cvs2svn/README
echo 'part of change #346' >> ${WC}/trunk/doc/programmer/design/future.texi
echo 'part of change #346' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cFlatHeader.cls
echo 'part of change #346' >> ${WC}/trunk/subversion/libsvn_fs/fs.c
${SVN} commit -m 'commit #346' ${WC}/trunk/subversion/libsvn_client/diff.c ${WC}/trunk/subversion/tests/libsvn_test_main.dsp ${WC}/trunk/subversion/mod_dav_svn/liveprops.c ${WC}/trunk/doc/README ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.h ${WC}/trunk/tools/cvs2svn/README ${WC}/trunk/doc/programmer/design/future.texi ${WC}/trunk/subversion/clients/win32/SVNControls/cFlatHeader.cls ${WC}/trunk/subversion/libsvn_fs/fs.c

################### change 347 ###################
echo ""
echo "Doing commit #347:"
echo 'part of change #347' >> ${WC}/trunk/subversion/libsvn_fs/tree.c
echo 'part of change #347' >> ${WC}/trunk/subversion/include/svn_delta.h
echo 'part of change #347' >> ${WC}/trunk/subversion/libsvn_fs/reps-strings.c
echo 'part of change #347' >> ${WC}/trunk/subversion/tests/libsvn_fs/skel_test.dsp
echo 'part of change #347' >> ${WC}/trunk/subversion/libsvn_ra_dav/props.c
echo 'part of change #347' >> ${WC}/trunk/doc/programmer/design/protocol.texi
echo 'part of change #347' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Reporter.java
echo 'part of change #347' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cHeaderControl.cls
echo 'part of change #347' >> ${WC}/trunk/build-outputs.mk
echo 'part of change #347' >> ${WC}/trunk/INSTALL
${SVN} commit -m 'commit #347' ${WC}/trunk/subversion/libsvn_fs/tree.c ${WC}/trunk/subversion/include/svn_delta.h ${WC}/trunk/subversion/libsvn_fs/reps-strings.c ${WC}/trunk/subversion/tests/libsvn_fs/skel_test.dsp ${WC}/trunk/subversion/libsvn_ra_dav/props.c ${WC}/trunk/doc/programmer/design/protocol.texi ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Reporter.java ${WC}/trunk/subversion/clients/win32/SVNControls/cHeaderControl.cls ${WC}/trunk/build-outputs.mk ${WC}/trunk/INSTALL

################### change 348 ###################
echo ""
echo "Doing commit #348:"
echo 'part of change #348' >> ${WC}/trunk/subversion/libsvn_fs/key-gen.h
echo 'part of change #348' >> ${WC}/trunk/subversion/bindings/java/jni/README
echo 'part of change #348' >> ${WC}/trunk/subversion/libsvn_subr/time.c
echo 'part of change #348' >> ${WC}/trunk/subversion/libsvn_repos/lock.c
${SVN} commit -m 'commit #348' ${WC}/trunk/subversion/libsvn_fs/key-gen.h ${WC}/trunk/subversion/bindings/java/jni/README ${WC}/trunk/subversion/libsvn_subr/time.c ${WC}/trunk/subversion/libsvn_repos/lock.c

################### change 349 ###################
echo ""
echo "Doing commit #349:"
echo 'part of change #349' >> ${WC}/trunk/expat-lite/README.svn
echo 'part of change #349' >> ${WC}/trunk/subversion/libsvn_wc/entries.c
echo 'part of change #349' >> ${WC}/trunk/subversion/libsvn_ra_dav/fetch.c
echo 'part of change #349' >> ${WC}/trunk/subversion/libsvn_delta/default_editor.c
echo 'part of change #349' >> ${WC}/trunk/subversion/libsvn_ra_dav/options.c
echo 'part of change #349' >> ${WC}/trunk/www/license-1.html
echo 'part of change #349' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta-test.c
echo 'part of change #349' >> ${WC}/trunk/expat-lite/xmlparse.c
${SVN} commit -m 'commit #349' ${WC}/trunk/expat-lite/README.svn ${WC}/trunk/subversion/libsvn_wc/entries.c ${WC}/trunk/subversion/libsvn_ra_dav/fetch.c ${WC}/trunk/subversion/libsvn_delta/default_editor.c ${WC}/trunk/subversion/libsvn_ra_dav/options.c ${WC}/trunk/www/license-1.html ${WC}/trunk/subversion/tests/libsvn_delta/vdelta-test.c ${WC}/trunk/expat-lite/xmlparse.c

################### change 350 ###################
echo ""
echo "Doing commit #350:"
echo 'part of change #350' >> ${WC}/trunk/subversion/libsvn_subr/xml.c
echo 'part of change #350' >> ${WC}/trunk/subversion/clients/cmdline/checkout-cmd.c
echo 'part of change #350' >> ${WC}/trunk/subversion/libsvn_client/libsvn_client.dsp
echo 'part of change #350' >> ${WC}/trunk/subversion/include/svn_config.h
echo 'part of change #350' >> ${WC}/trunk/subversion/tests/README
echo 'part of change #350' >> ${WC}/trunk/expat-lite/nametab.h
${SVN} commit -m 'commit #350' ${WC}/trunk/subversion/libsvn_subr/xml.c ${WC}/trunk/subversion/clients/cmdline/checkout-cmd.c ${WC}/trunk/subversion/libsvn_client/libsvn_client.dsp ${WC}/trunk/subversion/include/svn_config.h ${WC}/trunk/subversion/tests/README ${WC}/trunk/expat-lite/nametab.h

################### change 351 ###################
echo ""
echo "Doing commit #351:"
echo 'part of change #351' >> ${WC}/trunk/subversion.dsw
echo 'part of change #351' >> ${WC}/trunk/subversion/libsvn_client/libsvn_client.dsp
echo 'part of change #351' >> ${WC}/trunk/subversion/clients/win32/SVNControls/link.dat
echo 'part of change #351' >> ${WC}/trunk/notes/difftools/README
echo 'part of change #351' >> ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.vbp
echo 'part of change #351' >> ${WC}/trunk/subversion/libsvn_fs/tree.c
echo 'part of change #351' >> ${WC}/trunk/subversion/libsvn_client/add.c
${SVN} commit -m 'commit #351' ${WC}/trunk/subversion.dsw ${WC}/trunk/subversion/libsvn_client/libsvn_client.dsp ${WC}/trunk/subversion/clients/win32/SVNControls/link.dat ${WC}/trunk/notes/difftools/README ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.vbp ${WC}/trunk/subversion/libsvn_fs/tree.c ${WC}/trunk/subversion/libsvn_client/add.c

################### change 352 ###################
echo ""
echo "Doing commit #352:"
echo 'part of change #352' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.def
echo 'part of change #352' >> ${WC}/trunk/subversion/tests/xml/co1-postfix.xml
echo 'part of change #352' >> ${WC}/trunk/subversion/clients/win32/svn_com/svn_com.dsp
echo 'part of change #352' >> ${WC}/trunk/ac-helpers/libtool.m4
echo 'part of change #352' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/__init__.py
echo 'part of change #352' >> ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.h
echo 'part of change #352' >> ${WC}/trunk/subversion/mod_dav_svn/version.c
echo 'part of change #352' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target0.txt
echo 'part of change #352' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Client.java
${SVN} commit -m 'commit #352' ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.def ${WC}/trunk/subversion/tests/xml/co1-postfix.xml ${WC}/trunk/subversion/clients/win32/svn_com/svn_com.dsp ${WC}/trunk/ac-helpers/libtool.m4 ${WC}/trunk/subversion/tests/clients/cmdline/svntest/__init__.py ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.h ${WC}/trunk/subversion/mod_dav_svn/version.c ${WC}/trunk/subversion/tests/libsvn_vcdiff/target0.txt ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Client.java

################### change 353 ###################
echo ""
echo "Doing commit #353:"
echo 'part of change #353' >> ${WC}/trunk/subversion/clients/cmdline/feedback.c
echo 'part of change #353' >> ${WC}/trunk/subversion/libsvn_subr/path.c
echo 'part of change #353' >> ${WC}/trunk/subversion/bindings/svn_client.i
echo 'part of change #353' >> ${WC}/trunk/subversion/libsvn_repos/commit_editor.c
${SVN} commit -m 'commit #353' ${WC}/trunk/subversion/clients/cmdline/feedback.c ${WC}/trunk/subversion/libsvn_subr/path.c ${WC}/trunk/subversion/bindings/svn_client.i ${WC}/trunk/subversion/libsvn_repos/commit_editor.c

################### change 354 ###################
echo ""
echo "Doing commit #354:"
echo 'part of change #354' >> ${WC}/trunk/subversion/libsvn_wc/questions.c
echo 'part of change #354' >> ${WC}/trunk/doc/svn-doc.el
echo 'part of change #354' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cScrollBars.cls
echo 'part of change #354' >> ${WC}/trunk/subversion/include/svn_path.h
echo 'part of change #354' >> ${WC}/trunk/subversion/include/svn_base64.h
${SVN} commit -m 'commit #354' ${WC}/trunk/subversion/libsvn_wc/questions.c ${WC}/trunk/doc/svn-doc.el ${WC}/trunk/subversion/clients/win32/SVNControls/cScrollBars.cls ${WC}/trunk/subversion/include/svn_path.h ${WC}/trunk/subversion/include/svn_base64.h

################### change 355 ###################
echo ""
echo "Doing commit #355:"
echo 'part of change #355' >> ${WC}/trunk/subversion/libsvn_wc/libsvn_wc.dsp
echo 'part of change #355' >> ${WC}/trunk/subversion/clients/cmdline/add-cmd.c
echo 'part of change #355' >> ${WC}/trunk/subversion/libsvn_wc/libsvn_wc.dsp
echo 'part of change #355' >> ${WC}/trunk/subversion/libsvn_subr/target.c
echo 'part of change #355' >> ${WC}/trunk/subversion/tests/fs-helpers.c
echo 'part of change #355' >> ${WC}/trunk/www/project_bugs.html
echo 'part of change #355' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/entry.py
echo 'part of change #355' >> ${WC}/trunk/subversion/libsvn_subr/README.errors
echo 'part of change #355' >> ${WC}/trunk/subversion/clients/cmdline/status-cmd.c
echo 'part of change #355' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.rgs
${SVN} commit -m 'commit #355' ${WC}/trunk/subversion/libsvn_wc/libsvn_wc.dsp ${WC}/trunk/subversion/clients/cmdline/add-cmd.c ${WC}/trunk/subversion/libsvn_wc/libsvn_wc.dsp ${WC}/trunk/subversion/libsvn_subr/target.c ${WC}/trunk/subversion/tests/fs-helpers.c ${WC}/trunk/www/project_bugs.html ${WC}/trunk/subversion/tests/clients/cmdline/svntest/entry.py ${WC}/trunk/subversion/libsvn_subr/README.errors ${WC}/trunk/subversion/clients/cmdline/status-cmd.c ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.rgs

################### change 356 ###################
echo ""
echo "Doing commit #356:"
echo 'part of change #356' >> ${WC}/trunk/www/project_bugs.html
${SVN} commit -m 'commit #356' ${WC}/trunk/www/project_bugs.html

################### change 357 ###################
echo ""
echo "Doing commit #357:"
echo 'part of change #357' >> ${WC}/trunk/subversion/libsvn_fs/err.h
echo 'part of change #357' >> ${WC}/trunk/subversion/tests/libsvn_test_main.dsp
echo 'part of change #357' >> ${WC}/trunk/subversion/tests/xml/pipatch.xml
echo 'part of change #357' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmSplash.frm
echo 'part of change #357' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmVirtual.frm
echo 'part of change #357' >> ${WC}/trunk/subversion/tests/libsvn_wc/checkout_test.dsp
echo 'part of change #357' >> ${WC}/trunk/www/project_source.html
${SVN} commit -m 'commit #357' ${WC}/trunk/subversion/libsvn_fs/err.h ${WC}/trunk/subversion/tests/libsvn_test_main.dsp ${WC}/trunk/subversion/tests/xml/pipatch.xml ${WC}/trunk/subversion/clients/win32/WinSVN/frmSplash.frm ${WC}/trunk/subversion/clients/win32/SVNControls/frmVirtual.frm ${WC}/trunk/subversion/tests/libsvn_wc/checkout_test.dsp ${WC}/trunk/www/project_source.html

################### change 358 ###################
echo ""
echo "Doing commit #358:"
echo 'part of change #358' >> ${WC}/trunk/www/project_license.html
echo 'part of change #358' >> ${WC}/trunk/subversion/libsvn_fs/trail.c
echo 'part of change #358' >> ${WC}/trunk/doc/user/manual/svn-manual.texi
echo 'part of change #358' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.mk
echo 'part of change #358' >> ${WC}/trunk/subversion/include/svn_test.h
echo 'part of change #358' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target4.txt
echo 'part of change #358' >> ${WC}/trunk/subversion/clients/win32/SVNControls/ppgMain.pag
echo 'part of change #358' >> ${WC}/trunk/doc/user/manual/adds.texi
${SVN} commit -m 'commit #358' ${WC}/trunk/www/project_license.html ${WC}/trunk/subversion/libsvn_fs/trail.c ${WC}/trunk/doc/user/manual/svn-manual.texi ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.mk ${WC}/trunk/subversion/include/svn_test.h ${WC}/trunk/subversion/tests/libsvn_vcdiff/target4.txt ${WC}/trunk/subversion/clients/win32/SVNControls/ppgMain.pag ${WC}/trunk/doc/user/manual/adds.texi

################### change 359 ###################
echo ""
echo "Doing commit #359:"
echo 'part of change #359' >> ${WC}/trunk/expat-lite/xmltok_impl.h
echo 'part of change #359' >> ${WC}/trunk/subversion/tests/libsvn_subr/string_test.dsp
echo 'part of change #359' >> ${WC}/trunk/svn_private_config.h.in
echo 'part of change #359' >> ${WC}/trunk/doc/user/manual/svn-manual.texi
${SVN} commit -m 'commit #359' ${WC}/trunk/expat-lite/xmltok_impl.h ${WC}/trunk/subversion/tests/libsvn_subr/string_test.dsp ${WC}/trunk/svn_private_config.h.in ${WC}/trunk/doc/user/manual/svn-manual.texi

################### change 360 ###################
echo ""
echo "Doing commit #360:"
echo 'part of change #360' >> ${WC}/trunk/INSTALL
echo 'part of change #360' >> ${WC}/trunk/subversion/clients/win32/WinSVN/WinSVN.vbp
echo 'part of change #360' >> ${WC}/trunk/subversion/clients/cmdline/README
echo 'part of change #360' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target5.txt
echo 'part of change #360' >> ${WC}/trunk/doc/programmer/design/architecture.texi
${SVN} commit -m 'commit #360' ${WC}/trunk/INSTALL ${WC}/trunk/subversion/clients/win32/WinSVN/WinSVN.vbp ${WC}/trunk/subversion/clients/cmdline/README ${WC}/trunk/subversion/tests/libsvn_vcdiff/target5.txt ${WC}/trunk/doc/programmer/design/architecture.texi

################### change 361 ###################
echo ""
echo "Doing commit #361:"
echo 'part of change #361' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.h
echo 'part of change #361' >> ${WC}/trunk/ac-helpers/svn-apache.m4
echo 'part of change #361' >> ${WC}/trunk/subversion/libsvn_fs/rev-table.c
${SVN} commit -m 'commit #361' ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.h ${WC}/trunk/ac-helpers/svn-apache.m4 ${WC}/trunk/subversion/libsvn_fs/rev-table.c

################### change 362 ###################
echo ""
echo "Doing commit #362:"
echo 'part of change #362' >> ${WC}/trunk/subversion/libsvn_repos/rev_hunt.c
echo 'part of change #362' >> ${WC}/trunk/subversion/tests/libsvn_delta/random_test.dsp
${SVN} commit -m 'commit #362' ${WC}/trunk/subversion/libsvn_repos/rev_hunt.c ${WC}/trunk/subversion/tests/libsvn_delta/random_test.dsp

################### change 363 ###################
echo ""
echo "Doing commit #363:"
echo 'part of change #363' >> ${WC}/trunk/subversion/clients/win32/svn_com/svn_com.dsp
echo 'part of change #363' >> ${WC}/trunk/subversion/include/svn_path.h
echo 'part of change #363' >> ${WC}/trunk/expat-lite/latin1tab.h
echo 'part of change #363' >> ${WC}/trunk/expat-lite/asciitab.h
echo 'part of change #363' >> ${WC}/trunk/subversion/libsvn_ra_local/ra_plugin.c
echo 'part of change #363' >> ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.h
echo 'part of change #363' >> ${WC}/trunk/expat-lite/xmltok.h
echo 'part of change #363' >> ${WC}/trunk/subversion/libsvn_fs/err.h
echo 'part of change #363' >> ${WC}/trunk/subversion/libsvn_fs/proplist.c
echo 'part of change #363' >> ${WC}/trunk/subversion.dsp
${SVN} commit -m 'commit #363' ${WC}/trunk/subversion/clients/win32/svn_com/svn_com.dsp ${WC}/trunk/subversion/include/svn_path.h ${WC}/trunk/expat-lite/latin1tab.h ${WC}/trunk/expat-lite/asciitab.h ${WC}/trunk/subversion/libsvn_ra_local/ra_plugin.c ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.h ${WC}/trunk/expat-lite/xmltok.h ${WC}/trunk/subversion/libsvn_fs/err.h ${WC}/trunk/subversion/libsvn_fs/proplist.c ${WC}/trunk/subversion.dsp

################### change 364 ###################
echo ""
echo "Doing commit #364:"
echo 'part of change #364' >> ${WC}/trunk/subversion/libsvn_fs/txn-table.h
echo 'part of change #364' >> ${WC}/trunk/subversion/clients/win32/SVNControls/ppgMain.pag
echo 'part of change #364' >> ${WC}/trunk/subversion/libsvn_subr/sorts.c
echo 'part of change #364' >> ${WC}/trunk/subversion/clients/cmdline/help-cmd.c
echo 'part of change #364' >> ${WC}/trunk/subversion/mod_dav_svn/deadprops.c
echo 'part of change #364' >> ${WC}/trunk/subversion/tests/libsvn_delta/xml-output-test.c
echo 'part of change #364' >> ${WC}/trunk/subversion/clients/win32/SVNControls/mGDI.bas
${SVN} commit -m 'commit #364' ${WC}/trunk/subversion/libsvn_fs/txn-table.h ${WC}/trunk/subversion/clients/win32/SVNControls/ppgMain.pag ${WC}/trunk/subversion/libsvn_subr/sorts.c ${WC}/trunk/subversion/clients/cmdline/help-cmd.c ${WC}/trunk/subversion/mod_dav_svn/deadprops.c ${WC}/trunk/subversion/tests/libsvn_delta/xml-output-test.c ${WC}/trunk/subversion/clients/win32/SVNControls/mGDI.bas

################### change 365 ###################
echo ""
echo "Doing commit #365:"
echo 'part of change #365' >> ${WC}/trunk/subversion/libsvn_subr/path.c
${SVN} commit -m 'commit #365' ${WC}/trunk/subversion/libsvn_subr/path.c

################### change 366 ###################
echo ""
echo "Doing commit #366:"
echo 'part of change #366' >> ${WC}/trunk/subversion/libsvn_fs/reps-strings.h
echo 'part of change #366' >> ${WC}/trunk/www/project_faq.html
echo 'part of change #366' >> ${WC}/trunk/subversion/libsvn_client/client.h
echo 'part of change #366' >> ${WC}/trunk/subversion/libsvn_repos/README
echo 'part of change #366' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.rgs
echo 'part of change #366' >> ${WC}/trunk/doc/programmer/design/model.texi
echo 'part of change #366' >> ${WC}/trunk/subversion/include/svn_sorts.h
echo 'part of change #366' >> ${WC}/trunk/subversion/tests/libsvn_subr/hashdump-test.c
${SVN} commit -m 'commit #366' ${WC}/trunk/subversion/libsvn_fs/reps-strings.h ${WC}/trunk/www/project_faq.html ${WC}/trunk/subversion/libsvn_client/client.h ${WC}/trunk/subversion/libsvn_repos/README ${WC}/trunk/subversion/clients/win32/svn_com/SVN.rgs ${WC}/trunk/doc/programmer/design/model.texi ${WC}/trunk/subversion/include/svn_sorts.h ${WC}/trunk/subversion/tests/libsvn_subr/hashdump-test.c

################### change 367 ###################
echo ""
echo "Doing commit #367:"
echo 'part of change #367' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/__init__.py
echo 'part of change #367' >> ${WC}/trunk/subversion/clients/cmdline/subversion_client.dsp
echo 'part of change #367' >> ${WC}/trunk/subversion/include/svn_client.h
echo 'part of change #367' >> ${WC}/trunk/subversion/bindings/svn_delta.i
${SVN} commit -m 'commit #367' ${WC}/trunk/subversion/tests/clients/cmdline/svntest/__init__.py ${WC}/trunk/subversion/clients/cmdline/subversion_client.dsp ${WC}/trunk/subversion/include/svn_client.h ${WC}/trunk/subversion/bindings/svn_delta.i

################### change 368 ###################
echo ""
echo "Doing commit #368:"
echo 'part of change #368' >> ${WC}/trunk/PORTING
echo 'part of change #368' >> ${WC}/trunk/subversion/bindings/svn_error.i
echo 'part of change #368' >> ${WC}/trunk/subversion/include/svn_io.h
echo 'part of change #368' >> ${WC}/trunk/PORTING
echo 'part of change #368' >> ${WC}/trunk/subversion/libsvn_client/auth.c
echo 'part of change #368' >> ${WC}/trunk/doc/user/manual/dirversioning.texi
${SVN} commit -m 'commit #368' ${WC}/trunk/PORTING ${WC}/trunk/subversion/bindings/svn_error.i ${WC}/trunk/subversion/include/svn_io.h ${WC}/trunk/PORTING ${WC}/trunk/subversion/libsvn_client/auth.c ${WC}/trunk/doc/user/manual/dirversioning.texi

################### change 369 ###################
echo ""
echo "Doing commit #369:"
echo 'part of change #369' >> ${WC}/trunk/doc/programmer/design/svn-design.texi
echo 'part of change #369' >> ${WC}/trunk/subversion/tests/libsvn_fs/skel-test.c
echo 'part of change #369' >> ${WC}/trunk/tools/hook-scripts/README
echo 'part of change #369' >> ${WC}/trunk/configure.in
echo 'part of change #369' >> ${WC}/trunk/doc/user/manual/svn-manual.html
echo 'part of change #369' >> ${WC}/trunk/subversion/include/svn_wc.h
echo 'part of change #369' >> ${WC}/trunk/www/cvs_help.html
${SVN} commit -m 'commit #369' ${WC}/trunk/doc/programmer/design/svn-design.texi ${WC}/trunk/subversion/tests/libsvn_fs/skel-test.c ${WC}/trunk/tools/hook-scripts/README ${WC}/trunk/configure.in ${WC}/trunk/doc/user/manual/svn-manual.html ${WC}/trunk/subversion/include/svn_wc.h ${WC}/trunk/www/cvs_help.html

################### change 370 ###################
echo ""
echo "Doing commit #370:"
echo 'part of change #370' >> ${WC}/trunk/subversion/tests/libsvn_wc/checkout-1.txt
echo 'part of change #370' >> ${WC}/trunk/subversion/libsvn_wc/adm_files.c
echo 'part of change #370' >> ${WC}/trunk/subversion/tests/xml/up2.xml
echo 'part of change #370' >> ${WC}/trunk/notes/difftools/pics/README
${SVN} commit -m 'commit #370' ${WC}/trunk/subversion/tests/libsvn_wc/checkout-1.txt ${WC}/trunk/subversion/libsvn_wc/adm_files.c ${WC}/trunk/subversion/tests/xml/up2.xml ${WC}/trunk/notes/difftools/pics/README

################### change 371 ###################
echo ""
echo "Doing commit #371:"
echo 'part of change #371' >> ${WC}/trunk/notes/the_update_problem.txt
echo 'part of change #371' >> ${WC}/trunk/subversion/clients/win32/WinSVN/DriveHelpers.bas
echo 'part of change #371' >> ${WC}/trunk/subversion/libsvn_ra_dav/ra_dav.h
echo 'part of change #371' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Client.java
${SVN} commit -m 'commit #371' ${WC}/trunk/notes/the_update_problem.txt ${WC}/trunk/subversion/clients/win32/WinSVN/DriveHelpers.bas ${WC}/trunk/subversion/libsvn_ra_dav/ra_dav.h ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Client.java

################### change 372 ###################
echo ""
echo "Doing commit #372:"
echo 'part of change #372' >> ${WC}/trunk/subversion/libsvn_fs/txn-table.c
echo 'part of change #372' >> ${WC}/trunk/notes/difftools/pics/xxdiff-README
echo 'part of change #372' >> ${WC}/trunk/expat-lite/utf8tab.h
echo 'part of change #372' >> ${WC}/trunk/notes/entries-handling.txt
${SVN} commit -m 'commit #372' ${WC}/trunk/subversion/libsvn_fs/txn-table.c ${WC}/trunk/notes/difftools/pics/xxdiff-README ${WC}/trunk/expat-lite/utf8tab.h ${WC}/trunk/notes/entries-handling.txt

################### change 373 ###################
echo ""
echo "Doing commit #373:"
echo 'part of change #373' >> ${WC}/trunk/www/project_source.html
${SVN} commit -m 'commit #373' ${WC}/trunk/www/project_source.html

################### change 374 ###################
echo ""
echo "Doing commit #374:"
echo 'part of change #374' >> ${WC}/trunk/subversion/clients/cmdline/revert-cmd.c
echo 'part of change #374' >> ${WC}/trunk/subversion/libsvn_ra_local/ra_local.h
echo 'part of change #374' >> ${WC}/trunk/subversion/libsvn_ra_dav/options.c
echo 'part of change #374' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt
${SVN} commit -m 'commit #374' ${WC}/trunk/subversion/clients/cmdline/revert-cmd.c ${WC}/trunk/subversion/libsvn_ra_local/ra_local.h ${WC}/trunk/subversion/libsvn_ra_dav/options.c ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt

################### change 375 ###################
echo ""
echo "Doing commit #375:"
echo 'part of change #375' >> ${WC}/trunk/doc/programmer/design/server.texi
echo 'part of change #375' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/main.py
echo 'part of change #375' >> ${WC}/trunk/subversion/clients/win32/svn_com/resource.h
echo 'part of change #375' >> ${WC}/trunk/subversion/libsvn_repos/reporter.c
echo 'part of change #375' >> ${WC}/trunk/subversion/libsvn_subr/svn_string.c
echo 'part of change #375' >> ${WC}/trunk/subversion/mod_dav_svn/merge.c
echo 'part of change #375' >> ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h
echo 'part of change #375' >> ${WC}/trunk/subversion/mod_dav_svn/util.c
${SVN} commit -m 'commit #375' ${WC}/trunk/doc/programmer/design/server.texi ${WC}/trunk/subversion/tests/clients/cmdline/svntest/main.py ${WC}/trunk/subversion/clients/win32/svn_com/resource.h ${WC}/trunk/subversion/libsvn_repos/reporter.c ${WC}/trunk/subversion/libsvn_subr/svn_string.c ${WC}/trunk/subversion/mod_dav_svn/merge.c ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h ${WC}/trunk/subversion/mod_dav_svn/util.c

################### change 376 ###################
echo ""
echo "Doing commit #376:"
echo 'part of change #376' >> ${WC}/trunk/subversion/clients/cmdline/update-cmd.c
echo 'part of change #376' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cScrollBars.cls
echo 'part of change #376' >> ${WC}/trunk/subversion/libsvn_client/apply_edits.c
${SVN} commit -m 'commit #376' ${WC}/trunk/subversion/clients/cmdline/update-cmd.c ${WC}/trunk/subversion/clients/win32/SVNControls/cScrollBars.cls ${WC}/trunk/subversion/libsvn_client/apply_edits.c

################### change 377 ###################
echo ""
echo "Doing commit #377:"
echo 'part of change #377' >> ${WC}/trunk/subversion/mod_dav_svn/dav_svn.h
echo 'part of change #377' >> ${WC}/trunk/subversion/libsvn_fs/rev-table.h
echo 'part of change #377' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target4.txt
echo 'part of change #377' >> ${WC}/trunk/subversion/libsvn_fs/libsvn_fs.dsp
echo 'part of change #377' >> ${WC}/trunk/subversion/clients/cmdline/trace-commit.c
echo 'part of change #377' >> ${WC}/trunk/tools/hook-scripts/README
echo 'part of change #377' >> ${WC}/trunk/subversion/libsvn_subr/target.c
echo 'part of change #377' >> ${WC}/trunk/subversion/tests/libsvn_subr/path-test.c
echo 'part of change #377' >> ${WC}/trunk/subversion/bindings/svn_types.i
echo 'part of change #377' >> ${WC}/trunk/subversion/clients/cmdline/util.c
${SVN} commit -m 'commit #377' ${WC}/trunk/subversion/mod_dav_svn/dav_svn.h ${WC}/trunk/subversion/libsvn_fs/rev-table.h ${WC}/trunk/subversion/tests/libsvn_vcdiff/target4.txt ${WC}/trunk/subversion/libsvn_fs/libsvn_fs.dsp ${WC}/trunk/subversion/clients/cmdline/trace-commit.c ${WC}/trunk/tools/hook-scripts/README ${WC}/trunk/subversion/libsvn_subr/target.c ${WC}/trunk/subversion/tests/libsvn_subr/path-test.c ${WC}/trunk/subversion/bindings/svn_types.i ${WC}/trunk/subversion/clients/cmdline/util.c

################### change 378 ###################
echo ""
echo "Doing commit #378:"
echo 'part of change #378' >> ${WC}/trunk/svn_private_config.h.in
echo 'part of change #378' >> ${WC}/trunk/gen-make.py
echo 'part of change #378' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.mk
echo 'part of change #378' >> ${WC}/trunk/ac-helpers/libtool.m4
echo 'part of change #378' >> ${WC}/trunk/subversion/clients/win32/SVNControls/type.dat
echo 'part of change #378' >> ${WC}/trunk/subversion/tests/greek-tree.txt
echo 'part of change #378' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.c
${SVN} commit -m 'commit #378' ${WC}/trunk/svn_private_config.h.in ${WC}/trunk/gen-make.py ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.mk ${WC}/trunk/ac-helpers/libtool.m4 ${WC}/trunk/subversion/clients/win32/SVNControls/type.dat ${WC}/trunk/subversion/tests/greek-tree.txt ${WC}/trunk/subversion/libsvn_fs/reps-table.c

################### change 379 ###################
echo ""
echo "Doing commit #379:"
echo 'part of change #379' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target4.txt
echo 'part of change #379' >> ${WC}/trunk/subversion/clients/cmdline/checkout-cmd.c
echo 'part of change #379' >> ${WC}/trunk/subversion/tests/README
echo 'part of change #379' >> ${WC}/trunk/subversion/libsvn_subr/libsvn_subr.dsp
echo 'part of change #379' >> ${WC}/trunk/expat-lite/CHANGES
echo 'part of change #379' >> ${WC}/trunk/gen-make.py
echo 'part of change #379' >> ${WC}/trunk/subversion/tests/libsvn_fs/skel_test.dsp
${SVN} commit -m 'commit #379' ${WC}/trunk/subversion/tests/libsvn_vcdiff/target4.txt ${WC}/trunk/subversion/clients/cmdline/checkout-cmd.c ${WC}/trunk/subversion/tests/README ${WC}/trunk/subversion/libsvn_subr/libsvn_subr.dsp ${WC}/trunk/expat-lite/CHANGES ${WC}/trunk/gen-make.py ${WC}/trunk/subversion/tests/libsvn_fs/skel_test.dsp

################### change 380 ###################
echo ""
echo "Doing commit #380:"
echo 'part of change #380' >> ${WC}/trunk/notes/difftools/pics/FileMerge-README
echo 'part of change #380' >> ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.cpp
echo 'part of change #380' >> ${WC}/trunk/subversion/clients/cmdline/prompt.c
echo 'part of change #380' >> ${WC}/trunk/expat-lite/xmldef.h
echo 'part of change #380' >> ${WC}/trunk/subversion/libsvn_ra/ra_loader.c
echo 'part of change #380' >> ${WC}/trunk/tools/cvs2svn/design-notes.txt
echo 'part of change #380' >> ${WC}/trunk/README
echo 'part of change #380' >> ${WC}/trunk/subversion/tests/libsvn_subr/tests_libsvn_subr_target_test.dsp
echo 'part of change #380' >> ${WC}/trunk/subversion/libsvn_subr/xml.c
${SVN} commit -m 'commit #380' ${WC}/trunk/notes/difftools/pics/FileMerge-README ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.cpp ${WC}/trunk/subversion/clients/cmdline/prompt.c ${WC}/trunk/expat-lite/xmldef.h ${WC}/trunk/subversion/libsvn_ra/ra_loader.c ${WC}/trunk/tools/cvs2svn/design-notes.txt ${WC}/trunk/README ${WC}/trunk/subversion/tests/libsvn_subr/tests_libsvn_subr_target_test.dsp ${WC}/trunk/subversion/libsvn_subr/xml.c

################### change 381 ###################
echo ""
echo "Doing commit #381:"
echo 'part of change #381' >> ${WC}/trunk/build-outputs.mk
echo 'part of change #381' >> ${WC}/trunk/subversion/bindings/svn_types.i
echo 'part of change #381' >> ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse-test.c
echo 'part of change #381' >> ${WC}/trunk/subversion/mod_dav_svn/util.c
echo 'part of change #381' >> ${WC}/trunk/subversion/libsvn_wc/adm_files.c
echo 'part of change #381' >> ${WC}/trunk/ac-helpers/ltmain.sh
echo 'part of change #381' >> ${WC}/trunk/subversion/clients/cmdline/status-cmd.c
${SVN} commit -m 'commit #381' ${WC}/trunk/build-outputs.mk ${WC}/trunk/subversion/bindings/svn_types.i ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse-test.c ${WC}/trunk/subversion/mod_dav_svn/util.c ${WC}/trunk/subversion/libsvn_wc/adm_files.c ${WC}/trunk/ac-helpers/ltmain.sh ${WC}/trunk/subversion/clients/cmdline/status-cmd.c

################### change 382 ###################
echo ""
echo "Doing commit #382:"
echo 'part of change #382' >> ${WC}/trunk/subversion/libsvn_repos/reporter.c
echo 'part of change #382' >> ${WC}/trunk/subversion/svnlook/main.c
echo 'part of change #382' >> ${WC}/trunk/COPYING
echo 'part of change #382' >> ${WC}/trunk/subversion/clients/win32/svn_com/svn_com.dsp
echo 'part of change #382' >> ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.vbp
echo 'part of change #382' >> ${WC}/trunk/subversion/libsvn_fs/id.c
echo 'part of change #382' >> ${WC}/trunk/subversion/tests/libsvn_delta/svndiff-test.c
echo 'part of change #382' >> ${WC}/trunk/expat-lite/xmltok.h
echo 'part of change #382' >> ${WC}/trunk/doc/user/manual/removals.texi
echo 'part of change #382' >> ${WC}/trunk/doc/user/manual/svn-manual.txt
${SVN} commit -m 'commit #382' ${WC}/trunk/subversion/libsvn_repos/reporter.c ${WC}/trunk/subversion/svnlook/main.c ${WC}/trunk/COPYING ${WC}/trunk/subversion/clients/win32/svn_com/svn_com.dsp ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.vbp ${WC}/trunk/subversion/libsvn_fs/id.c ${WC}/trunk/subversion/tests/libsvn_delta/svndiff-test.c ${WC}/trunk/expat-lite/xmltok.h ${WC}/trunk/doc/user/manual/removals.texi ${WC}/trunk/doc/user/manual/svn-manual.txt

################### change 383 ###################
echo ""
echo "Doing commit #383:"
echo 'part of change #383' >> ${WC}/trunk/subversion/libsvn_wc/adm_files.c
echo 'part of change #383' >> ${WC}/trunk/subversion/clients/cmdline/trace-commit.c
echo 'part of change #383' >> ${WC}/trunk/www/index.html
echo 'part of change #383' >> ${WC}/trunk/doc/programmer/design/svn-design.html
echo 'part of change #383' >> ${WC}/trunk/subversion/include/svn_quoprint.h
echo 'part of change #383' >> ${WC}/trunk/doc/user/manual/model.texi
echo 'part of change #383' >> ${WC}/trunk/subversion/clients/cmdline/revert-cmd.c
echo 'part of change #383' >> ${WC}/trunk/subversion/libsvn_subr/svn_base64.c
echo 'part of change #383' >> ${WC}/trunk/subversion/tests/fs-helpers.c
echo 'part of change #383' >> ${WC}/trunk/notes/txdelta_sanity
${SVN} commit -m 'commit #383' ${WC}/trunk/subversion/libsvn_wc/adm_files.c ${WC}/trunk/subversion/clients/cmdline/trace-commit.c ${WC}/trunk/www/index.html ${WC}/trunk/doc/programmer/design/svn-design.html ${WC}/trunk/subversion/include/svn_quoprint.h ${WC}/trunk/doc/user/manual/model.texi ${WC}/trunk/subversion/clients/cmdline/revert-cmd.c ${WC}/trunk/subversion/libsvn_subr/svn_base64.c ${WC}/trunk/subversion/tests/fs-helpers.c ${WC}/trunk/notes/txdelta_sanity

################### change 384 ###################
echo ""
echo "Doing commit #384:"
echo 'part of change #384' >> ${WC}/trunk/subversion/clients/win32/svn_com/misc.cpp
echo 'part of change #384' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.h
echo 'part of change #384' >> ${WC}/trunk/subversion/libsvn_fs/skel.c
echo 'part of change #384' >> ${WC}/trunk/subversion/include/svn_path.h
echo 'part of change #384' >> ${WC}/trunk/subversion/tests/libsvn_wc/simple.delta
echo 'part of change #384' >> ${WC}/trunk/www/license-1.html
echo 'part of change #384' >> ${WC}/trunk/subversion/libsvn_subr/hashdump.c
echo 'part of change #384' >> ${WC}/trunk/notes/guis/planning.txt
echo 'part of change #384' >> ${WC}/trunk/tools/check-license.py
echo 'part of change #384' >> ${WC}/trunk/subversion/clients/cmdline/feedback.c
${SVN} commit -m 'commit #384' ${WC}/trunk/subversion/clients/win32/svn_com/misc.cpp ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.h ${WC}/trunk/subversion/libsvn_fs/skel.c ${WC}/trunk/subversion/include/svn_path.h ${WC}/trunk/subversion/tests/libsvn_wc/simple.delta ${WC}/trunk/www/license-1.html ${WC}/trunk/subversion/libsvn_subr/hashdump.c ${WC}/trunk/notes/guis/planning.txt ${WC}/trunk/tools/check-license.py ${WC}/trunk/subversion/clients/cmdline/feedback.c

################### change 385 ###################
echo ""
echo "Doing commit #385:"
echo 'part of change #385' >> ${WC}/trunk/subversion/tests/fs-helpers.h
echo 'part of change #385' >> ${WC}/trunk/subversion/libsvn_ra_dav/ra_dav.h
echo 'part of change #385' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cShellSort.cls
echo 'part of change #385' >> ${WC}/trunk/subversion/include/svn_time.h
echo 'part of change #385' >> ${WC}/trunk/Makefile.in
echo 'part of change #385' >> ${WC}/trunk/subversion/libsvn_subr/path.c
echo 'part of change #385' >> ${WC}/trunk/subversion/tests/xml/up1a-inline.xml
echo 'part of change #385' >> ${WC}/trunk/subversion/libsvn_wc/props.c
echo 'part of change #385' >> ${WC}/trunk/www/cvs_help.html
echo 'part of change #385' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/WorkingCopy.java
${SVN} commit -m 'commit #385' ${WC}/trunk/subversion/tests/fs-helpers.h ${WC}/trunk/subversion/libsvn_ra_dav/ra_dav.h ${WC}/trunk/subversion/clients/win32/SVNControls/cShellSort.cls ${WC}/trunk/subversion/include/svn_time.h ${WC}/trunk/Makefile.in ${WC}/trunk/subversion/libsvn_subr/path.c ${WC}/trunk/subversion/tests/xml/up1a-inline.xml ${WC}/trunk/subversion/libsvn_wc/props.c ${WC}/trunk/www/cvs_help.html ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/WorkingCopy.java

################### change 386 ###################
echo ""
echo "Doing commit #386:"
echo 'part of change #386' >> ${WC}/trunk/subversion/tests/xml/up1b-inline.xml
echo 'part of change #386' >> ${WC}/trunk/subversion/svnlook/svnlook.dsp
${SVN} commit -m 'commit #386' ${WC}/trunk/subversion/tests/xml/up1b-inline.xml ${WC}/trunk/subversion/svnlook/svnlook.dsp

################### change 387 ###################
echo ""
echo "Doing commit #387:"
echo 'part of change #387' >> ${WC}/trunk/subversion/clients/cmdline/checkout-cmd.c
echo 'part of change #387' >> ${WC}/trunk/subversion/libsvn_client/update.c
echo 'part of change #387' >> ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.ctl
echo 'part of change #387' >> ${WC}/trunk/subversion/clients/cmdline/status-cmd.c
echo 'part of change #387' >> ${WC}/trunk/ac-helpers/berkeley-db.m4
echo 'part of change #387' >> ${WC}/trunk/subversion/tests/libsvn_wc/checkout-test.c
echo 'part of change #387' >> ${WC}/trunk/subversion/clients/win32/svn_com/misc.h
echo 'part of change #387' >> ${WC}/trunk/subversion/libsvn_ra_local/split_url.c
echo 'part of change #387' >> ${WC}/trunk/ac-helpers/libtool.m4
echo 'part of change #387' >> ${WC}/trunk/subversion/libsvn_client/client.h
${SVN} commit -m 'commit #387' ${WC}/trunk/subversion/clients/cmdline/checkout-cmd.c ${WC}/trunk/subversion/libsvn_client/update.c ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.ctl ${WC}/trunk/subversion/clients/cmdline/status-cmd.c ${WC}/trunk/ac-helpers/berkeley-db.m4 ${WC}/trunk/subversion/tests/libsvn_wc/checkout-test.c ${WC}/trunk/subversion/clients/win32/svn_com/misc.h ${WC}/trunk/subversion/libsvn_ra_local/split_url.c ${WC}/trunk/ac-helpers/libtool.m4 ${WC}/trunk/subversion/libsvn_client/client.h

################### change 388 ###################
echo ""
echo "Doing commit #388:"
echo 'part of change #388' >> ${WC}/trunk/subversion/libsvn_client/apply_edits.c
echo 'part of change #388' >> ${WC}/trunk/subversion/libsvn_subr/getdate.c
echo 'part of change #388' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.mk
${SVN} commit -m 'commit #388' ${WC}/trunk/subversion/libsvn_client/apply_edits.c ${WC}/trunk/subversion/libsvn_subr/getdate.c ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.mk

################### change 389 ###################
echo ""
echo "Doing commit #389:"
echo 'part of change #389' >> ${WC}/trunk/subversion/libsvn_delta/compose_editors.c
echo 'part of change #389' >> ${WC}/trunk/doc/svn-doc.el
echo 'part of change #389' >> ${WC}/trunk/subversion/libsvn_fs/reps-strings.c
${SVN} commit -m 'commit #389' ${WC}/trunk/subversion/libsvn_delta/compose_editors.c ${WC}/trunk/doc/svn-doc.el ${WC}/trunk/subversion/libsvn_fs/reps-strings.c

################### change 390 ###################
echo ""
echo "Doing commit #390:"
echo 'part of change #390' >> ${WC}/trunk/STACK
echo 'part of change #390' >> ${WC}/trunk/subversion/bindings/README
echo 'part of change #390' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm
echo 'part of change #390' >> ${WC}/trunk/subversion/libsvn_client/delete.c
echo 'part of change #390' >> ${WC}/trunk/subversion/libsvn_fs/txn-table.h
${SVN} commit -m 'commit #390' ${WC}/trunk/STACK ${WC}/trunk/subversion/bindings/README ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm ${WC}/trunk/subversion/libsvn_client/delete.c ${WC}/trunk/subversion/libsvn_fs/txn-table.h

################### change 391 ###################
echo ""
echo "Doing commit #391:"
echo 'part of change #391' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/entry.py
echo 'part of change #391' >> ${WC}/trunk/subversion/svnlook/main.c
echo 'part of change #391' >> ${WC}/trunk/ac-helpers/ltconfig
echo 'part of change #391' >> ${WC}/trunk/subversion/svnlook/main.c
echo 'part of change #391' >> ${WC}/trunk/doc/programmer/design/model.texi
echo 'part of change #391' >> ${WC}/trunk/subversion/clients/cmdline/import-cmd.c
echo 'part of change #391' >> ${WC}/trunk/subversion/libsvn_subr/svn_base64.c
echo 'part of change #391' >> ${WC}/trunk/subversion/libsvn_fs/fs.c
${SVN} commit -m 'commit #391' ${WC}/trunk/subversion/tests/clients/cmdline/svntest/entry.py ${WC}/trunk/subversion/svnlook/main.c ${WC}/trunk/ac-helpers/ltconfig ${WC}/trunk/subversion/svnlook/main.c ${WC}/trunk/doc/programmer/design/model.texi ${WC}/trunk/subversion/clients/cmdline/import-cmd.c ${WC}/trunk/subversion/libsvn_subr/svn_base64.c ${WC}/trunk/subversion/libsvn_fs/fs.c

################### change 392 ###################
echo ""
echo "Doing commit #392:"
echo 'part of change #392' >> ${WC}/trunk/subversion/clients/win32/WinSVN/WinSVN.vbp
echo 'part of change #392' >> ${WC}/trunk/subversion/bindings/README
echo 'part of change #392' >> ${WC}/trunk/subversion/libsvn_client/add.c
echo 'part of change #392' >> ${WC}/trunk/subversion/clients/cmdline/status-cmd.c
echo 'part of change #392' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.h
echo 'part of change #392' >> ${WC}/trunk/subversion/tests/greek-tree.txt
echo 'part of change #392' >> ${WC}/trunk/subversion/libsvn_subr/sorts.c
echo 'part of change #392' >> ${WC}/trunk/notes/txdelta_sanity
${SVN} commit -m 'commit #392' ${WC}/trunk/subversion/clients/win32/WinSVN/WinSVN.vbp ${WC}/trunk/subversion/bindings/README ${WC}/trunk/subversion/libsvn_client/add.c ${WC}/trunk/subversion/clients/cmdline/status-cmd.c ${WC}/trunk/subversion/clients/win32/svn_com/SVN.h ${WC}/trunk/subversion/tests/greek-tree.txt ${WC}/trunk/subversion/libsvn_subr/sorts.c ${WC}/trunk/notes/txdelta_sanity

################### change 393 ###################
echo ""
echo "Doing commit #393:"
echo 'part of change #393' >> ${WC}/trunk/tools/hook-scripts/README
echo 'part of change #393' >> ${WC}/trunk/subversion/tests/xml/up-props.xml
echo 'part of change #393' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.rgs
echo 'part of change #393' >> ${WC}/trunk/subversion/tests/libsvn_ra_local/ra-local-test.c
echo 'part of change #393' >> ${WC}/trunk/notes/guis/planning.txt
echo 'part of change #393' >> ${WC}/trunk/notes/txdelta_sanity
${SVN} commit -m 'commit #393' ${WC}/trunk/tools/hook-scripts/README ${WC}/trunk/subversion/tests/xml/up-props.xml ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.rgs ${WC}/trunk/subversion/tests/libsvn_ra_local/ra-local-test.c ${WC}/trunk/notes/guis/planning.txt ${WC}/trunk/notes/txdelta_sanity

################### change 394 ###################
echo ""
echo "Doing commit #394:"
echo 'part of change #394' >> ${WC}/trunk/doc/programmer/design/future.texi
${SVN} commit -m 'commit #394' ${WC}/trunk/doc/programmer/design/future.texi

################### change 395 ###################
echo ""
echo "Doing commit #395:"
echo 'part of change #395' >> ${WC}/trunk/NEWS
echo 'part of change #395' >> ${WC}/trunk/subversion/clients/cmdline/delete-cmd.c
echo 'part of change #395' >> ${WC}/trunk/subversion/libsvn_wc/get_editor.c
echo 'part of change #395' >> ${WC}/trunk/subversion/include/svn_hash.h
${SVN} commit -m 'commit #395' ${WC}/trunk/NEWS ${WC}/trunk/subversion/clients/cmdline/delete-cmd.c ${WC}/trunk/subversion/libsvn_wc/get_editor.c ${WC}/trunk/subversion/include/svn_hash.h

################### change 396 ###################
echo ""
echo "Doing commit #396:"
echo 'part of change #396' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TreeDeltaEditor.java
echo 'part of change #396' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt
echo 'part of change #396' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaOp.java
echo 'part of change #396' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.cpp
echo 'part of change #396' >> ${WC}/trunk/subversion/bindings/svn_ra.i
echo 'part of change #396' >> ${WC}/trunk/subversion/libsvn_fs/key-gen.h
echo 'part of change #396' >> ${WC}/trunk/build.conf
${SVN} commit -m 'commit #396' ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TreeDeltaEditor.java ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaOp.java ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.cpp ${WC}/trunk/subversion/bindings/svn_ra.i ${WC}/trunk/subversion/libsvn_fs/key-gen.h ${WC}/trunk/build.conf

################### change 397 ###################
echo ""
echo "Doing commit #397:"
echo 'part of change #397' >> ${WC}/trunk/subversion/tests/xml/co1-postfix.xml
echo 'part of change #397' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm
echo 'part of change #397' >> ${WC}/trunk/notes/fs-improvements.txt
echo 'part of change #397' >> ${WC}/trunk/subversion/libsvn_delta/default_editor.c
echo 'part of change #397' >> ${WC}/trunk/PORTING
echo 'part of change #397' >> ${WC}/trunk/subversion/libsvn_delta/track_editor.c
echo 'part of change #397' >> ${WC}/trunk/subversion/tests/xml/pipatch.xml
${SVN} commit -m 'commit #397' ${WC}/trunk/subversion/tests/xml/co1-postfix.xml ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm ${WC}/trunk/notes/fs-improvements.txt ${WC}/trunk/subversion/libsvn_delta/default_editor.c ${WC}/trunk/PORTING ${WC}/trunk/subversion/libsvn_delta/track_editor.c ${WC}/trunk/subversion/tests/xml/pipatch.xml

################### change 398 ###################
echo ""
echo "Doing commit #398:"
echo 'part of change #398' >> ${WC}/trunk/doc/user/manual/svn-manual.texi
echo 'part of change #398' >> ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.ctl
echo 'part of change #398' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaOp.java
echo 'part of change #398' >> ${WC}/trunk/subversion/libsvn_fs/node-rev.h
echo 'part of change #398' >> ${WC}/trunk/build.conf
echo 'part of change #398' >> ${WC}/trunk/notes/guis/README
echo 'part of change #398' >> ${WC}/trunk/subversion/libsvn_wc/adm_files.c
echo 'part of change #398' >> ${WC}/trunk/subversion/include/svn_delta.h
echo 'part of change #398' >> ${WC}/trunk/NEWS
${SVN} commit -m 'commit #398' ${WC}/trunk/doc/user/manual/svn-manual.texi ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.ctl ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaOp.java ${WC}/trunk/subversion/libsvn_fs/node-rev.h ${WC}/trunk/build.conf ${WC}/trunk/notes/guis/README ${WC}/trunk/subversion/libsvn_wc/adm_files.c ${WC}/trunk/subversion/include/svn_delta.h ${WC}/trunk/NEWS

################### change 399 ###################
echo ""
echo "Doing commit #399:"
echo 'part of change #399' >> ${WC}/trunk/subversion/clients/win32/WinSVN/Startup.bas
echo 'part of change #399' >> ${WC}/trunk/subversion/tests/xml/README
${SVN} commit -m 'commit #399' ${WC}/trunk/subversion/clients/win32/WinSVN/Startup.bas ${WC}/trunk/subversion/tests/xml/README

################### change 400 ###################
echo ""
echo "Doing commit #400:"
echo 'part of change #400' >> ${WC}/trunk/subversion/libsvn_repos/lock.c
echo 'part of change #400' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target5.txt
echo 'part of change #400' >> ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py
echo 'part of change #400' >> ${WC}/trunk/subversion/include/svn_time.h
echo 'part of change #400' >> ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta
echo 'part of change #400' >> ${WC}/trunk/www/webdav-usage.html
echo 'part of change #400' >> ${WC}/trunk/subversion/mod_dav_svn/merge.c
${SVN} commit -m 'commit #400' ${WC}/trunk/subversion/libsvn_repos/lock.c ${WC}/trunk/subversion/tests/libsvn_vcdiff/target5.txt ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py ${WC}/trunk/subversion/include/svn_time.h ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta ${WC}/trunk/www/webdav-usage.html ${WC}/trunk/subversion/mod_dav_svn/merge.c

################### change 401 ###################
echo ""
echo "Doing commit #401:"
echo 'part of change #401' >> ${WC}/trunk/gen-make.py
echo 'part of change #401' >> ${WC}/trunk/subversion/include/svn_quoprint.h
echo 'part of change #401' >> ${WC}/trunk/subversion/tests/xml/up3.xml
echo 'part of change #401' >> ${WC}/trunk/subversion/libsvn_ra_local/checkout.c
echo 'part of change #401' >> ${WC}/trunk/subversion/tests/libsvn_subr/tests_libsvn_subr_target_test.dsp
echo 'part of change #401' >> ${WC}/trunk/subversion/include/svn_delta.h
echo 'part of change #401' >> ${WC}/trunk/subversion/libsvn_fs/dbt.c
echo 'part of change #401' >> ${WC}/trunk/subversion/bindings/svn_ra.i
echo 'part of change #401' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookGroup.frm
${SVN} commit -m 'commit #401' ${WC}/trunk/gen-make.py ${WC}/trunk/subversion/include/svn_quoprint.h ${WC}/trunk/subversion/tests/xml/up3.xml ${WC}/trunk/subversion/libsvn_ra_local/checkout.c ${WC}/trunk/subversion/tests/libsvn_subr/tests_libsvn_subr_target_test.dsp ${WC}/trunk/subversion/include/svn_delta.h ${WC}/trunk/subversion/libsvn_fs/dbt.c ${WC}/trunk/subversion/bindings/svn_ra.i ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookGroup.frm

################### change 402 ###################
echo ""
echo "Doing commit #402:"
echo 'part of change #402' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.rgs
echo 'part of change #402' >> ${WC}/trunk/subversion/clients/cmdline/update-cmd.c
echo 'part of change #402' >> ${WC}/trunk/www/license-1.html
${SVN} commit -m 'commit #402' ${WC}/trunk/subversion/clients/win32/svn_com/SVN.rgs ${WC}/trunk/subversion/clients/cmdline/update-cmd.c ${WC}/trunk/www/license-1.html

################### change 403 ###################
echo ""
echo "Doing commit #403:"
echo 'part of change #403' >> ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.cpp
echo 'part of change #403' >> ${WC}/trunk/subversion/clients/cmdline/trace-commit.c
echo 'part of change #403' >> ${WC}/trunk/subversion/clients/win32/svn_com/resource.h
${SVN} commit -m 'commit #403' ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.cpp ${WC}/trunk/subversion/clients/cmdline/trace-commit.c ${WC}/trunk/subversion/clients/win32/svn_com/resource.h

################### change 404 ###################
echo ""
echo "Doing commit #404:"
echo 'part of change #404' >> ${WC}/trunk/subversion/libsvn_client/status.c
echo 'part of change #404' >> ${WC}/trunk/subversion/libsvn_client/revert.c
echo 'part of change #404' >> ${WC}/trunk/subversion/bindings/svn_client.i
echo 'part of change #404' >> ${WC}/trunk/notes/alpha-checklist.txt
echo 'part of change #404' >> ${WC}/trunk/www/project_source.html
echo 'part of change #404' >> ${WC}/trunk/doc/programmer/WritingChangeLogs.txt
echo 'part of change #404' >> ${WC}/trunk/subversion/bindings/svn_types.i
echo 'part of change #404' >> ${WC}/trunk/subversion/include/svn_error.h
echo 'part of change #404' >> ${WC}/trunk/subversion/libsvn_fs/validate.c
echo 'part of change #404' >> ${WC}/trunk/subversion/clients/cmdline/TODO
${SVN} commit -m 'commit #404' ${WC}/trunk/subversion/libsvn_client/status.c ${WC}/trunk/subversion/libsvn_client/revert.c ${WC}/trunk/subversion/bindings/svn_client.i ${WC}/trunk/notes/alpha-checklist.txt ${WC}/trunk/www/project_source.html ${WC}/trunk/doc/programmer/WritingChangeLogs.txt ${WC}/trunk/subversion/bindings/svn_types.i ${WC}/trunk/subversion/include/svn_error.h ${WC}/trunk/subversion/libsvn_fs/validate.c ${WC}/trunk/subversion/clients/cmdline/TODO

################### change 405 ###################
echo ""
echo "Doing commit #405:"
echo 'part of change #405' >> ${WC}/trunk/subversion/libsvn_wc/libsvn_wc.dsp
${SVN} commit -m 'commit #405' ${WC}/trunk/subversion/libsvn_wc/libsvn_wc.dsp

################### change 406 ###################
echo ""
echo "Doing commit #406:"
echo 'part of change #406' >> ${WC}/trunk/subversion/clients/cmdline/diff-cmd.c
echo 'part of change #406' >> ${WC}/trunk/subversion/libsvn_subr/README.errors
echo 'part of change #406' >> ${WC}/trunk/subversion/clients/win32/svn_com/resource.h
echo 'part of change #406' >> ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.vbp
echo 'part of change #406' >> ${WC}/trunk/subversion/clients/cmdline/revert-cmd.c
echo 'part of change #406' >> ${WC}/trunk/subversion/libsvn_fs/validate.h
echo 'part of change #406' >> ${WC}/trunk/subversion/mod_dav_svn/liveprops.c
echo 'part of change #406' >> ${WC}/trunk/subversion/libsvn_fs/node-rev.h
${SVN} commit -m 'commit #406' ${WC}/trunk/subversion/clients/cmdline/diff-cmd.c ${WC}/trunk/subversion/libsvn_subr/README.errors ${WC}/trunk/subversion/clients/win32/svn_com/resource.h ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.vbp ${WC}/trunk/subversion/clients/cmdline/revert-cmd.c ${WC}/trunk/subversion/libsvn_fs/validate.h ${WC}/trunk/subversion/mod_dav_svn/liveprops.c ${WC}/trunk/subversion/libsvn_fs/node-rev.h

################### change 407 ###################
echo ""
echo "Doing commit #407:"
echo 'part of change #407' >> ${WC}/trunk/subversion/clients/win32/svn_com/svn_com.dsp
echo 'part of change #407' >> ${WC}/trunk/subversion/libsvn_wc/README
echo 'part of change #407' >> ${WC}/trunk/subversion/tests/libsvn_wc/commit_test.dsp
echo 'part of change #407' >> ${WC}/trunk/expat-lite/xmltok_ns.c
echo 'part of change #407' >> ${WC}/trunk/subversion/libsvn_ra_dav/merge.c
echo 'part of change #407' >> ${WC}/trunk/subversion/libsvn_fs/dag.h
echo 'part of change #407' >> ${WC}/trunk/subversion/libsvn_fs/key-gen.c
echo 'part of change #407' >> ${WC}/trunk/subversion/libsvn_fs/dbt.c
echo 'part of change #407' >> ${WC}/trunk/subversion/libsvn_fs/TODO
${SVN} commit -m 'commit #407' ${WC}/trunk/subversion/clients/win32/svn_com/svn_com.dsp ${WC}/trunk/subversion/libsvn_wc/README ${WC}/trunk/subversion/tests/libsvn_wc/commit_test.dsp ${WC}/trunk/expat-lite/xmltok_ns.c ${WC}/trunk/subversion/libsvn_ra_dav/merge.c ${WC}/trunk/subversion/libsvn_fs/dag.h ${WC}/trunk/subversion/libsvn_fs/key-gen.c ${WC}/trunk/subversion/libsvn_fs/dbt.c ${WC}/trunk/subversion/libsvn_fs/TODO

################### change 408 ###################
echo ""
echo "Doing commit #408:"
echo 'part of change #408' >> ${WC}/trunk/subversion/svnlook/svnlook.dsp
echo 'part of change #408' >> ${WC}/trunk/subversion/libsvn_client/delete.c
echo 'part of change #408' >> ${WC}/trunk/subversion/libsvn_repos/README
echo 'part of change #408' >> ${WC}/trunk/subversion/mod_dav_svn/dav_svn.h
echo 'part of change #408' >> ${WC}/trunk/STACK
echo 'part of change #408' >> ${WC}/trunk/notes/issues.txt
echo 'part of change #408' >> ${WC}/trunk/build-outputs.mk
${SVN} commit -m 'commit #408' ${WC}/trunk/subversion/svnlook/svnlook.dsp ${WC}/trunk/subversion/libsvn_client/delete.c ${WC}/trunk/subversion/libsvn_repos/README ${WC}/trunk/subversion/mod_dav_svn/dav_svn.h ${WC}/trunk/STACK ${WC}/trunk/notes/issues.txt ${WC}/trunk/build-outputs.mk

################### change 409 ###################
echo ""
echo "Doing commit #409:"
echo 'part of change #409' >> ${WC}/trunk/subversion/clients/cmdline/commit-cmd.c
echo 'part of change #409' >> ${WC}/trunk/subversion/libsvn_fs/tree.h
echo 'part of change #409' >> ${WC}/trunk/subversion/clients/cmdline/status-cmd.c
echo 'part of change #409' >> ${WC}/trunk/build.conf
echo 'part of change #409' >> ${WC}/trunk/subversion/clients/cmdline/prompt.c
echo 'part of change #409' >> ${WC}/trunk/subversion/tests/libsvn_delta/svndiff-test.c
echo 'part of change #409' >> ${WC}/trunk/subversion/libsvn_client/auth.c
echo 'part of change #409' >> ${WC}/trunk/ac-helpers/libtool.m4
echo 'part of change #409' >> ${WC}/trunk/subversion/include/svn_client.h
${SVN} commit -m 'commit #409' ${WC}/trunk/subversion/clients/cmdline/commit-cmd.c ${WC}/trunk/subversion/libsvn_fs/tree.h ${WC}/trunk/subversion/clients/cmdline/status-cmd.c ${WC}/trunk/build.conf ${WC}/trunk/subversion/clients/cmdline/prompt.c ${WC}/trunk/subversion/tests/libsvn_delta/svndiff-test.c ${WC}/trunk/subversion/libsvn_client/auth.c ${WC}/trunk/ac-helpers/libtool.m4 ${WC}/trunk/subversion/include/svn_client.h

################### change 410 ###################
echo ""
echo "Doing commit #410:"
echo 'part of change #410' >> ${WC}/trunk/www/project_footer.html
echo 'part of change #410' >> ${WC}/trunk/subversion/libsvn_fs/reps-strings.c
echo 'part of change #410' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.cpp
echo 'part of change #410' >> ${WC}/trunk/expat-lite/iasciitab.h
echo 'part of change #410' >> ${WC}/trunk/subversion/tests/xml/up1b-postfix.xml
echo 'part of change #410' >> ${WC}/trunk/subversion/clients/win32/WinSVN/lvh.cls
${SVN} commit -m 'commit #410' ${WC}/trunk/www/project_footer.html ${WC}/trunk/subversion/libsvn_fs/reps-strings.c ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.cpp ${WC}/trunk/expat-lite/iasciitab.h ${WC}/trunk/subversion/tests/xml/up1b-postfix.xml ${WC}/trunk/subversion/clients/win32/WinSVN/lvh.cls

################### change 411 ###################
echo ""
echo "Doing commit #411:"
echo 'part of change #411' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/actions.py
echo 'part of change #411' >> ${WC}/trunk/subversion/mod_dav_svn/util.c
echo 'part of change #411' >> ${WC}/trunk/notes/entries-handling.txt
echo 'part of change #411' >> ${WC}/trunk/notes/difftools/pics/xxdiff-README
echo 'part of change #411' >> ${WC}/trunk/subversion/libsvn_wc/status.c
echo 'part of change #411' >> ${WC}/trunk/svn_private_config.h.in
echo 'part of change #411' >> ${WC}/trunk/doc/README
echo 'part of change #411' >> ${WC}/trunk/subversion/clients/cmdline/propset-cmd.c
echo 'part of change #411' >> ${WC}/trunk/www/project_tasks.html
echo 'part of change #411' >> ${WC}/trunk/subversion/tests/libsvn_wc/commit-test.c
${SVN} commit -m 'commit #411' ${WC}/trunk/subversion/tests/clients/cmdline/svntest/actions.py ${WC}/trunk/subversion/mod_dav_svn/util.c ${WC}/trunk/notes/entries-handling.txt ${WC}/trunk/notes/difftools/pics/xxdiff-README ${WC}/trunk/subversion/libsvn_wc/status.c ${WC}/trunk/svn_private_config.h.in ${WC}/trunk/doc/README ${WC}/trunk/subversion/clients/cmdline/propset-cmd.c ${WC}/trunk/www/project_tasks.html ${WC}/trunk/subversion/tests/libsvn_wc/commit-test.c

################### change 412 ###################
echo ""
echo "Doing commit #412:"
echo 'part of change #412' >> ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py
echo 'part of change #412' >> ${WC}/trunk/subversion/tests/xml/co1-postfix.xml
echo 'part of change #412' >> ${WC}/trunk/subversion/libsvn_ra_local/checkout.c
echo 'part of change #412' >> ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse-test.c
echo 'part of change #412' >> ${WC}/trunk/subversion/tests/libsvn_wc/commit-test.c
echo 'part of change #412' >> ${WC}/trunk/expat-lite/hashtable.c
${SVN} commit -m 'commit #412' ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py ${WC}/trunk/subversion/tests/xml/co1-postfix.xml ${WC}/trunk/subversion/libsvn_ra_local/checkout.c ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse-test.c ${WC}/trunk/subversion/tests/libsvn_wc/commit-test.c ${WC}/trunk/expat-lite/hashtable.c

################### change 413 ###################
echo ""
echo "Doing commit #413:"
echo 'part of change #413' >> ${WC}/trunk/ac-helpers/ltconfig
echo 'part of change #413' >> ${WC}/trunk/www/license-1.html
echo 'part of change #413' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Entry.java
echo 'part of change #413' >> ${WC}/trunk/svn_config.dsp
${SVN} commit -m 'commit #413' ${WC}/trunk/ac-helpers/ltconfig ${WC}/trunk/www/license-1.html ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Entry.java ${WC}/trunk/svn_config.dsp

################### change 414 ###################
echo ""
echo "Doing commit #414:"
echo 'part of change #414' >> ${WC}/trunk/README
echo 'part of change #414' >> ${WC}/trunk/subversion/libsvn_delta/default_editor.c
echo 'part of change #414' >> ${WC}/trunk/subversion/libsvn_fs/txn.h
echo 'part of change #414' >> ${WC}/trunk/subversion/clients/cmdline/add-cmd.c
${SVN} commit -m 'commit #414' ${WC}/trunk/README ${WC}/trunk/subversion/libsvn_delta/default_editor.c ${WC}/trunk/subversion/libsvn_fs/txn.h ${WC}/trunk/subversion/clients/cmdline/add-cmd.c

################### change 415 ###################
echo ""
echo "Doing commit #415:"
echo 'part of change #415' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cScrollBars.cls
${SVN} commit -m 'commit #415' ${WC}/trunk/subversion/clients/win32/SVNControls/cScrollBars.cls

################### change 416 ###################
echo ""
echo "Doing commit #416:"
echo 'part of change #416' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/SubversionException.java
echo 'part of change #416' >> ${WC}/trunk/www/webdav-usage.html
echo 'part of change #416' >> ${WC}/trunk/subversion/libsvn_ra_local/ra_plugin.c
echo 'part of change #416' >> ${WC}/trunk/subversion/libsvn_fs/proplist.c
echo 'part of change #416' >> ${WC}/trunk/expat-lite/xmltok.c
${SVN} commit -m 'commit #416' ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/SubversionException.java ${WC}/trunk/www/webdav-usage.html ${WC}/trunk/subversion/libsvn_ra_local/ra_plugin.c ${WC}/trunk/subversion/libsvn_fs/proplist.c ${WC}/trunk/expat-lite/xmltok.c

################### change 417 ###################
echo ""
echo "Doing commit #417:"
echo 'part of change #417' >> ${WC}/trunk/doc/user/manual/model.texi
echo 'part of change #417' >> ${WC}/trunk/subversion/libsvn_ra_dav/session.c
echo 'part of change #417' >> ${WC}/trunk/subversion/bindings/svn_client.i
echo 'part of change #417' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target2.txt
echo 'part of change #417' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmOptions.frm
echo 'part of change #417' >> ${WC}/trunk/subversion/libsvn_fs/dbt.c
echo 'part of change #417' >> ${WC}/trunk/doc/user/manual/removals.texi
echo 'part of change #417' >> ${WC}/trunk/subversion/tests/README
${SVN} commit -m 'commit #417' ${WC}/trunk/doc/user/manual/model.texi ${WC}/trunk/subversion/libsvn_ra_dav/session.c ${WC}/trunk/subversion/bindings/svn_client.i ${WC}/trunk/subversion/tests/libsvn_vcdiff/target2.txt ${WC}/trunk/subversion/clients/win32/WinSVN/frmOptions.frm ${WC}/trunk/subversion/libsvn_fs/dbt.c ${WC}/trunk/doc/user/manual/removals.texi ${WC}/trunk/subversion/tests/README

################### change 418 ###################
echo ""
echo "Doing commit #418:"
echo 'part of change #418' >> ${WC}/trunk/subversion/include/svn_error.h
echo 'part of change #418' >> ${WC}/trunk/NEWS
echo 'part of change #418' >> ${WC}/trunk/www/project_footer.html
echo 'part of change #418' >> ${WC}/trunk/expat-lite/expat.html
echo 'part of change #418' >> ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.ctl
echo 'part of change #418' >> ${WC}/trunk/subversion/tests/xml/co1-postfix.xml
echo 'part of change #418' >> ${WC}/trunk/STACK
echo 'part of change #418' >> ${WC}/trunk/subversion/libsvn_subr/hashdump.c
echo 'part of change #418' >> ${WC}/trunk/subversion/libsvn_ra_dav/session.c
echo 'part of change #418' >> ${WC}/trunk/tools/cvs2svn/README
${SVN} commit -m 'commit #418' ${WC}/trunk/subversion/include/svn_error.h ${WC}/trunk/NEWS ${WC}/trunk/www/project_footer.html ${WC}/trunk/expat-lite/expat.html ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.ctl ${WC}/trunk/subversion/tests/xml/co1-postfix.xml ${WC}/trunk/STACK ${WC}/trunk/subversion/libsvn_subr/hashdump.c ${WC}/trunk/subversion/libsvn_ra_dav/session.c ${WC}/trunk/tools/cvs2svn/README

################### change 419 ###################
echo ""
echo "Doing commit #419:"
echo 'part of change #419' >> ${WC}/trunk/subversion/clients/cmdline/checkout-cmd.c
echo 'part of change #419' >> ${WC}/trunk/notes/svn-config-files
echo 'part of change #419' >> ${WC}/trunk/subversion/libsvn_wc/adm_files.c
echo 'part of change #419' >> ${WC}/trunk/expat-lite/xmlparse.h
echo 'part of change #419' >> ${WC}/trunk/subversion/tests/xml/up2.xml
echo 'part of change #419' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Status.java
echo 'part of change #419' >> ${WC}/trunk/subversion/mod_dav_svn/deadprops.c
echo 'part of change #419' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TreeDeltaEditor.java
echo 'part of change #419' >> ${WC}/trunk/subversion/tests/libsvn_wc/checkout-test.c
echo 'part of change #419' >> ${WC}/trunk/subversion/libsvn_wc/adm_ops.c
${SVN} commit -m 'commit #419' ${WC}/trunk/subversion/clients/cmdline/checkout-cmd.c ${WC}/trunk/notes/svn-config-files ${WC}/trunk/subversion/libsvn_wc/adm_files.c ${WC}/trunk/expat-lite/xmlparse.h ${WC}/trunk/subversion/tests/xml/up2.xml ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Status.java ${WC}/trunk/subversion/mod_dav_svn/deadprops.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TreeDeltaEditor.java ${WC}/trunk/subversion/tests/libsvn_wc/checkout-test.c ${WC}/trunk/subversion/libsvn_wc/adm_ops.c

################### change 420 ###################
echo ""
echo "Doing commit #420:"
echo 'part of change #420' >> ${WC}/trunk/subversion/bindings/svn_client.i
echo 'part of change #420' >> ${WC}/trunk/doc/programmer/design/goals.texi
echo 'part of change #420' >> ${WC}/trunk/www/project_faq.html
echo 'part of change #420' >> ${WC}/trunk/subversion/libsvn_subr/svn_error.c
${SVN} commit -m 'commit #420' ${WC}/trunk/subversion/bindings/svn_client.i ${WC}/trunk/doc/programmer/design/goals.texi ${WC}/trunk/www/project_faq.html ${WC}/trunk/subversion/libsvn_subr/svn_error.c

################### change 421 ###################
echo ""
echo "Doing commit #421:"
echo 'part of change #421' >> ${WC}/trunk/subversion/clients/cmdline/util.c
echo 'part of change #421' >> ${WC}/trunk/subversion/libsvn_fs/proplist.h
echo 'part of change #421' >> ${WC}/trunk/notes/old/draft-korn-vcdiff-01.txt
echo 'part of change #421' >> ${WC}/trunk/expat-lite/xmltok.c
echo 'part of change #421' >> ${WC}/trunk/notes/difftools/pics/xxdiff-README
echo 'part of change #421' >> ${WC}/trunk/subversion/clients/cmdline/TODO
echo 'part of change #421' >> ${WC}/trunk/subversion/libsvn_subr/xml.c
echo 'part of change #421' >> ${WC}/trunk/subversion/libsvn_client/delete.c
${SVN} commit -m 'commit #421' ${WC}/trunk/subversion/clients/cmdline/util.c ${WC}/trunk/subversion/libsvn_fs/proplist.h ${WC}/trunk/notes/old/draft-korn-vcdiff-01.txt ${WC}/trunk/expat-lite/xmltok.c ${WC}/trunk/notes/difftools/pics/xxdiff-README ${WC}/trunk/subversion/clients/cmdline/TODO ${WC}/trunk/subversion/libsvn_subr/xml.c ${WC}/trunk/subversion/libsvn_client/delete.c

################### change 422 ###################
echo ""
echo "Doing commit #422:"
echo 'part of change #422' >> ${WC}/trunk/subversion/libsvn_fs/id.c
echo 'part of change #422' >> ${WC}/trunk/subversion/tests/xml/pipatch.xml
echo 'part of change #422' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/SubversionException.java
echo 'part of change #422' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm
echo 'part of change #422' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.h
echo 'part of change #422' >> ${WC}/trunk/notes/fs-improvements.txt
echo 'part of change #422' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.rgs
${SVN} commit -m 'commit #422' ${WC}/trunk/subversion/libsvn_fs/id.c ${WC}/trunk/subversion/tests/xml/pipatch.xml ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/SubversionException.java ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.h ${WC}/trunk/notes/fs-improvements.txt ${WC}/trunk/subversion/clients/win32/svn_com/SVN.rgs

################### change 423 ###################
echo ""
echo "Doing commit #423:"
echo 'part of change #423' >> ${WC}/trunk/subversion/libsvn_repos/commit_editor.c
echo 'part of change #423' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaWindow.java
${SVN} commit -m 'commit #423' ${WC}/trunk/subversion/libsvn_repos/commit_editor.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaWindow.java

################### change 424 ###################
echo ""
echo "Doing commit #424:"
echo 'part of change #424' >> ${WC}/trunk/expat-lite/expat.html
echo 'part of change #424' >> ${WC}/trunk/subversion/clients/cmdline/util.c
echo 'part of change #424' >> ${WC}/trunk/ac-helpers/ltmain.sh
${SVN} commit -m 'commit #424' ${WC}/trunk/expat-lite/expat.html ${WC}/trunk/subversion/clients/cmdline/util.c ${WC}/trunk/ac-helpers/ltmain.sh

################### change 425 ###################
echo ""
echo "Doing commit #425:"
echo 'part of change #425' >> ${WC}/trunk/expat-lite/xmlrole.c
echo 'part of change #425' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaWindow.java
echo 'part of change #425' >> ${WC}/trunk/subversion/libsvn_delta/xml_parse.c
echo 'part of change #425' >> ${WC}/trunk/subversion/clients/cmdline/main.c
echo 'part of change #425' >> ${WC}/trunk/subversion/tests/libsvn_wc/commit_test.dsp
${SVN} commit -m 'commit #425' ${WC}/trunk/expat-lite/xmlrole.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaWindow.java ${WC}/trunk/subversion/libsvn_delta/xml_parse.c ${WC}/trunk/subversion/clients/cmdline/main.c ${WC}/trunk/subversion/tests/libsvn_wc/commit_test.dsp

################### change 426 ###################
echo ""
echo "Doing commit #426:"
echo 'part of change #426' >> ${WC}/trunk/ac-helpers/svn-apache.m4
echo 'part of change #426' >> ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.h
echo 'part of change #426' >> ${WC}/trunk/subversion/clients/win32/svn_com/misc.cpp
echo 'part of change #426' >> ${WC}/trunk/ac-helpers/ltmain.sh
echo 'part of change #426' >> ${WC}/trunk/subversion/libsvn_subr/hashdump.c
echo 'part of change #426' >> ${WC}/trunk/expat-lite/xmltok.h
echo 'part of change #426' >> ${WC}/trunk/expat-lite/CHANGES
echo 'part of change #426' >> ${WC}/trunk/subversion/include/svn_delta.h
echo 'part of change #426' >> ${WC}/trunk/doc/programmer/design/deltas.texi
echo 'part of change #426' >> ${WC}/trunk/subversion/libsvn_repos/hooks.c
${SVN} commit -m 'commit #426' ${WC}/trunk/ac-helpers/svn-apache.m4 ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.h ${WC}/trunk/subversion/clients/win32/svn_com/misc.cpp ${WC}/trunk/ac-helpers/ltmain.sh ${WC}/trunk/subversion/libsvn_subr/hashdump.c ${WC}/trunk/expat-lite/xmltok.h ${WC}/trunk/expat-lite/CHANGES ${WC}/trunk/subversion/include/svn_delta.h ${WC}/trunk/doc/programmer/design/deltas.texi ${WC}/trunk/subversion/libsvn_repos/hooks.c

################### change 427 ###################
echo ""
echo "Doing commit #427:"
echo 'part of change #427' >> ${WC}/trunk/subversion/libsvn_client/diff.c
echo 'part of change #427' >> ${WC}/trunk/subversion/tests/libsvn_subr/string_test.dsp
${SVN} commit -m 'commit #427' ${WC}/trunk/subversion/libsvn_client/diff.c ${WC}/trunk/subversion/tests/libsvn_subr/string_test.dsp

################### change 428 ###################
echo ""
echo "Doing commit #428:"
echo 'part of change #428' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cGridCell.cls
echo 'part of change #428' >> ${WC}/trunk/subversion/include/svn_error_codes.h
${SVN} commit -m 'commit #428' ${WC}/trunk/subversion/clients/win32/SVNControls/cGridCell.cls ${WC}/trunk/subversion/include/svn_error_codes.h

################### change 429 ###################
echo ""
echo "Doing commit #429:"
echo 'part of change #429' >> ${WC}/trunk/ac-helpers/ltmain.sh
echo 'part of change #429' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmOptions.frm
echo 'part of change #429' >> ${WC}/trunk/subversion/tests/libsvn_fs/skel_test.dsp
${SVN} commit -m 'commit #429' ${WC}/trunk/ac-helpers/ltmain.sh ${WC}/trunk/subversion/clients/win32/WinSVN/frmOptions.frm ${WC}/trunk/subversion/tests/libsvn_fs/skel_test.dsp

################### change 430 ###################
echo ""
echo "Doing commit #430:"
echo 'part of change #430' >> ${WC}/trunk/subversion/tests/libsvn_repos/repos-test.c
${SVN} commit -m 'commit #430' ${WC}/trunk/subversion/tests/libsvn_repos/repos-test.c

################### change 431 ###################
echo ""
echo "Doing commit #431:"
echo 'part of change #431' >> ${WC}/trunk/subversion/libsvn_fs/reps-strings.c
echo 'part of change #431' >> ${WC}/trunk/subversion/libsvn_delta/compose_editors.c
echo 'part of change #431' >> ${WC}/trunk/subversion/include/svn_base64.h
echo 'part of change #431' >> ${WC}/trunk/AUTHORS
echo 'part of change #431' >> ${WC}/trunk/expat-lite/libexpat.dsp
echo 'part of change #431' >> ${WC}/trunk/subversion/libsvn_subr/path.c
echo 'part of change #431' >> ${WC}/trunk/tools/cvs2svn/CheckedClass.pm
${SVN} commit -m 'commit #431' ${WC}/trunk/subversion/libsvn_fs/reps-strings.c ${WC}/trunk/subversion/libsvn_delta/compose_editors.c ${WC}/trunk/subversion/include/svn_base64.h ${WC}/trunk/AUTHORS ${WC}/trunk/expat-lite/libexpat.dsp ${WC}/trunk/subversion/libsvn_subr/path.c ${WC}/trunk/tools/cvs2svn/CheckedClass.pm

################### change 432 ###################
echo ""
echo "Doing commit #432:"
echo 'part of change #432' >> ${WC}/trunk/subversion/clients/cmdline/propget-cmd.c
echo 'part of change #432' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target2.txt
echo 'part of change #432' >> ${WC}/trunk/subversion/tests/libsvn_delta/xml-output-test.c
echo 'part of change #432' >> ${WC}/trunk/subversion/clients/cmdline/prompt.c
echo 'part of change #432' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TreeDeltaEditor.java
echo 'part of change #432' >> ${WC}/trunk/subversion/clients/win32/svn_com/svn_com.dsp
echo 'part of change #432' >> ${WC}/trunk/subversion/clients/cmdline/diff.c
echo 'part of change #432' >> ${WC}/trunk/subversion/include/svn_quoprint.h
echo 'part of change #432' >> ${WC}/trunk/doc/README
${SVN} commit -m 'commit #432' ${WC}/trunk/subversion/clients/cmdline/propget-cmd.c ${WC}/trunk/subversion/tests/libsvn_vcdiff/target2.txt ${WC}/trunk/subversion/tests/libsvn_delta/xml-output-test.c ${WC}/trunk/subversion/clients/cmdline/prompt.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TreeDeltaEditor.java ${WC}/trunk/subversion/clients/win32/svn_com/svn_com.dsp ${WC}/trunk/subversion/clients/cmdline/diff.c ${WC}/trunk/subversion/include/svn_quoprint.h ${WC}/trunk/doc/README

################### change 433 ###################
echo ""
echo "Doing commit #433:"
echo 'part of change #433' >> ${WC}/trunk/expat-lite/xmldef.h
echo 'part of change #433' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Client.java
echo 'part of change #433' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmVirtual.frm
echo 'part of change #433' >> ${WC}/trunk/notes/svn-config-files
echo 'part of change #433' >> ${WC}/trunk/Makefile.in
echo 'part of change #433' >> ${WC}/trunk/ac-helpers/ltmain.sh
echo 'part of change #433' >> ${WC}/trunk/subversion/tests/libsvn_fs/skel-test.c
${SVN} commit -m 'commit #433' ${WC}/trunk/expat-lite/xmldef.h ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Client.java ${WC}/trunk/subversion/clients/win32/SVNControls/frmVirtual.frm ${WC}/trunk/notes/svn-config-files ${WC}/trunk/Makefile.in ${WC}/trunk/ac-helpers/ltmain.sh ${WC}/trunk/subversion/tests/libsvn_fs/skel-test.c

################### change 434 ###################
echo ""
echo "Doing commit #434:"
echo 'part of change #434' >> ${WC}/trunk/www/index.html
echo 'part of change #434' >> ${WC}/trunk/notes/entries-handling.txt
echo 'part of change #434' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cScrollBars.cls
echo 'part of change #434' >> ${WC}/trunk/subversion/libsvn_repos/reporter.c
echo 'part of change #434' >> ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse-test.c
echo 'part of change #434' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Client.java
${SVN} commit -m 'commit #434' ${WC}/trunk/www/index.html ${WC}/trunk/notes/entries-handling.txt ${WC}/trunk/subversion/clients/win32/SVNControls/cScrollBars.cls ${WC}/trunk/subversion/libsvn_repos/reporter.c ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse-test.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Client.java

################### change 435 ###################
echo ""
echo "Doing commit #435:"
echo 'part of change #435' >> ${WC}/trunk/subversion/libsvn_fs/reps-strings.c
${SVN} commit -m 'commit #435' ${WC}/trunk/subversion/libsvn_fs/reps-strings.c

################### change 436 ###################
echo ""
echo "Doing commit #436:"
echo 'part of change #436' >> ${WC}/trunk/STACK
echo 'part of change #436' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cGridCell.cls
echo 'part of change #436' >> ${WC}/trunk/subversion/libsvn_wc/status.c
echo 'part of change #436' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmMain.frm
${SVN} commit -m 'commit #436' ${WC}/trunk/STACK ${WC}/trunk/subversion/clients/win32/SVNControls/cGridCell.cls ${WC}/trunk/subversion/libsvn_wc/status.c ${WC}/trunk/subversion/clients/win32/WinSVN/frmMain.frm

################### change 437 ###################
echo ""
echo "Doing commit #437:"
echo 'part of change #437' >> ${WC}/trunk/subversion/include/svn_test.h
echo 'part of change #437' >> ${WC}/trunk/subversion/include/svn_io.h
echo 'part of change #437' >> ${WC}/trunk/subversion/libsvn_fs/id.c
echo 'part of change #437' >> ${WC}/trunk/notes/dav_setup.txt
echo 'part of change #437' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cFlatHeader.cls
echo 'part of change #437' >> ${WC}/trunk/subversion/libsvn_subr/target.c
echo 'part of change #437' >> ${WC}/trunk/subversion/clients/win32/SVNControls/mGDI.bas
echo 'part of change #437' >> ${WC}/trunk/doc/user/manual/license.texi
echo 'part of change #437' >> ${WC}/trunk/www/testing-goals.html
${SVN} commit -m 'commit #437' ${WC}/trunk/subversion/include/svn_test.h ${WC}/trunk/subversion/include/svn_io.h ${WC}/trunk/subversion/libsvn_fs/id.c ${WC}/trunk/notes/dav_setup.txt ${WC}/trunk/subversion/clients/win32/SVNControls/cFlatHeader.cls ${WC}/trunk/subversion/libsvn_subr/target.c ${WC}/trunk/subversion/clients/win32/SVNControls/mGDI.bas ${WC}/trunk/doc/user/manual/license.texi ${WC}/trunk/www/testing-goals.html

################### change 438 ###################
echo ""
echo "Doing commit #438:"
echo 'part of change #438' >> ${WC}/trunk/doc/user/manual/adds.texi
${SVN} commit -m 'commit #438' ${WC}/trunk/doc/user/manual/adds.texi

################### change 439 ###################
echo ""
echo "Doing commit #439:"
echo 'part of change #439' >> ${WC}/trunk/subversion/libsvn_client/apply_edits.c
echo 'part of change #439' >> ${WC}/trunk/subversion/libsvn_fs/fs.h
echo 'part of change #439' >> ${WC}/trunk/configure.in
echo 'part of change #439' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmOptions.frm
echo 'part of change #439' >> ${WC}/trunk/subversion/libsvn_client/checkout.c
echo 'part of change #439' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.def
echo 'part of change #439' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target4.txt
echo 'part of change #439' >> ${WC}/trunk/subversion/bindings/java/jni/README
${SVN} commit -m 'commit #439' ${WC}/trunk/subversion/libsvn_client/apply_edits.c ${WC}/trunk/subversion/libsvn_fs/fs.h ${WC}/trunk/configure.in ${WC}/trunk/subversion/clients/win32/WinSVN/frmOptions.frm ${WC}/trunk/subversion/libsvn_client/checkout.c ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.def ${WC}/trunk/subversion/tests/libsvn_vcdiff/target4.txt ${WC}/trunk/subversion/bindings/java/jni/README

################### change 440 ###################
echo ""
echo "Doing commit #440:"
echo 'part of change #440' >> ${WC}/trunk/subversion/include/svn_sorts.h
echo 'part of change #440' >> ${WC}/trunk/doc/programmer/design/model.texi
echo 'part of change #440' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/README
echo 'part of change #440' >> ${WC}/trunk/configure.in
echo 'part of change #440' >> ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.h
echo 'part of change #440' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target0.txt
echo 'part of change #440' >> ${WC}/trunk/subversion/libsvn_subr/time.c
echo 'part of change #440' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/source.txt
echo 'part of change #440' >> ${WC}/trunk/doc/user/manual/svn-manual.texi
${SVN} commit -m 'commit #440' ${WC}/trunk/subversion/include/svn_sorts.h ${WC}/trunk/doc/programmer/design/model.texi ${WC}/trunk/subversion/tests/libsvn_vcdiff/README ${WC}/trunk/configure.in ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.h ${WC}/trunk/subversion/tests/libsvn_vcdiff/target0.txt ${WC}/trunk/subversion/libsvn_subr/time.c ${WC}/trunk/subversion/tests/libsvn_vcdiff/source.txt ${WC}/trunk/doc/user/manual/svn-manual.texi

################### change 441 ###################
echo ""
echo "Doing commit #441:"
echo 'part of change #441' >> ${WC}/trunk/expat-lite/libexpat.dsp
echo 'part of change #441' >> ${WC}/trunk/subversion/libsvn_wc/log.c
echo 'part of change #441' >> ${WC}/trunk/subversion/include/svn_quoprint.h
echo 'part of change #441' >> ${WC}/trunk/subversion/tests/libsvn_subr/path-test.c
echo 'part of change #441' >> ${WC}/trunk/subversion/include/svn_quoprint.h
echo 'part of change #441' >> ${WC}/trunk/subversion/libsvn_subr/README.errors
echo 'part of change #441' >> ${WC}/trunk/subversion/clients/cmdline/props.c
echo 'part of change #441' >> ${WC}/trunk/subversion/tests/xml/up-props.xml
echo 'part of change #441' >> ${WC}/trunk/notes/difftools/pics/FileMerge-README
${SVN} commit -m 'commit #441' ${WC}/trunk/expat-lite/libexpat.dsp ${WC}/trunk/subversion/libsvn_wc/log.c ${WC}/trunk/subversion/include/svn_quoprint.h ${WC}/trunk/subversion/tests/libsvn_subr/path-test.c ${WC}/trunk/subversion/include/svn_quoprint.h ${WC}/trunk/subversion/libsvn_subr/README.errors ${WC}/trunk/subversion/clients/cmdline/props.c ${WC}/trunk/subversion/tests/xml/up-props.xml ${WC}/trunk/notes/difftools/pics/FileMerge-README

################### change 442 ###################
echo ""
echo "Doing commit #442:"
echo 'part of change #442' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cScrollBars.cls
echo 'part of change #442' >> ${WC}/trunk/subversion/tests/libsvn_delta/random_test.dsp
${SVN} commit -m 'commit #442' ${WC}/trunk/subversion/clients/win32/SVNControls/cScrollBars.cls ${WC}/trunk/subversion/tests/libsvn_delta/random_test.dsp

################### change 443 ###################
echo ""
echo "Doing commit #443:"
echo 'part of change #443' >> ${WC}/trunk/build.conf
echo 'part of change #443' >> ${WC}/trunk/notes/m3-checklist.txt
echo 'part of change #443' >> ${WC}/trunk/subversion/clients/win32/SVNControls/ppgColumns.pag
echo 'part of change #443' >> ${WC}/trunk/subversion/clients/cmdline/diff.c
echo 'part of change #443' >> ${WC}/trunk/subversion/libsvn_fs/err.c
${SVN} commit -m 'commit #443' ${WC}/trunk/build.conf ${WC}/trunk/notes/m3-checklist.txt ${WC}/trunk/subversion/clients/win32/SVNControls/ppgColumns.pag ${WC}/trunk/subversion/clients/cmdline/diff.c ${WC}/trunk/subversion/libsvn_fs/err.c

################### change 444 ###################
echo ""
echo "Doing commit #444:"
echo 'part of change #444' >> ${WC}/trunk/subversion/libsvn_client/commit.c
echo 'part of change #444' >> ${WC}/trunk/expat-lite/xmltok_impl.h
echo 'part of change #444' >> ${WC}/trunk/expat-lite/xmltok_impl.c
${SVN} commit -m 'commit #444' ${WC}/trunk/subversion/libsvn_client/commit.c ${WC}/trunk/expat-lite/xmltok_impl.h ${WC}/trunk/expat-lite/xmltok_impl.c

################### change 445 ###################
echo ""
echo "Doing commit #445:"
echo 'part of change #445' >> ${WC}/trunk/www/project_footer.html
echo 'part of change #445' >> ${WC}/trunk/subversion/libsvn_subr/svn_base64.c
echo 'part of change #445' >> ${WC}/trunk/subversion/clients/win32/svn_com/misc.h
echo 'part of change #445' >> ${WC}/trunk/ac-helpers/svn-apache.m4
${SVN} commit -m 'commit #445' ${WC}/trunk/www/project_footer.html ${WC}/trunk/subversion/libsvn_subr/svn_base64.c ${WC}/trunk/subversion/clients/win32/svn_com/misc.h ${WC}/trunk/ac-helpers/svn-apache.m4

################### change 446 ###################
echo ""
echo "Doing commit #446:"
echo 'part of change #446' >> ${WC}/trunk/INSTALL
echo 'part of change #446' >> ${WC}/trunk/subversion/tests/xml/up1a-inline.xml
echo 'part of change #446' >> ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py
echo 'part of change #446' >> ${WC}/trunk/subversion/bindings/svn_delta.i
echo 'part of change #446' >> ${WC}/trunk/subversion/tests/libsvn_wc/commit-test.c
echo 'part of change #446' >> ${WC}/trunk/expat-lite/xmltok.c
echo 'part of change #446' >> ${WC}/trunk/subversion/libsvn_ra_dav/util.c
echo 'part of change #446' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/entry.py
echo 'part of change #446' >> ${WC}/trunk/doc/programmer/design/model.texi
${SVN} commit -m 'commit #446' ${WC}/trunk/INSTALL ${WC}/trunk/subversion/tests/xml/up1a-inline.xml ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py ${WC}/trunk/subversion/bindings/svn_delta.i ${WC}/trunk/subversion/tests/libsvn_wc/commit-test.c ${WC}/trunk/expat-lite/xmltok.c ${WC}/trunk/subversion/libsvn_ra_dav/util.c ${WC}/trunk/subversion/tests/clients/cmdline/svntest/entry.py ${WC}/trunk/doc/programmer/design/model.texi

################### change 447 ###################
echo ""
echo "Doing commit #447:"
echo 'part of change #447' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target5.txt
${SVN} commit -m 'commit #447' ${WC}/trunk/subversion/tests/libsvn_vcdiff/target5.txt

################### change 448 ###################
echo ""
echo "Doing commit #448:"
echo 'part of change #448' >> ${WC}/trunk/subversion/clients/win32/WinSVN/lvh.cls
echo 'part of change #448' >> ${WC}/trunk/subversion/mod_dav_svn/util.c
echo 'part of change #448' >> ${WC}/trunk/subversion/libsvn_ra_dav/options.c
echo 'part of change #448' >> ${WC}/trunk/subversion/tests/libsvn_subr/hashdump_test.dsp
echo 'part of change #448' >> ${WC}/trunk/notes/entries-handling.txt
echo 'part of change #448' >> ${WC}/trunk/subversion/clients/cmdline/README
${SVN} commit -m 'commit #448' ${WC}/trunk/subversion/clients/win32/WinSVN/lvh.cls ${WC}/trunk/subversion/mod_dav_svn/util.c ${WC}/trunk/subversion/libsvn_ra_dav/options.c ${WC}/trunk/subversion/tests/libsvn_subr/hashdump_test.dsp ${WC}/trunk/notes/entries-handling.txt ${WC}/trunk/subversion/clients/cmdline/README

################### change 449 ###################
echo ""
echo "Doing commit #449:"
echo 'part of change #449' >> ${WC}/trunk/subversion/mod_dav_svn/mod_dav_svn.c
echo 'part of change #449' >> ${WC}/trunk/expat-lite/xmlparse.c
echo 'part of change #449' >> ${WC}/trunk/doc/programmer/design/model.texi
echo 'part of change #449' >> ${WC}/trunk/subversion/svnadmin/svnadmin.dsp
echo 'part of change #449' >> ${WC}/trunk/notes/difftools/pics/FileMerge-README
echo 'part of change #449' >> ${WC}/trunk/subversion/libsvn_client/diff.c
echo 'part of change #449' >> ${WC}/trunk/subversion/mod_dav_svn/repos.c
echo 'part of change #449' >> ${WC}/trunk/notes/old/draft-korn-vcdiff-01.txt
${SVN} commit -m 'commit #449' ${WC}/trunk/subversion/mod_dav_svn/mod_dav_svn.c ${WC}/trunk/expat-lite/xmlparse.c ${WC}/trunk/doc/programmer/design/model.texi ${WC}/trunk/subversion/svnadmin/svnadmin.dsp ${WC}/trunk/notes/difftools/pics/FileMerge-README ${WC}/trunk/subversion/libsvn_client/diff.c ${WC}/trunk/subversion/mod_dav_svn/repos.c ${WC}/trunk/notes/old/draft-korn-vcdiff-01.txt

################### change 450 ###################
echo ""
echo "Doing commit #450:"
echo 'part of change #450' >> ${WC}/trunk/subversion/bindings/java/jni/README
echo 'part of change #450' >> ${WC}/trunk/subversion/tests/libsvn_subr/path-test.c
echo 'part of change #450' >> ${WC}/trunk/subversion/libsvn_fs/rev-table.c
echo 'part of change #450' >> ${WC}/trunk/subversion/clients/cmdline/props.c
echo 'part of change #450' >> ${WC}/trunk/BUGS
echo 'part of change #450' >> ${WC}/trunk/www/project_faq.html
echo 'part of change #450' >> ${WC}/trunk/subversion/include/svn_delta.h
echo 'part of change #450' >> ${WC}/trunk/subversion/libsvn_fs/fs.c
${SVN} commit -m 'commit #450' ${WC}/trunk/subversion/bindings/java/jni/README ${WC}/trunk/subversion/tests/libsvn_subr/path-test.c ${WC}/trunk/subversion/libsvn_fs/rev-table.c ${WC}/trunk/subversion/clients/cmdline/props.c ${WC}/trunk/BUGS ${WC}/trunk/www/project_faq.html ${WC}/trunk/subversion/include/svn_delta.h ${WC}/trunk/subversion/libsvn_fs/fs.c

################### change 451 ###################
echo ""
echo "Doing commit #451:"
echo 'part of change #451' >> ${WC}/trunk/subversion/libsvn_ra_dav/merge.c
echo 'part of change #451' >> ${WC}/trunk/subversion/tests/libsvn_fs/skel-test.c
echo 'part of change #451' >> ${WC}/trunk/subversion/libsvn_fs/nodes-table.h
echo 'part of change #451' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt
echo 'part of change #451' >> ${WC}/trunk/subversion/clients/cmdline/propdel-cmd.c
echo 'part of change #451' >> ${WC}/trunk/subversion/include/svn_sorts.h
echo 'part of change #451' >> ${WC}/trunk/subversion/libsvn_wc/entries.c
echo 'part of change #451' >> ${WC}/trunk/expat-lite/nametab.h
${SVN} commit -m 'commit #451' ${WC}/trunk/subversion/libsvn_ra_dav/merge.c ${WC}/trunk/subversion/tests/libsvn_fs/skel-test.c ${WC}/trunk/subversion/libsvn_fs/nodes-table.h ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt ${WC}/trunk/subversion/clients/cmdline/propdel-cmd.c ${WC}/trunk/subversion/include/svn_sorts.h ${WC}/trunk/subversion/libsvn_wc/entries.c ${WC}/trunk/expat-lite/nametab.h

################### change 452 ###################
echo ""
echo "Doing commit #452:"
echo 'part of change #452' >> ${WC}/trunk/tools/cvs2svn/README
echo 'part of change #452' >> ${WC}/trunk/subversion/tests/README
echo 'part of change #452' >> ${WC}/trunk/subversion/libsvn_subr/config.c
echo 'part of change #452' >> ${WC}/trunk/subversion/libsvn_subr/svn_string.c
echo 'part of change #452' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookGroup.frm
echo 'part of change #452' >> ${WC}/trunk/expat-lite/libexpat.dsp
echo 'part of change #452' >> ${WC}/trunk/subversion/libsvn_delta/compose_editors.c
echo 'part of change #452' >> ${WC}/trunk/subversion/libsvn_fs/structure
echo 'part of change #452' >> ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.h
${SVN} commit -m 'commit #452' ${WC}/trunk/tools/cvs2svn/README ${WC}/trunk/subversion/tests/README ${WC}/trunk/subversion/libsvn_subr/config.c ${WC}/trunk/subversion/libsvn_subr/svn_string.c ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookGroup.frm ${WC}/trunk/expat-lite/libexpat.dsp ${WC}/trunk/subversion/libsvn_delta/compose_editors.c ${WC}/trunk/subversion/libsvn_fs/structure ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.h

################### change 453 ###################
echo ""
echo "Doing commit #453:"
echo 'part of change #453' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.def
echo 'part of change #453' >> ${WC}/trunk/doc/user/manual/adds.texi
echo 'part of change #453' >> ${WC}/trunk/subversion/clients/cmdline/feedback.c
${SVN} commit -m 'commit #453' ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.def ${WC}/trunk/doc/user/manual/adds.texi ${WC}/trunk/subversion/clients/cmdline/feedback.c

################### change 454 ###################
echo ""
echo "Doing commit #454:"
echo 'part of change #454' >> ${WC}/trunk/doc/README
echo 'part of change #454' >> ${WC}/trunk/subversion/include/svn_string.h
echo 'part of change #454' >> ${WC}/trunk/doc/programmer/design/deltas.texi
echo 'part of change #454' >> ${WC}/trunk/subversion/clients/cmdline/proplist-cmd.c
echo 'part of change #454' >> ${WC}/trunk/subversion/libsvn_wc/entries.c
echo 'part of change #454' >> ${WC}/trunk/expat-lite/libexpat.dsp
${SVN} commit -m 'commit #454' ${WC}/trunk/doc/README ${WC}/trunk/subversion/include/svn_string.h ${WC}/trunk/doc/programmer/design/deltas.texi ${WC}/trunk/subversion/clients/cmdline/proplist-cmd.c ${WC}/trunk/subversion/libsvn_wc/entries.c ${WC}/trunk/expat-lite/libexpat.dsp

################### change 455 ###################
echo ""
echo "Doing commit #455:"
echo 'part of change #455' >> ${WC}/trunk/notes/guis/pics/ClearCase-lsvtree-README
echo 'part of change #455' >> ${WC}/trunk/subversion/include/svn_hash.h
echo 'part of change #455' >> ${WC}/trunk/subversion/tests/fs-helpers.c
${SVN} commit -m 'commit #455' ${WC}/trunk/notes/guis/pics/ClearCase-lsvtree-README ${WC}/trunk/subversion/include/svn_hash.h ${WC}/trunk/subversion/tests/fs-helpers.c

################### change 456 ###################
echo ""
echo "Doing commit #456:"
echo 'part of change #456' >> ${WC}/trunk/expat-lite/xmltok.c
echo 'part of change #456' >> ${WC}/trunk/subversion/mod_dav_svn/mod_dav_svn.c
echo 'part of change #456' >> ${WC}/trunk/notes/fs-improvements.txt
echo 'part of change #456' >> ${WC}/trunk/subversion/svn-dev.el
echo 'part of change #456' >> ${WC}/trunk/subversion/include/svn_string.h
echo 'part of change #456' >> ${WC}/trunk/tools/cvs2svn/cvs2svn.py
echo 'part of change #456' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaWindow.java
echo 'part of change #456' >> ${WC}/trunk/subversion/libsvn_fs/key-gen.h
echo 'part of change #456' >> ${WC}/trunk/subversion/libsvn_subr/sorts.c
echo 'part of change #456' >> ${WC}/trunk/expat-lite/iasciitab.h
${SVN} commit -m 'commit #456' ${WC}/trunk/expat-lite/xmltok.c ${WC}/trunk/subversion/mod_dav_svn/mod_dav_svn.c ${WC}/trunk/notes/fs-improvements.txt ${WC}/trunk/subversion/svn-dev.el ${WC}/trunk/subversion/include/svn_string.h ${WC}/trunk/tools/cvs2svn/cvs2svn.py ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaWindow.java ${WC}/trunk/subversion/libsvn_fs/key-gen.h ${WC}/trunk/subversion/libsvn_subr/sorts.c ${WC}/trunk/expat-lite/iasciitab.h

################### change 457 ###################
echo ""
echo "Doing commit #457:"
echo 'part of change #457' >> ${WC}/trunk/subversion/libsvn_fs/proplist.h
echo 'part of change #457' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmVirtual.frm
echo 'part of change #457' >> ${WC}/trunk/subversion/libsvn_fs/strings-table.c
echo 'part of change #457' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cFlatHeader.cls
echo 'part of change #457' >> ${WC}/trunk/notes/guis/planning.txt
echo 'part of change #457' >> ${WC}/trunk/subversion/include/svn_test.h
echo 'part of change #457' >> ${WC}/trunk/subversion/libsvn_client/delete.c
${SVN} commit -m 'commit #457' ${WC}/trunk/subversion/libsvn_fs/proplist.h ${WC}/trunk/subversion/clients/win32/SVNControls/frmVirtual.frm ${WC}/trunk/subversion/libsvn_fs/strings-table.c ${WC}/trunk/subversion/clients/win32/SVNControls/cFlatHeader.cls ${WC}/trunk/notes/guis/planning.txt ${WC}/trunk/subversion/include/svn_test.h ${WC}/trunk/subversion/libsvn_client/delete.c

################### change 458 ###################
echo ""
echo "Doing commit #458:"
echo 'part of change #458' >> ${WC}/trunk/subversion/libsvn_delta/default_editor.c
echo 'part of change #458' >> ${WC}/trunk/expat-lite/README.svn
echo 'part of change #458' >> ${WC}/trunk/subversion/libsvn_fs/trail.h
echo 'part of change #458' >> ${WC}/trunk/subversion/libsvn_fs/trail.h
echo 'part of change #458' >> ${WC}/trunk/www/project_bugs.html
echo 'part of change #458' >> ${WC}/trunk/subversion/clients/cmdline/revert-cmd.c
${SVN} commit -m 'commit #458' ${WC}/trunk/subversion/libsvn_delta/default_editor.c ${WC}/trunk/expat-lite/README.svn ${WC}/trunk/subversion/libsvn_fs/trail.h ${WC}/trunk/subversion/libsvn_fs/trail.h ${WC}/trunk/www/project_bugs.html ${WC}/trunk/subversion/clients/cmdline/revert-cmd.c

################### change 459 ###################
echo ""
echo "Doing commit #459:"
echo 'part of change #459' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.cpp
echo 'part of change #459' >> ${WC}/trunk/expat-lite/xmltok.c
echo 'part of change #459' >> ${WC}/trunk/subversion/tests/libsvn_wc/checkout_test.dsp
echo 'part of change #459' >> ${WC}/trunk/expat-lite/README.svn
${SVN} commit -m 'commit #459' ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.cpp ${WC}/trunk/expat-lite/xmltok.c ${WC}/trunk/subversion/tests/libsvn_wc/checkout_test.dsp ${WC}/trunk/expat-lite/README.svn

################### change 460 ###################
echo ""
echo "Doing commit #460:"
echo 'part of change #460' >> ${WC}/trunk/subversion/libsvn_repos/commit_editor.c
echo 'part of change #460' >> ${WC}/trunk/ac-helpers/svn-macros.m4
echo 'part of change #460' >> ${WC}/trunk/subversion/libsvn_fs/trail.h
echo 'part of change #460' >> ${WC}/trunk/notes/guis/planning.txt
echo 'part of change #460' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Reporter.java
echo 'part of change #460' >> ${WC}/trunk/tools/cvs2svn/CheckedClass.pm
echo 'part of change #460' >> ${WC}/trunk/HACKING
${SVN} commit -m 'commit #460' ${WC}/trunk/subversion/libsvn_repos/commit_editor.c ${WC}/trunk/ac-helpers/svn-macros.m4 ${WC}/trunk/subversion/libsvn_fs/trail.h ${WC}/trunk/notes/guis/planning.txt ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Reporter.java ${WC}/trunk/tools/cvs2svn/CheckedClass.pm ${WC}/trunk/HACKING

################### change 461 ###################
echo ""
echo "Doing commit #461:"
echo 'part of change #461' >> ${WC}/trunk/doc/user/svnlook/svnlook.texi
echo 'part of change #461' >> ${WC}/trunk/subversion/libsvn_fs/TODO
echo 'part of change #461' >> ${WC}/trunk/doc/user/manual/model.texi
echo 'part of change #461' >> ${WC}/trunk/build.conf
${SVN} commit -m 'commit #461' ${WC}/trunk/doc/user/svnlook/svnlook.texi ${WC}/trunk/subversion/libsvn_fs/TODO ${WC}/trunk/doc/user/manual/model.texi ${WC}/trunk/build.conf

################### change 462 ###################
echo ""
echo "Doing commit #462:"
echo 'part of change #462' >> ${WC}/trunk/tools/cvs2svn/CheckedClass.pm
echo 'part of change #462' >> ${WC}/trunk/subversion/libsvn_fs/fs.h
echo 'part of change #462' >> ${WC}/trunk/subversion/libsvn_wc/questions.c
echo 'part of change #462' >> ${WC}/trunk/subversion/bindings/java/jni/README
echo 'part of change #462' >> ${WC}/trunk/subversion/libsvn_fs/err.c
echo 'part of change #462' >> ${WC}/trunk/AUTHORS
echo 'part of change #462' >> ${WC}/trunk/subversion/libsvn_delta/svndiff.c
echo 'part of change #462' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt
${SVN} commit -m 'commit #462' ${WC}/trunk/tools/cvs2svn/CheckedClass.pm ${WC}/trunk/subversion/libsvn_fs/fs.h ${WC}/trunk/subversion/libsvn_wc/questions.c ${WC}/trunk/subversion/bindings/java/jni/README ${WC}/trunk/subversion/libsvn_fs/err.c ${WC}/trunk/AUTHORS ${WC}/trunk/subversion/libsvn_delta/svndiff.c ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt

################### change 463 ###################
echo ""
echo "Doing commit #463:"
echo 'part of change #463' >> ${WC}/trunk/tools/hook-scripts/README
echo 'part of change #463' >> ${WC}/trunk/doc/user/manual/README
echo 'part of change #463' >> ${WC}/trunk/notes/svndiff
echo 'part of change #463' >> ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.cpp
echo 'part of change #463' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaWindow.java
echo 'part of change #463' >> ${WC}/trunk/subversion/libsvn_fs/id.c
${SVN} commit -m 'commit #463' ${WC}/trunk/tools/hook-scripts/README ${WC}/trunk/doc/user/manual/README ${WC}/trunk/notes/svndiff ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.cpp ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaWindow.java ${WC}/trunk/subversion/libsvn_fs/id.c

################### change 464 ###################
echo ""
echo "Doing commit #464:"
echo 'part of change #464' >> ${WC}/trunk/doc/programmer/design/svn-design.html
echo 'part of change #464' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Reporter.java
echo 'part of change #464' >> ${WC}/trunk/subversion/tests/libsvn_subr/stringtest.c
echo 'part of change #464' >> ${WC}/trunk/tools/hook-scripts/README
echo 'part of change #464' >> ${WC}/trunk/subversion/libsvn_subr/getdate.y
echo 'part of change #464' >> ${WC}/trunk/subversion/tests/libsvn_ra_local/ra-local-test.c
echo 'part of change #464' >> ${WC}/trunk/www/project_footer.html
${SVN} commit -m 'commit #464' ${WC}/trunk/doc/programmer/design/svn-design.html ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Reporter.java ${WC}/trunk/subversion/tests/libsvn_subr/stringtest.c ${WC}/trunk/tools/hook-scripts/README ${WC}/trunk/subversion/libsvn_subr/getdate.y ${WC}/trunk/subversion/tests/libsvn_ra_local/ra-local-test.c ${WC}/trunk/www/project_footer.html

################### change 465 ###################
echo ""
echo "Doing commit #465:"
echo 'part of change #465' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cScrollBars.cls
echo 'part of change #465' >> ${WC}/trunk/subversion/mod_dav_svn/liveprops.c
echo 'part of change #465' >> ${WC}/trunk/subversion/libsvn_delta/track_editor.c
${SVN} commit -m 'commit #465' ${WC}/trunk/subversion/clients/win32/SVNControls/cScrollBars.cls ${WC}/trunk/subversion/mod_dav_svn/liveprops.c ${WC}/trunk/subversion/libsvn_delta/track_editor.c

################### change 466 ###################
echo ""
echo "Doing commit #466:"
echo 'part of change #466' >> ${WC}/trunk/subversion/tests/xml/up1b-postfix.xml
echo 'part of change #466' >> ${WC}/trunk/notes/entries-handling.txt
echo 'part of change #466' >> ${WC}/trunk/subversion/libsvn_client/apply_edits.c
echo 'part of change #466' >> ${WC}/trunk/notes/auth_proposal.txt
echo 'part of change #466' >> ${WC}/trunk/subversion/tests/libsvn_subr/string_test.dsp
echo 'part of change #466' >> ${WC}/trunk/notes/svndiff
echo 'part of change #466' >> ${WC}/trunk/notes/difftools/pics/xxdiff-README
${SVN} commit -m 'commit #466' ${WC}/trunk/subversion/tests/xml/up1b-postfix.xml ${WC}/trunk/notes/entries-handling.txt ${WC}/trunk/subversion/libsvn_client/apply_edits.c ${WC}/trunk/notes/auth_proposal.txt ${WC}/trunk/subversion/tests/libsvn_subr/string_test.dsp ${WC}/trunk/notes/svndiff ${WC}/trunk/notes/difftools/pics/xxdiff-README

################### change 467 ###################
echo ""
echo "Doing commit #467:"
echo 'part of change #467' >> ${WC}/trunk/doc/user/manual/model.texi
echo 'part of change #467' >> ${WC}/trunk/ChangeLog.CVS
echo 'part of change #467' >> ${WC}/trunk/subversion/clients/win32/SVNControls/gDevGrid.vbg
echo 'part of change #467' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.cpp
echo 'part of change #467' >> ${WC}/trunk/subversion/tests/libsvn_repos/md5args.c
echo 'part of change #467' >> ${WC}/trunk/subversion/include/svn_wc.h
echo 'part of change #467' >> ${WC}/trunk/subversion/mod_dav_svn/deadprops.c
echo 'part of change #467' >> ${WC}/trunk/subversion/svn-dev.el
echo 'part of change #467' >> ${WC}/trunk/subversion/libsvn_subr/target.c
${SVN} commit -m 'commit #467' ${WC}/trunk/doc/user/manual/model.texi ${WC}/trunk/ChangeLog.CVS ${WC}/trunk/subversion/clients/win32/SVNControls/gDevGrid.vbg ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.cpp ${WC}/trunk/subversion/tests/libsvn_repos/md5args.c ${WC}/trunk/subversion/include/svn_wc.h ${WC}/trunk/subversion/mod_dav_svn/deadprops.c ${WC}/trunk/subversion/svn-dev.el ${WC}/trunk/subversion/libsvn_subr/target.c

################### change 468 ###################
echo ""
echo "Doing commit #468:"
echo 'part of change #468' >> ${WC}/trunk/subversion/clients/cmdline/status.c
echo 'part of change #468' >> ${WC}/trunk/subversion/tests/libsvn_fs/strings-reps-test.c
echo 'part of change #468' >> ${WC}/trunk/subversion/libsvn_repos/delta.c
echo 'part of change #468' >> ${WC}/trunk/subversion/tests/libsvn_ra_local/ra-local-test.c
echo 'part of change #468' >> ${WC}/trunk/subversion/libsvn_subr/svn_error.c
${SVN} commit -m 'commit #468' ${WC}/trunk/subversion/clients/cmdline/status.c ${WC}/trunk/subversion/tests/libsvn_fs/strings-reps-test.c ${WC}/trunk/subversion/libsvn_repos/delta.c ${WC}/trunk/subversion/tests/libsvn_ra_local/ra-local-test.c ${WC}/trunk/subversion/libsvn_subr/svn_error.c

################### change 469 ###################
echo ""
echo "Doing commit #469:"
echo 'part of change #469' >> ${WC}/trunk/subversion/libsvn_ra/libsvn_ra.dsp
echo 'part of change #469' >> ${WC}/trunk/subversion/tests/libsvn_delta/simple.delta
echo 'part of change #469' >> ${WC}/trunk/subversion/clients/win32/WinSVN/ExplorerViewHelpers.cls
echo 'part of change #469' >> ${WC}/trunk/subversion/libsvn_client/commit.c
echo 'part of change #469' >> ${WC}/trunk/subversion/libsvn_fs/rev-table.h
echo 'part of change #469' >> ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py
${SVN} commit -m 'commit #469' ${WC}/trunk/subversion/libsvn_ra/libsvn_ra.dsp ${WC}/trunk/subversion/tests/libsvn_delta/simple.delta ${WC}/trunk/subversion/clients/win32/WinSVN/ExplorerViewHelpers.cls ${WC}/trunk/subversion/libsvn_client/commit.c ${WC}/trunk/subversion/libsvn_fs/rev-table.h ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py

################### change 470 ###################
echo ""
echo "Doing commit #470:"
echo 'part of change #470' >> ${WC}/trunk/subversion/libsvn_repos/lock.c
echo 'part of change #470' >> ${WC}/trunk/doc/user/manual/README
echo 'part of change #470' >> ${WC}/trunk/subversion/libsvn_subr/getdate.y
echo 'part of change #470' >> ${WC}/trunk/subversion/libsvn_ra_local/ra_plugin.c
echo 'part of change #470' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm
echo 'part of change #470' >> ${WC}/trunk/doc/user/manual/adds.texi
${SVN} commit -m 'commit #470' ${WC}/trunk/subversion/libsvn_repos/lock.c ${WC}/trunk/doc/user/manual/README ${WC}/trunk/subversion/libsvn_subr/getdate.y ${WC}/trunk/subversion/libsvn_ra_local/ra_plugin.c ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm ${WC}/trunk/doc/user/manual/adds.texi

################### change 471 ###################
echo ""
echo "Doing commit #471:"
echo 'part of change #471' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cGridCell.cls
echo 'part of change #471' >> ${WC}/trunk/ac-helpers/svn-apache.m4
${SVN} commit -m 'commit #471' ${WC}/trunk/subversion/clients/win32/SVNControls/cGridCell.cls ${WC}/trunk/ac-helpers/svn-apache.m4

################### change 472 ###################
echo ""
echo "Doing commit #472:"
echo 'part of change #472' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.cpp
echo 'part of change #472' >> ${WC}/trunk/notes/guis/planning.txt
echo 'part of change #472' >> ${WC}/trunk/www/project_header.html
echo 'part of change #472' >> ${WC}/trunk/ac-helpers/svn-apache.m4
echo 'part of change #472' >> ${WC}/trunk/subversion/libsvn_fs/skel.c
echo 'part of change #472' >> ${WC}/trunk/subversion/clients/cmdline/add-cmd.c
echo 'part of change #472' >> ${WC}/trunk/subversion/svnadmin/main.c
echo 'part of change #472' >> ${WC}/trunk/subversion/bindings/svn_ra.i
${SVN} commit -m 'commit #472' ${WC}/trunk/subversion/clients/win32/svn_com/SVN.cpp ${WC}/trunk/notes/guis/planning.txt ${WC}/trunk/www/project_header.html ${WC}/trunk/ac-helpers/svn-apache.m4 ${WC}/trunk/subversion/libsvn_fs/skel.c ${WC}/trunk/subversion/clients/cmdline/add-cmd.c ${WC}/trunk/subversion/svnadmin/main.c ${WC}/trunk/subversion/bindings/svn_ra.i

################### change 473 ###################
echo ""
echo "Doing commit #473:"
echo 'part of change #473' >> ${WC}/trunk/subversion/libsvn_wc/lock.c
echo 'part of change #473' >> ${WC}/trunk/subversion/tests/libsvn_delta/simple.delta
echo 'part of change #473' >> ${WC}/trunk/expat-lite/nametab.h
echo 'part of change #473' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.h
echo 'part of change #473' >> ${WC}/trunk/subversion/libsvn_client/commit.c
echo 'part of change #473' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/README
echo 'part of change #473' >> ${WC}/trunk/subversion/clients/cmdline/main.c
${SVN} commit -m 'commit #473' ${WC}/trunk/subversion/libsvn_wc/lock.c ${WC}/trunk/subversion/tests/libsvn_delta/simple.delta ${WC}/trunk/expat-lite/nametab.h ${WC}/trunk/subversion/libsvn_fs/reps-table.h ${WC}/trunk/subversion/libsvn_client/commit.c ${WC}/trunk/subversion/tests/libsvn_vcdiff/README ${WC}/trunk/subversion/clients/cmdline/main.c

################### change 474 ###################
echo ""
echo "Doing commit #474:"
echo 'part of change #474' >> ${WC}/trunk/notes/difftools/pics/FileMerge-README
echo 'part of change #474' >> ${WC}/trunk/subversion/svn-dev.el
echo 'part of change #474' >> ${WC}/trunk/subversion/tests/README
echo 'part of change #474' >> ${WC}/trunk/subversion/clients/cmdline/commit-cmd.c
${SVN} commit -m 'commit #474' ${WC}/trunk/notes/difftools/pics/FileMerge-README ${WC}/trunk/subversion/svn-dev.el ${WC}/trunk/subversion/tests/README ${WC}/trunk/subversion/clients/cmdline/commit-cmd.c

################### change 475 ###################
echo ""
echo "Doing commit #475:"
echo 'part of change #475' >> ${WC}/trunk/subversion/bindings/svn_client.i
echo 'part of change #475' >> ${WC}/trunk/subversion/svnlook/svnlook.dsp
echo 'part of change #475' >> ${WC}/trunk/subversion/libsvn_client/status.c
echo 'part of change #475' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/main.py
echo 'part of change #475' >> ${WC}/trunk/doc/user/manual/removals.texi
echo 'part of change #475' >> ${WC}/trunk/expat-lite/xmltok_impl.h
echo 'part of change #475' >> ${WC}/trunk/subversion/clients/cmdline/propget-cmd.c
echo 'part of change #475' >> ${WC}/trunk/subversion/tests/libsvn_wc/commit-test.c
${SVN} commit -m 'commit #475' ${WC}/trunk/subversion/bindings/svn_client.i ${WC}/trunk/subversion/svnlook/svnlook.dsp ${WC}/trunk/subversion/libsvn_client/status.c ${WC}/trunk/subversion/tests/clients/cmdline/svntest/main.py ${WC}/trunk/doc/user/manual/removals.texi ${WC}/trunk/expat-lite/xmltok_impl.h ${WC}/trunk/subversion/clients/cmdline/propget-cmd.c ${WC}/trunk/subversion/tests/libsvn_wc/commit-test.c

################### change 476 ###################
echo ""
echo "Doing commit #476:"
echo 'part of change #476' >> ${WC}/trunk/www/license-1.html
echo 'part of change #476' >> ${WC}/trunk/expat-lite/xmldef.h
echo 'part of change #476' >> ${WC}/trunk/subversion/libsvn_client/diff.c
echo 'part of change #476' >> ${WC}/trunk/subversion/libsvn_repos/reporter.c
echo 'part of change #476' >> ${WC}/trunk/doc/programmer/design/client.texi
echo 'part of change #476' >> ${WC}/trunk/subversion/libsvn_wc/lock.c
echo 'part of change #476' >> ${WC}/trunk/subversion/tests/libsvn_delta/random_test.dsp
${SVN} commit -m 'commit #476' ${WC}/trunk/www/license-1.html ${WC}/trunk/expat-lite/xmldef.h ${WC}/trunk/subversion/libsvn_client/diff.c ${WC}/trunk/subversion/libsvn_repos/reporter.c ${WC}/trunk/doc/programmer/design/client.texi ${WC}/trunk/subversion/libsvn_wc/lock.c ${WC}/trunk/subversion/tests/libsvn_delta/random_test.dsp

################### change 477 ###################
echo ""
echo "Doing commit #477:"
echo 'part of change #477' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.cpp
echo 'part of change #477' >> ${WC}/trunk/subversion/libsvn_repos/reporter.c
echo 'part of change #477' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm
echo 'part of change #477' >> ${WC}/trunk/expat-lite/xmlparse.h
echo 'part of change #477' >> ${WC}/trunk/doc/user/manual/model.texi
${SVN} commit -m 'commit #477' ${WC}/trunk/subversion/clients/win32/svn_com/SVN.cpp ${WC}/trunk/subversion/libsvn_repos/reporter.c ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm ${WC}/trunk/expat-lite/xmlparse.h ${WC}/trunk/doc/user/manual/model.texi

################### change 478 ###################
echo ""
echo "Doing commit #478:"
echo 'part of change #478' >> ${WC}/trunk/subversion/clients/win32/SVNControls/link.dat
echo 'part of change #478' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target2.txt
echo 'part of change #478' >> ${WC}/trunk/subversion/bindings/svn_ra.i
echo 'part of change #478' >> ${WC}/trunk/subversion/libsvn_ra_dav/props.c
echo 'part of change #478' >> ${WC}/trunk/subversion/libsvn_subr/getdate.y
echo 'part of change #478' >> ${WC}/trunk/subversion/libsvn_repos/libsvn_repos.dsp
echo 'part of change #478' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt
${SVN} commit -m 'commit #478' ${WC}/trunk/subversion/clients/win32/SVNControls/link.dat ${WC}/trunk/subversion/tests/libsvn_vcdiff/target2.txt ${WC}/trunk/subversion/bindings/svn_ra.i ${WC}/trunk/subversion/libsvn_ra_dav/props.c ${WC}/trunk/subversion/libsvn_subr/getdate.y ${WC}/trunk/subversion/libsvn_repos/libsvn_repos.dsp ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt

################### change 479 ###################
echo ""
echo "Doing commit #479:"
echo 'part of change #479' >> ${WC}/trunk/subversion/libsvn_subr/quoprint.c
${SVN} commit -m 'commit #479' ${WC}/trunk/subversion/libsvn_subr/quoprint.c

################### change 480 ###################
echo ""
echo "Doing commit #480:"
echo 'part of change #480' >> ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.vbp
echo 'part of change #480' >> ${WC}/trunk/notes/entries-handling.txt
echo 'part of change #480' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta-test.c
echo 'part of change #480' >> ${WC}/trunk/subversion/clients/win32/SVNControls/pTest.vbp
echo 'part of change #480' >> ${WC}/trunk/subversion/mod_dav_svn/util.c
echo 'part of change #480' >> ${WC}/trunk/subversion/libsvn_subr/getdate.y
echo 'part of change #480' >> ${WC}/trunk/subversion/bindings/svn_error.i
${SVN} commit -m 'commit #480' ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.vbp ${WC}/trunk/notes/entries-handling.txt ${WC}/trunk/subversion/tests/libsvn_delta/vdelta-test.c ${WC}/trunk/subversion/clients/win32/SVNControls/pTest.vbp ${WC}/trunk/subversion/mod_dav_svn/util.c ${WC}/trunk/subversion/libsvn_subr/getdate.y ${WC}/trunk/subversion/bindings/svn_error.i

################### change 481 ###################
echo ""
echo "Doing commit #481:"
echo 'part of change #481' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.c
echo 'part of change #481' >> ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.c
echo 'part of change #481' >> ${WC}/trunk/gen-make.py
echo 'part of change #481' >> ${WC}/trunk/subversion/tests/libsvn_delta/xml-output-test.c
echo 'part of change #481' >> ${WC}/trunk/COPYING
echo 'part of change #481' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cFlatHeader.cls
echo 'part of change #481' >> ${WC}/trunk/subversion/bindings/README
echo 'part of change #481' >> ${WC}/trunk/subversion/libsvn_wc/adm_crawler.c
${SVN} commit -m 'commit #481' ${WC}/trunk/subversion/libsvn_fs/reps-table.c ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.c ${WC}/trunk/gen-make.py ${WC}/trunk/subversion/tests/libsvn_delta/xml-output-test.c ${WC}/trunk/COPYING ${WC}/trunk/subversion/clients/win32/SVNControls/cFlatHeader.cls ${WC}/trunk/subversion/bindings/README ${WC}/trunk/subversion/libsvn_wc/adm_crawler.c

################### change 482 ###################
echo ""
echo "Doing commit #482:"
echo 'part of change #482' >> ${WC}/trunk/expat-lite/hashtable.h
echo 'part of change #482' >> ${WC}/trunk/subversion/libsvn_client/apply_edits.c
echo 'part of change #482' >> ${WC}/trunk/subversion/tests/xml/up5.xml
echo 'part of change #482' >> ${WC}/trunk/expat-lite/xmltok_ns.c
echo 'part of change #482' >> ${WC}/trunk/notes/entries-handling.txt
echo 'part of change #482' >> ${WC}/trunk/build-outputs.mk
echo 'part of change #482' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaHandler.java
${SVN} commit -m 'commit #482' ${WC}/trunk/expat-lite/hashtable.h ${WC}/trunk/subversion/libsvn_client/apply_edits.c ${WC}/trunk/subversion/tests/xml/up5.xml ${WC}/trunk/expat-lite/xmltok_ns.c ${WC}/trunk/notes/entries-handling.txt ${WC}/trunk/build-outputs.mk ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaHandler.java

################### change 483 ###################
echo ""
echo "Doing commit #483:"
echo 'part of change #483' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/entry.py
${SVN} commit -m 'commit #483' ${WC}/trunk/subversion/tests/clients/cmdline/svntest/entry.py

################### change 484 ###################
echo ""
echo "Doing commit #484:"
echo 'part of change #484' >> ${WC}/trunk/subversion/tests/libsvn_fs/fs-test.c
echo 'part of change #484' >> ${WC}/trunk/notes/guis/pics/ClearCase-lsvtree-README
echo 'part of change #484' >> ${WC}/trunk/subversion/clients/win32/svn_com/svn_comCP.h
echo 'part of change #484' >> ${WC}/trunk/doc/README
echo 'part of change #484' >> ${WC}/trunk/subversion/libsvn_wc/adm_ops.c
echo 'part of change #484' >> ${WC}/trunk/subversion/clients/cmdline/trace-commit.c
echo 'part of change #484' >> ${WC}/trunk/www/project_bugs.html
echo 'part of change #484' >> ${WC}/trunk/subversion/tests/libsvn_delta/xml_output_test.dsp
${SVN} commit -m 'commit #484' ${WC}/trunk/subversion/tests/libsvn_fs/fs-test.c ${WC}/trunk/notes/guis/pics/ClearCase-lsvtree-README ${WC}/trunk/subversion/clients/win32/svn_com/svn_comCP.h ${WC}/trunk/doc/README ${WC}/trunk/subversion/libsvn_wc/adm_ops.c ${WC}/trunk/subversion/clients/cmdline/trace-commit.c ${WC}/trunk/www/project_bugs.html ${WC}/trunk/subversion/tests/libsvn_delta/xml_output_test.dsp

################### change 485 ###################
echo ""
echo "Doing commit #485:"
echo 'part of change #485' >> ${WC}/trunk/subversion/libsvn_delta/compose_editors.c
echo 'part of change #485' >> ${WC}/trunk/subversion/include/svn_xml.h
echo 'part of change #485' >> ${WC}/trunk/notes/old/draft-korn-vcdiff-01.txt
echo 'part of change #485' >> ${WC}/trunk/subversion/libsvn_ra_local/libsvn_ra_local.dsp
echo 'part of change #485' >> ${WC}/trunk/subversion/libsvn_ra_dav/session.c
${SVN} commit -m 'commit #485' ${WC}/trunk/subversion/libsvn_delta/compose_editors.c ${WC}/trunk/subversion/include/svn_xml.h ${WC}/trunk/notes/old/draft-korn-vcdiff-01.txt ${WC}/trunk/subversion/libsvn_ra_local/libsvn_ra_local.dsp ${WC}/trunk/subversion/libsvn_ra_dav/session.c

################### change 486 ###################
echo ""
echo "Doing commit #486:"
echo 'part of change #486' >> ${WC}/trunk/subversion/libsvn_client/checkout.c
echo 'part of change #486' >> ${WC}/trunk/notes/difftools/README
echo 'part of change #486' >> ${WC}/trunk/subversion/libsvn_fs/nodes-table.c
echo 'part of change #486' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta-test.c
${SVN} commit -m 'commit #486' ${WC}/trunk/subversion/libsvn_client/checkout.c ${WC}/trunk/notes/difftools/README ${WC}/trunk/subversion/libsvn_fs/nodes-table.c ${WC}/trunk/subversion/tests/libsvn_delta/vdelta-test.c

################### change 487 ###################
echo ""
echo "Doing commit #487:"
echo 'part of change #487' >> ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta
echo 'part of change #487' >> ${WC}/trunk/subversion/libsvn_fs/fs.h
echo 'part of change #487' >> ${WC}/trunk/notes/multi-args.txt
echo 'part of change #487' >> ${WC}/trunk/subversion/libsvn_subr/time.c
echo 'part of change #487' >> ${WC}/trunk/subversion/clients/win32/SVNControls/ppgColumns.pag
echo 'part of change #487' >> ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp
echo 'part of change #487' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta-test.c
echo 'part of change #487' >> ${WC}/trunk/subversion/libsvn_fs/tree.h
echo 'part of change #487' >> ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py
echo 'part of change #487' >> ${WC}/trunk/subversion/libsvn_fs/txn-table.h
${SVN} commit -m 'commit #487' ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta ${WC}/trunk/subversion/libsvn_fs/fs.h ${WC}/trunk/notes/multi-args.txt ${WC}/trunk/subversion/libsvn_subr/time.c ${WC}/trunk/subversion/clients/win32/SVNControls/ppgColumns.pag ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp ${WC}/trunk/subversion/tests/libsvn_delta/vdelta-test.c ${WC}/trunk/subversion/libsvn_fs/tree.h ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py ${WC}/trunk/subversion/libsvn_fs/txn-table.h

################### change 488 ###################
echo ""
echo "Doing commit #488:"
echo 'part of change #488' >> ${WC}/trunk/subversion/libsvn_repos/rev_hunt.c
echo 'part of change #488' >> ${WC}/trunk/subversion/bindings/svn_types.i
${SVN} commit -m 'commit #488' ${WC}/trunk/subversion/libsvn_repos/rev_hunt.c ${WC}/trunk/subversion/bindings/svn_types.i

################### change 489 ###################
echo ""
echo "Doing commit #489:"
echo 'part of change #489' >> ${WC}/trunk/www/variance-adjusted-patching.html
echo 'part of change #489' >> ${WC}/trunk/doc/user/manual/svn-manual.texi
echo 'part of change #489' >> ${WC}/trunk/expat-lite/nametab.h
echo 'part of change #489' >> ${WC}/trunk/doc/programmer/design/future.texi
echo 'part of change #489' >> ${WC}/trunk/doc/programmer/design/svn-design.texi
${SVN} commit -m 'commit #489' ${WC}/trunk/www/variance-adjusted-patching.html ${WC}/trunk/doc/user/manual/svn-manual.texi ${WC}/trunk/expat-lite/nametab.h ${WC}/trunk/doc/programmer/design/future.texi ${WC}/trunk/doc/programmer/design/svn-design.texi

################### change 490 ###################
echo ""
echo "Doing commit #490:"
echo 'part of change #490' >> ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.ctl
echo 'part of change #490' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.cpp
echo 'part of change #490' >> ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py
echo 'part of change #490' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target4.txt
echo 'part of change #490' >> ${WC}/trunk/INSTALL
echo 'part of change #490' >> ${WC}/trunk/subversion/libsvn_subr/svn_error.c
echo 'part of change #490' >> ${WC}/trunk/subversion/libsvn_fs/key-gen.h
echo 'part of change #490' >> ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h
echo 'part of change #490' >> ${WC}/trunk/subversion/libsvn_fs/libsvn_fs.dsp
echo 'part of change #490' >> ${WC}/trunk/subversion/tests/libsvn_delta/svndiff-test.c
${SVN} commit -m 'commit #490' ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.ctl ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.cpp ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py ${WC}/trunk/subversion/tests/libsvn_vcdiff/target4.txt ${WC}/trunk/INSTALL ${WC}/trunk/subversion/libsvn_subr/svn_error.c ${WC}/trunk/subversion/libsvn_fs/key-gen.h ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h ${WC}/trunk/subversion/libsvn_fs/libsvn_fs.dsp ${WC}/trunk/subversion/tests/libsvn_delta/svndiff-test.c

################### change 491 ###################
echo ""
echo "Doing commit #491:"
echo 'part of change #491' >> ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h
echo 'part of change #491' >> ${WC}/trunk/INSTALL
${SVN} commit -m 'commit #491' ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h ${WC}/trunk/INSTALL

################### change 492 ###################
echo ""
echo "Doing commit #492:"
echo 'part of change #492' >> ${WC}/trunk/subversion/libsvn_client/delete.c
echo 'part of change #492' >> ${WC}/trunk/subversion/bindings/java/jni/README
echo 'part of change #492' >> ${WC}/trunk/subversion/libsvn_ra_dav/util.c
echo 'part of change #492' >> ${WC}/trunk/subversion/clients/cmdline/checkout-cmd.c
echo 'part of change #492' >> ${WC}/trunk/subversion/libsvn_subr/getdate.cw
echo 'part of change #492' >> ${WC}/trunk/subversion/tests/libsvn_subr/path-test.c
echo 'part of change #492' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Client.java
echo 'part of change #492' >> ${WC}/trunk/notes/guis/README
echo 'part of change #492' >> ${WC}/trunk/expat-lite/nametab.h
${SVN} commit -m 'commit #492' ${WC}/trunk/subversion/libsvn_client/delete.c ${WC}/trunk/subversion/bindings/java/jni/README ${WC}/trunk/subversion/libsvn_ra_dav/util.c ${WC}/trunk/subversion/clients/cmdline/checkout-cmd.c ${WC}/trunk/subversion/libsvn_subr/getdate.cw ${WC}/trunk/subversion/tests/libsvn_subr/path-test.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Client.java ${WC}/trunk/notes/guis/README ${WC}/trunk/expat-lite/nametab.h

################### change 493 ###################
echo ""
echo "Doing commit #493:"
echo 'part of change #493' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm
echo 'part of change #493' >> ${WC}/trunk/HACKING
echo 'part of change #493' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmOptions.frm
echo 'part of change #493' >> ${WC}/trunk/subversion/libsvn_fs/fs.c
echo 'part of change #493' >> ${WC}/trunk/subversion/libsvn_fs/node-rev.c
echo 'part of change #493' >> ${WC}/trunk/subversion/tests/xml/up1a-postfix.xml
echo 'part of change #493' >> ${WC}/trunk/subversion/tests/libsvn_fs/fs-test.c
echo 'part of change #493' >> ${WC}/trunk/notes/difftools/pics/xxdiff-README
echo 'part of change #493' >> ${WC}/trunk/subversion/libsvn_fs/skel.c
${SVN} commit -m 'commit #493' ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm ${WC}/trunk/HACKING ${WC}/trunk/subversion/clients/win32/WinSVN/frmOptions.frm ${WC}/trunk/subversion/libsvn_fs/fs.c ${WC}/trunk/subversion/libsvn_fs/node-rev.c ${WC}/trunk/subversion/tests/xml/up1a-postfix.xml ${WC}/trunk/subversion/tests/libsvn_fs/fs-test.c ${WC}/trunk/notes/difftools/pics/xxdiff-README ${WC}/trunk/subversion/libsvn_fs/skel.c

################### change 494 ###################
echo ""
echo "Doing commit #494:"
echo 'part of change #494' >> ${WC}/trunk/doc/svn-doc.el
echo 'part of change #494' >> ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h
echo 'part of change #494' >> ${WC}/trunk/subversion/clients/cmdline/util.c
echo 'part of change #494' >> ${WC}/trunk/notes/old/draft-korn-vcdiff-01.txt
echo 'part of change #494' >> ${WC}/trunk/subversion/tests/libsvn_fs/fs_test.dsp
echo 'part of change #494' >> ${WC}/trunk/www/cvs_help.html
echo 'part of change #494' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt
${SVN} commit -m 'commit #494' ${WC}/trunk/doc/svn-doc.el ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h ${WC}/trunk/subversion/clients/cmdline/util.c ${WC}/trunk/notes/old/draft-korn-vcdiff-01.txt ${WC}/trunk/subversion/tests/libsvn_fs/fs_test.dsp ${WC}/trunk/www/cvs_help.html ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt

################### change 495 ###################
echo ""
echo "Doing commit #495:"
echo 'part of change #495' >> ${WC}/trunk/expat-lite/xmltok_ns.c
echo 'part of change #495' >> ${WC}/trunk/doc/programmer/design/model.texi
echo 'part of change #495' >> ${WC}/trunk/subversion/clients/win32/SVNControls/type.dat
echo 'part of change #495' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Entry.java
echo 'part of change #495' >> ${WC}/trunk/subversion/libsvn_fs/tree.c
${SVN} commit -m 'commit #495' ${WC}/trunk/expat-lite/xmltok_ns.c ${WC}/trunk/doc/programmer/design/model.texi ${WC}/trunk/subversion/clients/win32/SVNControls/type.dat ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Entry.java ${WC}/trunk/subversion/libsvn_fs/tree.c

################### change 496 ###################
echo ""
echo "Doing commit #496:"
echo 'part of change #496' >> ${WC}/trunk/subversion/libsvn_client/diff.c
echo 'part of change #496' >> ${WC}/trunk/subversion/clients/win32/WinSVN/WinSVN.vbp
echo 'part of change #496' >> ${WC}/trunk/notes/guis/planning.txt
echo 'part of change #496' >> ${WC}/trunk/subversion/mod_dav_svn/merge.c
echo 'part of change #496' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.h
echo 'part of change #496' >> ${WC}/trunk/subversion/clients/cmdline/cleanup-cmd.c
${SVN} commit -m 'commit #496' ${WC}/trunk/subversion/libsvn_client/diff.c ${WC}/trunk/subversion/clients/win32/WinSVN/WinSVN.vbp ${WC}/trunk/notes/guis/planning.txt ${WC}/trunk/subversion/mod_dav_svn/merge.c ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.h ${WC}/trunk/subversion/clients/cmdline/cleanup-cmd.c

################### change 497 ###################
echo ""
echo "Doing commit #497:"
echo 'part of change #497' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TreeDeltaEditor.java
echo 'part of change #497' >> ${WC}/trunk/subversion/clients/cmdline/status.c
echo 'part of change #497' >> ${WC}/trunk/subversion/libsvn_repos/reporter.c
echo 'part of change #497' >> ${WC}/trunk/subversion/clients/win32/SVNControls/link.dat
echo 'part of change #497' >> ${WC}/trunk/subversion/libsvn_fs/libsvn_fs.dsp
echo 'part of change #497' >> ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp
echo 'part of change #497' >> ${WC}/trunk/subversion/bindings/svn_error.i
${SVN} commit -m 'commit #497' ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TreeDeltaEditor.java ${WC}/trunk/subversion/clients/cmdline/status.c ${WC}/trunk/subversion/libsvn_repos/reporter.c ${WC}/trunk/subversion/clients/win32/SVNControls/link.dat ${WC}/trunk/subversion/libsvn_fs/libsvn_fs.dsp ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp ${WC}/trunk/subversion/bindings/svn_error.i

################### change 498 ###################
echo ""
echo "Doing commit #498:"
echo 'part of change #498' >> ${WC}/trunk/subversion/clients/cmdline/help-cmd.c
echo 'part of change #498' >> ${WC}/trunk/subversion/libsvn_client/add.c
echo 'part of change #498' >> ${WC}/trunk/subversion.dsw
echo 'part of change #498' >> ${WC}/trunk/doc/programmer/WritingChangeLogs.txt
echo 'part of change #498' >> ${WC}/trunk/subversion/libsvn_fs/tree.h
echo 'part of change #498' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc
echo 'part of change #498' >> ${WC}/trunk/subversion/libsvn_fs/trail.h
echo 'part of change #498' >> ${WC}/trunk/subversion/libsvn_client/libsvn_client.dsp
echo 'part of change #498' >> ${WC}/trunk/gen-make.py
echo 'part of change #498' >> ${WC}/trunk/doc/programmer/design/protocol.texi
${SVN} commit -m 'commit #498' ${WC}/trunk/subversion/clients/cmdline/help-cmd.c ${WC}/trunk/subversion/libsvn_client/add.c ${WC}/trunk/subversion.dsw ${WC}/trunk/doc/programmer/WritingChangeLogs.txt ${WC}/trunk/subversion/libsvn_fs/tree.h ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc ${WC}/trunk/subversion/libsvn_fs/trail.h ${WC}/trunk/subversion/libsvn_client/libsvn_client.dsp ${WC}/trunk/gen-make.py ${WC}/trunk/doc/programmer/design/protocol.texi

################### change 499 ###################
echo ""
echo "Doing commit #499:"
echo 'part of change #499' >> ${WC}/trunk/subversion/libsvn_repos/hooks.txt
echo 'part of change #499' >> ${WC}/trunk/subversion/libsvn_client/libsvn_client.dsp
echo 'part of change #499' >> ${WC}/trunk/expat-lite/xmltok.c
echo 'part of change #499' >> ${WC}/trunk/subversion/libsvn_subr/getdate.y
echo 'part of change #499' >> ${WC}/trunk/subversion/libsvn_subr/path.c
echo 'part of change #499' >> ${WC}/trunk/subversion/svnadmin/main.c
echo 'part of change #499' >> ${WC}/trunk/subversion/libsvn_ra_local/split_url.c
echo 'part of change #499' >> ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h
echo 'part of change #499' >> ${WC}/trunk/notes/difftools/pics/README
${SVN} commit -m 'commit #499' ${WC}/trunk/subversion/libsvn_repos/hooks.txt ${WC}/trunk/subversion/libsvn_client/libsvn_client.dsp ${WC}/trunk/expat-lite/xmltok.c ${WC}/trunk/subversion/libsvn_subr/getdate.y ${WC}/trunk/subversion/libsvn_subr/path.c ${WC}/trunk/subversion/svnadmin/main.c ${WC}/trunk/subversion/libsvn_ra_local/split_url.c ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h ${WC}/trunk/notes/difftools/pics/README

################### change 500 ###################
echo ""
echo "Doing commit #500:"
echo 'part of change #500' >> ${WC}/trunk/notes/guis/pics/ClearCase-lsvtree-README
echo 'part of change #500' >> ${WC}/trunk/subversion/tests/xml/up5.xml
echo 'part of change #500' >> ${WC}/trunk/subversion/include/svn_time.h
echo 'part of change #500' >> ${WC}/trunk/subversion/libsvn_repos/hooks.c
${SVN} commit -m 'commit #500' ${WC}/trunk/notes/guis/pics/ClearCase-lsvtree-README ${WC}/trunk/subversion/tests/xml/up5.xml ${WC}/trunk/subversion/include/svn_time.h ${WC}/trunk/subversion/libsvn_repos/hooks.c

################### change 501 ###################
echo ""
echo "Doing commit #501:"
echo 'part of change #501' >> ${WC}/trunk/subversion/bindings/svn_fs.i
echo 'part of change #501' >> ${WC}/trunk/subversion/include/svn_fs.h
echo 'part of change #501' >> ${WC}/trunk/notes/guis/pics/README
echo 'part of change #501' >> ${WC}/trunk/subversion/libsvn_subr/libsvn_subr.dsp
echo 'part of change #501' >> ${WC}/trunk/subversion/libsvn_client/cleanup.c
echo 'part of change #501' >> ${WC}/trunk/subversion/libsvn_wc/README
echo 'part of change #501' >> ${WC}/trunk/subversion/mod_dav_svn/mod_dav_svn.c
${SVN} commit -m 'commit #501' ${WC}/trunk/subversion/bindings/svn_fs.i ${WC}/trunk/subversion/include/svn_fs.h ${WC}/trunk/notes/guis/pics/README ${WC}/trunk/subversion/libsvn_subr/libsvn_subr.dsp ${WC}/trunk/subversion/libsvn_client/cleanup.c ${WC}/trunk/subversion/libsvn_wc/README ${WC}/trunk/subversion/mod_dav_svn/mod_dav_svn.c

################### change 502 ###################
echo ""
echo "Doing commit #502:"
echo 'part of change #502' >> ${WC}/trunk/svn_private_config.hw
echo 'part of change #502' >> ${WC}/trunk/doc/user/manual/README
echo 'part of change #502' >> ${WC}/trunk/doc/user/manual/removals.texi
${SVN} commit -m 'commit #502' ${WC}/trunk/svn_private_config.hw ${WC}/trunk/doc/user/manual/README ${WC}/trunk/doc/user/manual/removals.texi

################### change 503 ###################
echo ""
echo "Doing commit #503:"
echo 'part of change #503' >> ${WC}/trunk/subversion/tests/xml/up3.xml
echo 'part of change #503' >> ${WC}/trunk/subversion/include/svn_string.h
echo 'part of change #503' >> ${WC}/trunk/subversion/include/svn_sorts.h
echo 'part of change #503' >> ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.c
echo 'part of change #503' >> ${WC}/trunk/doc/user/manual/svn-manual.html
echo 'part of change #503' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py
${SVN} commit -m 'commit #503' ${WC}/trunk/subversion/tests/xml/up3.xml ${WC}/trunk/subversion/include/svn_string.h ${WC}/trunk/subversion/include/svn_sorts.h ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.c ${WC}/trunk/doc/user/manual/svn-manual.html ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py

################### change 504 ###################
echo ""
echo "Doing commit #504:"
echo 'part of change #504' >> ${WC}/trunk/subversion/libsvn_repos/libsvn_repos.dsp
echo 'part of change #504' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.rgs
echo 'part of change #504' >> ${WC}/trunk/subversion/clients/cmdline/propdel-cmd.c
echo 'part of change #504' >> ${WC}/trunk/subversion/libsvn_client/revert.c
echo 'part of change #504' >> ${WC}/trunk/subversion/libsvn_delta/track_editor.c
echo 'part of change #504' >> ${WC}/trunk/subversion/libsvn_fs/tree.h
${SVN} commit -m 'commit #504' ${WC}/trunk/subversion/libsvn_repos/libsvn_repos.dsp ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.rgs ${WC}/trunk/subversion/clients/cmdline/propdel-cmd.c ${WC}/trunk/subversion/libsvn_client/revert.c ${WC}/trunk/subversion/libsvn_delta/track_editor.c ${WC}/trunk/subversion/libsvn_fs/tree.h

################### change 505 ###################
echo ""
echo "Doing commit #505:"
echo 'part of change #505' >> ${WC}/trunk/subversion/clients/cmdline/checkout-cmd.c
echo 'part of change #505' >> ${WC}/trunk/subversion/tests/libsvn_wc/checkout_test.dsp
${SVN} commit -m 'commit #505' ${WC}/trunk/subversion/clients/cmdline/checkout-cmd.c ${WC}/trunk/subversion/tests/libsvn_wc/checkout_test.dsp

################### change 506 ###################
echo ""
echo "Doing commit #506:"
echo 'part of change #506' >> ${WC}/trunk/subversion/mod_dav_svn/mod_dav_svn.c
echo 'part of change #506' >> ${WC}/trunk/README
echo 'part of change #506' >> ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py
echo 'part of change #506' >> ${WC}/trunk/subversion/tests/libsvn_wc/simple.delta
echo 'part of change #506' >> ${WC}/trunk/subversion/tests/libsvn_fs/skel-test.c
echo 'part of change #506' >> ${WC}/trunk/subversion/libsvn_subr/quoprint.c
echo 'part of change #506' >> ${WC}/trunk/expat-lite/iasciitab.h
echo 'part of change #506' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/main.py
echo 'part of change #506' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/README
echo 'part of change #506' >> ${WC}/trunk/subversion/clients/cmdline/status.c
${SVN} commit -m 'commit #506' ${WC}/trunk/subversion/mod_dav_svn/mod_dav_svn.c ${WC}/trunk/README ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py ${WC}/trunk/subversion/tests/libsvn_wc/simple.delta ${WC}/trunk/subversion/tests/libsvn_fs/skel-test.c ${WC}/trunk/subversion/libsvn_subr/quoprint.c ${WC}/trunk/expat-lite/iasciitab.h ${WC}/trunk/subversion/tests/clients/cmdline/svntest/main.py ${WC}/trunk/subversion/tests/libsvn_vcdiff/README ${WC}/trunk/subversion/clients/cmdline/status.c

################### change 507 ###################
echo ""
echo "Doing commit #507:"
echo 'part of change #507' >> ${WC}/trunk/expat-lite/xmltok_impl.c
echo 'part of change #507' >> ${WC}/trunk/subversion/clients/cmdline/cleanup-cmd.c
echo 'part of change #507' >> ${WC}/trunk/subversion/libsvn_ra_dav/props.c
echo 'part of change #507' >> ${WC}/trunk/subversion/tests/libsvn_repos/repos-test.c
echo 'part of change #507' >> ${WC}/trunk/subversion/bindings/svn_wc.i
echo 'part of change #507' >> ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py
echo 'part of change #507' >> ${WC}/trunk/subversion/mod_dav_svn/activity.c
echo 'part of change #507' >> ${WC}/trunk/subversion/tests/libsvn_subr/hashdump_test.dsp
echo 'part of change #507' >> ${WC}/trunk/subversion/clients/cmdline/main.c
${SVN} commit -m 'commit #507' ${WC}/trunk/expat-lite/xmltok_impl.c ${WC}/trunk/subversion/clients/cmdline/cleanup-cmd.c ${WC}/trunk/subversion/libsvn_ra_dav/props.c ${WC}/trunk/subversion/tests/libsvn_repos/repos-test.c ${WC}/trunk/subversion/bindings/svn_wc.i ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py ${WC}/trunk/subversion/mod_dav_svn/activity.c ${WC}/trunk/subversion/tests/libsvn_subr/hashdump_test.dsp ${WC}/trunk/subversion/clients/cmdline/main.c

################### change 508 ###################
echo ""
echo "Doing commit #508:"
echo 'part of change #508' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.h
echo 'part of change #508' >> ${WC}/trunk/subversion/tests/libsvn_wc/simple.delta
echo 'part of change #508' >> ${WC}/trunk/subversion/libsvn_wc/wc.h
echo 'part of change #508' >> ${WC}/trunk/subversion/clients/win32/svn_com/misc.h
echo 'part of change #508' >> ${WC}/trunk/doc/user/manual/license.texi
echo 'part of change #508' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.cpp
echo 'part of change #508' >> ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h
${SVN} commit -m 'commit #508' ${WC}/trunk/subversion/clients/win32/svn_com/SVN.h ${WC}/trunk/subversion/tests/libsvn_wc/simple.delta ${WC}/trunk/subversion/libsvn_wc/wc.h ${WC}/trunk/subversion/clients/win32/svn_com/misc.h ${WC}/trunk/doc/user/manual/license.texi ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.cpp ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h

################### change 509 ###################
echo ""
echo "Doing commit #509:"
echo 'part of change #509' >> ${WC}/trunk/subversion/libsvn_fs/txn-table.c
echo 'part of change #509' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.c
echo 'part of change #509' >> ${WC}/trunk/subversion/clients/cmdline/add-cmd.c
echo 'part of change #509' >> ${WC}/trunk/subversion/libsvn_delta/vdelta.c
echo 'part of change #509' >> ${WC}/trunk/subversion/libsvn_delta/xml_output.c
echo 'part of change #509' >> ${WC}/trunk/README
echo 'part of change #509' >> ${WC}/trunk/expat-lite/xmlrole.h
${SVN} commit -m 'commit #509' ${WC}/trunk/subversion/libsvn_fs/txn-table.c ${WC}/trunk/subversion/libsvn_fs/reps-table.c ${WC}/trunk/subversion/clients/cmdline/add-cmd.c ${WC}/trunk/subversion/libsvn_delta/vdelta.c ${WC}/trunk/subversion/libsvn_delta/xml_output.c ${WC}/trunk/README ${WC}/trunk/expat-lite/xmlrole.h

################### change 510 ###################
echo ""
echo "Doing commit #510:"
echo 'part of change #510' >> ${WC}/trunk/subversion/libsvn_client/auth.c
${SVN} commit -m 'commit #510' ${WC}/trunk/subversion/libsvn_client/auth.c

################### change 511 ###################
echo ""
echo "Doing commit #511:"
echo 'part of change #511' >> ${WC}/trunk/subversion/bindings/README
echo 'part of change #511' >> ${WC}/trunk/subversion/tests/xml/up1b-postfix.xml
echo 'part of change #511' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.def
echo 'part of change #511' >> ${WC}/trunk/doc/programmer/design/svn-design.txt
echo 'part of change #511' >> ${WC}/trunk/subversion/tests/libsvn_delta/xml-output-test.c
echo 'part of change #511' >> ${WC}/trunk/expat-lite/xmltok_impl.c
echo 'part of change #511' >> ${WC}/trunk/subversion/tests/libsvn_delta/random-test.c
${SVN} commit -m 'commit #511' ${WC}/trunk/subversion/bindings/README ${WC}/trunk/subversion/tests/xml/up1b-postfix.xml ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.def ${WC}/trunk/doc/programmer/design/svn-design.txt ${WC}/trunk/subversion/tests/libsvn_delta/xml-output-test.c ${WC}/trunk/expat-lite/xmltok_impl.c ${WC}/trunk/subversion/tests/libsvn_delta/random-test.c

################### change 512 ###################
echo ""
echo "Doing commit #512:"
echo 'part of change #512' >> ${WC}/trunk/subversion/clients/cmdline/commit-cmd.c
${SVN} commit -m 'commit #512' ${WC}/trunk/subversion/clients/cmdline/commit-cmd.c

################### change 513 ###################
echo ""
echo "Doing commit #513:"
echo 'part of change #513' >> ${WC}/trunk/subversion/libsvn_delta/xml_output.c
echo 'part of change #513' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaOp.java
${SVN} commit -m 'commit #513' ${WC}/trunk/subversion/libsvn_delta/xml_output.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaOp.java

################### change 514 ###################
echo ""
echo "Doing commit #514:"
echo 'part of change #514' >> ${WC}/trunk/subversion/libsvn_wc/props.c
echo 'part of change #514' >> ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py
echo 'part of change #514' >> ${WC}/trunk/subversion/libsvn_client/add.c
echo 'part of change #514' >> ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse-test.c
echo 'part of change #514' >> ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp
echo 'part of change #514' >> ${WC}/trunk/doc/programmer/design/protocol.texi
echo 'part of change #514' >> ${WC}/trunk/subversion/tests/xml/up3.xml
echo 'part of change #514' >> ${WC}/trunk/doc/programmer/design/protocol.texi
echo 'part of change #514' >> ${WC}/trunk/doc/user/manual/dirversioning.texi
${SVN} commit -m 'commit #514' ${WC}/trunk/subversion/libsvn_wc/props.c ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py ${WC}/trunk/subversion/libsvn_client/add.c ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse-test.c ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp ${WC}/trunk/doc/programmer/design/protocol.texi ${WC}/trunk/subversion/tests/xml/up3.xml ${WC}/trunk/doc/programmer/design/protocol.texi ${WC}/trunk/doc/user/manual/dirversioning.texi

################### change 515 ###################
echo ""
echo "Doing commit #515:"
echo 'part of change #515' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cFlatHeader.cls
echo 'part of change #515' >> ${WC}/trunk/subversion/clients/cmdline/propset-cmd.c
${SVN} commit -m 'commit #515' ${WC}/trunk/subversion/clients/win32/SVNControls/cFlatHeader.cls ${WC}/trunk/subversion/clients/cmdline/propset-cmd.c

################### change 516 ###################
echo ""
echo "Doing commit #516:"
echo 'part of change #516' >> ${WC}/trunk/subversion/svnlook/main.c
${SVN} commit -m 'commit #516' ${WC}/trunk/subversion/svnlook/main.c

################### change 517 ###################
echo ""
echo "Doing commit #517:"
echo 'part of change #517' >> ${WC}/trunk/subversion/clients/win32/SVNControls/type.dat
echo 'part of change #517' >> ${WC}/trunk/svn_config.dsp
echo 'part of change #517' >> ${WC}/trunk/expat-lite/CHANGES
echo 'part of change #517' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Entry.java
echo 'part of change #517' >> ${WC}/trunk/subversion/libsvn_repos/hooks.c
${SVN} commit -m 'commit #517' ${WC}/trunk/subversion/clients/win32/SVNControls/type.dat ${WC}/trunk/svn_config.dsp ${WC}/trunk/expat-lite/CHANGES ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Entry.java ${WC}/trunk/subversion/libsvn_repos/hooks.c

################### change 518 ###################
echo ""
echo "Doing commit #518:"
echo 'part of change #518' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cHeaderControl.cls
echo 'part of change #518' >> ${WC}/trunk/www/project_status.html
echo 'part of change #518' >> ${WC}/trunk/subversion/libsvn_fs/nodes-table.c
echo 'part of change #518' >> ${WC}/trunk/subversion/libsvn_wc/adm_crawler.c
echo 'part of change #518' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.c
echo 'part of change #518' >> ${WC}/trunk/subversion/libsvn_repos/libsvn_repos.dsp
echo 'part of change #518' >> ${WC}/trunk/subversion/libsvn_ra_dav/fetch.c
echo 'part of change #518' >> ${WC}/trunk/subversion/bindings/README
${SVN} commit -m 'commit #518' ${WC}/trunk/subversion/clients/win32/SVNControls/cHeaderControl.cls ${WC}/trunk/www/project_status.html ${WC}/trunk/subversion/libsvn_fs/nodes-table.c ${WC}/trunk/subversion/libsvn_wc/adm_crawler.c ${WC}/trunk/subversion/libsvn_fs/reps-table.c ${WC}/trunk/subversion/libsvn_repos/libsvn_repos.dsp ${WC}/trunk/subversion/libsvn_ra_dav/fetch.c ${WC}/trunk/subversion/bindings/README

################### change 519 ###################
echo ""
echo "Doing commit #519:"
echo 'part of change #519' >> ${WC}/trunk/doc/user/svnlook/svnlook.texi
echo 'part of change #519' >> ${WC}/trunk/ac-helpers/berkeley-db.m4
echo 'part of change #519' >> ${WC}/trunk/subversion/libsvn_client/commit.c
echo 'part of change #519' >> ${WC}/trunk/subversion/libsvn_wc/README
${SVN} commit -m 'commit #519' ${WC}/trunk/doc/user/svnlook/svnlook.texi ${WC}/trunk/ac-helpers/berkeley-db.m4 ${WC}/trunk/subversion/libsvn_client/commit.c ${WC}/trunk/subversion/libsvn_wc/README

################### change 520 ###################
echo ""
echo "Doing commit #520:"
echo 'part of change #520' >> ${WC}/trunk/ac-helpers/ltmain.sh
echo 'part of change #520' >> ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.c
echo 'part of change #520' >> ${WC}/trunk/subversion/include/svn_time.h
echo 'part of change #520' >> ${WC}/trunk/subversion/LICENSE
echo 'part of change #520' >> ${WC}/trunk/subversion/libsvn_subr/target.c
echo 'part of change #520' >> ${WC}/trunk/build.conf
${SVN} commit -m 'commit #520' ${WC}/trunk/ac-helpers/ltmain.sh ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.c ${WC}/trunk/subversion/include/svn_time.h ${WC}/trunk/subversion/LICENSE ${WC}/trunk/subversion/libsvn_subr/target.c ${WC}/trunk/build.conf

################### change 521 ###################
echo ""
echo "Doing commit #521:"
echo 'part of change #521' >> ${WC}/trunk/subversion/libsvn_ra_local/ra_plugin.c
echo 'part of change #521' >> ${WC}/trunk/subversion/include/svn_error.h
echo 'part of change #521' >> ${WC}/trunk/subversion/libsvn_wc/status.c
echo 'part of change #521' >> ${WC}/trunk/www/project_faq.html
echo 'part of change #521' >> ${WC}/trunk/subversion/libsvn_ra_dav/ra_dav.h
echo 'part of change #521' >> ${WC}/trunk/subversion/libsvn_subr/hashdump.c
echo 'part of change #521' >> ${WC}/trunk/svn_check.dsp
echo 'part of change #521' >> ${WC}/trunk/doc/programmer/design/license.texi
echo 'part of change #521' >> ${WC}/trunk/subversion/libsvn_delta/vdelta.c
${SVN} commit -m 'commit #521' ${WC}/trunk/subversion/libsvn_ra_local/ra_plugin.c ${WC}/trunk/subversion/include/svn_error.h ${WC}/trunk/subversion/libsvn_wc/status.c ${WC}/trunk/www/project_faq.html ${WC}/trunk/subversion/libsvn_ra_dav/ra_dav.h ${WC}/trunk/subversion/libsvn_subr/hashdump.c ${WC}/trunk/svn_check.dsp ${WC}/trunk/doc/programmer/design/license.texi ${WC}/trunk/subversion/libsvn_delta/vdelta.c

################### change 522 ###################
echo ""
echo "Doing commit #522:"
echo 'part of change #522' >> ${WC}/trunk/subversion/tests/xml/up2.xml
echo 'part of change #522' >> ${WC}/trunk/ac-helpers/berkeley-db.m4
echo 'part of change #522' >> ${WC}/trunk/subversion/libsvn_fs/tree.c
echo 'part of change #522' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.def
echo 'part of change #522' >> ${WC}/trunk/subversion/libsvn_subr/getdate.cw
echo 'part of change #522' >> ${WC}/trunk/subversion/include/svn_path.h
echo 'part of change #522' >> ${WC}/trunk/subversion/libsvn_fs/id.c
echo 'part of change #522' >> ${WC}/trunk/notes/svn-config-files
echo 'part of change #522' >> ${WC}/trunk/subversion/libsvn_delta/compose_editors.c
${SVN} commit -m 'commit #522' ${WC}/trunk/subversion/tests/xml/up2.xml ${WC}/trunk/ac-helpers/berkeley-db.m4 ${WC}/trunk/subversion/libsvn_fs/tree.c ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.def ${WC}/trunk/subversion/libsvn_subr/getdate.cw ${WC}/trunk/subversion/include/svn_path.h ${WC}/trunk/subversion/libsvn_fs/id.c ${WC}/trunk/notes/svn-config-files ${WC}/trunk/subversion/libsvn_delta/compose_editors.c

################### change 523 ###################
echo ""
echo "Doing commit #523:"
echo 'part of change #523' >> ${WC}/trunk/subversion/libsvn_ra_dav/merge.c
echo 'part of change #523' >> ${WC}/trunk/subversion/tests/libsvn_fs/fs_test.dsp
echo 'part of change #523' >> ${WC}/trunk/doc/programmer/design/svn-design.txt
echo 'part of change #523' >> ${WC}/trunk/subversion/tests/libsvn_fs/key-test.c
echo 'part of change #523' >> ${WC}/trunk/svn_private_config.hw
${SVN} commit -m 'commit #523' ${WC}/trunk/subversion/libsvn_ra_dav/merge.c ${WC}/trunk/subversion/tests/libsvn_fs/fs_test.dsp ${WC}/trunk/doc/programmer/design/svn-design.txt ${WC}/trunk/subversion/tests/libsvn_fs/key-test.c ${WC}/trunk/svn_private_config.hw

################### change 524 ###################
echo ""
echo "Doing commit #524:"
echo 'part of change #524' >> ${WC}/trunk/subversion/clients/win32/SVNControls/gDevGrid.vbg
echo 'part of change #524' >> ${WC}/trunk/doc/user/manual/adds.texi
echo 'part of change #524' >> ${WC}/trunk/subversion/libsvn_wc/Makefile
${SVN} commit -m 'commit #524' ${WC}/trunk/subversion/clients/win32/SVNControls/gDevGrid.vbg ${WC}/trunk/doc/user/manual/adds.texi ${WC}/trunk/subversion/libsvn_wc/Makefile

################### change 525 ###################
echo ""
echo "Doing commit #525:"
echo 'part of change #525' >> ${WC}/trunk/subversion/libsvn_fs/txn-table.h
echo 'part of change #525' >> ${WC}/trunk/svn_private_config.hw
${SVN} commit -m 'commit #525' ${WC}/trunk/subversion/libsvn_fs/txn-table.h ${WC}/trunk/svn_private_config.hw

################### change 526 ###################
echo ""
echo "Doing commit #526:"
echo 'part of change #526' >> ${WC}/trunk/subversion/libsvn_client/diff.c
echo 'part of change #526' >> ${WC}/trunk/NEWS
echo 'part of change #526' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmTestMatrix.frm
echo 'part of change #526' >> ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.cpp
${SVN} commit -m 'commit #526' ${WC}/trunk/subversion/libsvn_client/diff.c ${WC}/trunk/NEWS ${WC}/trunk/subversion/clients/win32/SVNControls/frmTestMatrix.frm ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.cpp

################### change 527 ###################
echo ""
echo "Doing commit #527:"
echo 'part of change #527' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cHeaderControl.cls
echo 'part of change #527' >> ${WC}/trunk/expat-lite/xmlparse.c
echo 'part of change #527' >> ${WC}/trunk/doc/programmer/WritingChangeLogs.txt
echo 'part of change #527' >> ${WC}/trunk/subversion/tests/xml/up1b-postfix.xml
echo 'part of change #527' >> ${WC}/trunk/subversion/libsvn_repos/reporter.c
echo 'part of change #527' >> ${WC}/trunk/svn_private_config.h.in
${SVN} commit -m 'commit #527' ${WC}/trunk/subversion/clients/win32/SVNControls/cHeaderControl.cls ${WC}/trunk/expat-lite/xmlparse.c ${WC}/trunk/doc/programmer/WritingChangeLogs.txt ${WC}/trunk/subversion/tests/xml/up1b-postfix.xml ${WC}/trunk/subversion/libsvn_repos/reporter.c ${WC}/trunk/svn_private_config.h.in

################### change 528 ###################
echo ""
echo "Doing commit #528:"
echo 'part of change #528' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cHeaderControl.cls
echo 'part of change #528' >> ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h
echo 'part of change #528' >> ${WC}/trunk/subversion/include/svn_hash.h
echo 'part of change #528' >> ${WC}/trunk/subversion/mod_dav_svn/deadprops.c
echo 'part of change #528' >> ${WC}/trunk/subversion/libsvn_ra_dav/ra_dav.h
echo 'part of change #528' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/__init__.py
echo 'part of change #528' >> ${WC}/trunk/subversion/libsvn_fs/rev-table.c
echo 'part of change #528' >> ${WC}/trunk/subversion/tests/libsvn_subr/path-test.c
echo 'part of change #528' >> ${WC}/trunk/subversion/tests/xml/up1a-inline.xml
${SVN} commit -m 'commit #528' ${WC}/trunk/subversion/clients/win32/SVNControls/cHeaderControl.cls ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h ${WC}/trunk/subversion/include/svn_hash.h ${WC}/trunk/subversion/mod_dav_svn/deadprops.c ${WC}/trunk/subversion/libsvn_ra_dav/ra_dav.h ${WC}/trunk/subversion/tests/clients/cmdline/svntest/__init__.py ${WC}/trunk/subversion/libsvn_fs/rev-table.c ${WC}/trunk/subversion/tests/libsvn_subr/path-test.c ${WC}/trunk/subversion/tests/xml/up1a-inline.xml

################### change 529 ###################
echo ""
echo "Doing commit #529:"
echo 'part of change #529' >> ${WC}/trunk/expat-lite/xmltok.h
${SVN} commit -m 'commit #529' ${WC}/trunk/expat-lite/xmltok.h

################### change 530 ###################
echo ""
echo "Doing commit #530:"
echo 'part of change #530' >> ${WC}/trunk/subversion/clients/cmdline/subversion_client.dsp
echo 'part of change #530' >> ${WC}/trunk/subversion/libsvn_fs/err.c
echo 'part of change #530' >> ${WC}/trunk/subversion/libsvn_ra_dav/options.c
echo 'part of change #530' >> ${WC}/trunk/subversion/mod_dav_svn/repos.c
echo 'part of change #530' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Entry.java
echo 'part of change #530' >> ${WC}/trunk/subversion/libsvn_subr/libsvn_subr.dsp
echo 'part of change #530' >> ${WC}/trunk/subversion/libsvn_delta/default_editor.c
${SVN} commit -m 'commit #530' ${WC}/trunk/subversion/clients/cmdline/subversion_client.dsp ${WC}/trunk/subversion/libsvn_fs/err.c ${WC}/trunk/subversion/libsvn_ra_dav/options.c ${WC}/trunk/subversion/mod_dav_svn/repos.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Entry.java ${WC}/trunk/subversion/libsvn_subr/libsvn_subr.dsp ${WC}/trunk/subversion/libsvn_delta/default_editor.c

################### change 531 ###################
echo ""
echo "Doing commit #531:"
echo 'part of change #531' >> ${WC}/trunk/subversion/tests/libsvn_subr/target-test.c
echo 'part of change #531' >> ${WC}/trunk/ac-helpers/ltmain.sh
echo 'part of change #531' >> ${WC}/trunk/tools/cvs2svn/design-notes.txt
echo 'part of change #531' >> ${WC}/trunk/doc/programmer/design/svn-design.txt
echo 'part of change #531' >> ${WC}/trunk/subversion/tests/libsvn_wc/checkout-1.txt
${SVN} commit -m 'commit #531' ${WC}/trunk/subversion/tests/libsvn_subr/target-test.c ${WC}/trunk/ac-helpers/ltmain.sh ${WC}/trunk/tools/cvs2svn/design-notes.txt ${WC}/trunk/doc/programmer/design/svn-design.txt ${WC}/trunk/subversion/tests/libsvn_wc/checkout-1.txt

################### change 532 ###################
echo ""
echo "Doing commit #532:"
echo 'part of change #532' >> ${WC}/trunk/subversion/mod_dav_svn/deadprops.c
${SVN} commit -m 'commit #532' ${WC}/trunk/subversion/mod_dav_svn/deadprops.c

################### change 533 ###################
echo ""
echo "Doing commit #533:"
echo 'part of change #533' >> ${WC}/trunk/subversion/include/svn_fs.h
echo 'part of change #533' >> ${WC}/trunk/PORTING
echo 'part of change #533' >> ${WC}/trunk/expat-lite/xmlrole.c
echo 'part of change #533' >> ${WC}/trunk/subversion/mod_dav_svn/update.c
echo 'part of change #533' >> ${WC}/trunk/expat-lite/xmltok.h
echo 'part of change #533' >> ${WC}/trunk/subversion/libsvn_client/client.h
echo 'part of change #533' >> ${WC}/trunk/subversion/clients/win32/svn_com/resource.h
echo 'part of change #533' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.h
${SVN} commit -m 'commit #533' ${WC}/trunk/subversion/include/svn_fs.h ${WC}/trunk/PORTING ${WC}/trunk/expat-lite/xmlrole.c ${WC}/trunk/subversion/mod_dav_svn/update.c ${WC}/trunk/expat-lite/xmltok.h ${WC}/trunk/subversion/libsvn_client/client.h ${WC}/trunk/subversion/clients/win32/svn_com/resource.h ${WC}/trunk/subversion/libsvn_fs/reps-table.h

################### change 534 ###################
echo ""
echo "Doing commit #534:"
echo 'part of change #534' >> ${WC}/trunk/subversion/clients/cmdline/delete-cmd.c
echo 'part of change #534' >> ${WC}/trunk/expat-lite/libexpat.dsp
echo 'part of change #534' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target4.txt
echo 'part of change #534' >> ${WC}/trunk/subversion/libsvn_fs/key-gen.c
echo 'part of change #534' >> ${WC}/trunk/doc/programmer/design/future.texi
echo 'part of change #534' >> ${WC}/trunk/subversion/libsvn_wc/adm_files.c
echo 'part of change #534' >> ${WC}/trunk/subversion/clients/cmdline/propget-cmd.c
echo 'part of change #534' >> ${WC}/trunk/subversion/libsvn_delta/default_editor.c
echo 'part of change #534' >> ${WC}/trunk/subversion/libsvn_fs/node-rev.h
echo 'part of change #534' >> ${WC}/trunk/subversion/libsvn_client/update.c
${SVN} commit -m 'commit #534' ${WC}/trunk/subversion/clients/cmdline/delete-cmd.c ${WC}/trunk/expat-lite/libexpat.dsp ${WC}/trunk/subversion/tests/libsvn_vcdiff/target4.txt ${WC}/trunk/subversion/libsvn_fs/key-gen.c ${WC}/trunk/doc/programmer/design/future.texi ${WC}/trunk/subversion/libsvn_wc/adm_files.c ${WC}/trunk/subversion/clients/cmdline/propget-cmd.c ${WC}/trunk/subversion/libsvn_delta/default_editor.c ${WC}/trunk/subversion/libsvn_fs/node-rev.h ${WC}/trunk/subversion/libsvn_client/update.c

################### change 535 ###################
echo ""
echo "Doing commit #535:"
echo 'part of change #535' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Client.java
echo 'part of change #535' >> ${WC}/trunk/subversion/clients/cmdline/import-cmd.c
echo 'part of change #535' >> ${WC}/trunk/svn_check.dsp
echo 'part of change #535' >> ${WC}/trunk/subversion/libsvn_fs/reps-strings.c
echo 'part of change #535' >> ${WC}/trunk/notes/svn-config-files
echo 'part of change #535' >> ${WC}/trunk/subversion/libsvn_subr/xml.c
echo 'part of change #535' >> ${WC}/trunk/subversion/libsvn_fs/key-gen.h
${SVN} commit -m 'commit #535' ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Client.java ${WC}/trunk/subversion/clients/cmdline/import-cmd.c ${WC}/trunk/svn_check.dsp ${WC}/trunk/subversion/libsvn_fs/reps-strings.c ${WC}/trunk/notes/svn-config-files ${WC}/trunk/subversion/libsvn_subr/xml.c ${WC}/trunk/subversion/libsvn_fs/key-gen.h

################### change 536 ###################
echo ""
echo "Doing commit #536:"
echo 'part of change #536' >> ${WC}/trunk/subversion/libsvn_fs/nodes-table.c
${SVN} commit -m 'commit #536' ${WC}/trunk/subversion/libsvn_fs/nodes-table.c

################### change 537 ###################
echo ""
echo "Doing commit #537:"
echo 'part of change #537' >> ${WC}/trunk/ChangeLog.CVS
echo 'part of change #537' >> ${WC}/trunk/notes/m3-checklist.txt
echo 'part of change #537' >> ${WC}/trunk/subversion/clients/cmdline/cl.h
echo 'part of change #537' >> ${WC}/trunk/doc/user/manual/model.texi
echo 'part of change #537' >> ${WC}/trunk/doc/user/manual/svn-manual.txt
${SVN} commit -m 'commit #537' ${WC}/trunk/ChangeLog.CVS ${WC}/trunk/notes/m3-checklist.txt ${WC}/trunk/subversion/clients/cmdline/cl.h ${WC}/trunk/doc/user/manual/model.texi ${WC}/trunk/doc/user/manual/svn-manual.txt

################### change 538 ###################
echo ""
echo "Doing commit #538:"
echo 'part of change #538' >> ${WC}/trunk/subversion/include/svn_xml.h
echo 'part of change #538' >> ${WC}/trunk/subversion/libsvn_subr/libsvn_subr.dsp
echo 'part of change #538' >> ${WC}/trunk/subversion/clients/win32/WinSVN/lvh.cls
echo 'part of change #538' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/actions.py
echo 'part of change #538' >> ${WC}/trunk/subversion/clients/cmdline/propdel-cmd.c
${SVN} commit -m 'commit #538' ${WC}/trunk/subversion/include/svn_xml.h ${WC}/trunk/subversion/libsvn_subr/libsvn_subr.dsp ${WC}/trunk/subversion/clients/win32/WinSVN/lvh.cls ${WC}/trunk/subversion/tests/clients/cmdline/svntest/actions.py ${WC}/trunk/subversion/clients/cmdline/propdel-cmd.c

################### change 539 ###################
echo ""
echo "Doing commit #539:"
echo 'part of change #539' >> ${WC}/trunk/subversion/tests/fs-helpers.c
${SVN} commit -m 'commit #539' ${WC}/trunk/subversion/tests/fs-helpers.c

################### change 540 ###################
echo ""
echo "Doing commit #540:"
echo 'part of change #540' >> ${WC}/trunk/subversion/mod_dav_svn/mod_dav_svn.c
${SVN} commit -m 'commit #540' ${WC}/trunk/subversion/mod_dav_svn/mod_dav_svn.c

################### change 541 ###################
echo ""
echo "Doing commit #541:"
echo 'part of change #541' >> ${WC}/trunk/doc/user/svnlook/svnlook.texi
${SVN} commit -m 'commit #541' ${WC}/trunk/doc/user/svnlook/svnlook.texi

################### change 542 ###################
echo ""
echo "Doing commit #542:"
echo 'part of change #542' >> ${WC}/trunk/notes/difftools/README
echo 'part of change #542' >> ${WC}/trunk/subversion/libsvn_subr/getdate.y
echo 'part of change #542' >> ${WC}/trunk/subversion/bindings/svn_client.i
echo 'part of change #542' >> ${WC}/trunk/tools/cvs2svn/cvs2svn.py
echo 'part of change #542' >> ${WC}/trunk/subversion/tests/fs-helpers.h
echo 'part of change #542' >> ${WC}/trunk/subversion/bindings/svn_ra.i
echo 'part of change #542' >> ${WC}/trunk/subversion/libsvn_subr/getdate.y
${SVN} commit -m 'commit #542' ${WC}/trunk/notes/difftools/README ${WC}/trunk/subversion/libsvn_subr/getdate.y ${WC}/trunk/subversion/bindings/svn_client.i ${WC}/trunk/tools/cvs2svn/cvs2svn.py ${WC}/trunk/subversion/tests/fs-helpers.h ${WC}/trunk/subversion/bindings/svn_ra.i ${WC}/trunk/subversion/libsvn_subr/getdate.y

################### change 543 ###################
echo ""
echo "Doing commit #543:"
echo 'part of change #543' >> ${WC}/trunk/gen-make.py
${SVN} commit -m 'commit #543' ${WC}/trunk/gen-make.py

################### change 544 ###################
echo ""
echo "Doing commit #544:"
echo 'part of change #544' >> ${WC}/trunk/subversion/include/svn_config.h
echo 'part of change #544' >> ${WC}/trunk/tools/cvs2svn/design-notes.txt
echo 'part of change #544' >> ${WC}/trunk/subversion/include/svn_xml.h
echo 'part of change #544' >> ${WC}/trunk/subversion/libsvn_subr/getdate.cw
echo 'part of change #544' >> ${WC}/trunk/subversion/clients/win32/WinSVN/WinSVN.vbp
${SVN} commit -m 'commit #544' ${WC}/trunk/subversion/include/svn_config.h ${WC}/trunk/tools/cvs2svn/design-notes.txt ${WC}/trunk/subversion/include/svn_xml.h ${WC}/trunk/subversion/libsvn_subr/getdate.cw ${WC}/trunk/subversion/clients/win32/WinSVN/WinSVN.vbp

################### change 545 ###################
echo ""
echo "Doing commit #545:"
echo 'part of change #545' >> ${WC}/trunk/doc/programmer/design/future.texi
${SVN} commit -m 'commit #545' ${WC}/trunk/doc/programmer/design/future.texi

################### change 546 ###################
echo ""
echo "Doing commit #546:"
echo 'part of change #546' >> ${WC}/trunk/subversion/libsvn_fs/fs.c
echo 'part of change #546' >> ${WC}/trunk/subversion/clients/win32/SVNControls/ppgMain.pag
echo 'part of change #546' >> ${WC}/trunk/subversion/mod_dav_svn/static/Makefile.in
echo 'part of change #546' >> ${WC}/trunk/subversion/svn-dev.el
echo 'part of change #546' >> ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py
${SVN} commit -m 'commit #546' ${WC}/trunk/subversion/libsvn_fs/fs.c ${WC}/trunk/subversion/clients/win32/SVNControls/ppgMain.pag ${WC}/trunk/subversion/mod_dav_svn/static/Makefile.in ${WC}/trunk/subversion/svn-dev.el ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py

################### change 547 ###################
echo ""
echo "Doing commit #547:"
echo 'part of change #547' >> ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py
echo 'part of change #547' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TreeDeltaEditor.java
echo 'part of change #547' >> ${WC}/trunk/subversion/libsvn_subr/io.c
echo 'part of change #547' >> ${WC}/trunk/subversion/libsvn_fs/key-gen.h
echo 'part of change #547' >> ${WC}/trunk/subversion/tests/clients/cmdline/README
${SVN} commit -m 'commit #547' ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TreeDeltaEditor.java ${WC}/trunk/subversion/libsvn_subr/io.c ${WC}/trunk/subversion/libsvn_fs/key-gen.h ${WC}/trunk/subversion/tests/clients/cmdline/README

################### change 548 ###################
echo ""
echo "Doing commit #548:"
echo 'part of change #548' >> ${WC}/trunk/subversion/libsvn_subr/target.c
echo 'part of change #548' >> ${WC}/trunk/doc/user/manual/README
echo 'part of change #548' >> ${WC}/trunk/subversion/clients/cmdline/README
echo 'part of change #548' >> ${WC}/trunk/subversion/libsvn_fs/strings-table.c
echo 'part of change #548' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.rgs
echo 'part of change #548' >> ${WC}/trunk/subversion/libsvn_fs/proplist.c
echo 'part of change #548' >> ${WC}/trunk/svn_private_config.hw
echo 'part of change #548' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta-test.c
echo 'part of change #548' >> ${WC}/trunk/expat-lite/xmlparse.h
${SVN} commit -m 'commit #548' ${WC}/trunk/subversion/libsvn_subr/target.c ${WC}/trunk/doc/user/manual/README ${WC}/trunk/subversion/clients/cmdline/README ${WC}/trunk/subversion/libsvn_fs/strings-table.c ${WC}/trunk/subversion/clients/win32/svn_com/SVN.rgs ${WC}/trunk/subversion/libsvn_fs/proplist.c ${WC}/trunk/svn_private_config.hw ${WC}/trunk/subversion/tests/libsvn_delta/vdelta-test.c ${WC}/trunk/expat-lite/xmlparse.h

################### change 549 ###################
echo ""
echo "Doing commit #549:"
echo 'part of change #549' >> ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp
echo 'part of change #549' >> ${WC}/trunk/subversion/clients/win32/SVNControls/mGDI.bas
echo 'part of change #549' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target1.txt
echo 'part of change #549' >> ${WC}/trunk/subversion/clients/cmdline/import-cmd.c
echo 'part of change #549' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.rgs
echo 'part of change #549' >> ${WC}/trunk/subversion/clients/cmdline/diff.c
echo 'part of change #549' >> ${WC}/trunk/doc/user/manual/README
${SVN} commit -m 'commit #549' ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp ${WC}/trunk/subversion/clients/win32/SVNControls/mGDI.bas ${WC}/trunk/subversion/tests/libsvn_vcdiff/target1.txt ${WC}/trunk/subversion/clients/cmdline/import-cmd.c ${WC}/trunk/subversion/clients/win32/svn_com/SVN.rgs ${WC}/trunk/subversion/clients/cmdline/diff.c ${WC}/trunk/doc/user/manual/README

################### change 550 ###################
echo ""
echo "Doing commit #550:"
echo 'part of change #550' >> ${WC}/trunk/subversion/clients/cmdline/commit-cmd.c
echo 'part of change #550' >> ${WC}/trunk/subversion/libsvn_delta/delta.h
echo 'part of change #550' >> ${WC}/trunk/subversion/mod_dav_svn/util.c
echo 'part of change #550' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmAbout.frm
${SVN} commit -m 'commit #550' ${WC}/trunk/subversion/clients/cmdline/commit-cmd.c ${WC}/trunk/subversion/libsvn_delta/delta.h ${WC}/trunk/subversion/mod_dav_svn/util.c ${WC}/trunk/subversion/clients/win32/WinSVN/frmAbout.frm

################### change 551 ###################
echo ""
echo "Doing commit #551:"
echo 'part of change #551' >> ${WC}/trunk/doc/programmer/WritingChangeLogs.txt
echo 'part of change #551' >> ${WC}/trunk/expat-lite/xmltok_impl.h
echo 'part of change #551' >> ${WC}/trunk/subversion/tests/libsvn_delta/postfix.delta
echo 'part of change #551' >> ${WC}/trunk/subversion/libsvn_fs/fs.c
echo 'part of change #551' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc
echo 'part of change #551' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookDemo.frm
echo 'part of change #551' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.cpp
echo 'part of change #551' >> ${WC}/trunk/subversion/libsvn_ra_dav/ra_dav.h
${SVN} commit -m 'commit #551' ${WC}/trunk/doc/programmer/WritingChangeLogs.txt ${WC}/trunk/expat-lite/xmltok_impl.h ${WC}/trunk/subversion/tests/libsvn_delta/postfix.delta ${WC}/trunk/subversion/libsvn_fs/fs.c ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookDemo.frm ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.cpp ${WC}/trunk/subversion/libsvn_ra_dav/ra_dav.h

################### change 552 ###################
echo ""
echo "Doing commit #552:"
echo 'part of change #552' >> ${WC}/trunk/subversion/clients/cmdline/status-cmd.c
echo 'part of change #552' >> ${WC}/trunk/subversion/svnadmin/main.c
echo 'part of change #552' >> ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py
echo 'part of change #552' >> ${WC}/trunk/subversion/libsvn_client/apply_edits.c
echo 'part of change #552' >> ${WC}/trunk/subversion/libsvn_fs/proplist.c
echo 'part of change #552' >> ${WC}/trunk/subversion/libsvn_delta/compose_editors.c
echo 'part of change #552' >> ${WC}/trunk/notes/difftools/pics/README
${SVN} commit -m 'commit #552' ${WC}/trunk/subversion/clients/cmdline/status-cmd.c ${WC}/trunk/subversion/svnadmin/main.c ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py ${WC}/trunk/subversion/libsvn_client/apply_edits.c ${WC}/trunk/subversion/libsvn_fs/proplist.c ${WC}/trunk/subversion/libsvn_delta/compose_editors.c ${WC}/trunk/notes/difftools/pics/README

################### change 553 ###################
echo ""
echo "Doing commit #553:"
echo 'part of change #553' >> ${WC}/trunk/doc/programmer/design/server.texi
${SVN} commit -m 'commit #553' ${WC}/trunk/doc/programmer/design/server.texi

################### change 554 ###################
echo ""
echo "Doing commit #554:"
echo 'part of change #554' >> ${WC}/trunk/subversion/libsvn_fs/strings-table.h
echo 'part of change #554' >> ${WC}/trunk/subversion/tests/xml/up1b-postfix.xml
echo 'part of change #554' >> ${WC}/trunk/subversion/mod_dav_svn/version.c
${SVN} commit -m 'commit #554' ${WC}/trunk/subversion/libsvn_fs/strings-table.h ${WC}/trunk/subversion/tests/xml/up1b-postfix.xml ${WC}/trunk/subversion/mod_dav_svn/version.c

################### change 555 ###################
echo ""
echo "Doing commit #555:"
echo 'part of change #555' >> ${WC}/trunk/subversion/libsvn_delta/xml_output.c
echo 'part of change #555' >> ${WC}/trunk/subversion/libsvn_repos/delta.c
echo 'part of change #555' >> ${WC}/trunk/subversion/libsvn_fs/strings-table.c
echo 'part of change #555' >> ${WC}/trunk/subversion/clients/win32/SVNControls/gDevGrid.vbg
echo 'part of change #555' >> ${WC}/trunk/subversion/clients/cmdline/add-cmd.c
echo 'part of change #555' >> ${WC}/trunk/subversion/tests/clients/cmdline/README
echo 'part of change #555' >> ${WC}/trunk/subversion/libsvn_client/add.c
${SVN} commit -m 'commit #555' ${WC}/trunk/subversion/libsvn_delta/xml_output.c ${WC}/trunk/subversion/libsvn_repos/delta.c ${WC}/trunk/subversion/libsvn_fs/strings-table.c ${WC}/trunk/subversion/clients/win32/SVNControls/gDevGrid.vbg ${WC}/trunk/subversion/clients/cmdline/add-cmd.c ${WC}/trunk/subversion/tests/clients/cmdline/README ${WC}/trunk/subversion/libsvn_client/add.c

################### change 556 ###################
echo ""
echo "Doing commit #556:"
echo 'part of change #556' >> ${WC}/trunk/doc/user/svnlook/svnlook.texi
echo 'part of change #556' >> ${WC}/trunk/subversion/clients/cmdline/README
echo 'part of change #556' >> ${WC}/trunk/expat-lite/CHANGES
echo 'part of change #556' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta-test.c
echo 'part of change #556' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py
echo 'part of change #556' >> ${WC}/trunk/subversion/bindings/README
echo 'part of change #556' >> ${WC}/trunk/subversion/bindings/README
echo 'part of change #556' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.cpp
${SVN} commit -m 'commit #556' ${WC}/trunk/doc/user/svnlook/svnlook.texi ${WC}/trunk/subversion/clients/cmdline/README ${WC}/trunk/expat-lite/CHANGES ${WC}/trunk/subversion/tests/libsvn_delta/vdelta-test.c ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py ${WC}/trunk/subversion/bindings/README ${WC}/trunk/subversion/bindings/README ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.cpp

################### change 557 ###################
echo ""
echo "Doing commit #557:"
echo 'part of change #557' >> ${WC}/trunk/doc/user/manual/license.texi
${SVN} commit -m 'commit #557' ${WC}/trunk/doc/user/manual/license.texi

################### change 558 ###################
echo ""
echo "Doing commit #558:"
echo 'part of change #558' >> ${WC}/trunk/subversion/mod_dav_svn/static/Makefile.in
echo 'part of change #558' >> ${WC}/trunk/subversion/clients/cmdline/subversion_client.dsp
${SVN} commit -m 'commit #558' ${WC}/trunk/subversion/mod_dav_svn/static/Makefile.in ${WC}/trunk/subversion/clients/cmdline/subversion_client.dsp

################### change 559 ###################
echo ""
echo "Doing commit #559:"
echo 'part of change #559' >> ${WC}/trunk/subversion/LICENSE
echo 'part of change #559' >> ${WC}/trunk/expat-lite/nametab.h
echo 'part of change #559' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.def
echo 'part of change #559' >> ${WC}/trunk/subversion/clients/win32/SVNControls/gDevGrid.vbg
echo 'part of change #559' >> ${WC}/trunk/subversion/libsvn_client/cleanup.c
echo 'part of change #559' >> ${WC}/trunk/subversion/include/svn_config.h
echo 'part of change #559' >> ${WC}/trunk/subversion/libsvn_fs/this-branch.txt
echo 'part of change #559' >> ${WC}/trunk/subversion/tests/clients/cmdline/svnadmin_tests.py
echo 'part of change #559' >> ${WC}/trunk/doc/programmer/WritingChangeLogs.txt
${SVN} commit -m 'commit #559' ${WC}/trunk/subversion/LICENSE ${WC}/trunk/expat-lite/nametab.h ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.def ${WC}/trunk/subversion/clients/win32/SVNControls/gDevGrid.vbg ${WC}/trunk/subversion/libsvn_client/cleanup.c ${WC}/trunk/subversion/include/svn_config.h ${WC}/trunk/subversion/libsvn_fs/this-branch.txt ${WC}/trunk/subversion/tests/clients/cmdline/svnadmin_tests.py ${WC}/trunk/doc/programmer/WritingChangeLogs.txt

################### change 560 ###################
echo ""
echo "Doing commit #560:"
echo 'part of change #560' >> ${WC}/trunk/subversion/include/svn_ra.h
echo 'part of change #560' >> ${WC}/trunk/subversion/clients/win32/svn_com/resource.h
echo 'part of change #560' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaHandler.java
echo 'part of change #560' >> ${WC}/trunk/subversion/libsvn_ra_dav/commit.c
echo 'part of change #560' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/entry.py
echo 'part of change #560' >> ${WC}/trunk/ac-helpers/ltmain.sh
${SVN} commit -m 'commit #560' ${WC}/trunk/subversion/include/svn_ra.h ${WC}/trunk/subversion/clients/win32/svn_com/resource.h ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaHandler.java ${WC}/trunk/subversion/libsvn_ra_dav/commit.c ${WC}/trunk/subversion/tests/clients/cmdline/svntest/entry.py ${WC}/trunk/ac-helpers/ltmain.sh

################### change 561 ###################
echo ""
echo "Doing commit #561:"
echo 'part of change #561' >> ${WC}/trunk/subversion/mod_dav_svn/liveprops.c
echo 'part of change #561' >> ${WC}/trunk/subversion/libsvn_client/auth.c
echo 'part of change #561' >> ${WC}/trunk/subversion/clients/win32/WinSVN/WinSVN.vbp
echo 'part of change #561' >> ${WC}/trunk/doc/programmer/design/svn-design.txt
echo 'part of change #561' >> ${WC}/trunk/notes/guis/pics/ClearCase-lsvtree-README
echo 'part of change #561' >> ${WC}/trunk/subversion/clients/cmdline/delete-cmd.c
echo 'part of change #561' >> ${WC}/trunk/doc/user/manual/license.texi
echo 'part of change #561' >> ${WC}/trunk/doc/user/manual/README
${SVN} commit -m 'commit #561' ${WC}/trunk/subversion/mod_dav_svn/liveprops.c ${WC}/trunk/subversion/libsvn_client/auth.c ${WC}/trunk/subversion/clients/win32/WinSVN/WinSVN.vbp ${WC}/trunk/doc/programmer/design/svn-design.txt ${WC}/trunk/notes/guis/pics/ClearCase-lsvtree-README ${WC}/trunk/subversion/clients/cmdline/delete-cmd.c ${WC}/trunk/doc/user/manual/license.texi ${WC}/trunk/doc/user/manual/README

################### change 562 ###################
echo ""
echo "Doing commit #562:"
echo 'part of change #562' >> ${WC}/trunk/ac-helpers/libtool.m4
echo 'part of change #562' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target0.txt
echo 'part of change #562' >> ${WC}/trunk/subversion/mod_dav_svn/liveprops.c
${SVN} commit -m 'commit #562' ${WC}/trunk/ac-helpers/libtool.m4 ${WC}/trunk/subversion/tests/libsvn_vcdiff/target0.txt ${WC}/trunk/subversion/mod_dav_svn/liveprops.c

################### change 563 ###################
echo ""
echo "Doing commit #563:"
echo 'part of change #563' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/__init__.py
echo 'part of change #563' >> ${WC}/trunk/subversion/tests/xml/co1-inline.xml
echo 'part of change #563' >> ${WC}/trunk/subversion/libsvn_fs/fs.h
echo 'part of change #563' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/SubversionException.java
echo 'part of change #563' >> ${WC}/trunk/subversion/libsvn_ra_local/ra_local.h
echo 'part of change #563' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target0.txt
echo 'part of change #563' >> ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.c
echo 'part of change #563' >> ${WC}/trunk/INSTALL
echo 'part of change #563' >> ${WC}/trunk/subversion/libsvn_delta/text_delta.c
${SVN} commit -m 'commit #563' ${WC}/trunk/subversion/tests/clients/cmdline/svntest/__init__.py ${WC}/trunk/subversion/tests/xml/co1-inline.xml ${WC}/trunk/subversion/libsvn_fs/fs.h ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/SubversionException.java ${WC}/trunk/subversion/libsvn_ra_local/ra_local.h ${WC}/trunk/subversion/tests/libsvn_vcdiff/target0.txt ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.c ${WC}/trunk/INSTALL ${WC}/trunk/subversion/libsvn_delta/text_delta.c

################### change 564 ###################
echo ""
echo "Doing commit #564:"
echo 'part of change #564' >> ${WC}/trunk/expat-lite/utf8tab.h
echo 'part of change #564' >> ${WC}/trunk/subversion/libsvn_subr/getdate.cw
echo 'part of change #564' >> ${WC}/trunk/subversion/mod_dav_svn/static/README
echo 'part of change #564' >> ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.h
echo 'part of change #564' >> ${WC}/trunk/subversion/include/svn_error_codes.h
echo 'part of change #564' >> ${WC}/trunk/svn_private_config.hw
echo 'part of change #564' >> ${WC}/trunk/subversion/libsvn_delta/svndiff.c
echo 'part of change #564' >> ${WC}/trunk/gen-make.py
${SVN} commit -m 'commit #564' ${WC}/trunk/expat-lite/utf8tab.h ${WC}/trunk/subversion/libsvn_subr/getdate.cw ${WC}/trunk/subversion/mod_dav_svn/static/README ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.h ${WC}/trunk/subversion/include/svn_error_codes.h ${WC}/trunk/svn_private_config.hw ${WC}/trunk/subversion/libsvn_delta/svndiff.c ${WC}/trunk/gen-make.py

################### change 565 ###################
echo ""
echo "Doing commit #565:"
echo 'part of change #565' >> ${WC}/trunk/subversion/mod_dav_svn/dav_svn.h
echo 'part of change #565' >> ${WC}/trunk/subversion/libsvn_subr/sorts.c
echo 'part of change #565' >> ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h
echo 'part of change #565' >> ${WC}/trunk/subversion/svnadmin/svnadmin.dsp
${SVN} commit -m 'commit #565' ${WC}/trunk/subversion/mod_dav_svn/dav_svn.h ${WC}/trunk/subversion/libsvn_subr/sorts.c ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h ${WC}/trunk/subversion/svnadmin/svnadmin.dsp

################### change 566 ###################
echo ""
echo "Doing commit #566:"
echo 'part of change #566' >> ${WC}/trunk/subversion/libsvn_fs/reps-strings.h
${SVN} commit -m 'commit #566' ${WC}/trunk/subversion/libsvn_fs/reps-strings.h

################### change 567 ###################
echo ""
echo "Doing commit #567:"
echo 'part of change #567' >> ${WC}/trunk/expat-lite/asciitab.h
echo 'part of change #567' >> ${WC}/trunk/subversion/mod_dav_svn/liveprops.c
echo 'part of change #567' >> ${WC}/trunk/subversion/clients/win32/WinSVN/lvh.cls
echo 'part of change #567' >> ${WC}/trunk/doc/user/manual/dirversioning.texi
echo 'part of change #567' >> ${WC}/trunk/subversion/libsvn_delta/svndiff.c
echo 'part of change #567' >> ${WC}/trunk/subversion/tests/libsvn_fs/skel_test.dsp
echo 'part of change #567' >> ${WC}/trunk/subversion/tests/libsvn_repos/md5args.c
echo 'part of change #567' >> ${WC}/trunk/notes/guis/planning.txt
echo 'part of change #567' >> ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.c
echo 'part of change #567' >> ${WC}/trunk/subversion/libsvn_client/update.c
${SVN} commit -m 'commit #567' ${WC}/trunk/expat-lite/asciitab.h ${WC}/trunk/subversion/mod_dav_svn/liveprops.c ${WC}/trunk/subversion/clients/win32/WinSVN/lvh.cls ${WC}/trunk/doc/user/manual/dirversioning.texi ${WC}/trunk/subversion/libsvn_delta/svndiff.c ${WC}/trunk/subversion/tests/libsvn_fs/skel_test.dsp ${WC}/trunk/subversion/tests/libsvn_repos/md5args.c ${WC}/trunk/notes/guis/planning.txt ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.c ${WC}/trunk/subversion/libsvn_client/update.c

################### change 568 ###################
echo ""
echo "Doing commit #568:"
echo 'part of change #568' >> ${WC}/trunk/subversion/tests/libsvn_subr/path-test.c
echo 'part of change #568' >> ${WC}/trunk/subversion/libsvn_subr/svn_string.c
echo 'part of change #568' >> ${WC}/trunk/subversion/tests/libsvn_delta/random_test.dsp
echo 'part of change #568' >> ${WC}/trunk/subversion/clients/win32/SVNControls/link.dat
echo 'part of change #568' >> ${WC}/trunk/notes/guis/planning.txt
echo 'part of change #568' >> ${WC}/trunk/doc/user/manual/dirversioning.texi
${SVN} commit -m 'commit #568' ${WC}/trunk/subversion/tests/libsvn_subr/path-test.c ${WC}/trunk/subversion/libsvn_subr/svn_string.c ${WC}/trunk/subversion/tests/libsvn_delta/random_test.dsp ${WC}/trunk/subversion/clients/win32/SVNControls/link.dat ${WC}/trunk/notes/guis/planning.txt ${WC}/trunk/doc/user/manual/dirversioning.texi

################### change 569 ###################
echo ""
echo "Doing commit #569:"
echo 'part of change #569' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/__init__.py
${SVN} commit -m 'commit #569' ${WC}/trunk/subversion/tests/clients/cmdline/svntest/__init__.py

################### change 570 ###################
echo ""
echo "Doing commit #570:"
echo 'part of change #570' >> ${WC}/trunk/Makefile.in
echo 'part of change #570' >> ${WC}/trunk/subversion/libsvn_fs/fs.h
echo 'part of change #570' >> ${WC}/trunk/expat-lite/xmlparse.c
echo 'part of change #570' >> ${WC}/trunk/subversion/svnlook/main.c
echo 'part of change #570' >> ${WC}/trunk/expat-lite/hashtable.h
${SVN} commit -m 'commit #570' ${WC}/trunk/Makefile.in ${WC}/trunk/subversion/libsvn_fs/fs.h ${WC}/trunk/expat-lite/xmlparse.c ${WC}/trunk/subversion/svnlook/main.c ${WC}/trunk/expat-lite/hashtable.h

################### change 571 ###################
echo ""
echo "Doing commit #571:"
echo 'part of change #571' >> ${WC}/trunk/subversion/tests/libsvn_wc/simple.delta
${SVN} commit -m 'commit #571' ${WC}/trunk/subversion/tests/libsvn_wc/simple.delta

################### change 572 ###################
echo ""
echo "Doing commit #572:"
echo 'part of change #572' >> ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse_test.dsp
echo 'part of change #572' >> ${WC}/trunk/subversion/libsvn_subr/svn_error.c
echo 'part of change #572' >> ${WC}/trunk/subversion/libsvn_wc/props.c
echo 'part of change #572' >> ${WC}/trunk/notes/svndiff
echo 'part of change #572' >> ${WC}/trunk/subversion/libsvn_fs/proplist.h
${SVN} commit -m 'commit #572' ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse_test.dsp ${WC}/trunk/subversion/libsvn_subr/svn_error.c ${WC}/trunk/subversion/libsvn_wc/props.c ${WC}/trunk/notes/svndiff ${WC}/trunk/subversion/libsvn_fs/proplist.h

################### change 573 ###################
echo ""
echo "Doing commit #573:"
echo 'part of change #573' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.h
echo 'part of change #573' >> ${WC}/trunk/subversion/tests/xml/up1b-postfix.xml
echo 'part of change #573' >> ${WC}/trunk/subversion/clients/win32/svn_com/svn_com.dsp
echo 'part of change #573' >> ${WC}/trunk/subversion/tests/clients/cmdline/svnadmin_tests.py
${SVN} commit -m 'commit #573' ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.h ${WC}/trunk/subversion/tests/xml/up1b-postfix.xml ${WC}/trunk/subversion/clients/win32/svn_com/svn_com.dsp ${WC}/trunk/subversion/tests/clients/cmdline/svnadmin_tests.py

################### change 574 ###################
echo ""
echo "Doing commit #574:"
echo 'part of change #574' >> ${WC}/trunk/subversion/mod_dav_svn/deadprops.c
echo 'part of change #574' >> ${WC}/trunk/doc/programmer/design/client.texi
${SVN} commit -m 'commit #574' ${WC}/trunk/subversion/mod_dav_svn/deadprops.c ${WC}/trunk/doc/programmer/design/client.texi

################### change 575 ###################
echo ""
echo "Doing commit #575:"
echo 'part of change #575' >> ${WC}/trunk/doc/user/manual/model.texi
echo 'part of change #575' >> ${WC}/trunk/subversion/libsvn_fs/dbt.h
echo 'part of change #575' >> ${WC}/trunk/subversion/tests/libsvn_fs/fs-test.c
echo 'part of change #575' >> ${WC}/trunk/doc/user/manual/license.texi
echo 'part of change #575' >> ${WC}/trunk/subversion/mod_dav_svn/activity.c
echo 'part of change #575' >> ${WC}/trunk/subversion/libsvn_subr/quoprint.c
echo 'part of change #575' >> ${WC}/trunk/AUTHORS
echo 'part of change #575' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.h
${SVN} commit -m 'commit #575' ${WC}/trunk/doc/user/manual/model.texi ${WC}/trunk/subversion/libsvn_fs/dbt.h ${WC}/trunk/subversion/tests/libsvn_fs/fs-test.c ${WC}/trunk/doc/user/manual/license.texi ${WC}/trunk/subversion/mod_dav_svn/activity.c ${WC}/trunk/subversion/libsvn_subr/quoprint.c ${WC}/trunk/AUTHORS ${WC}/trunk/subversion/libsvn_fs/reps-table.h

################### change 576 ###################
echo ""
echo "Doing commit #576:"
echo 'part of change #576' >> ${WC}/trunk/subversion/libsvn_subr/path.c
echo 'part of change #576' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmSplash.frm
echo 'part of change #576' >> ${WC}/trunk/subversion/libsvn_wc/get_editor.c
echo 'part of change #576' >> ${WC}/trunk/subversion/tests/xml/README
${SVN} commit -m 'commit #576' ${WC}/trunk/subversion/libsvn_subr/path.c ${WC}/trunk/subversion/clients/win32/WinSVN/frmSplash.frm ${WC}/trunk/subversion/libsvn_wc/get_editor.c ${WC}/trunk/subversion/tests/xml/README

################### change 577 ###################
echo ""
echo "Doing commit #577:"
echo 'part of change #577' >> ${WC}/trunk/notes/multi-args.txt
echo 'part of change #577' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target1.txt
echo 'part of change #577' >> ${WC}/trunk/notes/svn-config-files
echo 'part of change #577' >> ${WC}/trunk/subversion/tests/README
${SVN} commit -m 'commit #577' ${WC}/trunk/notes/multi-args.txt ${WC}/trunk/subversion/tests/libsvn_vcdiff/target1.txt ${WC}/trunk/notes/svn-config-files ${WC}/trunk/subversion/tests/README

################### change 578 ###################
echo ""
echo "Doing commit #578:"
echo 'part of change #578' >> ${WC}/trunk/expat-lite/xmldef.h
echo 'part of change #578' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmVirtual.frm
echo 'part of change #578' >> ${WC}/trunk/subversion/libsvn_fs/fs.h
echo 'part of change #578' >> ${WC}/trunk/subversion/libsvn_ra_dav/props.c
echo 'part of change #578' >> ${WC}/trunk/INSTALL
echo 'part of change #578' >> ${WC}/trunk/subversion/tests/libsvn_repos/repos-test.c
${SVN} commit -m 'commit #578' ${WC}/trunk/expat-lite/xmldef.h ${WC}/trunk/subversion/clients/win32/SVNControls/frmVirtual.frm ${WC}/trunk/subversion/libsvn_fs/fs.h ${WC}/trunk/subversion/libsvn_ra_dav/props.c ${WC}/trunk/INSTALL ${WC}/trunk/subversion/tests/libsvn_repos/repos-test.c

################### change 579 ###################
echo ""
echo "Doing commit #579:"
echo 'part of change #579' >> ${WC}/trunk/subversion/libsvn_fs/nodes-table.c
echo 'part of change #579' >> ${WC}/trunk/subversion/tests/clients/cmdline/commit_tests.py
echo 'part of change #579' >> ${WC}/trunk/subversion/clients/cmdline/README
echo 'part of change #579' >> ${WC}/trunk/subversion/libsvn_wc/libsvn_wc.dsp
echo 'part of change #579' >> ${WC}/trunk/expat-lite/latin1tab.h
echo 'part of change #579' >> ${WC}/trunk/subversion/clients/cmdline/diff-cmd.c
echo 'part of change #579' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Client.java
echo 'part of change #579' >> ${WC}/trunk/notes/fs-improvements.txt
echo 'part of change #579' >> ${WC}/trunk/subversion/libsvn_fs/nodes-table.h
${SVN} commit -m 'commit #579' ${WC}/trunk/subversion/libsvn_fs/nodes-table.c ${WC}/trunk/subversion/tests/clients/cmdline/commit_tests.py ${WC}/trunk/subversion/clients/cmdline/README ${WC}/trunk/subversion/libsvn_wc/libsvn_wc.dsp ${WC}/trunk/expat-lite/latin1tab.h ${WC}/trunk/subversion/clients/cmdline/diff-cmd.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Client.java ${WC}/trunk/notes/fs-improvements.txt ${WC}/trunk/subversion/libsvn_fs/nodes-table.h

################### change 580 ###################
echo ""
echo "Doing commit #580:"
echo 'part of change #580' >> ${WC}/trunk/subversion/include/svn_io.h
echo 'part of change #580' >> ${WC}/trunk/subversion/libsvn_fs/txn.h
${SVN} commit -m 'commit #580' ${WC}/trunk/subversion/include/svn_io.h ${WC}/trunk/subversion/libsvn_fs/txn.h

################### change 581 ###################
echo ""
echo "Doing commit #581:"
echo 'part of change #581' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.cpp
${SVN} commit -m 'commit #581' ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.cpp

################### change 582 ###################
echo ""
echo "Doing commit #582:"
echo 'part of change #582' >> ${WC}/trunk/subversion/clients/win32/SVNControls/gDevGrid.vbg
echo 'part of change #582' >> ${WC}/trunk/expat-lite/xmlparse.c
echo 'part of change #582' >> ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.h
echo 'part of change #582' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target0.txt
echo 'part of change #582' >> ${WC}/trunk/subversion/libsvn_wc/adm_ops.c
echo 'part of change #582' >> ${WC}/trunk/subversion/tests/fs-helpers.h
echo 'part of change #582' >> ${WC}/trunk/doc/svn-doc.el
echo 'part of change #582' >> ${WC}/trunk/subversion/tests/xml/up1b-postfix.xml
echo 'part of change #582' >> ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.ctl
echo 'part of change #582' >> ${WC}/trunk/subversion/mod_dav_svn/merge.c
${SVN} commit -m 'commit #582' ${WC}/trunk/subversion/clients/win32/SVNControls/gDevGrid.vbg ${WC}/trunk/expat-lite/xmlparse.c ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.h ${WC}/trunk/subversion/tests/libsvn_vcdiff/target0.txt ${WC}/trunk/subversion/libsvn_wc/adm_ops.c ${WC}/trunk/subversion/tests/fs-helpers.h ${WC}/trunk/doc/svn-doc.el ${WC}/trunk/subversion/tests/xml/up1b-postfix.xml ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.ctl ${WC}/trunk/subversion/mod_dav_svn/merge.c

################### change 583 ###################
echo ""
echo "Doing commit #583:"
echo 'part of change #583' >> ${WC}/trunk/subversion/clients/cmdline/help-cmd.c
echo 'part of change #583' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm
echo 'part of change #583' >> ${WC}/trunk/subversion/clients/win32/SVNControls/ppgColumns.pag
echo 'part of change #583' >> ${WC}/trunk/subversion/libsvn_fs/dag.h
echo 'part of change #583' >> ${WC}/trunk/subversion/tests/libsvn_fs/key-test.c
echo 'part of change #583' >> ${WC}/trunk/expat-lite/CHANGES.svn
echo 'part of change #583' >> ${WC}/trunk/subversion/clients/cmdline/props.c
echo 'part of change #583' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py
echo 'part of change #583' >> ${WC}/trunk/subversion/tests/libsvn_delta/postfix.delta
${SVN} commit -m 'commit #583' ${WC}/trunk/subversion/clients/cmdline/help-cmd.c ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm ${WC}/trunk/subversion/clients/win32/SVNControls/ppgColumns.pag ${WC}/trunk/subversion/libsvn_fs/dag.h ${WC}/trunk/subversion/tests/libsvn_fs/key-test.c ${WC}/trunk/expat-lite/CHANGES.svn ${WC}/trunk/subversion/clients/cmdline/props.c ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py ${WC}/trunk/subversion/tests/libsvn_delta/postfix.delta

################### change 584 ###################
echo ""
echo "Doing commit #584:"
echo 'part of change #584' >> ${WC}/trunk/subversion/libsvn_repos/node_tree.c
echo 'part of change #584' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.def
echo 'part of change #584' >> ${WC}/trunk/subversion/clients/win32/WinSVN/DriveHelpers.bas
echo 'part of change #584' >> ${WC}/trunk/subversion/LICENSE
${SVN} commit -m 'commit #584' ${WC}/trunk/subversion/libsvn_repos/node_tree.c ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.def ${WC}/trunk/subversion/clients/win32/WinSVN/DriveHelpers.bas ${WC}/trunk/subversion/LICENSE

################### change 585 ###################
echo ""
echo "Doing commit #585:"
echo 'part of change #585' >> ${WC}/trunk/subversion/tests/libsvn_subr/tests_libsvn_subr_target_test.dsp
echo 'part of change #585' >> ${WC}/trunk/doc/programmer/design/future.texi
echo 'part of change #585' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/entry.py
echo 'part of change #585' >> ${WC}/trunk/doc/user/manual/adds.texi
echo 'part of change #585' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Status.java
echo 'part of change #585' >> ${WC}/trunk/subversion/libsvn_ra_dav/merge.c
echo 'part of change #585' >> ${WC}/trunk/subversion/svnadmin/svnadmin.dsp
echo 'part of change #585' >> ${WC}/trunk/subversion/libsvn_repos/hooks.c
${SVN} commit -m 'commit #585' ${WC}/trunk/subversion/tests/libsvn_subr/tests_libsvn_subr_target_test.dsp ${WC}/trunk/doc/programmer/design/future.texi ${WC}/trunk/subversion/tests/clients/cmdline/svntest/entry.py ${WC}/trunk/doc/user/manual/adds.texi ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Status.java ${WC}/trunk/subversion/libsvn_ra_dav/merge.c ${WC}/trunk/subversion/svnadmin/svnadmin.dsp ${WC}/trunk/subversion/libsvn_repos/hooks.c

################### change 586 ###################
echo ""
echo "Doing commit #586:"
echo 'part of change #586' >> ${WC}/trunk/subversion/libsvn_repos/reporter.c
echo 'part of change #586' >> ${WC}/trunk/doc/user/manual/svn-manual.texi
echo 'part of change #586' >> ${WC}/trunk/subversion/clients/win32/WinSVN/DriveHelpers.bas
echo 'part of change #586' >> ${WC}/trunk/INSTALL
echo 'part of change #586' >> ${WC}/trunk/subversion/tests/libsvn_wc/simple.delta
echo 'part of change #586' >> ${WC}/trunk/www/project_faq.html
echo 'part of change #586' >> ${WC}/trunk/www/project_faq.html
${SVN} commit -m 'commit #586' ${WC}/trunk/subversion/libsvn_repos/reporter.c ${WC}/trunk/doc/user/manual/svn-manual.texi ${WC}/trunk/subversion/clients/win32/WinSVN/DriveHelpers.bas ${WC}/trunk/INSTALL ${WC}/trunk/subversion/tests/libsvn_wc/simple.delta ${WC}/trunk/www/project_faq.html ${WC}/trunk/www/project_faq.html

################### change 587 ###################
echo ""
echo "Doing commit #587:"
echo 'part of change #587' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cFlatHeader.cls
echo 'part of change #587' >> ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h
echo 'part of change #587' >> ${WC}/trunk/www/project_status.html
echo 'part of change #587' >> ${WC}/trunk/www/license-1.html
echo 'part of change #587' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.def
echo 'part of change #587' >> ${WC}/trunk/subversion/libsvn_delta/delta.h
echo 'part of change #587' >> ${WC}/trunk/subversion/libsvn_ra_dav/props.c
echo 'part of change #587' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cGridCell.cls
echo 'part of change #587' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cFlatHeader.cls
echo 'part of change #587' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.def
${SVN} commit -m 'commit #587' ${WC}/trunk/subversion/clients/win32/SVNControls/cFlatHeader.cls ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h ${WC}/trunk/www/project_status.html ${WC}/trunk/www/license-1.html ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.def ${WC}/trunk/subversion/libsvn_delta/delta.h ${WC}/trunk/subversion/libsvn_ra_dav/props.c ${WC}/trunk/subversion/clients/win32/SVNControls/cGridCell.cls ${WC}/trunk/subversion/clients/win32/SVNControls/cFlatHeader.cls ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.def

################### change 588 ###################
echo ""
echo "Doing commit #588:"
echo 'part of change #588' >> ${WC}/trunk/subversion/libsvn_fs/strings-table.h
echo 'part of change #588' >> ${WC}/trunk/subversion/clients/cmdline/util.c
echo 'part of change #588' >> ${WC}/trunk/www/cvs_help.html
echo 'part of change #588' >> ${WC}/trunk/subversion/libsvn_delta/xml_parse.c
echo 'part of change #588' >> ${WC}/trunk/subversion/libsvn_subr/config.c
echo 'part of change #588' >> ${WC}/trunk/subversion/tests/libsvn_subr/path-test.c
echo 'part of change #588' >> ${WC}/trunk/subversion/clients/cmdline/propset-cmd.c
echo 'part of change #588' >> ${WC}/trunk/subversion/libsvn_wc/adm_crawler.c
${SVN} commit -m 'commit #588' ${WC}/trunk/subversion/libsvn_fs/strings-table.h ${WC}/trunk/subversion/clients/cmdline/util.c ${WC}/trunk/www/cvs_help.html ${WC}/trunk/subversion/libsvn_delta/xml_parse.c ${WC}/trunk/subversion/libsvn_subr/config.c ${WC}/trunk/subversion/tests/libsvn_subr/path-test.c ${WC}/trunk/subversion/clients/cmdline/propset-cmd.c ${WC}/trunk/subversion/libsvn_wc/adm_crawler.c

################### change 589 ###################
echo ""
echo "Doing commit #589:"
echo 'part of change #589' >> ${WC}/trunk/subversion/mod_dav_svn/mod_dav_svn.c
echo 'part of change #589' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target4.txt
${SVN} commit -m 'commit #589' ${WC}/trunk/subversion/mod_dav_svn/mod_dav_svn.c ${WC}/trunk/subversion/tests/libsvn_vcdiff/target4.txt

################### change 590 ###################
echo ""
echo "Doing commit #590:"
echo 'part of change #590' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cHeaderControl.cls
echo 'part of change #590' >> ${WC}/trunk/subversion/libsvn_ra_dav/util.c
echo 'part of change #590' >> ${WC}/trunk/subversion/libsvn_fs/err.h
echo 'part of change #590' >> ${WC}/trunk/subversion/bindings/svn_delta.i
echo 'part of change #590' >> ${WC}/trunk/subversion/tests/xml/up2.xml
echo 'part of change #590' >> ${WC}/trunk/doc/programmer/design/model.texi
${SVN} commit -m 'commit #590' ${WC}/trunk/subversion/clients/win32/SVNControls/cHeaderControl.cls ${WC}/trunk/subversion/libsvn_ra_dav/util.c ${WC}/trunk/subversion/libsvn_fs/err.h ${WC}/trunk/subversion/bindings/svn_delta.i ${WC}/trunk/subversion/tests/xml/up2.xml ${WC}/trunk/doc/programmer/design/model.texi

################### change 591 ###################
echo ""
echo "Doing commit #591:"
echo 'part of change #591' >> ${WC}/trunk/subversion/libsvn_subr/svn_error.c
echo 'part of change #591' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cShellSort.cls
echo 'part of change #591' >> ${WC}/trunk/subversion/tests/svn_test_editor.c
echo 'part of change #591' >> ${WC}/trunk/subversion/libsvn_fs/validate.h
${SVN} commit -m 'commit #591' ${WC}/trunk/subversion/libsvn_subr/svn_error.c ${WC}/trunk/subversion/clients/win32/SVNControls/cShellSort.cls ${WC}/trunk/subversion/tests/svn_test_editor.c ${WC}/trunk/subversion/libsvn_fs/validate.h

################### change 592 ###################
echo ""
echo "Doing commit #592:"
echo 'part of change #592' >> ${WC}/trunk/subversion/libsvn_wc/adm_ops.c
echo 'part of change #592' >> ${WC}/trunk/subversion/mod_dav_svn/activity.c
echo 'part of change #592' >> ${WC}/trunk/subversion/tests/libsvn_repos/repos_test.dsp
echo 'part of change #592' >> ${WC}/trunk/subversion/include/svn_path.h
echo 'part of change #592' >> ${WC}/trunk/subversion/libsvn_ra_local/checkout.c
echo 'part of change #592' >> ${WC}/trunk/doc/user/manual/svn-manual.html
echo 'part of change #592' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/entry.py
echo 'part of change #592' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt
echo 'part of change #592' >> ${WC}/trunk/subversion/tests/libsvn_ra_local/ra-local-test.c
${SVN} commit -m 'commit #592' ${WC}/trunk/subversion/libsvn_wc/adm_ops.c ${WC}/trunk/subversion/mod_dav_svn/activity.c ${WC}/trunk/subversion/tests/libsvn_repos/repos_test.dsp ${WC}/trunk/subversion/include/svn_path.h ${WC}/trunk/subversion/libsvn_ra_local/checkout.c ${WC}/trunk/doc/user/manual/svn-manual.html ${WC}/trunk/subversion/tests/clients/cmdline/svntest/entry.py ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt ${WC}/trunk/subversion/tests/libsvn_ra_local/ra-local-test.c

################### change 593 ###################
echo ""
echo "Doing commit #593:"
echo 'part of change #593' >> ${WC}/trunk/subversion/tests/libsvn_subr/target-test.c
echo 'part of change #593' >> ${WC}/trunk/subversion/libsvn_delta/compose_editors.c
echo 'part of change #593' >> ${WC}/trunk/notes/dav_setup.txt
echo 'part of change #593' >> ${WC}/trunk/expat-lite/hashtable.c
echo 'part of change #593' >> ${WC}/trunk/subversion/libsvn_ra_dav/props.c
echo 'part of change #593' >> ${WC}/trunk/www/license-1.html
${SVN} commit -m 'commit #593' ${WC}/trunk/subversion/tests/libsvn_subr/target-test.c ${WC}/trunk/subversion/libsvn_delta/compose_editors.c ${WC}/trunk/notes/dav_setup.txt ${WC}/trunk/expat-lite/hashtable.c ${WC}/trunk/subversion/libsvn_ra_dav/props.c ${WC}/trunk/www/license-1.html

################### change 594 ###################
echo ""
echo "Doing commit #594:"
echo 'part of change #594' >> ${WC}/trunk/www/webdav-usage.html
echo 'part of change #594' >> ${WC}/trunk/subversion/include/svn_types.h
echo 'part of change #594' >> ${WC}/trunk/doc/programmer/design/future.texi
echo 'part of change #594' >> ${WC}/trunk/subversion/clients/win32/svn_com/svn_comCP.h
echo 'part of change #594' >> ${WC}/trunk/expat-lite/xmldef.h
echo 'part of change #594' >> ${WC}/trunk/subversion/tests/libsvn_subr/hashdump_test.dsp
${SVN} commit -m 'commit #594' ${WC}/trunk/www/webdav-usage.html ${WC}/trunk/subversion/include/svn_types.h ${WC}/trunk/doc/programmer/design/future.texi ${WC}/trunk/subversion/clients/win32/svn_com/svn_comCP.h ${WC}/trunk/expat-lite/xmldef.h ${WC}/trunk/subversion/tests/libsvn_subr/hashdump_test.dsp

################### change 595 ###################
echo ""
echo "Doing commit #595:"
echo 'part of change #595' >> ${WC}/trunk/notes/alpha-checklist.txt
echo 'part of change #595' >> ${WC}/trunk/subversion.dsw
echo 'part of change #595' >> ${WC}/trunk/subversion/clients/cmdline/add-cmd.c
echo 'part of change #595' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target1.txt
echo 'part of change #595' >> ${WC}/trunk/subversion/libsvn_repos/lock.c
echo 'part of change #595' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/SubversionException.java
echo 'part of change #595' >> ${WC}/trunk/doc/user/manual/README
echo 'part of change #595' >> ${WC}/trunk/subversion/libsvn_fs/strings-table.c
echo 'part of change #595' >> ${WC}/trunk/subversion/tests/libsvn_wc/checkout-1.txt
echo 'part of change #595' >> ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.c
${SVN} commit -m 'commit #595' ${WC}/trunk/notes/alpha-checklist.txt ${WC}/trunk/subversion.dsw ${WC}/trunk/subversion/clients/cmdline/add-cmd.c ${WC}/trunk/subversion/tests/libsvn_vcdiff/target1.txt ${WC}/trunk/subversion/libsvn_repos/lock.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/SubversionException.java ${WC}/trunk/doc/user/manual/README ${WC}/trunk/subversion/libsvn_fs/strings-table.c ${WC}/trunk/subversion/tests/libsvn_wc/checkout-1.txt ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.c

################### change 596 ###################
echo ""
echo "Doing commit #596:"
echo 'part of change #596' >> ${WC}/trunk/subversion/include/svn_io.h
echo 'part of change #596' >> ${WC}/trunk/subversion/bindings/svn_ra.i
echo 'part of change #596' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.idl
echo 'part of change #596' >> ${WC}/trunk/tools/check-license.py
echo 'part of change #596' >> ${WC}/trunk/doc/programmer/design/deltas.texi
echo 'part of change #596' >> ${WC}/trunk/subversion/mod_dav_svn/util.c
echo 'part of change #596' >> ${WC}/trunk/subversion/tests/fs-helpers.h
echo 'part of change #596' >> ${WC}/trunk/subversion/libsvn_subr/README.errors
echo 'part of change #596' >> ${WC}/trunk/doc/programmer/design/svn-design.texi
${SVN} commit -m 'commit #596' ${WC}/trunk/subversion/include/svn_io.h ${WC}/trunk/subversion/bindings/svn_ra.i ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.idl ${WC}/trunk/tools/check-license.py ${WC}/trunk/doc/programmer/design/deltas.texi ${WC}/trunk/subversion/mod_dav_svn/util.c ${WC}/trunk/subversion/tests/fs-helpers.h ${WC}/trunk/subversion/libsvn_subr/README.errors ${WC}/trunk/doc/programmer/design/svn-design.texi

################### change 597 ###################
echo ""
echo "Doing commit #597:"
echo 'part of change #597' >> ${WC}/trunk/subversion/tests/svn_test_editor.c
${SVN} commit -m 'commit #597' ${WC}/trunk/subversion/tests/svn_test_editor.c

################### change 598 ###################
echo ""
echo "Doing commit #598:"
echo 'part of change #598' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmMain.frm
echo 'part of change #598' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm
echo 'part of change #598' >> ${WC}/trunk/subversion/libsvn_wc/libsvn_wc.dsp
echo 'part of change #598' >> ${WC}/trunk/PORTING
echo 'part of change #598' >> ${WC}/trunk/subversion/include/svn_error.h
echo 'part of change #598' >> ${WC}/trunk/www/project_source.html
echo 'part of change #598' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cScrollBars.cls
echo 'part of change #598' >> ${WC}/trunk/subversion/tests/xml/up1b-postfix.xml
${SVN} commit -m 'commit #598' ${WC}/trunk/subversion/clients/win32/WinSVN/frmMain.frm ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm ${WC}/trunk/subversion/libsvn_wc/libsvn_wc.dsp ${WC}/trunk/PORTING ${WC}/trunk/subversion/include/svn_error.h ${WC}/trunk/www/project_source.html ${WC}/trunk/subversion/clients/win32/SVNControls/cScrollBars.cls ${WC}/trunk/subversion/tests/xml/up1b-postfix.xml

################### change 599 ###################
echo ""
echo "Doing commit #599:"
echo 'part of change #599' >> ${WC}/trunk/expat-lite/hashtable.h
echo 'part of change #599' >> ${WC}/trunk/subversion/libsvn_fs/structure
echo 'part of change #599' >> ${WC}/trunk/subversion/include/svn_xml.h
echo 'part of change #599' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target4.txt
${SVN} commit -m 'commit #599' ${WC}/trunk/expat-lite/hashtable.h ${WC}/trunk/subversion/libsvn_fs/structure ${WC}/trunk/subversion/include/svn_xml.h ${WC}/trunk/subversion/tests/libsvn_vcdiff/target4.txt

################### change 600 ###################
echo ""
echo "Doing commit #600:"
echo 'part of change #600' >> ${WC}/trunk/subversion/libsvn_fs/fs.c
echo 'part of change #600' >> ${WC}/trunk/doc/programmer/design/protocol.texi
echo 'part of change #600' >> ${WC}/trunk/subversion/libsvn_delta/README.xmlparse
${SVN} commit -m 'commit #600' ${WC}/trunk/subversion/libsvn_fs/fs.c ${WC}/trunk/doc/programmer/design/protocol.texi ${WC}/trunk/subversion/libsvn_delta/README.xmlparse

################### change 601 ###################
echo ""
echo "Doing commit #601:"
echo 'part of change #601' >> ${WC}/trunk/subversion/libsvn_ra_local/ra_local.h
echo 'part of change #601' >> ${WC}/trunk/expat-lite/nametab.h
echo 'part of change #601' >> ${WC}/trunk/subversion/include/svn_fs.h
echo 'part of change #601' >> ${WC}/trunk/notes/txdelta_sanity
${SVN} commit -m 'commit #601' ${WC}/trunk/subversion/libsvn_ra_local/ra_local.h ${WC}/trunk/expat-lite/nametab.h ${WC}/trunk/subversion/include/svn_fs.h ${WC}/trunk/notes/txdelta_sanity

################### change 602 ###################
echo ""
echo "Doing commit #602:"
echo 'part of change #602' >> ${WC}/trunk/subversion/clients/win32/svn_com/misc.cpp
echo 'part of change #602' >> ${WC}/trunk/subversion/libsvn_wc/entries.c
echo 'part of change #602' >> ${WC}/trunk/doc/programmer/design/architecture.texi
echo 'part of change #602' >> ${WC}/trunk/subversion/mod_dav_svn/static/README
echo 'part of change #602' >> ${WC}/trunk/subversion/clients/cmdline/help-cmd.c
echo 'part of change #602' >> ${WC}/trunk/subversion/libsvn_ra_dav/ra_dav.h
echo 'part of change #602' >> ${WC}/trunk/subversion/libsvn_delta/text_delta.c
echo 'part of change #602' >> ${WC}/trunk/subversion/libsvn_repos/node_tree.c
echo 'part of change #602' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target0.txt
echo 'part of change #602' >> ${WC}/trunk/expat-lite/utf8tab.h
${SVN} commit -m 'commit #602' ${WC}/trunk/subversion/clients/win32/svn_com/misc.cpp ${WC}/trunk/subversion/libsvn_wc/entries.c ${WC}/trunk/doc/programmer/design/architecture.texi ${WC}/trunk/subversion/mod_dav_svn/static/README ${WC}/trunk/subversion/clients/cmdline/help-cmd.c ${WC}/trunk/subversion/libsvn_ra_dav/ra_dav.h ${WC}/trunk/subversion/libsvn_delta/text_delta.c ${WC}/trunk/subversion/libsvn_repos/node_tree.c ${WC}/trunk/subversion/tests/libsvn_vcdiff/target0.txt ${WC}/trunk/expat-lite/utf8tab.h

################### change 603 ###################
echo ""
echo "Doing commit #603:"
echo 'part of change #603' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_test.dsp
${SVN} commit -m 'commit #603' ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_test.dsp

################### change 604 ###################
echo ""
echo "Doing commit #604:"
echo 'part of change #604' >> ${WC}/trunk/subversion/libsvn_subr/svn_base64.c
echo 'part of change #604' >> ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.h
echo 'part of change #604' >> ${WC}/trunk/subversion/libsvn_fs/skel.h
echo 'part of change #604' >> ${WC}/trunk/subversion/libsvn_ra_local/ra_plugin.c
echo 'part of change #604' >> ${WC}/trunk/subversion/libsvn_wc/status.c
echo 'part of change #604' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Client.java
echo 'part of change #604' >> ${WC}/trunk/subversion/clients/win32/SVNControls/type.dat
echo 'part of change #604' >> ${WC}/trunk/subversion/libsvn_fs/node-rev.h
echo 'part of change #604' >> ${WC}/trunk/subversion/include/svn_time.h
echo 'part of change #604' >> ${WC}/trunk/subversion/libsvn_client/apply_edits.c
${SVN} commit -m 'commit #604' ${WC}/trunk/subversion/libsvn_subr/svn_base64.c ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.h ${WC}/trunk/subversion/libsvn_fs/skel.h ${WC}/trunk/subversion/libsvn_ra_local/ra_plugin.c ${WC}/trunk/subversion/libsvn_wc/status.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Client.java ${WC}/trunk/subversion/clients/win32/SVNControls/type.dat ${WC}/trunk/subversion/libsvn_fs/node-rev.h ${WC}/trunk/subversion/include/svn_time.h ${WC}/trunk/subversion/libsvn_client/apply_edits.c

################### change 605 ###################
echo ""
echo "Doing commit #605:"
echo 'part of change #605' >> ${WC}/trunk/subversion/clients/win32/SVNControls/pTest.vbp
echo 'part of change #605' >> ${WC}/trunk/subversion/clients/win32/WinSVN/Startup.bas
echo 'part of change #605' >> ${WC}/trunk/subversion/tests/libsvn_fs/fs_test.dsp
echo 'part of change #605' >> ${WC}/trunk/subversion/tests/xml/up-props.xml
echo 'part of change #605' >> ${WC}/trunk/subversion/libsvn_wc/util.c
echo 'part of change #605' >> ${WC}/trunk/subversion/clients/cmdline/propget-cmd.c
${SVN} commit -m 'commit #605' ${WC}/trunk/subversion/clients/win32/SVNControls/pTest.vbp ${WC}/trunk/subversion/clients/win32/WinSVN/Startup.bas ${WC}/trunk/subversion/tests/libsvn_fs/fs_test.dsp ${WC}/trunk/subversion/tests/xml/up-props.xml ${WC}/trunk/subversion/libsvn_wc/util.c ${WC}/trunk/subversion/clients/cmdline/propget-cmd.c

################### change 606 ###################
echo ""
echo "Doing commit #606:"
echo 'part of change #606' >> ${WC}/trunk/subversion/clients/cmdline/feedback.c
echo 'part of change #606' >> ${WC}/trunk/subversion/libsvn_fs/structure
echo 'part of change #606' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.idl
echo 'part of change #606' >> ${WC}/trunk/subversion/tests/fs-helpers.c
echo 'part of change #606' >> ${WC}/trunk/subversion/tests/libsvn_wc/commit-test.c
echo 'part of change #606' >> ${WC}/trunk/www/testing-goals.html
echo 'part of change #606' >> ${WC}/trunk/subversion/tests/libsvn_delta/simple.delta
echo 'part of change #606' >> ${WC}/trunk/subversion/libsvn_repos/lock.c
echo 'part of change #606' >> ${WC}/trunk/subversion/libsvn_ra_dav/ra_dav.h
${SVN} commit -m 'commit #606' ${WC}/trunk/subversion/clients/cmdline/feedback.c ${WC}/trunk/subversion/libsvn_fs/structure ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.idl ${WC}/trunk/subversion/tests/fs-helpers.c ${WC}/trunk/subversion/tests/libsvn_wc/commit-test.c ${WC}/trunk/www/testing-goals.html ${WC}/trunk/subversion/tests/libsvn_delta/simple.delta ${WC}/trunk/subversion/libsvn_repos/lock.c ${WC}/trunk/subversion/libsvn_ra_dav/ra_dav.h

################### change 607 ###################
echo ""
echo "Doing commit #607:"
echo 'part of change #607' >> ${WC}/trunk/subversion/libsvn_wc/entries.c
echo 'part of change #607' >> ${WC}/trunk/subversion/libsvn_subr/svn_error.c
echo 'part of change #607' >> ${WC}/trunk/tools/cvs2svn/design-notes.txt
echo 'part of change #607' >> ${WC}/trunk/subversion/clients/win32/SVNControls/type.dat
echo 'part of change #607' >> ${WC}/trunk/PORTING
echo 'part of change #607' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaOp.java
${SVN} commit -m 'commit #607' ${WC}/trunk/subversion/libsvn_wc/entries.c ${WC}/trunk/subversion/libsvn_subr/svn_error.c ${WC}/trunk/tools/cvs2svn/design-notes.txt ${WC}/trunk/subversion/clients/win32/SVNControls/type.dat ${WC}/trunk/PORTING ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaOp.java

################### change 608 ###################
echo ""
echo "Doing commit #608:"
echo 'part of change #608' >> ${WC}/trunk/notes/multi-args.txt
echo 'part of change #608' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Reporter.java
echo 'part of change #608' >> ${WC}/trunk/subversion/tests/libsvn_delta/xml-output-test.c
echo 'part of change #608' >> ${WC}/trunk/TASKS
echo 'part of change #608' >> ${WC}/trunk/notes/the_update_problem.txt
echo 'part of change #608' >> ${WC}/trunk/subversion/include/svn_client.h
echo 'part of change #608' >> ${WC}/trunk/www/variance-adjusted-patching.html
echo 'part of change #608' >> ${WC}/trunk/subversion/libsvn_fs/key-gen.c
${SVN} commit -m 'commit #608' ${WC}/trunk/notes/multi-args.txt ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Reporter.java ${WC}/trunk/subversion/tests/libsvn_delta/xml-output-test.c ${WC}/trunk/TASKS ${WC}/trunk/notes/the_update_problem.txt ${WC}/trunk/subversion/include/svn_client.h ${WC}/trunk/www/variance-adjusted-patching.html ${WC}/trunk/subversion/libsvn_fs/key-gen.c

################### change 609 ###################
echo ""
echo "Doing commit #609:"
echo 'part of change #609' >> ${WC}/trunk/doc/user/svnlook/svnlook.texi
${SVN} commit -m 'commit #609' ${WC}/trunk/doc/user/svnlook/svnlook.texi

################### change 610 ###################
echo ""
echo "Doing commit #610:"
echo 'part of change #610' >> ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.c
echo 'part of change #610' >> ${WC}/trunk/subversion/bindings/svn_error.i
echo 'part of change #610' >> ${WC}/trunk/subversion/tests/libsvn_delta/xml-output-test.c
echo 'part of change #610' >> ${WC}/trunk/doc/programmer/design/model.texi
echo 'part of change #610' >> ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.h
echo 'part of change #610' >> ${WC}/trunk/subversion/libsvn_fs/validate.c
echo 'part of change #610' >> ${WC}/trunk/subversion/tests/fs-helpers.c
${SVN} commit -m 'commit #610' ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.c ${WC}/trunk/subversion/bindings/svn_error.i ${WC}/trunk/subversion/tests/libsvn_delta/xml-output-test.c ${WC}/trunk/doc/programmer/design/model.texi ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.h ${WC}/trunk/subversion/libsvn_fs/validate.c ${WC}/trunk/subversion/tests/fs-helpers.c

################### change 611 ###################
echo ""
echo "Doing commit #611:"
echo 'part of change #611' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookDemo.frm
echo 'part of change #611' >> ${WC}/trunk/doc/svn-doc.el
echo 'part of change #611' >> ${WC}/trunk/subversion/libsvn_wc/libsvn_wc.dsp
${SVN} commit -m 'commit #611' ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookDemo.frm ${WC}/trunk/doc/svn-doc.el ${WC}/trunk/subversion/libsvn_wc/libsvn_wc.dsp

################### change 612 ###################
echo ""
echo "Doing commit #612:"
echo 'part of change #612' >> ${WC}/trunk/subversion/clients/win32/WinSVN/WinSVN.vbp
echo 'part of change #612' >> ${WC}/trunk/subversion/libsvn_fs/dbt.c
echo 'part of change #612' >> ${WC}/trunk/subversion/tests/libsvn_subr/target-test.c
echo 'part of change #612' >> ${WC}/trunk/subversion/tests/libsvn_delta/svndiff-test.c
echo 'part of change #612' >> ${WC}/trunk/subversion/libsvn_fs/validate.c
echo 'part of change #612' >> ${WC}/trunk/subversion/libsvn_ra_local/libsvn_ra_local.dsp
echo 'part of change #612' >> ${WC}/trunk/ac-helpers/berkeley-db.m4
echo 'part of change #612' >> ${WC}/trunk/subversion/libsvn_fs/nodes-table.c
${SVN} commit -m 'commit #612' ${WC}/trunk/subversion/clients/win32/WinSVN/WinSVN.vbp ${WC}/trunk/subversion/libsvn_fs/dbt.c ${WC}/trunk/subversion/tests/libsvn_subr/target-test.c ${WC}/trunk/subversion/tests/libsvn_delta/svndiff-test.c ${WC}/trunk/subversion/libsvn_fs/validate.c ${WC}/trunk/subversion/libsvn_ra_local/libsvn_ra_local.dsp ${WC}/trunk/ac-helpers/berkeley-db.m4 ${WC}/trunk/subversion/libsvn_fs/nodes-table.c

################### change 613 ###################
echo ""
echo "Doing commit #613:"
echo 'part of change #613' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.mk
echo 'part of change #613' >> ${WC}/trunk/subversion/libsvn_wc/status.c
echo 'part of change #613' >> ${WC}/trunk/subversion/libsvn_subr/svn_string.c
echo 'part of change #613' >> ${WC}/trunk/subversion/libsvn_fs/dbt.c
echo 'part of change #613' >> ${WC}/trunk/subversion/tests/xml/pipatch.xml
echo 'part of change #613' >> ${WC}/trunk/subversion/include/svn_wc.h
${SVN} commit -m 'commit #613' ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.mk ${WC}/trunk/subversion/libsvn_wc/status.c ${WC}/trunk/subversion/libsvn_subr/svn_string.c ${WC}/trunk/subversion/libsvn_fs/dbt.c ${WC}/trunk/subversion/tests/xml/pipatch.xml ${WC}/trunk/subversion/include/svn_wc.h

################### change 614 ###################
echo ""
echo "Doing commit #614:"
echo 'part of change #614' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target5.txt
${SVN} commit -m 'commit #614' ${WC}/trunk/subversion/tests/libsvn_vcdiff/target5.txt

################### change 615 ###################
echo ""
echo "Doing commit #615:"
echo 'part of change #615' >> ${WC}/trunk/subversion/libsvn_wc/adm_crawler.c
${SVN} commit -m 'commit #615' ${WC}/trunk/subversion/libsvn_wc/adm_crawler.c

################### change 616 ###################
echo ""
echo "Doing commit #616:"
echo 'part of change #616' >> ${WC}/trunk/tools/cvs2svn/design-notes.txt
echo 'part of change #616' >> ${WC}/trunk/subversion/libsvn_fs/proplist.h
echo 'part of change #616' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt
echo 'part of change #616' >> ${WC}/trunk/subversion/mod_dav_svn/static/README
echo 'part of change #616' >> ${WC}/trunk/subversion/clients/win32/svn_com/svn_comCP.h
echo 'part of change #616' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/actions.py
echo 'part of change #616' >> ${WC}/trunk/subversion/include/svn_sorts.h
${SVN} commit -m 'commit #616' ${WC}/trunk/tools/cvs2svn/design-notes.txt ${WC}/trunk/subversion/libsvn_fs/proplist.h ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt ${WC}/trunk/subversion/mod_dav_svn/static/README ${WC}/trunk/subversion/clients/win32/svn_com/svn_comCP.h ${WC}/trunk/subversion/tests/clients/cmdline/svntest/actions.py ${WC}/trunk/subversion/include/svn_sorts.h

################### change 617 ###################
echo ""
echo "Doing commit #617:"
echo 'part of change #617' >> ${WC}/trunk/subversion/libsvn_ra/ra_loader.c
echo 'part of change #617' >> ${WC}/trunk/subversion/tests/libsvn_subr/path-test.c
echo 'part of change #617' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmLogin.frm
echo 'part of change #617' >> ${WC}/trunk/subversion/include/svn_string.h
echo 'part of change #617' >> ${WC}/trunk/subversion/tests/libsvn_fs/skel-test.c
echo 'part of change #617' >> ${WC}/trunk/subversion/libsvn_repos/hooks.c
${SVN} commit -m 'commit #617' ${WC}/trunk/subversion/libsvn_ra/ra_loader.c ${WC}/trunk/subversion/tests/libsvn_subr/path-test.c ${WC}/trunk/subversion/clients/win32/WinSVN/frmLogin.frm ${WC}/trunk/subversion/include/svn_string.h ${WC}/trunk/subversion/tests/libsvn_fs/skel-test.c ${WC}/trunk/subversion/libsvn_repos/hooks.c

################### change 618 ###################
echo ""
echo "Doing commit #618:"
echo 'part of change #618' >> ${WC}/trunk/subversion/libsvn_ra/libsvn_ra.dsp
echo 'part of change #618' >> ${WC}/trunk/subversion/clients/win32/SVNControls/ppgMain.pag
echo 'part of change #618' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/SubversionException.java
echo 'part of change #618' >> ${WC}/trunk/subversion/clients/win32/SVNControls/type.dat
echo 'part of change #618' >> ${WC}/trunk/subversion/clients/cmdline/cleanup-cmd.c
${SVN} commit -m 'commit #618' ${WC}/trunk/subversion/libsvn_ra/libsvn_ra.dsp ${WC}/trunk/subversion/clients/win32/SVNControls/ppgMain.pag ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/SubversionException.java ${WC}/trunk/subversion/clients/win32/SVNControls/type.dat ${WC}/trunk/subversion/clients/cmdline/cleanup-cmd.c

################### change 619 ###################
echo ""
echo "Doing commit #619:"
echo 'part of change #619' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmMain.frm
echo 'part of change #619' >> ${WC}/trunk/subversion/clients/cmdline/status-cmd.c
echo 'part of change #619' >> ${WC}/trunk/doc/programmer/WritingChangeLogs.txt
echo 'part of change #619' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.rgs
echo 'part of change #619' >> ${WC}/trunk/subversion/libsvn_fs/structure
echo 'part of change #619' >> ${WC}/trunk/configure.in
echo 'part of change #619' >> ${WC}/trunk/subversion/tests/xml/pipatch.xml
${SVN} commit -m 'commit #619' ${WC}/trunk/subversion/clients/win32/WinSVN/frmMain.frm ${WC}/trunk/subversion/clients/cmdline/status-cmd.c ${WC}/trunk/doc/programmer/WritingChangeLogs.txt ${WC}/trunk/subversion/clients/win32/svn_com/SVN.rgs ${WC}/trunk/subversion/libsvn_fs/structure ${WC}/trunk/configure.in ${WC}/trunk/subversion/tests/xml/pipatch.xml

################### change 620 ###################
echo ""
echo "Doing commit #620:"
echo 'part of change #620' >> ${WC}/trunk/subversion/libsvn_ra_local/ra_plugin.c
echo 'part of change #620' >> ${WC}/trunk/subversion/libsvn_ra_local/checkout.c
echo 'part of change #620' >> ${WC}/trunk/subversion/libsvn_fs/proplist.h
echo 'part of change #620' >> ${WC}/trunk/subversion/libsvn_fs/validate.h
echo 'part of change #620' >> ${WC}/trunk/subversion/bindings/svn_fs.i
echo 'part of change #620' >> ${WC}/trunk/expat-lite/xmldef.h
echo 'part of change #620' >> ${WC}/trunk/notes/guis/planning.txt
echo 'part of change #620' >> ${WC}/trunk/subversion/tests/xml/up-props.xml
${SVN} commit -m 'commit #620' ${WC}/trunk/subversion/libsvn_ra_local/ra_plugin.c ${WC}/trunk/subversion/libsvn_ra_local/checkout.c ${WC}/trunk/subversion/libsvn_fs/proplist.h ${WC}/trunk/subversion/libsvn_fs/validate.h ${WC}/trunk/subversion/bindings/svn_fs.i ${WC}/trunk/expat-lite/xmldef.h ${WC}/trunk/notes/guis/planning.txt ${WC}/trunk/subversion/tests/xml/up-props.xml

################### change 621 ###################
echo ""
echo "Doing commit #621:"
echo 'part of change #621' >> ${WC}/trunk/subversion/libsvn_fs/proplist.h
echo 'part of change #621' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/WorkingCopy.java
${SVN} commit -m 'commit #621' ${WC}/trunk/subversion/libsvn_fs/proplist.h ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/WorkingCopy.java

################### change 622 ###################
echo ""
echo "Doing commit #622:"
echo 'part of change #622' >> ${WC}/trunk/subversion/svnlook/main.c
echo 'part of change #622' >> ${WC}/trunk/subversion/tests/svn_tests_main.c
echo 'part of change #622' >> ${WC}/trunk/subversion/libsvn_fs/err.c
echo 'part of change #622' >> ${WC}/trunk/expat-lite/hashtable.h
echo 'part of change #622' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/WorkingCopy.java
echo 'part of change #622' >> ${WC}/trunk/doc/programmer/design/goals.texi
echo 'part of change #622' >> ${WC}/trunk/doc/programmer/design/protocol.texi
echo 'part of change #622' >> ${WC}/trunk/subversion/libsvn_subr/config.c
echo 'part of change #622' >> ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta
${SVN} commit -m 'commit #622' ${WC}/trunk/subversion/svnlook/main.c ${WC}/trunk/subversion/tests/svn_tests_main.c ${WC}/trunk/subversion/libsvn_fs/err.c ${WC}/trunk/expat-lite/hashtable.h ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/WorkingCopy.java ${WC}/trunk/doc/programmer/design/goals.texi ${WC}/trunk/doc/programmer/design/protocol.texi ${WC}/trunk/subversion/libsvn_subr/config.c ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta

################### change 623 ###################
echo ""
echo "Doing commit #623:"
echo 'part of change #623' >> ${WC}/trunk/subversion/bindings/svn_wc.i
echo 'part of change #623' >> ${WC}/trunk/subversion/tests/libsvn_fs/fs_test.dsp
echo 'part of change #623' >> ${WC}/trunk/www/project_bugs.html
echo 'part of change #623' >> ${WC}/trunk/subversion/libsvn_repos/reporter.c
echo 'part of change #623' >> ${WC}/trunk/subversion/libsvn_fs/key-gen.c
echo 'part of change #623' >> ${WC}/trunk/doc/user/manual/removals.texi
echo 'part of change #623' >> ${WC}/trunk/subversion/libsvn_fs/this-branch.txt
${SVN} commit -m 'commit #623' ${WC}/trunk/subversion/bindings/svn_wc.i ${WC}/trunk/subversion/tests/libsvn_fs/fs_test.dsp ${WC}/trunk/www/project_bugs.html ${WC}/trunk/subversion/libsvn_repos/reporter.c ${WC}/trunk/subversion/libsvn_fs/key-gen.c ${WC}/trunk/doc/user/manual/removals.texi ${WC}/trunk/subversion/libsvn_fs/this-branch.txt

################### change 624 ###################
echo ""
echo "Doing commit #624:"
echo 'part of change #624' >> ${WC}/trunk/subversion/libsvn_fs/strings-table.c
echo 'part of change #624' >> ${WC}/trunk/subversion/clients/win32/svn_com/misc.cpp
echo 'part of change #624' >> ${WC}/trunk/www/license-1.html
echo 'part of change #624' >> ${WC}/trunk/subversion/tests/xml/README
echo 'part of change #624' >> ${WC}/trunk/expat-lite/xmlrole.h
${SVN} commit -m 'commit #624' ${WC}/trunk/subversion/libsvn_fs/strings-table.c ${WC}/trunk/subversion/clients/win32/svn_com/misc.cpp ${WC}/trunk/www/license-1.html ${WC}/trunk/subversion/tests/xml/README ${WC}/trunk/expat-lite/xmlrole.h

################### change 625 ###################
echo ""
echo "Doing commit #625:"
echo 'part of change #625' >> ${WC}/trunk/subversion/libsvn_fs/structure
echo 'part of change #625' >> ${WC}/trunk/subversion/libsvn_fs/err.c
echo 'part of change #625' >> ${WC}/trunk/subversion/mod_dav_svn/mod_dav_svn.c
echo 'part of change #625' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookGroup.frm
echo 'part of change #625' >> ${WC}/trunk/www/project_tasks.html
echo 'part of change #625' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py
echo 'part of change #625' >> ${WC}/trunk/subversion/libsvn_subr/target.c
${SVN} commit -m 'commit #625' ${WC}/trunk/subversion/libsvn_fs/structure ${WC}/trunk/subversion/libsvn_fs/err.c ${WC}/trunk/subversion/mod_dav_svn/mod_dav_svn.c ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookGroup.frm ${WC}/trunk/www/project_tasks.html ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py ${WC}/trunk/subversion/libsvn_subr/target.c

################### change 626 ###################
echo ""
echo "Doing commit #626:"
echo 'part of change #626' >> ${WC}/trunk/subversion/include/svn_hash.h
${SVN} commit -m 'commit #626' ${WC}/trunk/subversion/include/svn_hash.h

################### change 627 ###################
echo ""
echo "Doing commit #627:"
echo 'part of change #627' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm
echo 'part of change #627' >> ${WC}/trunk/subversion/libsvn_wc/get_editor.c
echo 'part of change #627' >> ${WC}/trunk/notes/old/karlnotes
echo 'part of change #627' >> ${WC}/trunk/www/testing-goals.html
${SVN} commit -m 'commit #627' ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm ${WC}/trunk/subversion/libsvn_wc/get_editor.c ${WC}/trunk/notes/old/karlnotes ${WC}/trunk/www/testing-goals.html

################### change 628 ###################
echo ""
echo "Doing commit #628:"
echo 'part of change #628' >> ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.cpp
echo 'part of change #628' >> ${WC}/trunk/subversion.dsw
echo 'part of change #628' >> ${WC}/trunk/NEWS
${SVN} commit -m 'commit #628' ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.cpp ${WC}/trunk/subversion.dsw ${WC}/trunk/NEWS

################### change 629 ###################
echo ""
echo "Doing commit #629:"
echo 'part of change #629' >> ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h
echo 'part of change #629' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmMain.frm
echo 'part of change #629' >> ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp
echo 'part of change #629' >> ${WC}/trunk/subversion/mod_dav_svn/merge.c
echo 'part of change #629' >> ${WC}/trunk/subversion/tests/libsvn_wc/commit-test.c
${SVN} commit -m 'commit #629' ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h ${WC}/trunk/subversion/clients/win32/WinSVN/frmMain.frm ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp ${WC}/trunk/subversion/mod_dav_svn/merge.c ${WC}/trunk/subversion/tests/libsvn_wc/commit-test.c

################### change 630 ###################
echo ""
echo "Doing commit #630:"
echo 'part of change #630' >> ${WC}/trunk/subversion/tests/libsvn_wc/simple.delta
echo 'part of change #630' >> ${WC}/trunk/subversion/bindings/svn_wc.i
echo 'part of change #630' >> ${WC}/trunk/ac-helpers/svn-macros.m4
${SVN} commit -m 'commit #630' ${WC}/trunk/subversion/tests/libsvn_wc/simple.delta ${WC}/trunk/subversion/bindings/svn_wc.i ${WC}/trunk/ac-helpers/svn-macros.m4

################### change 631 ###################
echo ""
echo "Doing commit #631:"
echo 'part of change #631' >> ${WC}/trunk/notes/old/draft-korn-vcdiff-01.txt
echo 'part of change #631' >> ${WC}/trunk/expat-lite/xmltok.h
echo 'part of change #631' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cHeaderControl.cls
echo 'part of change #631' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_1.txt
${SVN} commit -m 'commit #631' ${WC}/trunk/notes/old/draft-korn-vcdiff-01.txt ${WC}/trunk/expat-lite/xmltok.h ${WC}/trunk/subversion/clients/win32/SVNControls/cHeaderControl.cls ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_1.txt

################### change 632 ###################
echo ""
echo "Doing commit #632:"
echo 'part of change #632' >> ${WC}/trunk/subversion/clients/win32/SVNControls/pTest.vbp
echo 'part of change #632' >> ${WC}/trunk/subversion/mod_dav_svn/repos.c
echo 'part of change #632' >> ${WC}/trunk/subversion/libsvn_fs/fs.h
echo 'part of change #632' >> ${WC}/trunk/expat-lite/xmlparse.h
echo 'part of change #632' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py
echo 'part of change #632' >> ${WC}/trunk/doc/programmer/design/model.texi
echo 'part of change #632' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.idl
echo 'part of change #632' >> ${WC}/trunk/tools/cvs2svn/design-notes.txt
${SVN} commit -m 'commit #632' ${WC}/trunk/subversion/clients/win32/SVNControls/pTest.vbp ${WC}/trunk/subversion/mod_dav_svn/repos.c ${WC}/trunk/subversion/libsvn_fs/fs.h ${WC}/trunk/expat-lite/xmlparse.h ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py ${WC}/trunk/doc/programmer/design/model.texi ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.idl ${WC}/trunk/tools/cvs2svn/design-notes.txt

################### change 633 ###################
echo ""
echo "Doing commit #633:"
echo 'part of change #633' >> ${WC}/trunk/subversion/clients/cmdline/cl.h
echo 'part of change #633' >> ${WC}/trunk/subversion/bindings/svn_error.i
echo 'part of change #633' >> ${WC}/trunk/doc/programmer/design/client.texi
echo 'part of change #633' >> ${WC}/trunk/subversion/clients/win32/WinSVN/WinSVN.vbp
echo 'part of change #633' >> ${WC}/trunk/subversion/include/svn_fs.h
echo 'part of change #633' >> ${WC}/trunk/subversion/clients/win32/WinSVN/DriveHelpers.bas
echo 'part of change #633' >> ${WC}/trunk/subversion/libsvn_fs/txn.c
${SVN} commit -m 'commit #633' ${WC}/trunk/subversion/clients/cmdline/cl.h ${WC}/trunk/subversion/bindings/svn_error.i ${WC}/trunk/doc/programmer/design/client.texi ${WC}/trunk/subversion/clients/win32/WinSVN/WinSVN.vbp ${WC}/trunk/subversion/include/svn_fs.h ${WC}/trunk/subversion/clients/win32/WinSVN/DriveHelpers.bas ${WC}/trunk/subversion/libsvn_fs/txn.c

################### change 634 ###################
echo ""
echo "Doing commit #634:"
echo 'part of change #634' >> ${WC}/trunk/subversion/tests/libsvn_delta/postfix.delta
echo 'part of change #634' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmVirtual.frm
${SVN} commit -m 'commit #634' ${WC}/trunk/subversion/tests/libsvn_delta/postfix.delta ${WC}/trunk/subversion/clients/win32/SVNControls/frmVirtual.frm

################### change 635 ###################
echo ""
echo "Doing commit #635:"
echo 'part of change #635' >> ${WC}/trunk/expat-lite/README.svn
${SVN} commit -m 'commit #635' ${WC}/trunk/expat-lite/README.svn

################### change 636 ###################
echo ""
echo "Doing commit #636:"
echo 'part of change #636' >> ${WC}/trunk/subversion/libsvn_repos/lock.c
echo 'part of change #636' >> ${WC}/trunk/subversion/clients/cmdline/util.c
echo 'part of change #636' >> ${WC}/trunk/subversion/tests/xml/up2.xml
echo 'part of change #636' >> ${WC}/trunk/www/project_license.html
${SVN} commit -m 'commit #636' ${WC}/trunk/subversion/libsvn_repos/lock.c ${WC}/trunk/subversion/clients/cmdline/util.c ${WC}/trunk/subversion/tests/xml/up2.xml ${WC}/trunk/www/project_license.html

################### change 637 ###################
echo ""
echo "Doing commit #637:"
echo 'part of change #637' >> ${WC}/trunk/subversion/bindings/svn_ra.i
echo 'part of change #637' >> ${WC}/trunk/subversion/libsvn_client/add.c
echo 'part of change #637' >> ${WC}/trunk/subversion/libsvn_wc/adm_files.c
echo 'part of change #637' >> ${WC}/trunk/doc/README
echo 'part of change #637' >> ${WC}/trunk/expat-lite/xmltok_ns.c
echo 'part of change #637' >> ${WC}/trunk/subversion/libsvn_wc/adm_crawler.c
echo 'part of change #637' >> ${WC}/trunk/subversion/libsvn_fs/txn-table.c
echo 'part of change #637' >> ${WC}/trunk/doc/programmer/design/client.texi
echo 'part of change #637' >> ${WC}/trunk/subversion/libsvn_fs/fs.h
${SVN} commit -m 'commit #637' ${WC}/trunk/subversion/bindings/svn_ra.i ${WC}/trunk/subversion/libsvn_client/add.c ${WC}/trunk/subversion/libsvn_wc/adm_files.c ${WC}/trunk/doc/README ${WC}/trunk/expat-lite/xmltok_ns.c ${WC}/trunk/subversion/libsvn_wc/adm_crawler.c ${WC}/trunk/subversion/libsvn_fs/txn-table.c ${WC}/trunk/doc/programmer/design/client.texi ${WC}/trunk/subversion/libsvn_fs/fs.h

################### change 638 ###################
echo ""
echo "Doing commit #638:"
echo 'part of change #638' >> ${WC}/trunk/subversion/libsvn_fs/trail.c
echo 'part of change #638' >> ${WC}/trunk/subversion/libsvn_repos/hooks.txt
echo 'part of change #638' >> ${WC}/trunk/subversion/bindings/svn_fs.i
${SVN} commit -m 'commit #638' ${WC}/trunk/subversion/libsvn_fs/trail.c ${WC}/trunk/subversion/libsvn_repos/hooks.txt ${WC}/trunk/subversion/bindings/svn_fs.i

################### change 639 ###################
echo ""
echo "Doing commit #639:"
echo 'part of change #639' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target2.txt
echo 'part of change #639' >> ${WC}/trunk/expat-lite/xmlparse.c
echo 'part of change #639' >> ${WC}/trunk/subversion/libsvn_fs/txn-table.c
echo 'part of change #639' >> ${WC}/trunk/subversion/libsvn_subr/getdate.c
echo 'part of change #639' >> ${WC}/trunk/expat-lite/CHANGES.svn
${SVN} commit -m 'commit #639' ${WC}/trunk/subversion/tests/libsvn_vcdiff/target2.txt ${WC}/trunk/expat-lite/xmlparse.c ${WC}/trunk/subversion/libsvn_fs/txn-table.c ${WC}/trunk/subversion/libsvn_subr/getdate.c ${WC}/trunk/expat-lite/CHANGES.svn

################### change 640 ###################
echo ""
echo "Doing commit #640:"
echo 'part of change #640' >> ${WC}/trunk/subversion/tests/libsvn_subr/hashdump-test.c
echo 'part of change #640' >> ${WC}/trunk/subversion/include/svn_hash.h
echo 'part of change #640' >> ${WC}/trunk/subversion/libsvn_client/add.c
${SVN} commit -m 'commit #640' ${WC}/trunk/subversion/tests/libsvn_subr/hashdump-test.c ${WC}/trunk/subversion/include/svn_hash.h ${WC}/trunk/subversion/libsvn_client/add.c

################### change 641 ###################
echo ""
echo "Doing commit #641:"
echo 'part of change #641' >> ${WC}/trunk/subversion/libsvn_repos/hooks.c
echo 'part of change #641' >> ${WC}/trunk/subversion/clients/cmdline/README
echo 'part of change #641' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/__init__.py
echo 'part of change #641' >> ${WC}/trunk/subversion/libsvn_wc/adm_files.c
echo 'part of change #641' >> ${WC}/trunk/subversion/include/svn_io.h
echo 'part of change #641' >> ${WC}/trunk/subversion/libsvn_wc/entries.c
${SVN} commit -m 'commit #641' ${WC}/trunk/subversion/libsvn_repos/hooks.c ${WC}/trunk/subversion/clients/cmdline/README ${WC}/trunk/subversion/tests/clients/cmdline/svntest/__init__.py ${WC}/trunk/subversion/libsvn_wc/adm_files.c ${WC}/trunk/subversion/include/svn_io.h ${WC}/trunk/subversion/libsvn_wc/entries.c

################### change 642 ###################
echo ""
echo "Doing commit #642:"
echo 'part of change #642' >> ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta
echo 'part of change #642' >> ${WC}/trunk/expat-lite/xmltok_impl.c
echo 'part of change #642' >> ${WC}/trunk/subversion/clients/cmdline/subversion_client.dsp
echo 'part of change #642' >> ${WC}/trunk/subversion/libsvn_fs/nodes-table.h
echo 'part of change #642' >> ${WC}/trunk/doc/user/manual/license.texi
echo 'part of change #642' >> ${WC}/trunk/subversion/libsvn_fs/strings-table.c
echo 'part of change #642' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.rgs
echo 'part of change #642' >> ${WC}/trunk/notes/difftools/pics/README
echo 'part of change #642' >> ${WC}/trunk/doc/user/manual/adds.texi
echo 'part of change #642' >> ${WC}/trunk/svn_check.dsp
${SVN} commit -m 'commit #642' ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta ${WC}/trunk/expat-lite/xmltok_impl.c ${WC}/trunk/subversion/clients/cmdline/subversion_client.dsp ${WC}/trunk/subversion/libsvn_fs/nodes-table.h ${WC}/trunk/doc/user/manual/license.texi ${WC}/trunk/subversion/libsvn_fs/strings-table.c ${WC}/trunk/subversion/clients/win32/svn_com/SVN.rgs ${WC}/trunk/notes/difftools/pics/README ${WC}/trunk/doc/user/manual/adds.texi ${WC}/trunk/svn_check.dsp

################### change 643 ###################
echo ""
echo "Doing commit #643:"
echo 'part of change #643' >> ${WC}/trunk/subversion/libsvn_repos/libsvn_repos.dsp
echo 'part of change #643' >> ${WC}/trunk/subversion/libsvn_subr/time.c
echo 'part of change #643' >> ${WC}/trunk/subversion/tests/xml/co1-postfix.xml
${SVN} commit -m 'commit #643' ${WC}/trunk/subversion/libsvn_repos/libsvn_repos.dsp ${WC}/trunk/subversion/libsvn_subr/time.c ${WC}/trunk/subversion/tests/xml/co1-postfix.xml

################### change 644 ###################
echo ""
echo "Doing commit #644:"
echo 'part of change #644' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.def
echo 'part of change #644' >> ${WC}/trunk/subversion/tests/clients/cmdline/commit_tests.py
echo 'part of change #644' >> ${WC}/trunk/subversion/clients/cmdline/diff-cmd.c
echo 'part of change #644' >> ${WC}/trunk/subversion/clients/win32/SVNControls/ppgColumns.pag
echo 'part of change #644' >> ${WC}/trunk/notes/old/karlnotes
${SVN} commit -m 'commit #644' ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.def ${WC}/trunk/subversion/tests/clients/cmdline/commit_tests.py ${WC}/trunk/subversion/clients/cmdline/diff-cmd.c ${WC}/trunk/subversion/clients/win32/SVNControls/ppgColumns.pag ${WC}/trunk/notes/old/karlnotes

################### change 645 ###################
echo ""
echo "Doing commit #645:"
echo 'part of change #645' >> ${WC}/trunk/www/project_bugs.html
echo 'part of change #645' >> ${WC}/trunk/svn_private_config.h.in
echo 'part of change #645' >> ${WC}/trunk/subversion/libsvn_fs/rev-table.h
${SVN} commit -m 'commit #645' ${WC}/trunk/www/project_bugs.html ${WC}/trunk/svn_private_config.h.in ${WC}/trunk/subversion/libsvn_fs/rev-table.h

################### change 646 ###################
echo ""
echo "Doing commit #646:"
echo 'part of change #646' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmAbout.frm
echo 'part of change #646' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmOptions.frm
echo 'part of change #646' >> ${WC}/trunk/notes/guis/planning.txt
echo 'part of change #646' >> ${WC}/trunk/subversion/tests/libsvn_subr/hashdump_test.dsp
echo 'part of change #646' >> ${WC}/trunk/subversion/mod_dav_svn/deadprops.c
echo 'part of change #646' >> ${WC}/trunk/subversion/clients/cmdline/update-cmd.c
echo 'part of change #646' >> ${WC}/trunk/subversion/clients/cmdline/prompt.c
${SVN} commit -m 'commit #646' ${WC}/trunk/subversion/clients/win32/WinSVN/frmAbout.frm ${WC}/trunk/subversion/clients/win32/WinSVN/frmOptions.frm ${WC}/trunk/notes/guis/planning.txt ${WC}/trunk/subversion/tests/libsvn_subr/hashdump_test.dsp ${WC}/trunk/subversion/mod_dav_svn/deadprops.c ${WC}/trunk/subversion/clients/cmdline/update-cmd.c ${WC}/trunk/subversion/clients/cmdline/prompt.c

################### change 647 ###################
echo ""
echo "Doing commit #647:"
echo 'part of change #647' >> ${WC}/trunk/subversion/libsvn_fs/trail.h
echo 'part of change #647' >> ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.h
echo 'part of change #647' >> ${WC}/trunk/subversion/clients/cmdline/cleanup-cmd.c
echo 'part of change #647' >> ${WC}/trunk/subversion/mod_dav_svn/dav_svn.h
echo 'part of change #647' >> ${WC}/trunk/www/project_status.html
echo 'part of change #647' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaHandler.java
${SVN} commit -m 'commit #647' ${WC}/trunk/subversion/libsvn_fs/trail.h ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.h ${WC}/trunk/subversion/clients/cmdline/cleanup-cmd.c ${WC}/trunk/subversion/mod_dav_svn/dav_svn.h ${WC}/trunk/www/project_status.html ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaHandler.java

################### change 648 ###################
echo ""
echo "Doing commit #648:"
echo 'part of change #648' >> ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.c
${SVN} commit -m 'commit #648' ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.c

################### change 649 ###################
echo ""
echo "Doing commit #649:"
echo 'part of change #649' >> ${WC}/trunk/subversion/libsvn_wc/log.c
echo 'part of change #649' >> ${WC}/trunk/subversion/libsvn_fs/proplist.h
echo 'part of change #649' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.cpp
${SVN} commit -m 'commit #649' ${WC}/trunk/subversion/libsvn_wc/log.c ${WC}/trunk/subversion/libsvn_fs/proplist.h ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.cpp

################### change 650 ###################
echo ""
echo "Doing commit #650:"
echo 'part of change #650' >> ${WC}/trunk/subversion/libsvn_subr/README.errors
echo 'part of change #650' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.rgs
echo 'part of change #650' >> ${WC}/trunk/subversion/libsvn_fs/id.c
echo 'part of change #650' >> ${WC}/trunk/notes/the_update_problem.txt
echo 'part of change #650' >> ${WC}/trunk/doc/user/manual/model.texi
echo 'part of change #650' >> ${WC}/trunk/subversion/tests/libsvn_delta/simple.delta
${SVN} commit -m 'commit #650' ${WC}/trunk/subversion/libsvn_subr/README.errors ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.rgs ${WC}/trunk/subversion/libsvn_fs/id.c ${WC}/trunk/notes/the_update_problem.txt ${WC}/trunk/doc/user/manual/model.texi ${WC}/trunk/subversion/tests/libsvn_delta/simple.delta

################### change 651 ###################
echo ""
echo "Doing commit #651:"
echo 'part of change #651' >> ${WC}/trunk/subversion/tests/xml/up1a-postfix.xml
echo 'part of change #651' >> ${WC}/trunk/subversion/libsvn_fs/this-branch.txt
echo 'part of change #651' >> ${WC}/trunk/subversion/tests/libsvn_ra_local/ra-local-test.c
echo 'part of change #651' >> ${WC}/trunk/subversion/libsvn_fs/err.h
echo 'part of change #651' >> ${WC}/trunk/subversion/include/svn_config.h
echo 'part of change #651' >> ${WC}/trunk/subversion/libsvn_ra_dav/util.c
echo 'part of change #651' >> ${WC}/trunk/subversion/clients/cmdline/delete-cmd.c
echo 'part of change #651' >> ${WC}/trunk/subversion/libsvn_fs/dag.h
${SVN} commit -m 'commit #651' ${WC}/trunk/subversion/tests/xml/up1a-postfix.xml ${WC}/trunk/subversion/libsvn_fs/this-branch.txt ${WC}/trunk/subversion/tests/libsvn_ra_local/ra-local-test.c ${WC}/trunk/subversion/libsvn_fs/err.h ${WC}/trunk/subversion/include/svn_config.h ${WC}/trunk/subversion/libsvn_ra_dav/util.c ${WC}/trunk/subversion/clients/cmdline/delete-cmd.c ${WC}/trunk/subversion/libsvn_fs/dag.h

################### change 652 ###################
echo ""
echo "Doing commit #652:"
echo 'part of change #652' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc
echo 'part of change #652' >> ${WC}/trunk/expat-lite/asciitab.h
echo 'part of change #652' >> ${WC}/trunk/www/project_tasks.html
echo 'part of change #652' >> ${WC}/trunk/subversion/tests/xml/up2.xml
echo 'part of change #652' >> ${WC}/trunk/subversion/libsvn_wc/props.c
echo 'part of change #652' >> ${WC}/trunk/notes/issues.txt
echo 'part of change #652' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc
echo 'part of change #652' >> ${WC}/trunk/subversion/libsvn_subr/getdate.c
echo 'part of change #652' >> ${WC}/trunk/subversion/libsvn_delta/default_editor.c
echo 'part of change #652' >> ${WC}/trunk/www/project_footer.html
${SVN} commit -m 'commit #652' ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc ${WC}/trunk/expat-lite/asciitab.h ${WC}/trunk/www/project_tasks.html ${WC}/trunk/subversion/tests/xml/up2.xml ${WC}/trunk/subversion/libsvn_wc/props.c ${WC}/trunk/notes/issues.txt ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc ${WC}/trunk/subversion/libsvn_subr/getdate.c ${WC}/trunk/subversion/libsvn_delta/default_editor.c ${WC}/trunk/www/project_footer.html

################### change 653 ###################
echo ""
echo "Doing commit #653:"
echo 'part of change #653' >> ${WC}/trunk/subversion/tests/libsvn_wc/simple.delta
echo 'part of change #653' >> ${WC}/trunk/subversion/mod_dav_svn/deadprops.c
echo 'part of change #653' >> ${WC}/trunk/subversion/tests/libsvn_fs/key-test.c
echo 'part of change #653' >> ${WC}/trunk/subversion/clients/win32/WinSVN/Startup.bas
echo 'part of change #653' >> ${WC}/trunk/notes/auth_proposal.txt
echo 'part of change #653' >> ${WC}/trunk/subversion/mod_dav_svn/static/Makefile.in
${SVN} commit -m 'commit #653' ${WC}/trunk/subversion/tests/libsvn_wc/simple.delta ${WC}/trunk/subversion/mod_dav_svn/deadprops.c ${WC}/trunk/subversion/tests/libsvn_fs/key-test.c ${WC}/trunk/subversion/clients/win32/WinSVN/Startup.bas ${WC}/trunk/notes/auth_proposal.txt ${WC}/trunk/subversion/mod_dav_svn/static/Makefile.in

################### change 654 ###################
echo ""
echo "Doing commit #654:"
echo 'part of change #654' >> ${WC}/trunk/doc/programmer/WritingChangeLogs.txt
${SVN} commit -m 'commit #654' ${WC}/trunk/doc/programmer/WritingChangeLogs.txt

################### change 655 ###################
echo ""
echo "Doing commit #655:"
echo 'part of change #655' >> ${WC}/trunk/subversion/bindings/svn_string.i
echo 'part of change #655' >> ${WC}/trunk/doc/user/svnlook/svnlook.texi
echo 'part of change #655' >> ${WC}/trunk/www/project_tasks.html
echo 'part of change #655' >> ${WC}/trunk/notes/old/draft-korn-vcdiff-01.txt
echo 'part of change #655' >> ${WC}/trunk/subversion/tests/libsvn_delta/xml-output-test.c
echo 'part of change #655' >> ${WC}/trunk/subversion/include/svn_sorts.h
${SVN} commit -m 'commit #655' ${WC}/trunk/subversion/bindings/svn_string.i ${WC}/trunk/doc/user/svnlook/svnlook.texi ${WC}/trunk/www/project_tasks.html ${WC}/trunk/notes/old/draft-korn-vcdiff-01.txt ${WC}/trunk/subversion/tests/libsvn_delta/xml-output-test.c ${WC}/trunk/subversion/include/svn_sorts.h

################### change 656 ###################
echo ""
echo "Doing commit #656:"
echo 'part of change #656' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_1.txt
echo 'part of change #656' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/__init__.py
echo 'part of change #656' >> ${WC}/trunk/subversion/tests/xml/up1b-inline.xml
echo 'part of change #656' >> ${WC}/trunk/subversion/clients/cmdline/propset-cmd.c
echo 'part of change #656' >> ${WC}/trunk/subversion/libsvn_wc/README
echo 'part of change #656' >> ${WC}/trunk/subversion/bindings/svn_string.i
echo 'part of change #656' >> ${WC}/trunk/subversion/clients/cmdline/subversion_client.dsp
echo 'part of change #656' >> ${WC}/trunk/subversion/tests/README
echo 'part of change #656' >> ${WC}/trunk/subversion/libsvn_client/update.c
${SVN} commit -m 'commit #656' ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_1.txt ${WC}/trunk/subversion/tests/clients/cmdline/svntest/__init__.py ${WC}/trunk/subversion/tests/xml/up1b-inline.xml ${WC}/trunk/subversion/clients/cmdline/propset-cmd.c ${WC}/trunk/subversion/libsvn_wc/README ${WC}/trunk/subversion/bindings/svn_string.i ${WC}/trunk/subversion/clients/cmdline/subversion_client.dsp ${WC}/trunk/subversion/tests/README ${WC}/trunk/subversion/libsvn_client/update.c

################### change 657 ###################
echo ""
echo "Doing commit #657:"
echo 'part of change #657' >> ${WC}/trunk/expat-lite/CHANGES
echo 'part of change #657' >> ${WC}/trunk/doc/programmer/design/server.texi
${SVN} commit -m 'commit #657' ${WC}/trunk/expat-lite/CHANGES ${WC}/trunk/doc/programmer/design/server.texi

################### change 658 ###################
echo ""
echo "Doing commit #658:"
echo 'part of change #658' >> ${WC}/trunk/notes/dav_setup.txt
echo 'part of change #658' >> ${WC}/trunk/subversion/include/svn_types.h
echo 'part of change #658' >> ${WC}/trunk/subversion/libsvn_wc/adm_files.c
echo 'part of change #658' >> ${WC}/trunk/subversion/libsvn_subr/svn_string.c
${SVN} commit -m 'commit #658' ${WC}/trunk/notes/dav_setup.txt ${WC}/trunk/subversion/include/svn_types.h ${WC}/trunk/subversion/libsvn_wc/adm_files.c ${WC}/trunk/subversion/libsvn_subr/svn_string.c

################### change 659 ###################
echo ""
echo "Doing commit #659:"
echo 'part of change #659' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Reporter.java
echo 'part of change #659' >> ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h
echo 'part of change #659' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/SubversionException.java
echo 'part of change #659' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.cpp
echo 'part of change #659' >> ${WC}/trunk/subversion/svnadmin/svnadmin.dsp
echo 'part of change #659' >> ${WC}/trunk/subversion/libsvn_repos/delta.c
${SVN} commit -m 'commit #659' ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Reporter.java ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/SubversionException.java ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.cpp ${WC}/trunk/subversion/svnadmin/svnadmin.dsp ${WC}/trunk/subversion/libsvn_repos/delta.c

################### change 660 ###################
echo ""
echo "Doing commit #660:"
echo 'part of change #660' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/actions.py
echo 'part of change #660' >> ${WC}/trunk/subversion/clients/win32/svn_com/svn_comCP.h
echo 'part of change #660' >> ${WC}/trunk/expat-lite/xmltok.h
echo 'part of change #660' >> ${WC}/trunk/subversion/include/svn_repos.h
echo 'part of change #660' >> ${WC}/trunk/www/webdav-usage.html
${SVN} commit -m 'commit #660' ${WC}/trunk/subversion/tests/clients/cmdline/svntest/actions.py ${WC}/trunk/subversion/clients/win32/svn_com/svn_comCP.h ${WC}/trunk/expat-lite/xmltok.h ${WC}/trunk/subversion/include/svn_repos.h ${WC}/trunk/www/webdav-usage.html

################### change 661 ###################
echo ""
echo "Doing commit #661:"
echo 'part of change #661' >> ${WC}/trunk/subversion/tests/libsvn_fs/fs-test.c
echo 'part of change #661' >> ${WC}/trunk/subversion/libsvn_fs/trail.c
echo 'part of change #661' >> ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.ctl
echo 'part of change #661' >> ${WC}/trunk/subversion/bindings/svn_io.i
echo 'part of change #661' >> ${WC}/trunk/subversion/libsvn_fs/err.h
echo 'part of change #661' >> ${WC}/trunk/NEWS
echo 'part of change #661' >> ${WC}/trunk/expat-lite/libexpat.dsp
echo 'part of change #661' >> ${WC}/trunk/subversion/bindings/svn_delta.i
echo 'part of change #661' >> ${WC}/trunk/subversion/libsvn_fs/err.h
${SVN} commit -m 'commit #661' ${WC}/trunk/subversion/tests/libsvn_fs/fs-test.c ${WC}/trunk/subversion/libsvn_fs/trail.c ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.ctl ${WC}/trunk/subversion/bindings/svn_io.i ${WC}/trunk/subversion/libsvn_fs/err.h ${WC}/trunk/NEWS ${WC}/trunk/expat-lite/libexpat.dsp ${WC}/trunk/subversion/bindings/svn_delta.i ${WC}/trunk/subversion/libsvn_fs/err.h

################### change 662 ###################
echo ""
echo "Doing commit #662:"
echo 'part of change #662' >> ${WC}/trunk/subversion/libsvn_repos/hooks.txt
echo 'part of change #662' >> ${WC}/trunk/subversion/include/svn_error_codes.h
echo 'part of change #662' >> ${WC}/trunk/subversion/clients/cmdline/propget-cmd.c
${SVN} commit -m 'commit #662' ${WC}/trunk/subversion/libsvn_repos/hooks.txt ${WC}/trunk/subversion/include/svn_error_codes.h ${WC}/trunk/subversion/clients/cmdline/propget-cmd.c

################### change 663 ###################
echo ""
echo "Doing commit #663:"
echo 'part of change #663' >> ${WC}/trunk/Makefile.in
echo 'part of change #663' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.cpp
echo 'part of change #663' >> ${WC}/trunk/tools/cvs2svn/design-notes.txt
echo 'part of change #663' >> ${WC}/trunk/subversion/libsvn_fs/skel.h
echo 'part of change #663' >> ${WC}/trunk/subversion/bindings/svn_delta.i
echo 'part of change #663' >> ${WC}/trunk/subversion/clients/win32/SVNControls/pTest.vbp
${SVN} commit -m 'commit #663' ${WC}/trunk/Makefile.in ${WC}/trunk/subversion/clients/win32/svn_com/SVN.cpp ${WC}/trunk/tools/cvs2svn/design-notes.txt ${WC}/trunk/subversion/libsvn_fs/skel.h ${WC}/trunk/subversion/bindings/svn_delta.i ${WC}/trunk/subversion/clients/win32/SVNControls/pTest.vbp

################### change 664 ###################
echo ""
echo "Doing commit #664:"
echo 'part of change #664' >> ${WC}/trunk/subversion/libsvn_client/status.c
echo 'part of change #664' >> ${WC}/trunk/subversion/tests/libsvn_repos/repos-test.c
echo 'part of change #664' >> ${WC}/trunk/notes/guis/pics/ClearCase-lsvtree-README
echo 'part of change #664' >> ${WC}/trunk/subversion/libsvn_fs/reps-strings.c
echo 'part of change #664' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Entry.java
echo 'part of change #664' >> ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.vbp
${SVN} commit -m 'commit #664' ${WC}/trunk/subversion/libsvn_client/status.c ${WC}/trunk/subversion/tests/libsvn_repos/repos-test.c ${WC}/trunk/notes/guis/pics/ClearCase-lsvtree-README ${WC}/trunk/subversion/libsvn_fs/reps-strings.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Entry.java ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.vbp

################### change 665 ###################
echo ""
echo "Doing commit #665:"
echo 'part of change #665' >> ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp
echo 'part of change #665' >> ${WC}/trunk/subversion/tests/libsvn_wc/checkout-1.txt
echo 'part of change #665' >> ${WC}/trunk/subversion/libsvn_ra/libsvn_ra.dsp
echo 'part of change #665' >> ${WC}/trunk/subversion/libsvn_fs/dbt.c
echo 'part of change #665' >> ${WC}/trunk/subversion/libsvn_fs/skel.c
echo 'part of change #665' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.mk
echo 'part of change #665' >> ${WC}/trunk/subversion/bindings/svn_ra.i
echo 'part of change #665' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaWindow.java
echo 'part of change #665' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm
${SVN} commit -m 'commit #665' ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp ${WC}/trunk/subversion/tests/libsvn_wc/checkout-1.txt ${WC}/trunk/subversion/libsvn_ra/libsvn_ra.dsp ${WC}/trunk/subversion/libsvn_fs/dbt.c ${WC}/trunk/subversion/libsvn_fs/skel.c ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.mk ${WC}/trunk/subversion/bindings/svn_ra.i ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaWindow.java ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm

################### change 666 ###################
echo ""
echo "Doing commit #666:"
echo 'part of change #666' >> ${WC}/trunk/notes/old/karlnotes
${SVN} commit -m 'commit #666' ${WC}/trunk/notes/old/karlnotes

################### change 667 ###################
echo ""
echo "Doing commit #667:"
echo 'part of change #667' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cHeaderControl.cls
echo 'part of change #667' >> ${WC}/trunk/subversion/libsvn_subr/getdate.cw
${SVN} commit -m 'commit #667' ${WC}/trunk/subversion/clients/win32/SVNControls/cHeaderControl.cls ${WC}/trunk/subversion/libsvn_subr/getdate.cw

################### change 668 ###################
echo ""
echo "Doing commit #668:"
echo 'part of change #668' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.h
echo 'part of change #668' >> ${WC}/trunk/subversion/libsvn_fs/tree.h
echo 'part of change #668' >> ${WC}/trunk/svn_config.dsp
echo 'part of change #668' >> ${WC}/trunk/subversion/tests/xml/co1-postfix.xml
echo 'part of change #668' >> ${WC}/trunk/subversion/mod_dav_svn/repos.c
echo 'part of change #668' >> ${WC}/trunk/subversion/libsvn_repos/hooks.c
${SVN} commit -m 'commit #668' ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.h ${WC}/trunk/subversion/libsvn_fs/tree.h ${WC}/trunk/svn_config.dsp ${WC}/trunk/subversion/tests/xml/co1-postfix.xml ${WC}/trunk/subversion/mod_dav_svn/repos.c ${WC}/trunk/subversion/libsvn_repos/hooks.c

################### change 669 ###################
echo ""
echo "Doing commit #669:"
echo 'part of change #669' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.rgs
echo 'part of change #669' >> ${WC}/trunk/notes/issues.txt
echo 'part of change #669' >> ${WC}/trunk/www/project_status.html
echo 'part of change #669' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_test.dsp
echo 'part of change #669' >> ${WC}/trunk/subversion/libsvn_subr/svn_error.c
echo 'part of change #669' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cFlatHeader.cls
echo 'part of change #669' >> ${WC}/trunk/subversion/tests/libsvn_repos/repos-test.c
echo 'part of change #669' >> ${WC}/trunk/subversion/libsvn_fs/proplist.c
${SVN} commit -m 'commit #669' ${WC}/trunk/subversion/clients/win32/svn_com/SVN.rgs ${WC}/trunk/notes/issues.txt ${WC}/trunk/www/project_status.html ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_test.dsp ${WC}/trunk/subversion/libsvn_subr/svn_error.c ${WC}/trunk/subversion/clients/win32/SVNControls/cFlatHeader.cls ${WC}/trunk/subversion/tests/libsvn_repos/repos-test.c ${WC}/trunk/subversion/libsvn_fs/proplist.c

################### change 670 ###################
echo ""
echo "Doing commit #670:"
echo 'part of change #670' >> ${WC}/trunk/subversion/libsvn_client/status.c
echo 'part of change #670' >> ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.h
${SVN} commit -m 'commit #670' ${WC}/trunk/subversion/libsvn_client/status.c ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.h

################### change 671 ###################
echo ""
echo "Doing commit #671:"
echo 'part of change #671' >> ${WC}/trunk/subversion/libsvn_subr/xml.c
echo 'part of change #671' >> ${WC}/trunk/doc/programmer/WritingChangeLogs.txt
echo 'part of change #671' >> ${WC}/trunk/subversion/include/svn_delta.h
echo 'part of change #671' >> ${WC}/trunk/notes/guis/planning.txt
echo 'part of change #671' >> ${WC}/trunk/subversion/libsvn_ra_local/checkout.c
echo 'part of change #671' >> ${WC}/trunk/subversion/libsvn_fs/dbt.h
echo 'part of change #671' >> ${WC}/trunk/subversion/clients/cmdline/status.c
echo 'part of change #671' >> ${WC}/trunk/subversion/clients/win32/svn_com/svn_com.dsp
echo 'part of change #671' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm
echo 'part of change #671' >> ${WC}/trunk/notes/dav_setup.txt
${SVN} commit -m 'commit #671' ${WC}/trunk/subversion/libsvn_subr/xml.c ${WC}/trunk/doc/programmer/WritingChangeLogs.txt ${WC}/trunk/subversion/include/svn_delta.h ${WC}/trunk/notes/guis/planning.txt ${WC}/trunk/subversion/libsvn_ra_local/checkout.c ${WC}/trunk/subversion/libsvn_fs/dbt.h ${WC}/trunk/subversion/clients/cmdline/status.c ${WC}/trunk/subversion/clients/win32/svn_com/svn_com.dsp ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm ${WC}/trunk/notes/dav_setup.txt

################### change 672 ###################
echo ""
echo "Doing commit #672:"
echo 'part of change #672' >> ${WC}/trunk/subversion/libsvn_subr/README.errors
echo 'part of change #672' >> ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta
echo 'part of change #672' >> ${WC}/trunk/subversion/tests/libsvn_repos/repos_test.dsp
${SVN} commit -m 'commit #672' ${WC}/trunk/subversion/libsvn_subr/README.errors ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta ${WC}/trunk/subversion/tests/libsvn_repos/repos_test.dsp

################### change 673 ###################
echo ""
echo "Doing commit #673:"
echo 'part of change #673' >> ${WC}/trunk/subversion/libsvn_ra_dav/options.c
echo 'part of change #673' >> ${WC}/trunk/expat-lite/xmlrole.h
echo 'part of change #673' >> ${WC}/trunk/subversion/mod_dav_svn/static/Makefile.in
echo 'part of change #673' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/actions.py
${SVN} commit -m 'commit #673' ${WC}/trunk/subversion/libsvn_ra_dav/options.c ${WC}/trunk/expat-lite/xmlrole.h ${WC}/trunk/subversion/mod_dav_svn/static/Makefile.in ${WC}/trunk/subversion/tests/clients/cmdline/svntest/actions.py

################### change 674 ###################
echo ""
echo "Doing commit #674:"
echo 'part of change #674' >> ${WC}/trunk/subversion/clients/cmdline/propdel-cmd.c
echo 'part of change #674' >> ${WC}/trunk/subversion/clients/win32/WinSVN/DriveHelpers.bas
echo 'part of change #674' >> ${WC}/trunk/expat-lite/iasciitab.h
echo 'part of change #674' >> ${WC}/trunk/subversion/libsvn_fs/fs.c
echo 'part of change #674' >> ${WC}/trunk/subversion/clients/cmdline/propget-cmd.c
echo 'part of change #674' >> ${WC}/trunk/subversion/libsvn_fs/fs.h
${SVN} commit -m 'commit #674' ${WC}/trunk/subversion/clients/cmdline/propdel-cmd.c ${WC}/trunk/subversion/clients/win32/WinSVN/DriveHelpers.bas ${WC}/trunk/expat-lite/iasciitab.h ${WC}/trunk/subversion/libsvn_fs/fs.c ${WC}/trunk/subversion/clients/cmdline/propget-cmd.c ${WC}/trunk/subversion/libsvn_fs/fs.h

################### change 675 ###################
echo ""
echo "Doing commit #675:"
echo 'part of change #675' >> ${WC}/trunk/subversion/libsvn_fs/rev-table.c
${SVN} commit -m 'commit #675' ${WC}/trunk/subversion/libsvn_fs/rev-table.c

################### change 676 ###################
echo ""
echo "Doing commit #676:"
echo 'part of change #676' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.h
echo 'part of change #676' >> ${WC}/trunk/subversion/tests/libsvn_wc/checkout_test.dsp
echo 'part of change #676' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cScrollBars.cls
echo 'part of change #676' >> ${WC}/trunk/subversion/clients/win32/SVNControls/type.dat
echo 'part of change #676' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmTestMatrix.frm
echo 'part of change #676' >> ${WC}/trunk/doc/programmer/design/svn-design.txt
${SVN} commit -m 'commit #676' ${WC}/trunk/subversion/libsvn_fs/reps-table.h ${WC}/trunk/subversion/tests/libsvn_wc/checkout_test.dsp ${WC}/trunk/subversion/clients/win32/SVNControls/cScrollBars.cls ${WC}/trunk/subversion/clients/win32/SVNControls/type.dat ${WC}/trunk/subversion/clients/win32/SVNControls/frmTestMatrix.frm ${WC}/trunk/doc/programmer/design/svn-design.txt

################### change 677 ###################
echo ""
echo "Doing commit #677:"
echo 'part of change #677' >> ${WC}/trunk/www/license-1.html
echo 'part of change #677' >> ${WC}/trunk/subversion/tests/xml/up1a-inline.xml
echo 'part of change #677' >> ${WC}/trunk/subversion/mod_dav_svn/activity.c
${SVN} commit -m 'commit #677' ${WC}/trunk/www/license-1.html ${WC}/trunk/subversion/tests/xml/up1a-inline.xml ${WC}/trunk/subversion/mod_dav_svn/activity.c

################### change 678 ###################
echo ""
echo "Doing commit #678:"
echo 'part of change #678' >> ${WC}/trunk/subversion/svnadmin/main.c
echo 'part of change #678' >> ${WC}/trunk/subversion/libsvn_fs/reps-strings.c
echo 'part of change #678' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cGridCell.cls
echo 'part of change #678' >> ${WC}/trunk/subversion/libsvn_fs/nodes-table.c
echo 'part of change #678' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.rgs
echo 'part of change #678' >> ${WC}/trunk/subversion/include/svn_io.h
echo 'part of change #678' >> ${WC}/trunk/subversion/mod_dav_svn/dav_svn.h
echo 'part of change #678' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target1.txt
echo 'part of change #678' >> ${WC}/trunk/subversion/tests/libsvn_delta/postfix.delta
echo 'part of change #678' >> ${WC}/trunk/configure.in
${SVN} commit -m 'commit #678' ${WC}/trunk/subversion/svnadmin/main.c ${WC}/trunk/subversion/libsvn_fs/reps-strings.c ${WC}/trunk/subversion/clients/win32/SVNControls/cGridCell.cls ${WC}/trunk/subversion/libsvn_fs/nodes-table.c ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.rgs ${WC}/trunk/subversion/include/svn_io.h ${WC}/trunk/subversion/mod_dav_svn/dav_svn.h ${WC}/trunk/subversion/tests/libsvn_vcdiff/target1.txt ${WC}/trunk/subversion/tests/libsvn_delta/postfix.delta ${WC}/trunk/configure.in

################### change 679 ###################
echo ""
echo "Doing commit #679:"
echo 'part of change #679' >> ${WC}/trunk/subversion.dsw
${SVN} commit -m 'commit #679' ${WC}/trunk/subversion.dsw

################### change 680 ###################
echo ""
echo "Doing commit #680:"
echo 'part of change #680' >> ${WC}/trunk/doc/user/manual/dirversioning.texi
${SVN} commit -m 'commit #680' ${WC}/trunk/doc/user/manual/dirversioning.texi

################### change 681 ###################
echo ""
echo "Doing commit #681:"
echo 'part of change #681' >> ${WC}/trunk/tools/hook-scripts/README
echo 'part of change #681' >> ${WC}/trunk/subversion/libsvn_fs/structure
echo 'part of change #681' >> ${WC}/trunk/www/testing-goals.html
echo 'part of change #681' >> ${WC}/trunk/doc/programmer/design/svn-design.txt
echo 'part of change #681' >> ${WC}/trunk/expat-lite/xmltok_impl.h
${SVN} commit -m 'commit #681' ${WC}/trunk/tools/hook-scripts/README ${WC}/trunk/subversion/libsvn_fs/structure ${WC}/trunk/www/testing-goals.html ${WC}/trunk/doc/programmer/design/svn-design.txt ${WC}/trunk/expat-lite/xmltok_impl.h

################### change 682 ###################
echo ""
echo "Doing commit #682:"
echo 'part of change #682' >> ${WC}/trunk/subversion/tests/libsvn_delta/svndiff-test.c
echo 'part of change #682' >> ${WC}/trunk/subversion/libsvn_delta/default_editor.c
echo 'part of change #682' >> ${WC}/trunk/subversion/libsvn_fs/libsvn_fs.dsp
echo 'part of change #682' >> ${WC}/trunk/subversion/libsvn_fs/txn.c
echo 'part of change #682' >> ${WC}/trunk/subversion/libsvn_wc/adm_crawler.c
echo 'part of change #682' >> ${WC}/trunk/subversion/tests/libsvn_fs/key-test.c
${SVN} commit -m 'commit #682' ${WC}/trunk/subversion/tests/libsvn_delta/svndiff-test.c ${WC}/trunk/subversion/libsvn_delta/default_editor.c ${WC}/trunk/subversion/libsvn_fs/libsvn_fs.dsp ${WC}/trunk/subversion/libsvn_fs/txn.c ${WC}/trunk/subversion/libsvn_wc/adm_crawler.c ${WC}/trunk/subversion/tests/libsvn_fs/key-test.c

################### change 683 ###################
echo ""
echo "Doing commit #683:"
echo 'part of change #683' >> ${WC}/trunk/subversion/libsvn_delta/libsvn_delta.dsp
echo 'part of change #683' >> ${WC}/trunk/subversion/libsvn_client/client.h
echo 'part of change #683' >> ${WC}/trunk/subversion/libsvn_delta/default_editor.c
${SVN} commit -m 'commit #683' ${WC}/trunk/subversion/libsvn_delta/libsvn_delta.dsp ${WC}/trunk/subversion/libsvn_client/client.h ${WC}/trunk/subversion/libsvn_delta/default_editor.c

################### change 684 ###################
echo ""
echo "Doing commit #684:"
echo 'part of change #684' >> ${WC}/trunk/doc/user/manual/svn-manual.html
echo 'part of change #684' >> ${WC}/trunk/doc/user/manual/model.texi
echo 'part of change #684' >> ${WC}/trunk/notes/difftools/pics/FileMerge-README
${SVN} commit -m 'commit #684' ${WC}/trunk/doc/user/manual/svn-manual.html ${WC}/trunk/doc/user/manual/model.texi ${WC}/trunk/notes/difftools/pics/FileMerge-README

################### change 685 ###################
echo ""
echo "Doing commit #685:"
echo 'part of change #685' >> ${WC}/trunk/subversion/libsvn_wc/log.c
echo 'part of change #685' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.def
${SVN} commit -m 'commit #685' ${WC}/trunk/subversion/libsvn_wc/log.c ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.def

################### change 686 ###################
echo ""
echo "Doing commit #686:"
echo 'part of change #686' >> ${WC}/trunk/www/variance-adjusted-patching.html
echo 'part of change #686' >> ${WC}/trunk/subversion/libsvn_fs/structure
echo 'part of change #686' >> ${WC}/trunk/subversion/tests/libsvn_delta/random-test.c
echo 'part of change #686' >> ${WC}/trunk/expat-lite/xmlparse.h
echo 'part of change #686' >> ${WC}/trunk/subversion/tests/fs-helpers.h
echo 'part of change #686' >> ${WC}/trunk/subversion/libsvn_ra_dav/session.c
${SVN} commit -m 'commit #686' ${WC}/trunk/www/variance-adjusted-patching.html ${WC}/trunk/subversion/libsvn_fs/structure ${WC}/trunk/subversion/tests/libsvn_delta/random-test.c ${WC}/trunk/expat-lite/xmlparse.h ${WC}/trunk/subversion/tests/fs-helpers.h ${WC}/trunk/subversion/libsvn_ra_dav/session.c

################### change 687 ###################
echo ""
echo "Doing commit #687:"
echo 'part of change #687' >> ${WC}/trunk/subversion/libsvn_subr/path.c
echo 'part of change #687' >> ${WC}/trunk/subversion/libsvn_wc/questions.c
echo 'part of change #687' >> ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py
echo 'part of change #687' >> ${WC}/trunk/AUTHORS
echo 'part of change #687' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cFlatHeader.cls
echo 'part of change #687' >> ${WC}/trunk/subversion/libsvn_subr/quoprint.c
echo 'part of change #687' >> ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.h
echo 'part of change #687' >> ${WC}/trunk/subversion/clients/win32/SVNControls/link.dat
echo 'part of change #687' >> ${WC}/trunk/subversion/bindings/svn_delta.i
echo 'part of change #687' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cHeaderControl.cls
${SVN} commit -m 'commit #687' ${WC}/trunk/subversion/libsvn_subr/path.c ${WC}/trunk/subversion/libsvn_wc/questions.c ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py ${WC}/trunk/AUTHORS ${WC}/trunk/subversion/clients/win32/SVNControls/cFlatHeader.cls ${WC}/trunk/subversion/libsvn_subr/quoprint.c ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.h ${WC}/trunk/subversion/clients/win32/SVNControls/link.dat ${WC}/trunk/subversion/bindings/svn_delta.i ${WC}/trunk/subversion/clients/win32/SVNControls/cHeaderControl.cls

################### change 688 ###################
echo ""
echo "Doing commit #688:"
echo 'part of change #688' >> ${WC}/trunk/subversion/libsvn_client/auth.c
echo 'part of change #688' >> ${WC}/trunk/subversion/libsvn_ra_dav/props.c
${SVN} commit -m 'commit #688' ${WC}/trunk/subversion/libsvn_client/auth.c ${WC}/trunk/subversion/libsvn_ra_dav/props.c

################### change 689 ###################
echo ""
echo "Doing commit #689:"
echo 'part of change #689' >> ${WC}/trunk/subversion/bindings/svn_error.i
echo 'part of change #689' >> ${WC}/trunk/doc/programmer/design/deltas.texi
echo 'part of change #689' >> ${WC}/trunk/subversion/libsvn_fs/tree.c
echo 'part of change #689' >> ${WC}/trunk/subversion/include/svn_hash.h
echo 'part of change #689' >> ${WC}/trunk/subversion/include/svn_string.h
${SVN} commit -m 'commit #689' ${WC}/trunk/subversion/bindings/svn_error.i ${WC}/trunk/doc/programmer/design/deltas.texi ${WC}/trunk/subversion/libsvn_fs/tree.c ${WC}/trunk/subversion/include/svn_hash.h ${WC}/trunk/subversion/include/svn_string.h

################### change 690 ###################
echo ""
echo "Doing commit #690:"
echo 'part of change #690' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.h
echo 'part of change #690' >> ${WC}/trunk/expat-lite/xmlparse.h
echo 'part of change #690' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py
echo 'part of change #690' >> ${WC}/trunk/subversion/libsvn_fs/id.c
echo 'part of change #690' >> ${WC}/trunk/www/webdav-usage.html
echo 'part of change #690' >> ${WC}/trunk/doc/programmer/design/architecture.texi
echo 'part of change #690' >> ${WC}/trunk/subversion/mod_dav_svn/mod_dav_svn.c
echo 'part of change #690' >> ${WC}/trunk/subversion/libsvn_fs/skel.h
${SVN} commit -m 'commit #690' ${WC}/trunk/subversion/clients/win32/svn_com/SVN.h ${WC}/trunk/expat-lite/xmlparse.h ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py ${WC}/trunk/subversion/libsvn_fs/id.c ${WC}/trunk/www/webdav-usage.html ${WC}/trunk/doc/programmer/design/architecture.texi ${WC}/trunk/subversion/mod_dav_svn/mod_dav_svn.c ${WC}/trunk/subversion/libsvn_fs/skel.h

################### change 691 ###################
echo ""
echo "Doing commit #691:"
echo 'part of change #691' >> ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.h
echo 'part of change #691' >> ${WC}/trunk/doc/programmer/design/architecture.texi
${SVN} commit -m 'commit #691' ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.h ${WC}/trunk/doc/programmer/design/architecture.texi

################### change 692 ###################
echo ""
echo "Doing commit #692:"
echo 'part of change #692' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.c
echo 'part of change #692' >> ${WC}/trunk/subversion/include/svn_fs.h
echo 'part of change #692' >> ${WC}/trunk/subversion/clients/cmdline/cl.h
echo 'part of change #692' >> ${WC}/trunk/subversion/tests/libsvn_fs/strings-reps-test.c
${SVN} commit -m 'commit #692' ${WC}/trunk/subversion/libsvn_fs/reps-table.c ${WC}/trunk/subversion/include/svn_fs.h ${WC}/trunk/subversion/clients/cmdline/cl.h ${WC}/trunk/subversion/tests/libsvn_fs/strings-reps-test.c

################### change 693 ###################
echo ""
echo "Doing commit #693:"
echo 'part of change #693' >> ${WC}/trunk/subversion/libsvn_client/commit.c
echo 'part of change #693' >> ${WC}/trunk/subversion/clients/cmdline/import-cmd.c
echo 'part of change #693' >> ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse_test.dsp
echo 'part of change #693' >> ${WC}/trunk/subversion/clients/cmdline/checkout-cmd.c
echo 'part of change #693' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target4.txt
echo 'part of change #693' >> ${WC}/trunk/subversion/tests/libsvn_subr/string_test.dsp
echo 'part of change #693' >> ${WC}/trunk/subversion/tests/libsvn_wc/simple.delta
${SVN} commit -m 'commit #693' ${WC}/trunk/subversion/libsvn_client/commit.c ${WC}/trunk/subversion/clients/cmdline/import-cmd.c ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse_test.dsp ${WC}/trunk/subversion/clients/cmdline/checkout-cmd.c ${WC}/trunk/subversion/tests/libsvn_vcdiff/target4.txt ${WC}/trunk/subversion/tests/libsvn_subr/string_test.dsp ${WC}/trunk/subversion/tests/libsvn_wc/simple.delta

################### change 694 ###################
echo ""
echo "Doing commit #694:"
echo 'part of change #694' >> ${WC}/trunk/subversion/libsvn_subr/svn_error.c
echo 'part of change #694' >> ${WC}/trunk/PORTING
echo 'part of change #694' >> ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h
echo 'part of change #694' >> ${WC}/trunk/subversion/libsvn_ra_local/split_url.c
echo 'part of change #694' >> ${WC}/trunk/doc/programmer/design/license.texi
echo 'part of change #694' >> ${WC}/trunk/expat-lite/libexpat.dsp
echo 'part of change #694' >> ${WC}/trunk/subversion/libsvn_fs/node-rev.c
echo 'part of change #694' >> ${WC}/trunk/subversion/libsvn_subr/getdate.cw
echo 'part of change #694' >> ${WC}/trunk/subversion/bindings/svn_types.i
echo 'part of change #694' >> ${WC}/trunk/subversion/libsvn_subr/README.errors
${SVN} commit -m 'commit #694' ${WC}/trunk/subversion/libsvn_subr/svn_error.c ${WC}/trunk/PORTING ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h ${WC}/trunk/subversion/libsvn_ra_local/split_url.c ${WC}/trunk/doc/programmer/design/license.texi ${WC}/trunk/expat-lite/libexpat.dsp ${WC}/trunk/subversion/libsvn_fs/node-rev.c ${WC}/trunk/subversion/libsvn_subr/getdate.cw ${WC}/trunk/subversion/bindings/svn_types.i ${WC}/trunk/subversion/libsvn_subr/README.errors

################### change 695 ###################
echo ""
echo "Doing commit #695:"
echo 'part of change #695' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.def
echo 'part of change #695' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py
echo 'part of change #695' >> ${WC}/trunk/subversion/libsvn_subr/target.c
echo 'part of change #695' >> ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.vbp
${SVN} commit -m 'commit #695' ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.def ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py ${WC}/trunk/subversion/libsvn_subr/target.c ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.vbp

################### change 696 ###################
echo ""
echo "Doing commit #696:"
echo 'part of change #696' >> ${WC}/trunk/subversion/libsvn_subr/sorts.c
echo 'part of change #696' >> ${WC}/trunk/subversion/clients/cmdline/trace-update.c
${SVN} commit -m 'commit #696' ${WC}/trunk/subversion/libsvn_subr/sorts.c ${WC}/trunk/subversion/clients/cmdline/trace-update.c

################### change 697 ###################
echo ""
echo "Doing commit #697:"
echo 'part of change #697' >> ${WC}/trunk/subversion/clients/cmdline/subversion_client.dsp
echo 'part of change #697' >> ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse-test.c
echo 'part of change #697' >> ${WC}/trunk/subversion/libsvn_repos/reporter.c
echo 'part of change #697' >> ${WC}/trunk/doc/user/manual/license.texi
echo 'part of change #697' >> ${WC}/trunk/subversion/tests/libsvn_subr/hashdump-test.c
echo 'part of change #697' >> ${WC}/trunk/expat-lite/xmlrole.h
echo 'part of change #697' >> ${WC}/trunk/subversion/libsvn_delta/track_editor.c
echo 'part of change #697' >> ${WC}/trunk/notes/multi-args.txt
echo 'part of change #697' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmAbout.frm
echo 'part of change #697' >> ${WC}/trunk/subversion/libsvn_subr/getdate.cw
${SVN} commit -m 'commit #697' ${WC}/trunk/subversion/clients/cmdline/subversion_client.dsp ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse-test.c ${WC}/trunk/subversion/libsvn_repos/reporter.c ${WC}/trunk/doc/user/manual/license.texi ${WC}/trunk/subversion/tests/libsvn_subr/hashdump-test.c ${WC}/trunk/expat-lite/xmlrole.h ${WC}/trunk/subversion/libsvn_delta/track_editor.c ${WC}/trunk/notes/multi-args.txt ${WC}/trunk/subversion/clients/win32/WinSVN/frmAbout.frm ${WC}/trunk/subversion/libsvn_subr/getdate.cw

################### change 698 ###################
echo ""
echo "Doing commit #698:"
echo 'part of change #698' >> ${WC}/trunk/subversion/include/svn_xml.h
echo 'part of change #698' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/SubversionException.java
echo 'part of change #698' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm
echo 'part of change #698' >> ${WC}/trunk/subversion/tests/libsvn_repos/md5args.c
echo 'part of change #698' >> ${WC}/trunk/subversion/libsvn_ra_local/checkout.c
echo 'part of change #698' >> ${WC}/trunk/expat-lite/hashtable.c
echo 'part of change #698' >> ${WC}/trunk/subversion/libsvn_fs/err.h
echo 'part of change #698' >> ${WC}/trunk/expat-lite/xmltok_impl.h
echo 'part of change #698' >> ${WC}/trunk/expat-lite/CHANGES
${SVN} commit -m 'commit #698' ${WC}/trunk/subversion/include/svn_xml.h ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/SubversionException.java ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm ${WC}/trunk/subversion/tests/libsvn_repos/md5args.c ${WC}/trunk/subversion/libsvn_ra_local/checkout.c ${WC}/trunk/expat-lite/hashtable.c ${WC}/trunk/subversion/libsvn_fs/err.h ${WC}/trunk/expat-lite/xmltok_impl.h ${WC}/trunk/expat-lite/CHANGES

################### change 699 ###################
echo ""
echo "Doing commit #699:"
echo 'part of change #699' >> ${WC}/trunk/doc/svn-doc.el
echo 'part of change #699' >> ${WC}/trunk/subversion/tests/README
echo 'part of change #699' >> ${WC}/trunk/subversion/libsvn_ra/libsvn_ra.dsp
echo 'part of change #699' >> ${WC}/trunk/subversion/libsvn_wc/get_editor.c
echo 'part of change #699' >> ${WC}/trunk/subversion/libsvn_fs/nodes-table.h
echo 'part of change #699' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt
echo 'part of change #699' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.c
echo 'part of change #699' >> ${WC}/trunk/subversion/tests/libsvn_subr/stringtest.c
echo 'part of change #699' >> ${WC}/trunk/subversion/clients/win32/WinSVN/ExplorerViewHelpers.cls
${SVN} commit -m 'commit #699' ${WC}/trunk/doc/svn-doc.el ${WC}/trunk/subversion/tests/README ${WC}/trunk/subversion/libsvn_ra/libsvn_ra.dsp ${WC}/trunk/subversion/libsvn_wc/get_editor.c ${WC}/trunk/subversion/libsvn_fs/nodes-table.h ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt ${WC}/trunk/subversion/libsvn_fs/reps-table.c ${WC}/trunk/subversion/tests/libsvn_subr/stringtest.c ${WC}/trunk/subversion/clients/win32/WinSVN/ExplorerViewHelpers.cls

################### change 700 ###################
echo ""
echo "Doing commit #700:"
echo 'part of change #700' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmOptions.frm
echo 'part of change #700' >> ${WC}/trunk/ac-helpers/svn-apache.m4
echo 'part of change #700' >> ${WC}/trunk/subversion/clients/cmdline/propget-cmd.c
echo 'part of change #700' >> ${WC}/trunk/subversion/libsvn_delta/xml_output.c
echo 'part of change #700' >> ${WC}/trunk/subversion/tests/xml/up1b-postfix.xml
echo 'part of change #700' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/WorkingCopy.java
echo 'part of change #700' >> ${WC}/trunk/subversion/clients/win32/SVNControls/type.dat
echo 'part of change #700' >> ${WC}/trunk/subversion/clients/cmdline/diff-cmd.c
echo 'part of change #700' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaWindow.java
echo 'part of change #700' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_test.dsp
${SVN} commit -m 'commit #700' ${WC}/trunk/subversion/clients/win32/WinSVN/frmOptions.frm ${WC}/trunk/ac-helpers/svn-apache.m4 ${WC}/trunk/subversion/clients/cmdline/propget-cmd.c ${WC}/trunk/subversion/libsvn_delta/xml_output.c ${WC}/trunk/subversion/tests/xml/up1b-postfix.xml ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/WorkingCopy.java ${WC}/trunk/subversion/clients/win32/SVNControls/type.dat ${WC}/trunk/subversion/clients/cmdline/diff-cmd.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaWindow.java ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_test.dsp

################### change 701 ###################
echo ""
echo "Doing commit #701:"
echo 'part of change #701' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt
echo 'part of change #701' >> ${WC}/trunk/expat-lite/CHANGES
echo 'part of change #701' >> ${WC}/trunk/subversion/mod_dav_svn/version.c
echo 'part of change #701' >> ${WC}/trunk/subversion/libsvn_delta/vdelta.c
echo 'part of change #701' >> ${WC}/trunk/subversion/libsvn_fs/tree.c
${SVN} commit -m 'commit #701' ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt ${WC}/trunk/expat-lite/CHANGES ${WC}/trunk/subversion/mod_dav_svn/version.c ${WC}/trunk/subversion/libsvn_delta/vdelta.c ${WC}/trunk/subversion/libsvn_fs/tree.c

################### change 702 ###################
echo ""
echo "Doing commit #702:"
echo 'part of change #702' >> ${WC}/trunk/subversion/svnadmin/main.c
echo 'part of change #702' >> ${WC}/trunk/expat-lite/utf8tab.h
echo 'part of change #702' >> ${WC}/trunk/subversion/libsvn_subr/getdate.cw
echo 'part of change #702' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.rgs
echo 'part of change #702' >> ${WC}/trunk/expat-lite/xmltok_impl.h
${SVN} commit -m 'commit #702' ${WC}/trunk/subversion/svnadmin/main.c ${WC}/trunk/expat-lite/utf8tab.h ${WC}/trunk/subversion/libsvn_subr/getdate.cw ${WC}/trunk/subversion/clients/win32/svn_com/SVN.rgs ${WC}/trunk/expat-lite/xmltok_impl.h

################### change 703 ###################
echo ""
echo "Doing commit #703:"
echo 'part of change #703' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.def
echo 'part of change #703' >> ${WC}/trunk/subversion/libsvn_ra_dav/libsvn_ra_dav.dsp
echo 'part of change #703' >> ${WC}/trunk/subversion/clients/win32/SVNControls/type.dat
${SVN} commit -m 'commit #703' ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.def ${WC}/trunk/subversion/libsvn_ra_dav/libsvn_ra_dav.dsp ${WC}/trunk/subversion/clients/win32/SVNControls/type.dat

################### change 704 ###################
echo ""
echo "Doing commit #704:"
echo 'part of change #704' >> ${WC}/trunk/subversion/libsvn_client/auth.c
echo 'part of change #704' >> ${WC}/trunk/notes/svndiff
${SVN} commit -m 'commit #704' ${WC}/trunk/subversion/libsvn_client/auth.c ${WC}/trunk/notes/svndiff

################### change 705 ###################
echo ""
echo "Doing commit #705:"
echo 'part of change #705' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.def
echo 'part of change #705' >> ${WC}/trunk/www/cvs_help.html
echo 'part of change #705' >> ${WC}/trunk/tools/cvs2svn/README
echo 'part of change #705' >> ${WC}/trunk/subversion/clients/win32/SVNControls/ppgMain.pag
echo 'part of change #705' >> ${WC}/trunk/www/project_status.html
echo 'part of change #705' >> ${WC}/trunk/subversion/clients/cmdline/TODO
echo 'part of change #705' >> ${WC}/trunk/subversion/mod_dav_svn/merge.c
${SVN} commit -m 'commit #705' ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.def ${WC}/trunk/www/cvs_help.html ${WC}/trunk/tools/cvs2svn/README ${WC}/trunk/subversion/clients/win32/SVNControls/ppgMain.pag ${WC}/trunk/www/project_status.html ${WC}/trunk/subversion/clients/cmdline/TODO ${WC}/trunk/subversion/mod_dav_svn/merge.c

################### change 706 ###################
echo ""
echo "Doing commit #706:"
echo 'part of change #706' >> ${WC}/trunk/notes/m3-checklist.txt
echo 'part of change #706' >> ${WC}/trunk/www/project_nav.html
echo 'part of change #706' >> ${WC}/trunk/subversion/libsvn_wc/props.c
echo 'part of change #706' >> ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.vbp
echo 'part of change #706' >> ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h
echo 'part of change #706' >> ${WC}/trunk/subversion/mod_dav_svn/util.c
${SVN} commit -m 'commit #706' ${WC}/trunk/notes/m3-checklist.txt ${WC}/trunk/www/project_nav.html ${WC}/trunk/subversion/libsvn_wc/props.c ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.vbp ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h ${WC}/trunk/subversion/mod_dav_svn/util.c

################### change 707 ###################
echo ""
echo "Doing commit #707:"
echo 'part of change #707' >> ${WC}/trunk/subversion/libsvn_repos/delta.c
echo 'part of change #707' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target0.txt
echo 'part of change #707' >> ${WC}/trunk/subversion/libsvn_delta/xml_output.c
echo 'part of change #707' >> ${WC}/trunk/doc/programmer/design/model.texi
echo 'part of change #707' >> ${WC}/trunk/subversion/clients/win32/WinSVN/Startup.bas
echo 'part of change #707' >> ${WC}/trunk/expat-lite/asciitab.h
echo 'part of change #707' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/entry.py
echo 'part of change #707' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cGridCell.cls
echo 'part of change #707' >> ${WC}/trunk/subversion/libsvn_delta/text_delta.c
${SVN} commit -m 'commit #707' ${WC}/trunk/subversion/libsvn_repos/delta.c ${WC}/trunk/subversion/tests/libsvn_vcdiff/target0.txt ${WC}/trunk/subversion/libsvn_delta/xml_output.c ${WC}/trunk/doc/programmer/design/model.texi ${WC}/trunk/subversion/clients/win32/WinSVN/Startup.bas ${WC}/trunk/expat-lite/asciitab.h ${WC}/trunk/subversion/tests/clients/cmdline/svntest/entry.py ${WC}/trunk/subversion/clients/win32/SVNControls/cGridCell.cls ${WC}/trunk/subversion/libsvn_delta/text_delta.c

################### change 708 ###################
echo ""
echo "Doing commit #708:"
echo 'part of change #708' >> ${WC}/trunk/subversion/libsvn_wc/entries.c
echo 'part of change #708' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaWindow.java
echo 'part of change #708' >> ${WC}/trunk/subversion/tests/libsvn_wc/commit_test.dsp
echo 'part of change #708' >> ${WC}/trunk/README
echo 'part of change #708' >> ${WC}/trunk/subversion/tests/libsvn_subr/stringtest.c
echo 'part of change #708' >> ${WC}/trunk/expat-lite/xmlrole.h
echo 'part of change #708' >> ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.h
${SVN} commit -m 'commit #708' ${WC}/trunk/subversion/libsvn_wc/entries.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaWindow.java ${WC}/trunk/subversion/tests/libsvn_wc/commit_test.dsp ${WC}/trunk/README ${WC}/trunk/subversion/tests/libsvn_subr/stringtest.c ${WC}/trunk/expat-lite/xmlrole.h ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.h

################### change 709 ###################
echo ""
echo "Doing commit #709:"
echo 'part of change #709' >> ${WC}/trunk/subversion/libsvn_fs/fs.h
echo 'part of change #709' >> ${WC}/trunk/expat-lite/xmlrole.c
${SVN} commit -m 'commit #709' ${WC}/trunk/subversion/libsvn_fs/fs.h ${WC}/trunk/expat-lite/xmlrole.c

################### change 710 ###################
echo ""
echo "Doing commit #710:"
echo 'part of change #710' >> ${WC}/trunk/subversion/mod_dav_svn/deadprops.c
echo 'part of change #710' >> ${WC}/trunk/subversion/libsvn_subr/sorts.c
echo 'part of change #710' >> ${WC}/trunk/doc/programmer/design/svn-design.txt
echo 'part of change #710' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.h
echo 'part of change #710' >> ${WC}/trunk/subversion/clients/cmdline/main.c
echo 'part of change #710' >> ${WC}/trunk/notes/multi-args.txt
echo 'part of change #710' >> ${WC}/trunk/subversion/libsvn_repos/hooks.txt
echo 'part of change #710' >> ${WC}/trunk/subversion/tests/libsvn_ra_local/ra-local-test.c
echo 'part of change #710' >> ${WC}/trunk/notes/svndiff
echo 'part of change #710' >> ${WC}/trunk/subversion/clients/win32/WinSVN/Startup.bas
${SVN} commit -m 'commit #710' ${WC}/trunk/subversion/mod_dav_svn/deadprops.c ${WC}/trunk/subversion/libsvn_subr/sorts.c ${WC}/trunk/doc/programmer/design/svn-design.txt ${WC}/trunk/subversion/libsvn_fs/reps-table.h ${WC}/trunk/subversion/clients/cmdline/main.c ${WC}/trunk/notes/multi-args.txt ${WC}/trunk/subversion/libsvn_repos/hooks.txt ${WC}/trunk/subversion/tests/libsvn_ra_local/ra-local-test.c ${WC}/trunk/notes/svndiff ${WC}/trunk/subversion/clients/win32/WinSVN/Startup.bas

################### change 711 ###################
echo ""
echo "Doing commit #711:"
echo 'part of change #711' >> ${WC}/trunk/subversion/tests/libsvn_delta/xml_output_test.dsp
echo 'part of change #711' >> ${WC}/trunk/subversion/include/svn_repos.h
echo 'part of change #711' >> ${WC}/trunk/doc/svn-doc.el
echo 'part of change #711' >> ${WC}/trunk/tools/hook-scripts/README
${SVN} commit -m 'commit #711' ${WC}/trunk/subversion/tests/libsvn_delta/xml_output_test.dsp ${WC}/trunk/subversion/include/svn_repos.h ${WC}/trunk/doc/svn-doc.el ${WC}/trunk/tools/hook-scripts/README

################### change 712 ###################
echo ""
echo "Doing commit #712:"
echo 'part of change #712' >> ${WC}/trunk/expat-lite/CHANGES
${SVN} commit -m 'commit #712' ${WC}/trunk/expat-lite/CHANGES

################### change 713 ###################
echo ""
echo "Doing commit #713:"
echo 'part of change #713' >> ${WC}/trunk/subversion.dsw
echo 'part of change #713' >> ${WC}/trunk/subversion/libsvn_wc/lock.c
${SVN} commit -m 'commit #713' ${WC}/trunk/subversion.dsw ${WC}/trunk/subversion/libsvn_wc/lock.c

################### change 714 ###################
echo ""
echo "Doing commit #714:"
echo 'part of change #714' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Client.java
echo 'part of change #714' >> ${WC}/trunk/subversion/tests/libsvn_subr/tests_libsvn_subr_target_test.dsp
echo 'part of change #714' >> ${WC}/trunk/subversion/libsvn_wc/Makefile
echo 'part of change #714' >> ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py
echo 'part of change #714' >> ${WC}/trunk/subversion/tests/libsvn_delta/simple.delta
echo 'part of change #714' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cShellSort.cls
echo 'part of change #714' >> ${WC}/trunk/subversion/tests/clients/cmdline/svnadmin_tests.py
echo 'part of change #714' >> ${WC}/trunk/subversion/libsvn_repos/libsvn_repos.dsp
${SVN} commit -m 'commit #714' ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Client.java ${WC}/trunk/subversion/tests/libsvn_subr/tests_libsvn_subr_target_test.dsp ${WC}/trunk/subversion/libsvn_wc/Makefile ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py ${WC}/trunk/subversion/tests/libsvn_delta/simple.delta ${WC}/trunk/subversion/clients/win32/SVNControls/cShellSort.cls ${WC}/trunk/subversion/tests/clients/cmdline/svnadmin_tests.py ${WC}/trunk/subversion/libsvn_repos/libsvn_repos.dsp

################### change 715 ###################
echo ""
echo "Doing commit #715:"
echo 'part of change #715' >> ${WC}/trunk/subversion/clients/cmdline/props.c
echo 'part of change #715' >> ${WC}/trunk/subversion/libsvn_wc/adm_crawler.c
echo 'part of change #715' >> ${WC}/trunk/NEWS
echo 'part of change #715' >> ${WC}/trunk/subversion/clients/win32/svn_com/misc.cpp
echo 'part of change #715' >> ${WC}/trunk/subversion/include/svn_base64.h
echo 'part of change #715' >> ${WC}/trunk/subversion/libsvn_fs/skel.h
${SVN} commit -m 'commit #715' ${WC}/trunk/subversion/clients/cmdline/props.c ${WC}/trunk/subversion/libsvn_wc/adm_crawler.c ${WC}/trunk/NEWS ${WC}/trunk/subversion/clients/win32/svn_com/misc.cpp ${WC}/trunk/subversion/include/svn_base64.h ${WC}/trunk/subversion/libsvn_fs/skel.h

################### change 716 ###################
echo ""
echo "Doing commit #716:"
echo 'part of change #716' >> ${WC}/trunk/subversion/tests/libsvn_delta/random-test.c
echo 'part of change #716' >> ${WC}/trunk/subversion/clients/cmdline/TODO
echo 'part of change #716' >> ${WC}/trunk/subversion/libsvn_ra/ra_loader.c
echo 'part of change #716' >> ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.vbp
echo 'part of change #716' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookGroup.frm
${SVN} commit -m 'commit #716' ${WC}/trunk/subversion/tests/libsvn_delta/random-test.c ${WC}/trunk/subversion/clients/cmdline/TODO ${WC}/trunk/subversion/libsvn_ra/ra_loader.c ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.vbp ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookGroup.frm

################### change 717 ###################
echo ""
echo "Doing commit #717:"
echo 'part of change #717' >> ${WC}/trunk/www/index.html
echo 'part of change #717' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/entry.py
echo 'part of change #717' >> ${WC}/trunk/HACKING
echo 'part of change #717' >> ${WC}/trunk/doc/programmer/design/architecture.texi
echo 'part of change #717' >> ${WC}/trunk/configure.in
echo 'part of change #717' >> ${WC}/trunk/subversion/libsvn_subr/svn_error.c
echo 'part of change #717' >> ${WC}/trunk/subversion/libsvn_client/delete.c
echo 'part of change #717' >> ${WC}/trunk/subversion/libsvn_fs/node-rev.c
${SVN} commit -m 'commit #717' ${WC}/trunk/www/index.html ${WC}/trunk/subversion/tests/clients/cmdline/svntest/entry.py ${WC}/trunk/HACKING ${WC}/trunk/doc/programmer/design/architecture.texi ${WC}/trunk/configure.in ${WC}/trunk/subversion/libsvn_subr/svn_error.c ${WC}/trunk/subversion/libsvn_client/delete.c ${WC}/trunk/subversion/libsvn_fs/node-rev.c

################### change 718 ###################
echo ""
echo "Doing commit #718:"
echo 'part of change #718' >> ${WC}/trunk/subversion/clients/win32/WinSVN/lvh.cls
echo 'part of change #718' >> ${WC}/trunk/subversion/libsvn_wc/adm_files.c
echo 'part of change #718' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmTestMatrix.frm
echo 'part of change #718' >> ${WC}/trunk/subversion/mod_dav_svn/mod_dav_svn.c
echo 'part of change #718' >> ${WC}/trunk/subversion/libsvn_subr/libsvn_subr.dsp
echo 'part of change #718' >> ${WC}/trunk/expat-lite/hashtable.h
echo 'part of change #718' >> ${WC}/trunk/subversion/clients/cmdline/checkout-cmd.c
echo 'part of change #718' >> ${WC}/trunk/subversion/clients/cmdline/commit-cmd.c
echo 'part of change #718' >> ${WC}/trunk/notes/guis/README
${SVN} commit -m 'commit #718' ${WC}/trunk/subversion/clients/win32/WinSVN/lvh.cls ${WC}/trunk/subversion/libsvn_wc/adm_files.c ${WC}/trunk/subversion/clients/win32/SVNControls/frmTestMatrix.frm ${WC}/trunk/subversion/mod_dav_svn/mod_dav_svn.c ${WC}/trunk/subversion/libsvn_subr/libsvn_subr.dsp ${WC}/trunk/expat-lite/hashtable.h ${WC}/trunk/subversion/clients/cmdline/checkout-cmd.c ${WC}/trunk/subversion/clients/cmdline/commit-cmd.c ${WC}/trunk/notes/guis/README

################### change 719 ###################
echo ""
echo "Doing commit #719:"
echo 'part of change #719' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.idl
echo 'part of change #719' >> ${WC}/trunk/expat-lite/CHANGES
echo 'part of change #719' >> ${WC}/trunk/subversion/tests/libsvn_fs/key-test.c
${SVN} commit -m 'commit #719' ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.idl ${WC}/trunk/expat-lite/CHANGES ${WC}/trunk/subversion/tests/libsvn_fs/key-test.c

################### change 720 ###################
echo ""
echo "Doing commit #720:"
echo 'part of change #720' >> ${WC}/trunk/subversion/clients/cmdline/util.c
echo 'part of change #720' >> ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp
echo 'part of change #720' >> ${WC}/trunk/expat-lite/iasciitab.h
echo 'part of change #720' >> ${WC}/trunk/subversion/clients/cmdline/help-cmd.c
echo 'part of change #720' >> ${WC}/trunk/expat-lite/CHANGES
echo 'part of change #720' >> ${WC}/trunk/subversion/libsvn_delta/compose_editors.c
echo 'part of change #720' >> ${WC}/trunk/subversion/libsvn_ra_dav/options.c
echo 'part of change #720' >> ${WC}/trunk/subversion/libsvn_client/cleanup.c
${SVN} commit -m 'commit #720' ${WC}/trunk/subversion/clients/cmdline/util.c ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp ${WC}/trunk/expat-lite/iasciitab.h ${WC}/trunk/subversion/clients/cmdline/help-cmd.c ${WC}/trunk/expat-lite/CHANGES ${WC}/trunk/subversion/libsvn_delta/compose_editors.c ${WC}/trunk/subversion/libsvn_ra_dav/options.c ${WC}/trunk/subversion/libsvn_client/cleanup.c

################### change 721 ###################
echo ""
echo "Doing commit #721:"
echo 'part of change #721' >> ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.h
echo 'part of change #721' >> ${WC}/trunk/expat-lite/xmlparse.c
${SVN} commit -m 'commit #721' ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.h ${WC}/trunk/expat-lite/xmlparse.c

################### change 722 ###################
echo ""
echo "Doing commit #722:"
echo 'part of change #722' >> ${WC}/trunk/subversion/libsvn_repos/commit_editor.c
echo 'part of change #722' >> ${WC}/trunk/subversion/libsvn_ra_local/ra_local.h
echo 'part of change #722' >> ${WC}/trunk/doc/user/manual/adds.texi
echo 'part of change #722' >> ${WC}/trunk/subversion/tests/libsvn_test_main.dsp
echo 'part of change #722' >> ${WC}/trunk/www/project_status.html
echo 'part of change #722' >> ${WC}/trunk/subversion/tests/libsvn_repos/repos-test.c
echo 'part of change #722' >> ${WC}/trunk/subversion/libsvn_fs/strings-table.c
${SVN} commit -m 'commit #722' ${WC}/trunk/subversion/libsvn_repos/commit_editor.c ${WC}/trunk/subversion/libsvn_ra_local/ra_local.h ${WC}/trunk/doc/user/manual/adds.texi ${WC}/trunk/subversion/tests/libsvn_test_main.dsp ${WC}/trunk/www/project_status.html ${WC}/trunk/subversion/tests/libsvn_repos/repos-test.c ${WC}/trunk/subversion/libsvn_fs/strings-table.c

################### change 723 ###################
echo ""
echo "Doing commit #723:"
echo 'part of change #723' >> ${WC}/trunk/doc/programmer/design/protocol.texi
echo 'part of change #723' >> ${WC}/trunk/STACK
echo 'part of change #723' >> ${WC}/trunk/tools/cvs2svn/README
echo 'part of change #723' >> ${WC}/trunk/subversion/tests/libsvn_wc/checkout_test.dsp
echo 'part of change #723' >> ${WC}/trunk/subversion/clients/cmdline/add-cmd.c
echo 'part of change #723' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.c
echo 'part of change #723' >> ${WC}/trunk/www/index.html
echo 'part of change #723' >> ${WC}/trunk/www/webdav-usage.html
echo 'part of change #723' >> ${WC}/trunk/subversion/bindings/svn_io.i
${SVN} commit -m 'commit #723' ${WC}/trunk/doc/programmer/design/protocol.texi ${WC}/trunk/STACK ${WC}/trunk/tools/cvs2svn/README ${WC}/trunk/subversion/tests/libsvn_wc/checkout_test.dsp ${WC}/trunk/subversion/clients/cmdline/add-cmd.c ${WC}/trunk/subversion/libsvn_fs/reps-table.c ${WC}/trunk/www/index.html ${WC}/trunk/www/webdav-usage.html ${WC}/trunk/subversion/bindings/svn_io.i

################### change 724 ###################
echo ""
echo "Doing commit #724:"
echo 'part of change #724' >> ${WC}/trunk/subversion/clients/cmdline/trace-update.c
echo 'part of change #724' >> ${WC}/trunk/subversion/libsvn_repos/reporter.c
echo 'part of change #724' >> ${WC}/trunk/subversion/clients/win32/SVNControls/mGDI.bas
${SVN} commit -m 'commit #724' ${WC}/trunk/subversion/clients/cmdline/trace-update.c ${WC}/trunk/subversion/libsvn_repos/reporter.c ${WC}/trunk/subversion/clients/win32/SVNControls/mGDI.bas

################### change 725 ###################
echo ""
echo "Doing commit #725:"
echo 'part of change #725' >> ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta
echo 'part of change #725' >> ${WC}/trunk/subversion/clients/cmdline/propget-cmd.c
${SVN} commit -m 'commit #725' ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta ${WC}/trunk/subversion/clients/cmdline/propget-cmd.c

################### change 726 ###################
echo ""
echo "Doing commit #726:"
echo 'part of change #726' >> ${WC}/trunk/subversion/clients/cmdline/trace-update.c
echo 'part of change #726' >> ${WC}/trunk/subversion/tests/xml/up-props.xml
echo 'part of change #726' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cFlatHeader.cls
echo 'part of change #726' >> ${WC}/trunk/subversion/tests/xml/README
echo 'part of change #726' >> ${WC}/trunk/ac-helpers/libtool.m4
echo 'part of change #726' >> ${WC}/trunk/subversion/libsvn_ra_dav/props.c
echo 'part of change #726' >> ${WC}/trunk/subversion/libsvn_fs/node-rev.c
echo 'part of change #726' >> ${WC}/trunk/subversion/tests/xml/up3.xml
echo 'part of change #726' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/SubversionException.java
${SVN} commit -m 'commit #726' ${WC}/trunk/subversion/clients/cmdline/trace-update.c ${WC}/trunk/subversion/tests/xml/up-props.xml ${WC}/trunk/subversion/clients/win32/SVNControls/cFlatHeader.cls ${WC}/trunk/subversion/tests/xml/README ${WC}/trunk/ac-helpers/libtool.m4 ${WC}/trunk/subversion/libsvn_ra_dav/props.c ${WC}/trunk/subversion/libsvn_fs/node-rev.c ${WC}/trunk/subversion/tests/xml/up3.xml ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/SubversionException.java

################### change 727 ###################
echo ""
echo "Doing commit #727:"
echo 'part of change #727' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.c
echo 'part of change #727' >> ${WC}/trunk/subversion/clients/win32/svn_com/misc.h
echo 'part of change #727' >> ${WC}/trunk/subversion/libsvn_subr/config.c
${SVN} commit -m 'commit #727' ${WC}/trunk/subversion/libsvn_fs/reps-table.c ${WC}/trunk/subversion/clients/win32/svn_com/misc.h ${WC}/trunk/subversion/libsvn_subr/config.c

################### change 728 ###################
echo ""
echo "Doing commit #728:"
echo 'part of change #728' >> ${WC}/trunk/subversion/tests/xml/up3.xml
echo 'part of change #728' >> ${WC}/trunk/subversion/svnadmin/svnadmin.dsp
echo 'part of change #728' >> ${WC}/trunk/subversion/include/svn_string.h
${SVN} commit -m 'commit #728' ${WC}/trunk/subversion/tests/xml/up3.xml ${WC}/trunk/subversion/svnadmin/svnadmin.dsp ${WC}/trunk/subversion/include/svn_string.h

################### change 729 ###################
echo ""
echo "Doing commit #729:"
echo 'part of change #729' >> ${WC}/trunk/notes/difftools/pics/xxdiff-README
echo 'part of change #729' >> ${WC}/trunk/notes/svn-config-files
${SVN} commit -m 'commit #729' ${WC}/trunk/notes/difftools/pics/xxdiff-README ${WC}/trunk/notes/svn-config-files

################### change 730 ###################
echo ""
echo "Doing commit #730:"
echo 'part of change #730' >> ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py
echo 'part of change #730' >> ${WC}/trunk/subversion/bindings/svn_client.i
echo 'part of change #730' >> ${WC}/trunk/subversion/tests/libsvn_fs/key-test.c
echo 'part of change #730' >> ${WC}/trunk/subversion/clients/win32/WinSVN/ExplorerViewHelpers.cls
echo 'part of change #730' >> ${WC}/trunk/subversion/include/svn_config.h
echo 'part of change #730' >> ${WC}/trunk/subversion/tests/README
echo 'part of change #730' >> ${WC}/trunk/notes/fs-improvements.txt
${SVN} commit -m 'commit #730' ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py ${WC}/trunk/subversion/bindings/svn_client.i ${WC}/trunk/subversion/tests/libsvn_fs/key-test.c ${WC}/trunk/subversion/clients/win32/WinSVN/ExplorerViewHelpers.cls ${WC}/trunk/subversion/include/svn_config.h ${WC}/trunk/subversion/tests/README ${WC}/trunk/notes/fs-improvements.txt

################### change 731 ###################
echo ""
echo "Doing commit #731:"
echo 'part of change #731' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmAbout.frm
echo 'part of change #731' >> ${WC}/trunk/www/project_header.html
echo 'part of change #731' >> ${WC}/trunk/PORTING
echo 'part of change #731' >> ${WC}/trunk/subversion/libsvn_ra/libsvn_ra.dsp
${SVN} commit -m 'commit #731' ${WC}/trunk/subversion/clients/win32/WinSVN/frmAbout.frm ${WC}/trunk/www/project_header.html ${WC}/trunk/PORTING ${WC}/trunk/subversion/libsvn_ra/libsvn_ra.dsp

################### change 732 ###################
echo ""
echo "Doing commit #732:"
echo 'part of change #732' >> ${WC}/trunk/notes/delta.dtd
echo 'part of change #732' >> ${WC}/trunk/NEWS
echo 'part of change #732' >> ${WC}/trunk/doc/user/manual/adds.texi
${SVN} commit -m 'commit #732' ${WC}/trunk/notes/delta.dtd ${WC}/trunk/NEWS ${WC}/trunk/doc/user/manual/adds.texi

################### change 733 ###################
echo ""
echo "Doing commit #733:"
echo 'part of change #733' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cFlatHeader.cls
echo 'part of change #733' >> ${WC}/trunk/subversion/bindings/svn_delta.i
echo 'part of change #733' >> ${WC}/trunk/subversion/libsvn_subr/svn_base64.c
echo 'part of change #733' >> ${WC}/trunk/subversion/mod_dav_svn/activity.c
echo 'part of change #733' >> ${WC}/trunk/notes/the_update_problem.txt
echo 'part of change #733' >> ${WC}/trunk/subversion/libsvn_ra_dav/session.c
echo 'part of change #733' >> ${WC}/trunk/subversion/tests/libsvn_subr/target-test.c
echo 'part of change #733' >> ${WC}/trunk/www/project_tasks.html
${SVN} commit -m 'commit #733' ${WC}/trunk/subversion/clients/win32/SVNControls/cFlatHeader.cls ${WC}/trunk/subversion/bindings/svn_delta.i ${WC}/trunk/subversion/libsvn_subr/svn_base64.c ${WC}/trunk/subversion/mod_dav_svn/activity.c ${WC}/trunk/notes/the_update_problem.txt ${WC}/trunk/subversion/libsvn_ra_dav/session.c ${WC}/trunk/subversion/tests/libsvn_subr/target-test.c ${WC}/trunk/www/project_tasks.html

################### change 734 ###################
echo ""
echo "Doing commit #734:"
echo 'part of change #734' >> ${WC}/trunk/subversion/clients/win32/svn_com/svn_comCP.h
echo 'part of change #734' >> ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.vbp
echo 'part of change #734' >> ${WC}/trunk/subversion/clients/cmdline/TODO
${SVN} commit -m 'commit #734' ${WC}/trunk/subversion/clients/win32/svn_com/svn_comCP.h ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.vbp ${WC}/trunk/subversion/clients/cmdline/TODO

################### change 735 ###################
echo ""
echo "Doing commit #735:"
echo 'part of change #735' >> ${WC}/trunk/subversion/clients/cmdline/trace-update.c
echo 'part of change #735' >> ${WC}/trunk/subversion/bindings/apr.i
echo 'part of change #735' >> ${WC}/trunk/subversion/clients/cmdline/README
echo 'part of change #735' >> ${WC}/trunk/www/project_license.html
echo 'part of change #735' >> ${WC}/trunk/subversion/clients/cmdline/cleanup-cmd.c
echo 'part of change #735' >> ${WC}/trunk/subversion/include/svn_ra.h
echo 'part of change #735' >> ${WC}/trunk/www/index.html
echo 'part of change #735' >> ${WC}/trunk/doc/README
${SVN} commit -m 'commit #735' ${WC}/trunk/subversion/clients/cmdline/trace-update.c ${WC}/trunk/subversion/bindings/apr.i ${WC}/trunk/subversion/clients/cmdline/README ${WC}/trunk/www/project_license.html ${WC}/trunk/subversion/clients/cmdline/cleanup-cmd.c ${WC}/trunk/subversion/include/svn_ra.h ${WC}/trunk/www/index.html ${WC}/trunk/doc/README

################### change 736 ###################
echo ""
echo "Doing commit #736:"
echo 'part of change #736' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmSplash.frm
echo 'part of change #736' >> ${WC}/trunk/subversion/clients/win32/SVNControls/ppgMain.pag
echo 'part of change #736' >> ${WC}/trunk/www/project_source.html
echo 'part of change #736' >> ${WC}/trunk/subversion/clients/win32/SVNControls/ppgMain.pag
${SVN} commit -m 'commit #736' ${WC}/trunk/subversion/clients/win32/WinSVN/frmSplash.frm ${WC}/trunk/subversion/clients/win32/SVNControls/ppgMain.pag ${WC}/trunk/www/project_source.html ${WC}/trunk/subversion/clients/win32/SVNControls/ppgMain.pag

################### change 737 ###################
echo ""
echo "Doing commit #737:"
echo 'part of change #737' >> ${WC}/trunk/subversion/libsvn_fs/reps-strings.c
echo 'part of change #737' >> ${WC}/trunk/notes/dav_setup.txt
echo 'part of change #737' >> ${WC}/trunk/subversion/libsvn_ra_dav/commit.c
${SVN} commit -m 'commit #737' ${WC}/trunk/subversion/libsvn_fs/reps-strings.c ${WC}/trunk/notes/dav_setup.txt ${WC}/trunk/subversion/libsvn_ra_dav/commit.c

################### change 738 ###################
echo ""
echo "Doing commit #738:"
echo 'part of change #738' >> ${WC}/trunk/expat-lite/xmltok_impl.c
echo 'part of change #738' >> ${WC}/trunk/doc/user/manual/removals.texi
echo 'part of change #738' >> ${WC}/trunk/subversion/include/svn_client.h
echo 'part of change #738' >> ${WC}/trunk/README
echo 'part of change #738' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target2.txt
echo 'part of change #738' >> ${WC}/trunk/expat-lite/CHANGES.svn
echo 'part of change #738' >> ${WC}/trunk/subversion/libsvn_fs/fs.c
echo 'part of change #738' >> ${WC}/trunk/gen-make.py
echo 'part of change #738' >> ${WC}/trunk/subversion/include/svn_time.h
${SVN} commit -m 'commit #738' ${WC}/trunk/expat-lite/xmltok_impl.c ${WC}/trunk/doc/user/manual/removals.texi ${WC}/trunk/subversion/include/svn_client.h ${WC}/trunk/README ${WC}/trunk/subversion/tests/libsvn_vcdiff/target2.txt ${WC}/trunk/expat-lite/CHANGES.svn ${WC}/trunk/subversion/libsvn_fs/fs.c ${WC}/trunk/gen-make.py ${WC}/trunk/subversion/include/svn_time.h

################### change 739 ###################
echo ""
echo "Doing commit #739:"
echo 'part of change #739' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt
echo 'part of change #739' >> ${WC}/trunk/subversion/clients/win32/SVNControls/link.dat
${SVN} commit -m 'commit #739' ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt ${WC}/trunk/subversion/clients/win32/SVNControls/link.dat

################### change 740 ###################
echo ""
echo "Doing commit #740:"
echo 'part of change #740' >> ${WC}/trunk/subversion/include/svn_delta.h
echo 'part of change #740' >> ${WC}/trunk/subversion/libsvn_fs/id.c
echo 'part of change #740' >> ${WC}/trunk/subversion/tests/libsvn_subr/hashdump_test.dsp
echo 'part of change #740' >> ${WC}/trunk/subversion/libsvn_wc/adm_files.c
echo 'part of change #740' >> ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse-test.c
echo 'part of change #740' >> ${WC}/trunk/subversion/include/svn_hash.h
echo 'part of change #740' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.rgs
echo 'part of change #740' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Reporter.java
${SVN} commit -m 'commit #740' ${WC}/trunk/subversion/include/svn_delta.h ${WC}/trunk/subversion/libsvn_fs/id.c ${WC}/trunk/subversion/tests/libsvn_subr/hashdump_test.dsp ${WC}/trunk/subversion/libsvn_wc/adm_files.c ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse-test.c ${WC}/trunk/subversion/include/svn_hash.h ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.rgs ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Reporter.java

################### change 741 ###################
echo ""
echo "Doing commit #741:"
echo 'part of change #741' >> ${WC}/trunk/subversion/svnlook/main.c
echo 'part of change #741' >> ${WC}/trunk/doc/user/manual/svn-manual.html
echo 'part of change #741' >> ${WC}/trunk/subversion/clients/cmdline/prompt.c
echo 'part of change #741' >> ${WC}/trunk/subversion/libsvn_subr/target.c
${SVN} commit -m 'commit #741' ${WC}/trunk/subversion/svnlook/main.c ${WC}/trunk/doc/user/manual/svn-manual.html ${WC}/trunk/subversion/clients/cmdline/prompt.c ${WC}/trunk/subversion/libsvn_subr/target.c

################### change 742 ###################
echo ""
echo "Doing commit #742:"
echo 'part of change #742' >> ${WC}/trunk/subversion/libsvn_repos/lock.c
${SVN} commit -m 'commit #742' ${WC}/trunk/subversion/libsvn_repos/lock.c

################### change 743 ###################
echo ""
echo "Doing commit #743:"
echo 'part of change #743' >> ${WC}/trunk/subversion/bindings/svn_string.i
echo 'part of change #743' >> ${WC}/trunk/tools/cvs2svn/design-notes.txt
echo 'part of change #743' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.c
echo 'part of change #743' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmLogin.frm
echo 'part of change #743' >> ${WC}/trunk/subversion/include/svn_fs.h
${SVN} commit -m 'commit #743' ${WC}/trunk/subversion/bindings/svn_string.i ${WC}/trunk/tools/cvs2svn/design-notes.txt ${WC}/trunk/subversion/libsvn_fs/reps-table.c ${WC}/trunk/subversion/clients/win32/WinSVN/frmLogin.frm ${WC}/trunk/subversion/include/svn_fs.h

################### change 744 ###################
echo ""
echo "Doing commit #744:"
echo 'part of change #744' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.rgs
echo 'part of change #744' >> ${WC}/trunk/subversion/include/svn_string.h
echo 'part of change #744' >> ${WC}/trunk/subversion/mod_dav_svn/mod_dav_svn.c
echo 'part of change #744' >> ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.c
echo 'part of change #744' >> ${WC}/trunk/subversion/clients/win32/svn_com/resource.h
${SVN} commit -m 'commit #744' ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.rgs ${WC}/trunk/subversion/include/svn_string.h ${WC}/trunk/subversion/mod_dav_svn/mod_dav_svn.c ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.c ${WC}/trunk/subversion/clients/win32/svn_com/resource.h

################### change 745 ###################
echo ""
echo "Doing commit #745:"
echo 'part of change #745' >> ${WC}/trunk/subversion/include/svn_base64.h
${SVN} commit -m 'commit #745' ${WC}/trunk/subversion/include/svn_base64.h

################### change 746 ###################
echo ""
echo "Doing commit #746:"
echo 'part of change #746' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Entry.java
${SVN} commit -m 'commit #746' ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Entry.java

################### change 747 ###################
echo ""
echo "Doing commit #747:"
echo 'part of change #747' >> ${WC}/trunk/subversion/libsvn_client/commit.c
echo 'part of change #747' >> ${WC}/trunk/subversion/clients/cmdline/revert-cmd.c
${SVN} commit -m 'commit #747' ${WC}/trunk/subversion/libsvn_client/commit.c ${WC}/trunk/subversion/clients/cmdline/revert-cmd.c

################### change 748 ###################
echo ""
echo "Doing commit #748:"
echo 'part of change #748' >> ${WC}/trunk/subversion/libsvn_fs/tree.c
echo 'part of change #748' >> ${WC}/trunk/subversion/tests/libsvn_wc/commit_test.dsp
echo 'part of change #748' >> ${WC}/trunk/subversion/mod_dav_svn/repos.c
echo 'part of change #748' >> ${WC}/trunk/subversion/libsvn_subr/config.c
echo 'part of change #748' >> ${WC}/trunk/subversion/tests/libsvn_subr/string_test.dsp
echo 'part of change #748' >> ${WC}/trunk/subversion/clients/cmdline/checkout-cmd.c
echo 'part of change #748' >> ${WC}/trunk/www/project_bugs.html
${SVN} commit -m 'commit #748' ${WC}/trunk/subversion/libsvn_fs/tree.c ${WC}/trunk/subversion/tests/libsvn_wc/commit_test.dsp ${WC}/trunk/subversion/mod_dav_svn/repos.c ${WC}/trunk/subversion/libsvn_subr/config.c ${WC}/trunk/subversion/tests/libsvn_subr/string_test.dsp ${WC}/trunk/subversion/clients/cmdline/checkout-cmd.c ${WC}/trunk/www/project_bugs.html

################### change 749 ###################
echo ""
echo "Doing commit #749:"
echo 'part of change #749' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Status.java
echo 'part of change #749' >> ${WC}/trunk/notes/auth_proposal.txt
echo 'part of change #749' >> ${WC}/trunk/subversion/libsvn_fs/this-branch.txt
echo 'part of change #749' >> ${WC}/trunk/subversion/clients/win32/svn_com/resource.h
echo 'part of change #749' >> ${WC}/trunk/subversion/libsvn_fs/strings-table.h
echo 'part of change #749' >> ${WC}/trunk/subversion/libsvn_wc/get_editor.c
echo 'part of change #749' >> ${WC}/trunk/notes/dav_setup.txt
echo 'part of change #749' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.h
echo 'part of change #749' >> ${WC}/trunk/subversion/tests/libsvn_delta/postfix.delta
echo 'part of change #749' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookDemo.frm
${SVN} commit -m 'commit #749' ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Status.java ${WC}/trunk/notes/auth_proposal.txt ${WC}/trunk/subversion/libsvn_fs/this-branch.txt ${WC}/trunk/subversion/clients/win32/svn_com/resource.h ${WC}/trunk/subversion/libsvn_fs/strings-table.h ${WC}/trunk/subversion/libsvn_wc/get_editor.c ${WC}/trunk/notes/dav_setup.txt ${WC}/trunk/subversion/clients/win32/svn_com/SVN.h ${WC}/trunk/subversion/tests/libsvn_delta/postfix.delta ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookDemo.frm

################### change 750 ###################
echo ""
echo "Doing commit #750:"
echo 'part of change #750' >> ${WC}/trunk/doc/user/manual/adds.texi
echo 'part of change #750' >> ${WC}/trunk/www/project_tasks.html
echo 'part of change #750' >> ${WC}/trunk/subversion/clients/win32/SVNControls/mGDI.bas
echo 'part of change #750' >> ${WC}/trunk/subversion/libsvn_repos/README
echo 'part of change #750' >> ${WC}/trunk/subversion/mod_dav_svn/update.c
echo 'part of change #750' >> ${WC}/trunk/Makefile.in
echo 'part of change #750' >> ${WC}/trunk/subversion/clients/win32/svn_com/svn_com.dsp
${SVN} commit -m 'commit #750' ${WC}/trunk/doc/user/manual/adds.texi ${WC}/trunk/www/project_tasks.html ${WC}/trunk/subversion/clients/win32/SVNControls/mGDI.bas ${WC}/trunk/subversion/libsvn_repos/README ${WC}/trunk/subversion/mod_dav_svn/update.c ${WC}/trunk/Makefile.in ${WC}/trunk/subversion/clients/win32/svn_com/svn_com.dsp

################### change 751 ###################
echo ""
echo "Doing commit #751:"
echo 'part of change #751' >> ${WC}/trunk/subversion/include/svn_fs.h
echo 'part of change #751' >> ${WC}/trunk/expat-lite/CHANGES.svn
echo 'part of change #751' >> ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py
echo 'part of change #751' >> ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.c
echo 'part of change #751' >> ${WC}/trunk/doc/programmer/design/future.texi
echo 'part of change #751' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc
echo 'part of change #751' >> ${WC}/trunk/subversion/libsvn_repos/delta.c
${SVN} commit -m 'commit #751' ${WC}/trunk/subversion/include/svn_fs.h ${WC}/trunk/expat-lite/CHANGES.svn ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.c ${WC}/trunk/doc/programmer/design/future.texi ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc ${WC}/trunk/subversion/libsvn_repos/delta.c

################### change 752 ###################
echo ""
echo "Doing commit #752:"
echo 'part of change #752' >> ${WC}/trunk/expat-lite/utf8tab.h
echo 'part of change #752' >> ${WC}/trunk/STACK
echo 'part of change #752' >> ${WC}/trunk/subversion/tests/libsvn_delta/xml_output_test.dsp
echo 'part of change #752' >> ${WC}/trunk/notes/guis/planning.txt
echo 'part of change #752' >> ${WC}/trunk/subversion/include/svn_quoprint.h
echo 'part of change #752' >> ${WC}/trunk/subversion/libsvn_repos/hooks.c
${SVN} commit -m 'commit #752' ${WC}/trunk/expat-lite/utf8tab.h ${WC}/trunk/STACK ${WC}/trunk/subversion/tests/libsvn_delta/xml_output_test.dsp ${WC}/trunk/notes/guis/planning.txt ${WC}/trunk/subversion/include/svn_quoprint.h ${WC}/trunk/subversion/libsvn_repos/hooks.c

################### change 753 ###################
echo ""
echo "Doing commit #753:"
echo 'part of change #753' >> ${WC}/trunk/svn_config.dsp
${SVN} commit -m 'commit #753' ${WC}/trunk/svn_config.dsp

################### change 754 ###################
echo ""
echo "Doing commit #754:"
echo 'part of change #754' >> ${WC}/trunk/ac-helpers/ltconfig
${SVN} commit -m 'commit #754' ${WC}/trunk/ac-helpers/ltconfig

################### change 755 ###################
echo ""
echo "Doing commit #755:"
echo 'part of change #755' >> ${WC}/trunk/subversion/tests/libsvn_repos/repos-test.c
echo 'part of change #755' >> ${WC}/trunk/subversion/include/svn_repos.h
echo 'part of change #755' >> ${WC}/trunk/doc/user/manual/removals.texi
echo 'part of change #755' >> ${WC}/trunk/subversion/bindings/svn_wc.i
echo 'part of change #755' >> ${WC}/trunk/notes/txdelta_sanity
echo 'part of change #755' >> ${WC}/trunk/subversion/clients/cmdline/commit-cmd.c
${SVN} commit -m 'commit #755' ${WC}/trunk/subversion/tests/libsvn_repos/repos-test.c ${WC}/trunk/subversion/include/svn_repos.h ${WC}/trunk/doc/user/manual/removals.texi ${WC}/trunk/subversion/bindings/svn_wc.i ${WC}/trunk/notes/txdelta_sanity ${WC}/trunk/subversion/clients/cmdline/commit-cmd.c

################### change 756 ###################
echo ""
echo "Doing commit #756:"
echo 'part of change #756' >> ${WC}/trunk/subversion/clients/cmdline/delete-cmd.c
echo 'part of change #756' >> ${WC}/trunk/subversion/libsvn_ra_local/split_url.c
echo 'part of change #756' >> ${WC}/trunk/subversion/libsvn_wc/get_editor.c
echo 'part of change #756' >> ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse-test.c
echo 'part of change #756' >> ${WC}/trunk/subversion/libsvn_fs/err.c
echo 'part of change #756' >> ${WC}/trunk/subversion/mod_dav_svn/update.c
echo 'part of change #756' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target5.txt
${SVN} commit -m 'commit #756' ${WC}/trunk/subversion/clients/cmdline/delete-cmd.c ${WC}/trunk/subversion/libsvn_ra_local/split_url.c ${WC}/trunk/subversion/libsvn_wc/get_editor.c ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse-test.c ${WC}/trunk/subversion/libsvn_fs/err.c ${WC}/trunk/subversion/mod_dav_svn/update.c ${WC}/trunk/subversion/tests/libsvn_vcdiff/target5.txt

################### change 757 ###################
echo ""
echo "Doing commit #757:"
echo 'part of change #757' >> ${WC}/trunk/AUTHORS
echo 'part of change #757' >> ${WC}/trunk/subversion/svnlook/svnlook.dsp
echo 'part of change #757' >> ${WC}/trunk/subversion/tests/libsvn_delta/xml_output_test.dsp
echo 'part of change #757' >> ${WC}/trunk/subversion/clients/win32/svn_com/svn_com.dsp
${SVN} commit -m 'commit #757' ${WC}/trunk/AUTHORS ${WC}/trunk/subversion/svnlook/svnlook.dsp ${WC}/trunk/subversion/tests/libsvn_delta/xml_output_test.dsp ${WC}/trunk/subversion/clients/win32/svn_com/svn_com.dsp

################### change 758 ###################
echo ""
echo "Doing commit #758:"
echo 'part of change #758' >> ${WC}/trunk/subversion/libsvn_subr/time.c
echo 'part of change #758' >> ${WC}/trunk/subversion/tests/libsvn_fs/skel_test.dsp
${SVN} commit -m 'commit #758' ${WC}/trunk/subversion/libsvn_subr/time.c ${WC}/trunk/subversion/tests/libsvn_fs/skel_test.dsp

################### change 759 ###################
echo ""
echo "Doing commit #759:"
echo 'part of change #759' >> ${WC}/trunk/subversion/libsvn_wc/Makefile
echo 'part of change #759' >> ${WC}/trunk/doc/user/manual/license.texi
echo 'part of change #759' >> ${WC}/trunk/subversion/libsvn_client/status.c
echo 'part of change #759' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/actions.py
echo 'part of change #759' >> ${WC}/trunk/subversion/libsvn_wc/adm_crawler.c
${SVN} commit -m 'commit #759' ${WC}/trunk/subversion/libsvn_wc/Makefile ${WC}/trunk/doc/user/manual/license.texi ${WC}/trunk/subversion/libsvn_client/status.c ${WC}/trunk/subversion/tests/clients/cmdline/svntest/actions.py ${WC}/trunk/subversion/libsvn_wc/adm_crawler.c

################### change 760 ###################
echo ""
echo "Doing commit #760:"
echo 'part of change #760' >> ${WC}/trunk/subversion/libsvn_fs/libsvn_fs.dsp
echo 'part of change #760' >> ${WC}/trunk/subversion/libsvn_wc/wc.h
echo 'part of change #760' >> ${WC}/trunk/subversion/libsvn_fs/skel.c
echo 'part of change #760' >> ${WC}/trunk/subversion/clients/cmdline/trace-update.c
echo 'part of change #760' >> ${WC}/trunk/NEWS
echo 'part of change #760' >> ${WC}/trunk/HACKING
echo 'part of change #760' >> ${WC}/trunk/www/index.html
echo 'part of change #760' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.rgs
echo 'part of change #760' >> ${WC}/trunk/subversion/LICENSE
${SVN} commit -m 'commit #760' ${WC}/trunk/subversion/libsvn_fs/libsvn_fs.dsp ${WC}/trunk/subversion/libsvn_wc/wc.h ${WC}/trunk/subversion/libsvn_fs/skel.c ${WC}/trunk/subversion/clients/cmdline/trace-update.c ${WC}/trunk/NEWS ${WC}/trunk/HACKING ${WC}/trunk/www/index.html ${WC}/trunk/subversion/clients/win32/svn_com/SVN.rgs ${WC}/trunk/subversion/LICENSE

################### change 761 ###################
echo ""
echo "Doing commit #761:"
echo 'part of change #761' >> ${WC}/trunk/subversion/libsvn_client/add.c
echo 'part of change #761' >> ${WC}/trunk/subversion/libsvn_fs/TODO
echo 'part of change #761' >> ${WC}/trunk/subversion/libsvn_wc/entries.c
echo 'part of change #761' >> ${WC}/trunk/subversion/clients/cmdline/README
${SVN} commit -m 'commit #761' ${WC}/trunk/subversion/libsvn_client/add.c ${WC}/trunk/subversion/libsvn_fs/TODO ${WC}/trunk/subversion/libsvn_wc/entries.c ${WC}/trunk/subversion/clients/cmdline/README

################### change 762 ###################
echo ""
echo "Doing commit #762:"
echo 'part of change #762' >> ${WC}/trunk/subversion/tests/clients/cmdline/commit_tests.py
echo 'part of change #762' >> ${WC}/trunk/doc/programmer/design/svn-design.texi
echo 'part of change #762' >> ${WC}/trunk/subversion/libsvn_subr/xml.c
echo 'part of change #762' >> ${WC}/trunk/doc/programmer/design/deltas.texi
echo 'part of change #762' >> ${WC}/trunk/subversion/tests/xml/up1b-inline.xml
echo 'part of change #762' >> ${WC}/trunk/doc/user/manual/svn-manual.html
echo 'part of change #762' >> ${WC}/trunk/www/index.html
${SVN} commit -m 'commit #762' ${WC}/trunk/subversion/tests/clients/cmdline/commit_tests.py ${WC}/trunk/doc/programmer/design/svn-design.texi ${WC}/trunk/subversion/libsvn_subr/xml.c ${WC}/trunk/doc/programmer/design/deltas.texi ${WC}/trunk/subversion/tests/xml/up1b-inline.xml ${WC}/trunk/doc/user/manual/svn-manual.html ${WC}/trunk/www/index.html

################### change 763 ###################
echo ""
echo "Doing commit #763:"
echo 'part of change #763' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Status.java
${SVN} commit -m 'commit #763' ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Status.java

################### change 764 ###################
echo ""
echo "Doing commit #764:"
echo 'part of change #764' >> ${WC}/trunk/subversion/clients/win32/WinSVN/ExplorerViewHelpers.cls
echo 'part of change #764' >> ${WC}/trunk/subversion/libsvn_subr/time.c
echo 'part of change #764' >> ${WC}/trunk/subversion/libsvn_client/add.c
echo 'part of change #764' >> ${WC}/trunk/subversion/tests/xml/co1-postfix.xml
echo 'part of change #764' >> ${WC}/trunk/subversion/tests/xml/up1a-inline.xml
echo 'part of change #764' >> ${WC}/trunk/www/project_nav.html
echo 'part of change #764' >> ${WC}/trunk/tools/cvs2svn/cvs2svn.py
${SVN} commit -m 'commit #764' ${WC}/trunk/subversion/clients/win32/WinSVN/ExplorerViewHelpers.cls ${WC}/trunk/subversion/libsvn_subr/time.c ${WC}/trunk/subversion/libsvn_client/add.c ${WC}/trunk/subversion/tests/xml/co1-postfix.xml ${WC}/trunk/subversion/tests/xml/up1a-inline.xml ${WC}/trunk/www/project_nav.html ${WC}/trunk/tools/cvs2svn/cvs2svn.py

################### change 765 ###################
echo ""
echo "Doing commit #765:"
echo 'part of change #765' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.h
echo 'part of change #765' >> ${WC}/trunk/subversion/libsvn_fs/proplist.c
${SVN} commit -m 'commit #765' ${WC}/trunk/subversion/libsvn_fs/reps-table.h ${WC}/trunk/subversion/libsvn_fs/proplist.c

################### change 766 ###################
echo ""
echo "Doing commit #766:"
echo 'part of change #766' >> ${WC}/trunk/subversion/libsvn_fs/tree.c
echo 'part of change #766' >> ${WC}/trunk/subversion/tests/libsvn_fs/strings-reps-test.c
echo 'part of change #766' >> ${WC}/trunk/doc/user/manual/adds.texi
echo 'part of change #766' >> ${WC}/trunk/subversion/include/svn_base64.h
echo 'part of change #766' >> ${WC}/trunk/subversion/libsvn_subr/path.c
echo 'part of change #766' >> ${WC}/trunk/subversion/libsvn_wc/adm_ops.c
echo 'part of change #766' >> ${WC}/trunk/subversion/tests/libsvn_subr/stringtest.c
${SVN} commit -m 'commit #766' ${WC}/trunk/subversion/libsvn_fs/tree.c ${WC}/trunk/subversion/tests/libsvn_fs/strings-reps-test.c ${WC}/trunk/doc/user/manual/adds.texi ${WC}/trunk/subversion/include/svn_base64.h ${WC}/trunk/subversion/libsvn_subr/path.c ${WC}/trunk/subversion/libsvn_wc/adm_ops.c ${WC}/trunk/subversion/tests/libsvn_subr/stringtest.c

################### change 767 ###################
echo ""
echo "Doing commit #767:"
echo 'part of change #767' >> ${WC}/trunk/subversion/libsvn_repos/delta.c
echo 'part of change #767' >> ${WC}/trunk/subversion/libsvn_fs/dag.h
echo 'part of change #767' >> ${WC}/trunk/www/cvs_help.html
echo 'part of change #767' >> ${WC}/trunk/doc/programmer/design/goals.texi
echo 'part of change #767' >> ${WC}/trunk/subversion/clients/win32/svn_com/resource.h
echo 'part of change #767' >> ${WC}/trunk/www/project_source.html
echo 'part of change #767' >> ${WC}/trunk/subversion/tests/clients/cmdline/commit_tests.py
echo 'part of change #767' >> ${WC}/trunk/subversion/libsvn_repos/hooks.txt
${SVN} commit -m 'commit #767' ${WC}/trunk/subversion/libsvn_repos/delta.c ${WC}/trunk/subversion/libsvn_fs/dag.h ${WC}/trunk/www/cvs_help.html ${WC}/trunk/doc/programmer/design/goals.texi ${WC}/trunk/subversion/clients/win32/svn_com/resource.h ${WC}/trunk/www/project_source.html ${WC}/trunk/subversion/tests/clients/cmdline/commit_tests.py ${WC}/trunk/subversion/libsvn_repos/hooks.txt

################### change 768 ###################
echo ""
echo "Doing commit #768:"
echo 'part of change #768' >> ${WC}/trunk/subversion/libsvn_fs/node-rev.c
echo 'part of change #768' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/README
${SVN} commit -m 'commit #768' ${WC}/trunk/subversion/libsvn_fs/node-rev.c ${WC}/trunk/subversion/tests/libsvn_vcdiff/README

################### change 769 ###################
echo ""
echo "Doing commit #769:"
echo 'part of change #769' >> ${WC}/trunk/subversion/tests/xml/pipatch.xml
echo 'part of change #769' >> ${WC}/trunk/subversion/include/svn_hash.h
echo 'part of change #769' >> ${WC}/trunk/subversion/clients/cmdline/propdel-cmd.c
echo 'part of change #769' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Status.java
echo 'part of change #769' >> ${WC}/trunk/subversion/libsvn_subr/svn_base64.c
echo 'part of change #769' >> ${WC}/trunk/doc/programmer/design/server.texi
echo 'part of change #769' >> ${WC}/trunk/subversion/libsvn_subr/quoprint.c
${SVN} commit -m 'commit #769' ${WC}/trunk/subversion/tests/xml/pipatch.xml ${WC}/trunk/subversion/include/svn_hash.h ${WC}/trunk/subversion/clients/cmdline/propdel-cmd.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Status.java ${WC}/trunk/subversion/libsvn_subr/svn_base64.c ${WC}/trunk/doc/programmer/design/server.texi ${WC}/trunk/subversion/libsvn_subr/quoprint.c

################### change 770 ###################
echo ""
echo "Doing commit #770:"
echo 'part of change #770' >> ${WC}/trunk/subversion.dsw
echo 'part of change #770' >> ${WC}/trunk/expat-lite/asciitab.h
echo 'part of change #770' >> ${WC}/trunk/subversion/tests/libsvn_delta/simple.delta
echo 'part of change #770' >> ${WC}/trunk/subversion/tests/libsvn_delta/random-test.c
echo 'part of change #770' >> ${WC}/trunk/subversion/libsvn_wc/lock.c
echo 'part of change #770' >> ${WC}/trunk/expat-lite/xmltok_impl.h
echo 'part of change #770' >> ${WC}/trunk/subversion/libsvn_wc/README
${SVN} commit -m 'commit #770' ${WC}/trunk/subversion.dsw ${WC}/trunk/expat-lite/asciitab.h ${WC}/trunk/subversion/tests/libsvn_delta/simple.delta ${WC}/trunk/subversion/tests/libsvn_delta/random-test.c ${WC}/trunk/subversion/libsvn_wc/lock.c ${WC}/trunk/expat-lite/xmltok_impl.h ${WC}/trunk/subversion/libsvn_wc/README

################### change 771 ###################
echo ""
echo "Doing commit #771:"
echo 'part of change #771' >> ${WC}/trunk/subversion/tests/xml/up-props.xml
echo 'part of change #771' >> ${WC}/trunk/subversion/svnadmin/svnadmin.dsp
echo 'part of change #771' >> ${WC}/trunk/notes/txdelta_sanity
echo 'part of change #771' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.mk
echo 'part of change #771' >> ${WC}/trunk/subversion/libsvn_subr/getdate.y
echo 'part of change #771' >> ${WC}/trunk/subversion/include/svn_hash.h
echo 'part of change #771' >> ${WC}/trunk/subversion/libsvn_subr/README.errors
echo 'part of change #771' >> ${WC}/trunk/subversion/clients/cmdline/README
echo 'part of change #771' >> ${WC}/trunk/subversion/libsvn_subr/io.c
echo 'part of change #771' >> ${WC}/trunk/subversion/mod_dav_svn/dav_svn.h
${SVN} commit -m 'commit #771' ${WC}/trunk/subversion/tests/xml/up-props.xml ${WC}/trunk/subversion/svnadmin/svnadmin.dsp ${WC}/trunk/notes/txdelta_sanity ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.mk ${WC}/trunk/subversion/libsvn_subr/getdate.y ${WC}/trunk/subversion/include/svn_hash.h ${WC}/trunk/subversion/libsvn_subr/README.errors ${WC}/trunk/subversion/clients/cmdline/README ${WC}/trunk/subversion/libsvn_subr/io.c ${WC}/trunk/subversion/mod_dav_svn/dav_svn.h

################### change 772 ###################
echo ""
echo "Doing commit #772:"
echo 'part of change #772' >> ${WC}/trunk/subversion/libsvn_delta/track_editor.c
echo 'part of change #772' >> ${WC}/trunk/subversion/clients/cmdline/propset-cmd.c
echo 'part of change #772' >> ${WC}/trunk/subversion/tests/libsvn_wc/checkout-test.c
echo 'part of change #772' >> ${WC}/trunk/expat-lite/README.svn
echo 'part of change #772' >> ${WC}/trunk/subversion/libsvn_delta/compose_editors.c
echo 'part of change #772' >> ${WC}/trunk/subversion/clients/win32/SVNControls/link.dat
${SVN} commit -m 'commit #772' ${WC}/trunk/subversion/libsvn_delta/track_editor.c ${WC}/trunk/subversion/clients/cmdline/propset-cmd.c ${WC}/trunk/subversion/tests/libsvn_wc/checkout-test.c ${WC}/trunk/expat-lite/README.svn ${WC}/trunk/subversion/libsvn_delta/compose_editors.c ${WC}/trunk/subversion/clients/win32/SVNControls/link.dat

################### change 773 ###################
echo ""
echo "Doing commit #773:"
echo 'part of change #773' >> ${WC}/trunk/subversion/clients/win32/SVNControls/pTest.vbp
echo 'part of change #773' >> ${WC}/trunk/subversion/include/svn_test.h
echo 'part of change #773' >> ${WC}/trunk/COPYING
${SVN} commit -m 'commit #773' ${WC}/trunk/subversion/clients/win32/SVNControls/pTest.vbp ${WC}/trunk/subversion/include/svn_test.h ${WC}/trunk/COPYING

################### change 774 ###################
echo ""
echo "Doing commit #774:"
echo 'part of change #774' >> ${WC}/trunk/subversion/libsvn_client/auth.c
echo 'part of change #774' >> ${WC}/trunk/subversion/tests/xml/up5.xml
echo 'part of change #774' >> ${WC}/trunk/subversion/libsvn_ra_dav/session.c
echo 'part of change #774' >> ${WC}/trunk/subversion/include/svn_types.h
echo 'part of change #774' >> ${WC}/trunk/subversion/clients/win32/SVNControls/mGDI.bas
echo 'part of change #774' >> ${WC}/trunk/subversion/tests/libsvn_fs/fs-test.c
echo 'part of change #774' >> ${WC}/trunk/subversion/clients/cmdline/commit-cmd.c
${SVN} commit -m 'commit #774' ${WC}/trunk/subversion/libsvn_client/auth.c ${WC}/trunk/subversion/tests/xml/up5.xml ${WC}/trunk/subversion/libsvn_ra_dav/session.c ${WC}/trunk/subversion/include/svn_types.h ${WC}/trunk/subversion/clients/win32/SVNControls/mGDI.bas ${WC}/trunk/subversion/tests/libsvn_fs/fs-test.c ${WC}/trunk/subversion/clients/cmdline/commit-cmd.c

################### change 775 ###################
echo ""
echo "Doing commit #775:"
echo 'part of change #775' >> ${WC}/trunk/subversion/libsvn_repos/hooks.txt
echo 'part of change #775' >> ${WC}/trunk/subversion/clients/win32/SVNControls/link.dat
echo 'part of change #775' >> ${WC}/trunk/subversion/clients/cmdline/props.c
echo 'part of change #775' >> ${WC}/trunk/subversion/libsvn_fs/reps-strings.h
echo 'part of change #775' >> ${WC}/trunk/tools/cvs2svn/cvs2svn.py
echo 'part of change #775' >> ${WC}/trunk/svn_check.dsp
echo 'part of change #775' >> ${WC}/trunk/subversion/svnlook/main.c
${SVN} commit -m 'commit #775' ${WC}/trunk/subversion/libsvn_repos/hooks.txt ${WC}/trunk/subversion/clients/win32/SVNControls/link.dat ${WC}/trunk/subversion/clients/cmdline/props.c ${WC}/trunk/subversion/libsvn_fs/reps-strings.h ${WC}/trunk/tools/cvs2svn/cvs2svn.py ${WC}/trunk/svn_check.dsp ${WC}/trunk/subversion/svnlook/main.c

################### change 776 ###################
echo ""
echo "Doing commit #776:"
echo 'part of change #776' >> ${WC}/trunk/subversion/tests/fs-helpers.h
echo 'part of change #776' >> ${WC}/trunk/notes/alpha-checklist.txt
echo 'part of change #776' >> ${WC}/trunk/subversion/libsvn_fs/tree.c
echo 'part of change #776' >> ${WC}/trunk/notes/guis/pics/README
echo 'part of change #776' >> ${WC}/trunk/subversion/clients/cmdline/checkout-cmd.c
echo 'part of change #776' >> ${WC}/trunk/subversion/libsvn_subr/sorts.c
echo 'part of change #776' >> ${WC}/trunk/svn_private_config.hw
echo 'part of change #776' >> ${WC}/trunk/subversion/libsvn_repos/hooks.txt
echo 'part of change #776' >> ${WC}/trunk/subversion/libsvn_delta/default_editor.c
${SVN} commit -m 'commit #776' ${WC}/trunk/subversion/tests/fs-helpers.h ${WC}/trunk/notes/alpha-checklist.txt ${WC}/trunk/subversion/libsvn_fs/tree.c ${WC}/trunk/notes/guis/pics/README ${WC}/trunk/subversion/clients/cmdline/checkout-cmd.c ${WC}/trunk/subversion/libsvn_subr/sorts.c ${WC}/trunk/svn_private_config.hw ${WC}/trunk/subversion/libsvn_repos/hooks.txt ${WC}/trunk/subversion/libsvn_delta/default_editor.c

################### change 777 ###################
echo ""
echo "Doing commit #777:"
echo 'part of change #777' >> ${WC}/trunk/expat-lite/xmltok.h
echo 'part of change #777' >> ${WC}/trunk/www/project_status.html
echo 'part of change #777' >> ${WC}/trunk/subversion/libsvn_ra_dav/libsvn_ra_dav.dsp
echo 'part of change #777' >> ${WC}/trunk/subversion/libsvn_fs/id.h
echo 'part of change #777' >> ${WC}/trunk/svn_private_config.hw
echo 'part of change #777' >> ${WC}/trunk/subversion/tests/xml/up2.xml
${SVN} commit -m 'commit #777' ${WC}/trunk/expat-lite/xmltok.h ${WC}/trunk/www/project_status.html ${WC}/trunk/subversion/libsvn_ra_dav/libsvn_ra_dav.dsp ${WC}/trunk/subversion/libsvn_fs/id.h ${WC}/trunk/svn_private_config.hw ${WC}/trunk/subversion/tests/xml/up2.xml

################### change 778 ###################
echo ""
echo "Doing commit #778:"
echo 'part of change #778' >> ${WC}/trunk/expat-lite/libexpat.dsp
echo 'part of change #778' >> ${WC}/trunk/subversion/libsvn_fs/key-gen.h
echo 'part of change #778' >> ${WC}/trunk/subversion/tests/libsvn_ra_local/ra-local-test.c
echo 'part of change #778' >> ${WC}/trunk/subversion/tests/svn_test_editor.c
echo 'part of change #778' >> ${WC}/trunk/subversion/libsvn_wc/entries.c
echo 'part of change #778' >> ${WC}/trunk/expat-lite/CHANGES.svn
${SVN} commit -m 'commit #778' ${WC}/trunk/expat-lite/libexpat.dsp ${WC}/trunk/subversion/libsvn_fs/key-gen.h ${WC}/trunk/subversion/tests/libsvn_ra_local/ra-local-test.c ${WC}/trunk/subversion/tests/svn_test_editor.c ${WC}/trunk/subversion/libsvn_wc/entries.c ${WC}/trunk/expat-lite/CHANGES.svn

################### change 779 ###################
echo ""
echo "Doing commit #779:"
echo 'part of change #779' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.h
echo 'part of change #779' >> ${WC}/trunk/subversion/include/svn_error.h
echo 'part of change #779' >> ${WC}/trunk/subversion/clients/win32/svn_com/misc.h
echo 'part of change #779' >> ${WC}/trunk/subversion/include/svn_pools.h
echo 'part of change #779' >> ${WC}/trunk/subversion/libsvn_subr/README.errors
echo 'part of change #779' >> ${WC}/trunk/subversion/tests/libsvn_wc/simple.delta
echo 'part of change #779' >> ${WC}/trunk/subversion/clients/win32/svn_com/misc.h
echo 'part of change #779' >> ${WC}/trunk/subversion/bindings/svn_wc.i
${SVN} commit -m 'commit #779' ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.h ${WC}/trunk/subversion/include/svn_error.h ${WC}/trunk/subversion/clients/win32/svn_com/misc.h ${WC}/trunk/subversion/include/svn_pools.h ${WC}/trunk/subversion/libsvn_subr/README.errors ${WC}/trunk/subversion/tests/libsvn_wc/simple.delta ${WC}/trunk/subversion/clients/win32/svn_com/misc.h ${WC}/trunk/subversion/bindings/svn_wc.i

################### change 780 ###################
echo ""
echo "Doing commit #780:"
echo 'part of change #780' >> ${WC}/trunk/doc/programmer/design/goals.texi
echo 'part of change #780' >> ${WC}/trunk/subversion/bindings/svn_delta.i
echo 'part of change #780' >> ${WC}/trunk/notes/svn-config-files
${SVN} commit -m 'commit #780' ${WC}/trunk/doc/programmer/design/goals.texi ${WC}/trunk/subversion/bindings/svn_delta.i ${WC}/trunk/notes/svn-config-files

################### change 781 ###################
echo ""
echo "Doing commit #781:"
echo 'part of change #781' >> ${WC}/trunk/subversion/clients/cmdline/trace-update.c
${SVN} commit -m 'commit #781' ${WC}/trunk/subversion/clients/cmdline/trace-update.c

################### change 782 ###################
echo ""
echo "Doing commit #782:"
echo 'part of change #782' >> ${WC}/trunk/doc/user/manual/adds.texi
echo 'part of change #782' >> ${WC}/trunk/subversion/clients/win32/WinSVN/WinSVN.vbp
echo 'part of change #782' >> ${WC}/trunk/subversion/libsvn_fs/key-gen.h
echo 'part of change #782' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/actions.py
echo 'part of change #782' >> ${WC}/trunk/doc/programmer/design/client.texi
${SVN} commit -m 'commit #782' ${WC}/trunk/doc/user/manual/adds.texi ${WC}/trunk/subversion/clients/win32/WinSVN/WinSVN.vbp ${WC}/trunk/subversion/libsvn_fs/key-gen.h ${WC}/trunk/subversion/tests/clients/cmdline/svntest/actions.py ${WC}/trunk/doc/programmer/design/client.texi

################### change 783 ###################
echo ""
echo "Doing commit #783:"
echo 'part of change #783' >> ${WC}/trunk/COPYING
echo 'part of change #783' >> ${WC}/trunk/subversion/libsvn_repos/node_tree.c
echo 'part of change #783' >> ${WC}/trunk/subversion/include/svn_io.h
echo 'part of change #783' >> ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.vbp
echo 'part of change #783' >> ${WC}/trunk/subversion/libsvn_subr/svn_base64.c
echo 'part of change #783' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Reporter.java
echo 'part of change #783' >> ${WC}/trunk/subversion/tests/fs-helpers.c
echo 'part of change #783' >> ${WC}/trunk/subversion/bindings/svn_client.i
${SVN} commit -m 'commit #783' ${WC}/trunk/COPYING ${WC}/trunk/subversion/libsvn_repos/node_tree.c ${WC}/trunk/subversion/include/svn_io.h ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.vbp ${WC}/trunk/subversion/libsvn_subr/svn_base64.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Reporter.java ${WC}/trunk/subversion/tests/fs-helpers.c ${WC}/trunk/subversion/bindings/svn_client.i

################### change 784 ###################
echo ""
echo "Doing commit #784:"
echo 'part of change #784' >> ${WC}/trunk/subversion.dsp
echo 'part of change #784' >> ${WC}/trunk/subversion/clients/cmdline/TODO
echo 'part of change #784' >> ${WC}/trunk/expat-lite/xmlrole.h
echo 'part of change #784' >> ${WC}/trunk/subversion/include/svn_base64.h
echo 'part of change #784' >> ${WC}/trunk/subversion/libsvn_fs/txn.h
echo 'part of change #784' >> ${WC}/trunk/subversion/libsvn_subr/svn_error.c
echo 'part of change #784' >> ${WC}/trunk/subversion/LICENSE
echo 'part of change #784' >> ${WC}/trunk/expat-lite/xmltok_impl.c
echo 'part of change #784' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_1.txt
${SVN} commit -m 'commit #784' ${WC}/trunk/subversion.dsp ${WC}/trunk/subversion/clients/cmdline/TODO ${WC}/trunk/expat-lite/xmlrole.h ${WC}/trunk/subversion/include/svn_base64.h ${WC}/trunk/subversion/libsvn_fs/txn.h ${WC}/trunk/subversion/libsvn_subr/svn_error.c ${WC}/trunk/subversion/LICENSE ${WC}/trunk/expat-lite/xmltok_impl.c ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_1.txt

################### change 785 ###################
echo ""
echo "Doing commit #785:"
echo 'part of change #785' >> ${WC}/trunk/subversion/libsvn_fs/TODO
echo 'part of change #785' >> ${WC}/trunk/subversion/libsvn_wc/README
echo 'part of change #785' >> ${WC}/trunk/PORTING
echo 'part of change #785' >> ${WC}/trunk/www/project_bugs.html
echo 'part of change #785' >> ${WC}/trunk/subversion/libsvn_subr/getdate.c
echo 'part of change #785' >> ${WC}/trunk/subversion/include/svn_test.h
echo 'part of change #785' >> ${WC}/trunk/subversion/libsvn_fs/err.h
echo 'part of change #785' >> ${WC}/trunk/subversion/libsvn_fs/txn.c
${SVN} commit -m 'commit #785' ${WC}/trunk/subversion/libsvn_fs/TODO ${WC}/trunk/subversion/libsvn_wc/README ${WC}/trunk/PORTING ${WC}/trunk/www/project_bugs.html ${WC}/trunk/subversion/libsvn_subr/getdate.c ${WC}/trunk/subversion/include/svn_test.h ${WC}/trunk/subversion/libsvn_fs/err.h ${WC}/trunk/subversion/libsvn_fs/txn.c

################### change 786 ###################
echo ""
echo "Doing commit #786:"
echo 'part of change #786' >> ${WC}/trunk/subversion/include/svn_config.h
echo 'part of change #786' >> ${WC}/trunk/subversion/bindings/svn_error.i
echo 'part of change #786' >> ${WC}/trunk/subversion/clients/cmdline/subversion_client.dsp
echo 'part of change #786' >> ${WC}/trunk/subversion/libsvn_fs/dbt.h
echo 'part of change #786' >> ${WC}/trunk/subversion/libsvn_wc/props.c
echo 'part of change #786' >> ${WC}/trunk/subversion/libsvn_fs/txn-table.h
echo 'part of change #786' >> ${WC}/trunk/doc/programmer/design/svn-design.html
echo 'part of change #786' >> ${WC}/trunk/subversion/libsvn_subr/README.errors
echo 'part of change #786' >> ${WC}/trunk/subversion/tests/clients/cmdline/svnadmin_tests.py
echo 'part of change #786' >> ${WC}/trunk/svn_private_config.h.in
${SVN} commit -m 'commit #786' ${WC}/trunk/subversion/include/svn_config.h ${WC}/trunk/subversion/bindings/svn_error.i ${WC}/trunk/subversion/clients/cmdline/subversion_client.dsp ${WC}/trunk/subversion/libsvn_fs/dbt.h ${WC}/trunk/subversion/libsvn_wc/props.c ${WC}/trunk/subversion/libsvn_fs/txn-table.h ${WC}/trunk/doc/programmer/design/svn-design.html ${WC}/trunk/subversion/libsvn_subr/README.errors ${WC}/trunk/subversion/tests/clients/cmdline/svnadmin_tests.py ${WC}/trunk/svn_private_config.h.in

################### change 787 ###################
echo ""
echo "Doing commit #787:"
echo 'part of change #787' >> ${WC}/trunk/subversion/libsvn_client/commit.c
echo 'part of change #787' >> ${WC}/trunk/subversion/tests/xml/co1-postfix.xml
echo 'part of change #787' >> ${WC}/trunk/expat-lite/README.svn
echo 'part of change #787' >> ${WC}/trunk/subversion/include/svn_repos.h
echo 'part of change #787' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/SubversionException.java
echo 'part of change #787' >> ${WC}/trunk/doc/programmer/design/license.texi
echo 'part of change #787' >> ${WC}/trunk/subversion/clients/cmdline/main.c
${SVN} commit -m 'commit #787' ${WC}/trunk/subversion/libsvn_client/commit.c ${WC}/trunk/subversion/tests/xml/co1-postfix.xml ${WC}/trunk/expat-lite/README.svn ${WC}/trunk/subversion/include/svn_repos.h ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/SubversionException.java ${WC}/trunk/doc/programmer/design/license.texi ${WC}/trunk/subversion/clients/cmdline/main.c

################### change 788 ###################
echo ""
echo "Doing commit #788:"
echo 'part of change #788' >> ${WC}/trunk/expat-lite/xmltok_ns.c
${SVN} commit -m 'commit #788' ${WC}/trunk/expat-lite/xmltok_ns.c

################### change 789 ###################
echo ""
echo "Doing commit #789:"
echo 'part of change #789' >> ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse-test.c
echo 'part of change #789' >> ${WC}/trunk/subversion/bindings/svn_error.i
echo 'part of change #789' >> ${WC}/trunk/doc/programmer/design/protocol.texi
echo 'part of change #789' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Revision.java
echo 'part of change #789' >> ${WC}/trunk/tools/cvs2svn/cvs2svn.py
echo 'part of change #789' >> ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta
echo 'part of change #789' >> ${WC}/trunk/subversion/libsvn_subr/target.c
${SVN} commit -m 'commit #789' ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse-test.c ${WC}/trunk/subversion/bindings/svn_error.i ${WC}/trunk/doc/programmer/design/protocol.texi ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Revision.java ${WC}/trunk/tools/cvs2svn/cvs2svn.py ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta ${WC}/trunk/subversion/libsvn_subr/target.c

################### change 790 ###################
echo ""
echo "Doing commit #790:"
echo 'part of change #790' >> ${WC}/trunk/notes/issues.txt
${SVN} commit -m 'commit #790' ${WC}/trunk/notes/issues.txt

################### change 791 ###################
echo ""
echo "Doing commit #791:"
echo 'part of change #791' >> ${WC}/trunk/subversion/libsvn_ra_dav/session.c
echo 'part of change #791' >> ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py
echo 'part of change #791' >> ${WC}/trunk/subversion/clients/cmdline/commit-cmd.c
echo 'part of change #791' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cHeaderControl.cls
echo 'part of change #791' >> ${WC}/trunk/subversion/clients/cmdline/util.c
echo 'part of change #791' >> ${WC}/trunk/subversion/tests/libsvn_wc/checkout_test.dsp
${SVN} commit -m 'commit #791' ${WC}/trunk/subversion/libsvn_ra_dav/session.c ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py ${WC}/trunk/subversion/clients/cmdline/commit-cmd.c ${WC}/trunk/subversion/clients/win32/SVNControls/cHeaderControl.cls ${WC}/trunk/subversion/clients/cmdline/util.c ${WC}/trunk/subversion/tests/libsvn_wc/checkout_test.dsp

################### change 792 ###################
echo ""
echo "Doing commit #792:"
echo 'part of change #792' >> ${WC}/trunk/STACK
echo 'part of change #792' >> ${WC}/trunk/subversion/libsvn_wc/log.c
echo 'part of change #792' >> ${WC}/trunk/subversion/libsvn_fs/dbt.c
echo 'part of change #792' >> ${WC}/trunk/subversion/include/svn_hash.h
echo 'part of change #792' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Status.java
echo 'part of change #792' >> ${WC}/trunk/doc/programmer/design/architecture.texi
${SVN} commit -m 'commit #792' ${WC}/trunk/STACK ${WC}/trunk/subversion/libsvn_wc/log.c ${WC}/trunk/subversion/libsvn_fs/dbt.c ${WC}/trunk/subversion/include/svn_hash.h ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Status.java ${WC}/trunk/doc/programmer/design/architecture.texi

################### change 793 ###################
echo ""
echo "Doing commit #793:"
echo 'part of change #793' >> ${WC}/trunk/subversion/bindings/svn_client.i
echo 'part of change #793' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.h
echo 'part of change #793' >> ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py
echo 'part of change #793' >> ${WC}/trunk/subversion/libsvn_delta/libsvn_delta.dsp
echo 'part of change #793' >> ${WC}/trunk/subversion/libsvn_fs/err.c
${SVN} commit -m 'commit #793' ${WC}/trunk/subversion/bindings/svn_client.i ${WC}/trunk/subversion/clients/win32/svn_com/SVN.h ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py ${WC}/trunk/subversion/libsvn_delta/libsvn_delta.dsp ${WC}/trunk/subversion/libsvn_fs/err.c

################### change 794 ###################
echo ""
echo "Doing commit #794:"
echo 'part of change #794' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target2.txt
${SVN} commit -m 'commit #794' ${WC}/trunk/subversion/tests/libsvn_vcdiff/target2.txt

################### change 795 ###################
echo ""
echo "Doing commit #795:"
echo 'part of change #795' >> ${WC}/trunk/subversion/libsvn_fs/tree.c
echo 'part of change #795' >> ${WC}/trunk/subversion/include/svn_quoprint.h
echo 'part of change #795' >> ${WC}/trunk/subversion/libsvn_wc/util.c
echo 'part of change #795' >> ${WC}/trunk/subversion/libsvn_repos/libsvn_repos.dsp
echo 'part of change #795' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/source.txt
echo 'part of change #795' >> ${WC}/trunk/notes/multi-args.txt
echo 'part of change #795' >> ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py
echo 'part of change #795' >> ${WC}/trunk/subversion/libsvn_subr/xml.c
${SVN} commit -m 'commit #795' ${WC}/trunk/subversion/libsvn_fs/tree.c ${WC}/trunk/subversion/include/svn_quoprint.h ${WC}/trunk/subversion/libsvn_wc/util.c ${WC}/trunk/subversion/libsvn_repos/libsvn_repos.dsp ${WC}/trunk/subversion/tests/libsvn_vcdiff/source.txt ${WC}/trunk/notes/multi-args.txt ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py ${WC}/trunk/subversion/libsvn_subr/xml.c

################### change 796 ###################
echo ""
echo "Doing commit #796:"
echo 'part of change #796' >> ${WC}/trunk/subversion/clients/win32/SVNControls/pTest.vbp
echo 'part of change #796' >> ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.h
echo 'part of change #796' >> ${WC}/trunk/subversion/libsvn_delta/text_delta.c
echo 'part of change #796' >> ${WC}/trunk/subversion/svnadmin/svnadmin.dsp
${SVN} commit -m 'commit #796' ${WC}/trunk/subversion/clients/win32/SVNControls/pTest.vbp ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.h ${WC}/trunk/subversion/libsvn_delta/text_delta.c ${WC}/trunk/subversion/svnadmin/svnadmin.dsp

################### change 797 ###################
echo ""
echo "Doing commit #797:"
echo 'part of change #797' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/__init__.py
echo 'part of change #797' >> ${WC}/trunk/notes/difftools/README
echo 'part of change #797' >> ${WC}/trunk/subversion/libsvn_subr/svn_error.c
echo 'part of change #797' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.mk
echo 'part of change #797' >> ${WC}/trunk/subversion/mod_dav_svn/mod_dav_svn.c
echo 'part of change #797' >> ${WC}/trunk/subversion/libsvn_repos/reporter.c
echo 'part of change #797' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.c
echo 'part of change #797' >> ${WC}/trunk/subversion/libsvn_delta/README.xmlparse
${SVN} commit -m 'commit #797' ${WC}/trunk/subversion/tests/clients/cmdline/svntest/__init__.py ${WC}/trunk/notes/difftools/README ${WC}/trunk/subversion/libsvn_subr/svn_error.c ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.mk ${WC}/trunk/subversion/mod_dav_svn/mod_dav_svn.c ${WC}/trunk/subversion/libsvn_repos/reporter.c ${WC}/trunk/subversion/libsvn_fs/reps-table.c ${WC}/trunk/subversion/libsvn_delta/README.xmlparse

################### change 798 ###################
echo ""
echo "Doing commit #798:"
echo 'part of change #798' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm
${SVN} commit -m 'commit #798' ${WC}/trunk/subversion/clients/win32/SVNControls/frmTest.frm

################### change 799 ###################
echo ""
echo "Doing commit #799:"
echo 'part of change #799' >> ${WC}/trunk/subversion/libsvn_delta/README.xmlparse
${SVN} commit -m 'commit #799' ${WC}/trunk/subversion/libsvn_delta/README.xmlparse

################### change 800 ###################
echo ""
echo "Doing commit #800:"
echo 'part of change #800' >> ${WC}/trunk/subversion/include/svn_quoprint.h
${SVN} commit -m 'commit #800' ${WC}/trunk/subversion/include/svn_quoprint.h

################### change 801 ###################
echo ""
echo "Doing commit #801:"
echo 'part of change #801' >> ${WC}/trunk/build.conf
echo 'part of change #801' >> ${WC}/trunk/expat-lite/README.svn
${SVN} commit -m 'commit #801' ${WC}/trunk/build.conf ${WC}/trunk/expat-lite/README.svn

################### change 802 ###################
echo ""
echo "Doing commit #802:"
echo 'part of change #802' >> ${WC}/trunk/subversion/tests/xml/up1a-inline.xml
${SVN} commit -m 'commit #802' ${WC}/trunk/subversion/tests/xml/up1a-inline.xml

################### change 803 ###################
echo ""
echo "Doing commit #803:"
echo 'part of change #803' >> ${WC}/trunk/subversion/clients/cmdline/checkout-cmd.c
echo 'part of change #803' >> ${WC}/trunk/subversion/clients/cmdline/propset-cmd.c
echo 'part of change #803' >> ${WC}/trunk/expat-lite/iasciitab.h
echo 'part of change #803' >> ${WC}/trunk/subversion/libsvn_ra_dav/fetch.c
echo 'part of change #803' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Client.java
echo 'part of change #803' >> ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.c
echo 'part of change #803' >> ${WC}/trunk/subversion/libsvn_client/update.c
echo 'part of change #803' >> ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.cpp
echo 'part of change #803' >> ${WC}/trunk/subversion/tests/svn_test_editor.c
${SVN} commit -m 'commit #803' ${WC}/trunk/subversion/clients/cmdline/checkout-cmd.c ${WC}/trunk/subversion/clients/cmdline/propset-cmd.c ${WC}/trunk/expat-lite/iasciitab.h ${WC}/trunk/subversion/libsvn_ra_dav/fetch.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Client.java ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.c ${WC}/trunk/subversion/libsvn_client/update.c ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.cpp ${WC}/trunk/subversion/tests/svn_test_editor.c

################### change 804 ###################
echo ""
echo "Doing commit #804:"
echo 'part of change #804' >> ${WC}/trunk/subversion/tests/xml/up1a-inline.xml
echo 'part of change #804' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/entry.py
${SVN} commit -m 'commit #804' ${WC}/trunk/subversion/tests/xml/up1a-inline.xml ${WC}/trunk/subversion/tests/clients/cmdline/svntest/entry.py

################### change 805 ###################
echo ""
echo "Doing commit #805:"
echo 'part of change #805' >> ${WC}/trunk/expat-lite/hashtable.h
echo 'part of change #805' >> ${WC}/trunk/www/project_header.html
echo 'part of change #805' >> ${WC}/trunk/notes/guis/planning.txt
echo 'part of change #805' >> ${WC}/trunk/subversion/libsvn_delta/libsvn_delta.dsp
${SVN} commit -m 'commit #805' ${WC}/trunk/expat-lite/hashtable.h ${WC}/trunk/www/project_header.html ${WC}/trunk/notes/guis/planning.txt ${WC}/trunk/subversion/libsvn_delta/libsvn_delta.dsp

################### change 806 ###################
echo ""
echo "Doing commit #806:"
echo 'part of change #806' >> ${WC}/trunk/subversion/libsvn_fs/txn-table.c
echo 'part of change #806' >> ${WC}/trunk/subversion/libsvn_ra_dav/options.c
echo 'part of change #806' >> ${WC}/trunk/subversion/tests/clients/cmdline/svnadmin_tests.py
echo 'part of change #806' >> ${WC}/trunk/expat-lite/xmltok.c
${SVN} commit -m 'commit #806' ${WC}/trunk/subversion/libsvn_fs/txn-table.c ${WC}/trunk/subversion/libsvn_ra_dav/options.c ${WC}/trunk/subversion/tests/clients/cmdline/svnadmin_tests.py ${WC}/trunk/expat-lite/xmltok.c

################### change 807 ###################
echo ""
echo "Doing commit #807:"
echo 'part of change #807' >> ${WC}/trunk/www/license-1.html
echo 'part of change #807' >> ${WC}/trunk/subversion/bindings/svn_client.i
echo 'part of change #807' >> ${WC}/trunk/subversion/libsvn_fs/id.h
echo 'part of change #807' >> ${WC}/trunk/subversion/clients/cmdline/diff.c
echo 'part of change #807' >> ${WC}/trunk/subversion/tests/xml/up2.xml
echo 'part of change #807' >> ${WC}/trunk/subversion/tests/libsvn_fs/fs-test.c
${SVN} commit -m 'commit #807' ${WC}/trunk/www/license-1.html ${WC}/trunk/subversion/bindings/svn_client.i ${WC}/trunk/subversion/libsvn_fs/id.h ${WC}/trunk/subversion/clients/cmdline/diff.c ${WC}/trunk/subversion/tests/xml/up2.xml ${WC}/trunk/subversion/tests/libsvn_fs/fs-test.c

################### change 808 ###################
echo ""
echo "Doing commit #808:"
echo 'part of change #808' >> ${WC}/trunk/subversion/libsvn_client/auth.c
echo 'part of change #808' >> ${WC}/trunk/doc/programmer/design/model.texi
echo 'part of change #808' >> ${WC}/trunk/subversion/include/svn_repos.h
${SVN} commit -m 'commit #808' ${WC}/trunk/subversion/libsvn_client/auth.c ${WC}/trunk/doc/programmer/design/model.texi ${WC}/trunk/subversion/include/svn_repos.h

################### change 809 ###################
echo ""
echo "Doing commit #809:"
echo 'part of change #809' >> ${WC}/trunk/expat-lite/xmltok.c
echo 'part of change #809' >> ${WC}/trunk/subversion/tests/libsvn_fs/skel-test.c
${SVN} commit -m 'commit #809' ${WC}/trunk/expat-lite/xmltok.c ${WC}/trunk/subversion/tests/libsvn_fs/skel-test.c

################### change 810 ###################
echo ""
echo "Doing commit #810:"
echo 'part of change #810' >> ${WC}/trunk/gen-make.py
echo 'part of change #810' >> ${WC}/trunk/subversion/tests/greek-tree.txt
echo 'part of change #810' >> ${WC}/trunk/subversion/libsvn_fs/err.h
echo 'part of change #810' >> ${WC}/trunk/subversion/tests/xml/up1b-postfix.xml
echo 'part of change #810' >> ${WC}/trunk/subversion/tests/xml/up1b-inline.xml
echo 'part of change #810' >> ${WC}/trunk/expat-lite/hashtable.h
echo 'part of change #810' >> ${WC}/trunk/subversion/libsvn_subr/path.c
echo 'part of change #810' >> ${WC}/trunk/subversion/tests/libsvn_fs/fs_test.dsp
echo 'part of change #810' >> ${WC}/trunk/subversion/libsvn_wc/adm_ops.c
${SVN} commit -m 'commit #810' ${WC}/trunk/gen-make.py ${WC}/trunk/subversion/tests/greek-tree.txt ${WC}/trunk/subversion/libsvn_fs/err.h ${WC}/trunk/subversion/tests/xml/up1b-postfix.xml ${WC}/trunk/subversion/tests/xml/up1b-inline.xml ${WC}/trunk/expat-lite/hashtable.h ${WC}/trunk/subversion/libsvn_subr/path.c ${WC}/trunk/subversion/tests/libsvn_fs/fs_test.dsp ${WC}/trunk/subversion/libsvn_wc/adm_ops.c

################### change 811 ###################
echo ""
echo "Doing commit #811:"
echo 'part of change #811' >> ${WC}/trunk/expat-lite/hashtable.h
echo 'part of change #811' >> ${WC}/trunk/subversion/libsvn_delta/default_editor.c
echo 'part of change #811' >> ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.c
echo 'part of change #811' >> ${WC}/trunk/notes/guis/pics/README
echo 'part of change #811' >> ${WC}/trunk/subversion/tests/README
echo 'part of change #811' >> ${WC}/trunk/subversion/clients/cmdline/help-cmd.c
echo 'part of change #811' >> ${WC}/trunk/subversion/tests/libsvn_subr/stringtest.c
echo 'part of change #811' >> ${WC}/trunk/subversion/include/svn_ra.h
echo 'part of change #811' >> ${WC}/trunk/doc/user/manual/README
${SVN} commit -m 'commit #811' ${WC}/trunk/expat-lite/hashtable.h ${WC}/trunk/subversion/libsvn_delta/default_editor.c ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.c ${WC}/trunk/notes/guis/pics/README ${WC}/trunk/subversion/tests/README ${WC}/trunk/subversion/clients/cmdline/help-cmd.c ${WC}/trunk/subversion/tests/libsvn_subr/stringtest.c ${WC}/trunk/subversion/include/svn_ra.h ${WC}/trunk/doc/user/manual/README

################### change 812 ###################
echo ""
echo "Doing commit #812:"
echo 'part of change #812' >> ${WC}/trunk/subversion/clients/cmdline/import-cmd.c
echo 'part of change #812' >> ${WC}/trunk/subversion/libsvn_fs/trail.h
echo 'part of change #812' >> ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.ctl
echo 'part of change #812' >> ${WC}/trunk/subversion/libsvn_fs/skel.h
echo 'part of change #812' >> ${WC}/trunk/subversion/tests/clients/cmdline/commit_tests.py
${SVN} commit -m 'commit #812' ${WC}/trunk/subversion/clients/cmdline/import-cmd.c ${WC}/trunk/subversion/libsvn_fs/trail.h ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.ctl ${WC}/trunk/subversion/libsvn_fs/skel.h ${WC}/trunk/subversion/tests/clients/cmdline/commit_tests.py

################### change 813 ###################
echo ""
echo "Doing commit #813:"
echo 'part of change #813' >> ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.h
echo 'part of change #813' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.def
echo 'part of change #813' >> ${WC}/trunk/expat-lite/hashtable.h
echo 'part of change #813' >> ${WC}/trunk/subversion/libsvn_subr/io.c
echo 'part of change #813' >> ${WC}/trunk/subversion/libsvn_client/libsvn_client.dsp
echo 'part of change #813' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.h
echo 'part of change #813' >> ${WC}/trunk/subversion/tests/libsvn_wc/checkout-test.c
echo 'part of change #813' >> ${WC}/trunk/subversion/tests/libsvn_fs/key-test.c
echo 'part of change #813' >> ${WC}/trunk/ac-helpers/libtool.m4
${SVN} commit -m 'commit #813' ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.h ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.def ${WC}/trunk/expat-lite/hashtable.h ${WC}/trunk/subversion/libsvn_subr/io.c ${WC}/trunk/subversion/libsvn_client/libsvn_client.dsp ${WC}/trunk/subversion/libsvn_fs/reps-table.h ${WC}/trunk/subversion/tests/libsvn_wc/checkout-test.c ${WC}/trunk/subversion/tests/libsvn_fs/key-test.c ${WC}/trunk/ac-helpers/libtool.m4

################### change 814 ###################
echo ""
echo "Doing commit #814:"
echo 'part of change #814' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.def
echo 'part of change #814' >> ${WC}/trunk/subversion/libsvn_fs/err.h
echo 'part of change #814' >> ${WC}/trunk/subversion/bindings/java/jni/README
echo 'part of change #814' >> ${WC}/trunk/doc/programmer/design/architecture.texi
echo 'part of change #814' >> ${WC}/trunk/subversion/tests/greek-tree.txt
${SVN} commit -m 'commit #814' ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.def ${WC}/trunk/subversion/libsvn_fs/err.h ${WC}/trunk/subversion/bindings/java/jni/README ${WC}/trunk/doc/programmer/design/architecture.texi ${WC}/trunk/subversion/tests/greek-tree.txt

################### change 815 ###################
echo ""
echo "Doing commit #815:"
echo 'part of change #815' >> ${WC}/trunk/subversion/libsvn_subr/svn_base64.c
echo 'part of change #815' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.cpp
echo 'part of change #815' >> ${WC}/trunk/subversion/libsvn_fs/structure
echo 'part of change #815' >> ${WC}/trunk/doc/programmer/design/model.texi
echo 'part of change #815' >> ${WC}/trunk/notes/multi-args.txt
echo 'part of change #815' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmAbout.frm
echo 'part of change #815' >> ${WC}/trunk/subversion/LICENSE
echo 'part of change #815' >> ${WC}/trunk/subversion/tests/libsvn_ra_local/ra-local-test.c
${SVN} commit -m 'commit #815' ${WC}/trunk/subversion/libsvn_subr/svn_base64.c ${WC}/trunk/subversion/clients/win32/svn_com/SVN.cpp ${WC}/trunk/subversion/libsvn_fs/structure ${WC}/trunk/doc/programmer/design/model.texi ${WC}/trunk/notes/multi-args.txt ${WC}/trunk/subversion/clients/win32/WinSVN/frmAbout.frm ${WC}/trunk/subversion/LICENSE ${WC}/trunk/subversion/tests/libsvn_ra_local/ra-local-test.c

################### change 816 ###################
echo ""
echo "Doing commit #816:"
echo 'part of change #816' >> ${WC}/trunk/subversion/tests/xml/co1-postfix.xml
echo 'part of change #816' >> ${WC}/trunk/subversion/libsvn_subr/sorts.c
${SVN} commit -m 'commit #816' ${WC}/trunk/subversion/tests/xml/co1-postfix.xml ${WC}/trunk/subversion/libsvn_subr/sorts.c

################### change 817 ###################
echo ""
echo "Doing commit #817:"
echo 'part of change #817' >> ${WC}/trunk/subversion/libsvn_fs/libsvn_fs.dsp
echo 'part of change #817' >> ${WC}/trunk/subversion/libsvn_wc/log.c
echo 'part of change #817' >> ${WC}/trunk/subversion/clients/cmdline/proplist-cmd.c
echo 'part of change #817' >> ${WC}/trunk/subversion/tests/fs-helpers.c
echo 'part of change #817' >> ${WC}/trunk/subversion/libsvn_subr/xml.c
echo 'part of change #817' >> ${WC}/trunk/subversion/include/svn_test.h
echo 'part of change #817' >> ${WC}/trunk/notes/fs-improvements.txt
${SVN} commit -m 'commit #817' ${WC}/trunk/subversion/libsvn_fs/libsvn_fs.dsp ${WC}/trunk/subversion/libsvn_wc/log.c ${WC}/trunk/subversion/clients/cmdline/proplist-cmd.c ${WC}/trunk/subversion/tests/fs-helpers.c ${WC}/trunk/subversion/libsvn_subr/xml.c ${WC}/trunk/subversion/include/svn_test.h ${WC}/trunk/notes/fs-improvements.txt

################### change 818 ###################
echo ""
echo "Doing commit #818:"
echo 'part of change #818' >> ${WC}/trunk/subversion/libsvn_client/apply_edits.c
echo 'part of change #818' >> ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp
${SVN} commit -m 'commit #818' ${WC}/trunk/subversion/libsvn_client/apply_edits.c ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp

################### change 819 ###################
echo ""
echo "Doing commit #819:"
echo 'part of change #819' >> ${WC}/trunk/subversion/libsvn_delta/README.xmlparse
echo 'part of change #819' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.cpp
echo 'part of change #819' >> ${WC}/trunk/subversion/libsvn_wc/libsvn_wc.dsp
echo 'part of change #819' >> ${WC}/trunk/doc/user/manual/svn-manual.txt
echo 'part of change #819' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cScrollBars.cls
echo 'part of change #819' >> ${WC}/trunk/www/project_license.html
echo 'part of change #819' >> ${WC}/trunk/subversion/libsvn_delta/libsvn_delta.dsp
echo 'part of change #819' >> ${WC}/trunk/subversion/clients/cmdline/status-cmd.c
${SVN} commit -m 'commit #819' ${WC}/trunk/subversion/libsvn_delta/README.xmlparse ${WC}/trunk/subversion/clients/win32/svn_com/SVN.cpp ${WC}/trunk/subversion/libsvn_wc/libsvn_wc.dsp ${WC}/trunk/doc/user/manual/svn-manual.txt ${WC}/trunk/subversion/clients/win32/SVNControls/cScrollBars.cls ${WC}/trunk/www/project_license.html ${WC}/trunk/subversion/libsvn_delta/libsvn_delta.dsp ${WC}/trunk/subversion/clients/cmdline/status-cmd.c

################### change 820 ###################
echo ""
echo "Doing commit #820:"
echo 'part of change #820' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmVirtual.frm
echo 'part of change #820' >> ${WC}/trunk/subversion/libsvn_wc/entries.c
echo 'part of change #820' >> ${WC}/trunk/subversion/libsvn_subr/getdate.y
echo 'part of change #820' >> ${WC}/trunk/AUTHORS
echo 'part of change #820' >> ${WC}/trunk/notes/guis/pics/ClearCase-lsvtree-README
echo 'part of change #820' >> ${WC}/trunk/subversion/include/svn_io.h
echo 'part of change #820' >> ${WC}/trunk/doc/user/manual/adds.texi
echo 'part of change #820' >> ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta
echo 'part of change #820' >> ${WC}/trunk/doc/programmer/design/license.texi
${SVN} commit -m 'commit #820' ${WC}/trunk/subversion/clients/win32/SVNControls/frmVirtual.frm ${WC}/trunk/subversion/libsvn_wc/entries.c ${WC}/trunk/subversion/libsvn_subr/getdate.y ${WC}/trunk/AUTHORS ${WC}/trunk/notes/guis/pics/ClearCase-lsvtree-README ${WC}/trunk/subversion/include/svn_io.h ${WC}/trunk/doc/user/manual/adds.texi ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta ${WC}/trunk/doc/programmer/design/license.texi

################### change 821 ###################
echo ""
echo "Doing commit #821:"
echo 'part of change #821' >> ${WC}/trunk/subversion/libsvn_delta/compose_editors.c
echo 'part of change #821' >> ${WC}/trunk/subversion/tests/libsvn_repos/repos_test.dsp
echo 'part of change #821' >> ${WC}/trunk/subversion/libsvn_fs/key-gen.c
echo 'part of change #821' >> ${WC}/trunk/doc/user/manual/adds.texi
echo 'part of change #821' >> ${WC}/trunk/subversion/clients/cmdline/cleanup-cmd.c
echo 'part of change #821' >> ${WC}/trunk/tools/cvs2svn/cvs2svn.py
${SVN} commit -m 'commit #821' ${WC}/trunk/subversion/libsvn_delta/compose_editors.c ${WC}/trunk/subversion/tests/libsvn_repos/repos_test.dsp ${WC}/trunk/subversion/libsvn_fs/key-gen.c ${WC}/trunk/doc/user/manual/adds.texi ${WC}/trunk/subversion/clients/cmdline/cleanup-cmd.c ${WC}/trunk/tools/cvs2svn/cvs2svn.py

################### change 822 ###################
echo ""
echo "Doing commit #822:"
echo 'part of change #822' >> ${WC}/trunk/STACK
echo 'part of change #822' >> ${WC}/trunk/subversion/mod_dav_svn/util.c
echo 'part of change #822' >> ${WC}/trunk/subversion/clients/cmdline/trace-update.c
echo 'part of change #822' >> ${WC}/trunk/subversion/libsvn_wc/util.c
echo 'part of change #822' >> ${WC}/trunk/doc/user/manual/svn-manual.txt
echo 'part of change #822' >> ${WC}/trunk/subversion/include/svn_pools.h
echo 'part of change #822' >> ${WC}/trunk/subversion/libsvn_fs/node-rev.c
echo 'part of change #822' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Reporter.java
echo 'part of change #822' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/source.txt
echo 'part of change #822' >> ${WC}/trunk/subversion/libsvn_client/add.c
${SVN} commit -m 'commit #822' ${WC}/trunk/STACK ${WC}/trunk/subversion/mod_dav_svn/util.c ${WC}/trunk/subversion/clients/cmdline/trace-update.c ${WC}/trunk/subversion/libsvn_wc/util.c ${WC}/trunk/doc/user/manual/svn-manual.txt ${WC}/trunk/subversion/include/svn_pools.h ${WC}/trunk/subversion/libsvn_fs/node-rev.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Reporter.java ${WC}/trunk/subversion/tests/libsvn_vcdiff/source.txt ${WC}/trunk/subversion/libsvn_client/add.c

################### change 823 ###################
echo ""
echo "Doing commit #823:"
echo 'part of change #823' >> ${WC}/trunk/ac-helpers/berkeley-db.m4
${SVN} commit -m 'commit #823' ${WC}/trunk/ac-helpers/berkeley-db.m4

################### change 824 ###################
echo ""
echo "Doing commit #824:"
echo 'part of change #824' >> ${WC}/trunk/subversion/mod_dav_svn/activity.c
echo 'part of change #824' >> ${WC}/trunk/subversion/clients/cmdline/prompt.c
echo 'part of change #824' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cShellSort.cls
echo 'part of change #824' >> ${WC}/trunk/subversion/libsvn_ra/ra_loader.c
echo 'part of change #824' >> ${WC}/trunk/tools/hook-scripts/README
echo 'part of change #824' >> ${WC}/trunk/subversion/include/svn_io.h
${SVN} commit -m 'commit #824' ${WC}/trunk/subversion/mod_dav_svn/activity.c ${WC}/trunk/subversion/clients/cmdline/prompt.c ${WC}/trunk/subversion/clients/win32/SVNControls/cShellSort.cls ${WC}/trunk/subversion/libsvn_ra/ra_loader.c ${WC}/trunk/tools/hook-scripts/README ${WC}/trunk/subversion/include/svn_io.h

################### change 825 ###################
echo ""
echo "Doing commit #825:"
echo 'part of change #825' >> ${WC}/trunk/doc/user/svnlook/svnlook.texi
echo 'part of change #825' >> ${WC}/trunk/subversion/tests/greek-tree.txt
echo 'part of change #825' >> ${WC}/trunk/subversion/libsvn_fs/skel.h
echo 'part of change #825' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaHandler.java
echo 'part of change #825' >> ${WC}/trunk/subversion/libsvn_client/client.h
${SVN} commit -m 'commit #825' ${WC}/trunk/doc/user/svnlook/svnlook.texi ${WC}/trunk/subversion/tests/greek-tree.txt ${WC}/trunk/subversion/libsvn_fs/skel.h ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaHandler.java ${WC}/trunk/subversion/libsvn_client/client.h

################### change 826 ###################
echo ""
echo "Doing commit #826:"
echo 'part of change #826' >> ${WC}/trunk/subversion/clients/win32/WinSVN/DriveHelpers.bas
echo 'part of change #826' >> ${WC}/trunk/subversion/libsvn_client/delete.c
echo 'part of change #826' >> ${WC}/trunk/subversion.dsw
echo 'part of change #826' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_test.dsp
echo 'part of change #826' >> ${WC}/trunk/build.conf
echo 'part of change #826' >> ${WC}/trunk/subversion/svnadmin/svnadmin.dsp
echo 'part of change #826' >> ${WC}/trunk/expat-lite/xmltok_ns.c
echo 'part of change #826' >> ${WC}/trunk/subversion/mod_dav_svn/activity.c
${SVN} commit -m 'commit #826' ${WC}/trunk/subversion/clients/win32/WinSVN/DriveHelpers.bas ${WC}/trunk/subversion/libsvn_client/delete.c ${WC}/trunk/subversion.dsw ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_test.dsp ${WC}/trunk/build.conf ${WC}/trunk/subversion/svnadmin/svnadmin.dsp ${WC}/trunk/expat-lite/xmltok_ns.c ${WC}/trunk/subversion/mod_dav_svn/activity.c

################### change 827 ###################
echo ""
echo "Doing commit #827:"
echo 'part of change #827' >> ${WC}/trunk/subversion/libsvn_ra_dav/util.c
echo 'part of change #827' >> ${WC}/trunk/doc/user/manual/svn-manual.texi
echo 'part of change #827' >> ${WC}/trunk/doc/programmer/design/svn-design.html
echo 'part of change #827' >> ${WC}/trunk/subversion/tests/libsvn_fs/key-test.c
echo 'part of change #827' >> ${WC}/trunk/expat-lite/xmlparse.c
echo 'part of change #827' >> ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h
echo 'part of change #827' >> ${WC}/trunk/subversion/libsvn_client/libsvn_client.dsp
${SVN} commit -m 'commit #827' ${WC}/trunk/subversion/libsvn_ra_dav/util.c ${WC}/trunk/doc/user/manual/svn-manual.texi ${WC}/trunk/doc/programmer/design/svn-design.html ${WC}/trunk/subversion/tests/libsvn_fs/key-test.c ${WC}/trunk/expat-lite/xmlparse.c ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h ${WC}/trunk/subversion/libsvn_client/libsvn_client.dsp

################### change 828 ###################
echo ""
echo "Doing commit #828:"
echo 'part of change #828' >> ${WC}/trunk/subversion/tests/libsvn_fs/skel_test.dsp
echo 'part of change #828' >> ${WC}/trunk/subversion/mod_dav_svn/activity.c
echo 'part of change #828' >> ${WC}/trunk/www/testing-goals.html
echo 'part of change #828' >> ${WC}/trunk/subversion/tests/libsvn_fs/strings-reps-test.c
echo 'part of change #828' >> ${WC}/trunk/subversion/clients/cmdline/help-cmd.c
echo 'part of change #828' >> ${WC}/trunk/subversion/libsvn_fs/rev-table.c
${SVN} commit -m 'commit #828' ${WC}/trunk/subversion/tests/libsvn_fs/skel_test.dsp ${WC}/trunk/subversion/mod_dav_svn/activity.c ${WC}/trunk/www/testing-goals.html ${WC}/trunk/subversion/tests/libsvn_fs/strings-reps-test.c ${WC}/trunk/subversion/clients/cmdline/help-cmd.c ${WC}/trunk/subversion/libsvn_fs/rev-table.c

################### change 829 ###################
echo ""
echo "Doing commit #829:"
echo 'part of change #829' >> ${WC}/trunk/www/project_bugs.html
echo 'part of change #829' >> ${WC}/trunk/subversion/libsvn_subr/svn_base64.c
echo 'part of change #829' >> ${WC}/trunk/subversion/tests/xml/up3.xml
echo 'part of change #829' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaWindow.java
echo 'part of change #829' >> ${WC}/trunk/notes/entries-handling.txt
echo 'part of change #829' >> ${WC}/trunk/notes/m3-checklist.txt
echo 'part of change #829' >> ${WC}/trunk/subversion/include/svn_string.h
echo 'part of change #829' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/README
echo 'part of change #829' >> ${WC}/trunk/subversion/libsvn_fs/reps-strings.c
echo 'part of change #829' >> ${WC}/trunk/subversion/libsvn_repos/hooks.txt
${SVN} commit -m 'commit #829' ${WC}/trunk/www/project_bugs.html ${WC}/trunk/subversion/libsvn_subr/svn_base64.c ${WC}/trunk/subversion/tests/xml/up3.xml ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaWindow.java ${WC}/trunk/notes/entries-handling.txt ${WC}/trunk/notes/m3-checklist.txt ${WC}/trunk/subversion/include/svn_string.h ${WC}/trunk/subversion/tests/libsvn_vcdiff/README ${WC}/trunk/subversion/libsvn_fs/reps-strings.c ${WC}/trunk/subversion/libsvn_repos/hooks.txt

################### change 830 ###################
echo ""
echo "Doing commit #830:"
echo 'part of change #830' >> ${WC}/trunk/subversion/clients/win32/SVNControls/ppgColumns.pag
echo 'part of change #830' >> ${WC}/trunk/notes/guis/README
echo 'part of change #830' >> ${WC}/trunk/tools/check-license.py
echo 'part of change #830' >> ${WC}/trunk/subversion/clients/win32/SVNControls/type.dat
echo 'part of change #830' >> ${WC}/trunk/subversion/mod_dav_svn/dav_svn.h
${SVN} commit -m 'commit #830' ${WC}/trunk/subversion/clients/win32/SVNControls/ppgColumns.pag ${WC}/trunk/notes/guis/README ${WC}/trunk/tools/check-license.py ${WC}/trunk/subversion/clients/win32/SVNControls/type.dat ${WC}/trunk/subversion/mod_dav_svn/dav_svn.h

################### change 831 ###################
echo ""
echo "Doing commit #831:"
echo 'part of change #831' >> ${WC}/trunk/subversion/clients/cmdline/feedback.c
echo 'part of change #831' >> ${WC}/trunk/subversion/include/svn_hash.h
echo 'part of change #831' >> ${WC}/trunk/subversion/libsvn_repos/lock.c
echo 'part of change #831' >> ${WC}/trunk/www/project_source.html
echo 'part of change #831' >> ${WC}/trunk/README
echo 'part of change #831' >> ${WC}/trunk/subversion/include/svn_wc.h
echo 'part of change #831' >> ${WC}/trunk/subversion/libsvn_ra/ra_loader.c
${SVN} commit -m 'commit #831' ${WC}/trunk/subversion/clients/cmdline/feedback.c ${WC}/trunk/subversion/include/svn_hash.h ${WC}/trunk/subversion/libsvn_repos/lock.c ${WC}/trunk/www/project_source.html ${WC}/trunk/README ${WC}/trunk/subversion/include/svn_wc.h ${WC}/trunk/subversion/libsvn_ra/ra_loader.c

################### change 832 ###################
echo ""
echo "Doing commit #832:"
echo 'part of change #832' >> ${WC}/trunk/subversion/libsvn_subr/svn_error.c
echo 'part of change #832' >> ${WC}/trunk/subversion/include/svn_ra.h
echo 'part of change #832' >> ${WC}/trunk/subversion/clients/win32/SVNControls/pTest.vbp
echo 'part of change #832' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.cpp
echo 'part of change #832' >> ${WC}/trunk/subversion/include/svn_error.h
echo 'part of change #832' >> ${WC}/trunk/expat-lite/xmlparse.h
${SVN} commit -m 'commit #832' ${WC}/trunk/subversion/libsvn_subr/svn_error.c ${WC}/trunk/subversion/include/svn_ra.h ${WC}/trunk/subversion/clients/win32/SVNControls/pTest.vbp ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.cpp ${WC}/trunk/subversion/include/svn_error.h ${WC}/trunk/expat-lite/xmlparse.h

################### change 833 ###################
echo ""
echo "Doing commit #833:"
echo 'part of change #833' >> ${WC}/trunk/subversion/libsvn_ra/libsvn_ra.dsp
echo 'part of change #833' >> ${WC}/trunk/subversion/libsvn_fs/rev-table.c
echo 'part of change #833' >> ${WC}/trunk/INSTALL
echo 'part of change #833' >> ${WC}/trunk/subversion/libsvn_delta/track_editor.c
echo 'part of change #833' >> ${WC}/trunk/subversion/libsvn_ra_local/split_url.c
echo 'part of change #833' >> ${WC}/trunk/subversion/libsvn_subr/sorts.c
echo 'part of change #833' >> ${WC}/trunk/www/webdav-usage.html
echo 'part of change #833' >> ${WC}/trunk/subversion/libsvn_fs/txn-table.c
${SVN} commit -m 'commit #833' ${WC}/trunk/subversion/libsvn_ra/libsvn_ra.dsp ${WC}/trunk/subversion/libsvn_fs/rev-table.c ${WC}/trunk/INSTALL ${WC}/trunk/subversion/libsvn_delta/track_editor.c ${WC}/trunk/subversion/libsvn_ra_local/split_url.c ${WC}/trunk/subversion/libsvn_subr/sorts.c ${WC}/trunk/www/webdav-usage.html ${WC}/trunk/subversion/libsvn_fs/txn-table.c

################### change 834 ###################
echo ""
echo "Doing commit #834:"
echo 'part of change #834' >> ${WC}/trunk/subversion/include/svn_test.h
echo 'part of change #834' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.mk
echo 'part of change #834' >> ${WC}/trunk/subversion/tests/clients/cmdline/svnadmin_tests.py
${SVN} commit -m 'commit #834' ${WC}/trunk/subversion/include/svn_test.h ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.mk ${WC}/trunk/subversion/tests/clients/cmdline/svnadmin_tests.py

################### change 835 ###################
echo ""
echo "Doing commit #835:"
echo 'part of change #835' >> ${WC}/trunk/subversion/tests/xml/pipatch.xml
echo 'part of change #835' >> ${WC}/trunk/configure.in
echo 'part of change #835' >> ${WC}/trunk/subversion/libsvn_client/cleanup.c
echo 'part of change #835' >> ${WC}/trunk/doc/svn-doc.el
echo 'part of change #835' >> ${WC}/trunk/www/project_footer.html
echo 'part of change #835' >> ${WC}/trunk/subversion/clients/cmdline/update-cmd.c
${SVN} commit -m 'commit #835' ${WC}/trunk/subversion/tests/xml/pipatch.xml ${WC}/trunk/configure.in ${WC}/trunk/subversion/libsvn_client/cleanup.c ${WC}/trunk/doc/svn-doc.el ${WC}/trunk/www/project_footer.html ${WC}/trunk/subversion/clients/cmdline/update-cmd.c

################### change 836 ###################
echo ""
echo "Doing commit #836:"
echo 'part of change #836' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt
echo 'part of change #836' >> ${WC}/trunk/subversion/libsvn_subr/xml.c
${SVN} commit -m 'commit #836' ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt ${WC}/trunk/subversion/libsvn_subr/xml.c

################### change 837 ###################
echo ""
echo "Doing commit #837:"
echo 'part of change #837' >> ${WC}/trunk/subversion/include/svn_time.h
echo 'part of change #837' >> ${WC}/trunk/subversion/tests/libsvn_subr/tests_libsvn_subr_target_test.dsp
echo 'part of change #837' >> ${WC}/trunk/subversion/tests/xml/up2.xml
echo 'part of change #837' >> ${WC}/trunk/expat-lite/xmlrole.c
echo 'part of change #837' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_test.dsp
echo 'part of change #837' >> ${WC}/trunk/subversion/libsvn_subr/getdate.c
echo 'part of change #837' >> ${WC}/trunk/subversion/libsvn_subr/svn_string.c
echo 'part of change #837' >> ${WC}/trunk/subversion/clients/cmdline/README
echo 'part of change #837' >> ${WC}/trunk/notes/entries-handling.txt
echo 'part of change #837' >> ${WC}/trunk/subversion/libsvn_client/client.h
${SVN} commit -m 'commit #837' ${WC}/trunk/subversion/include/svn_time.h ${WC}/trunk/subversion/tests/libsvn_subr/tests_libsvn_subr_target_test.dsp ${WC}/trunk/subversion/tests/xml/up2.xml ${WC}/trunk/expat-lite/xmlrole.c ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_test.dsp ${WC}/trunk/subversion/libsvn_subr/getdate.c ${WC}/trunk/subversion/libsvn_subr/svn_string.c ${WC}/trunk/subversion/clients/cmdline/README ${WC}/trunk/notes/entries-handling.txt ${WC}/trunk/subversion/libsvn_client/client.h

################### change 838 ###################
echo ""
echo "Doing commit #838:"
echo 'part of change #838' >> ${WC}/trunk/subversion/tests/libsvn_fs/skel_test.dsp
echo 'part of change #838' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cScrollBars.cls
echo 'part of change #838' >> ${WC}/trunk/subversion/tests/xml/up5.xml
echo 'part of change #838' >> ${WC}/trunk/tools/check-license.py
echo 'part of change #838' >> ${WC}/trunk/subversion/libsvn_repos/libsvn_repos.dsp
echo 'part of change #838' >> ${WC}/trunk/subversion/include/svn_delta.h
echo 'part of change #838' >> ${WC}/trunk/expat-lite/expat.html
echo 'part of change #838' >> ${WC}/trunk/doc/programmer/WritingChangeLogs.txt
echo 'part of change #838' >> ${WC}/trunk/subversion/libsvn_delta/xml_output.c
${SVN} commit -m 'commit #838' ${WC}/trunk/subversion/tests/libsvn_fs/skel_test.dsp ${WC}/trunk/subversion/clients/win32/SVNControls/cScrollBars.cls ${WC}/trunk/subversion/tests/xml/up5.xml ${WC}/trunk/tools/check-license.py ${WC}/trunk/subversion/libsvn_repos/libsvn_repos.dsp ${WC}/trunk/subversion/include/svn_delta.h ${WC}/trunk/expat-lite/expat.html ${WC}/trunk/doc/programmer/WritingChangeLogs.txt ${WC}/trunk/subversion/libsvn_delta/xml_output.c

################### change 839 ###################
echo ""
echo "Doing commit #839:"
echo 'part of change #839' >> ${WC}/trunk/doc/user/manual/model.texi
echo 'part of change #839' >> ${WC}/trunk/subversion/libsvn_ra/libsvn_ra.dsp
echo 'part of change #839' >> ${WC}/trunk/subversion/libsvn_fs/node-rev.h
echo 'part of change #839' >> ${WC}/trunk/subversion/libsvn_ra_dav/options.c
echo 'part of change #839' >> ${WC}/trunk/expat-lite/xmltok_ns.c
${SVN} commit -m 'commit #839' ${WC}/trunk/doc/user/manual/model.texi ${WC}/trunk/subversion/libsvn_ra/libsvn_ra.dsp ${WC}/trunk/subversion/libsvn_fs/node-rev.h ${WC}/trunk/subversion/libsvn_ra_dav/options.c ${WC}/trunk/expat-lite/xmltok_ns.c

################### change 840 ###################
echo ""
echo "Doing commit #840:"
echo 'part of change #840' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc
echo 'part of change #840' >> ${WC}/trunk/BUGS
echo 'part of change #840' >> ${WC}/trunk/subversion/include/svn_fs.h
echo 'part of change #840' >> ${WC}/trunk/doc/programmer/design/model.texi
echo 'part of change #840' >> ${WC}/trunk/subversion/libsvn_wc/adm_crawler.c
echo 'part of change #840' >> ${WC}/trunk/subversion/tests/libsvn_wc/commit_test.dsp
echo 'part of change #840' >> ${WC}/trunk/tools/hook-scripts/README
echo 'part of change #840' >> ${WC}/trunk/subversion/include/svn_xml.h
echo 'part of change #840' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.h
${SVN} commit -m 'commit #840' ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc ${WC}/trunk/BUGS ${WC}/trunk/subversion/include/svn_fs.h ${WC}/trunk/doc/programmer/design/model.texi ${WC}/trunk/subversion/libsvn_wc/adm_crawler.c ${WC}/trunk/subversion/tests/libsvn_wc/commit_test.dsp ${WC}/trunk/tools/hook-scripts/README ${WC}/trunk/subversion/include/svn_xml.h ${WC}/trunk/subversion/libsvn_fs/reps-table.h

################### change 841 ###################
echo ""
echo "Doing commit #841:"
echo 'part of change #841' >> ${WC}/trunk/subversion/clients/cmdline/main.c
echo 'part of change #841' >> ${WC}/trunk/doc/user/manual/model.texi
echo 'part of change #841' >> ${WC}/trunk/subversion/libsvn_subr/libsvn_subr.dsp
echo 'part of change #841' >> ${WC}/trunk/subversion/libsvn_fs/strings-table.c
echo 'part of change #841' >> ${WC}/trunk/subversion/include/svn_delta.h
echo 'part of change #841' >> ${WC}/trunk/subversion/libsvn_delta/text_delta.c
${SVN} commit -m 'commit #841' ${WC}/trunk/subversion/clients/cmdline/main.c ${WC}/trunk/doc/user/manual/model.texi ${WC}/trunk/subversion/libsvn_subr/libsvn_subr.dsp ${WC}/trunk/subversion/libsvn_fs/strings-table.c ${WC}/trunk/subversion/include/svn_delta.h ${WC}/trunk/subversion/libsvn_delta/text_delta.c

################### change 842 ###################
echo ""
echo "Doing commit #842:"
echo 'part of change #842' >> ${WC}/trunk/www/webdav-usage.html
echo 'part of change #842' >> ${WC}/trunk/doc/user/manual/svn-manual.texi
echo 'part of change #842' >> ${WC}/trunk/subversion/libsvn_ra_local/split_url.c
echo 'part of change #842' >> ${WC}/trunk/subversion/libsvn_subr/config.c
echo 'part of change #842' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target4.txt
echo 'part of change #842' >> ${WC}/trunk/subversion/mod_dav_svn/update.c
echo 'part of change #842' >> ${WC}/trunk/tools/cvs2svn/README
echo 'part of change #842' >> ${WC}/trunk/gen-make.py
${SVN} commit -m 'commit #842' ${WC}/trunk/www/webdav-usage.html ${WC}/trunk/doc/user/manual/svn-manual.texi ${WC}/trunk/subversion/libsvn_ra_local/split_url.c ${WC}/trunk/subversion/libsvn_subr/config.c ${WC}/trunk/subversion/tests/libsvn_vcdiff/target4.txt ${WC}/trunk/subversion/mod_dav_svn/update.c ${WC}/trunk/tools/cvs2svn/README ${WC}/trunk/gen-make.py

################### change 843 ###################
echo ""
echo "Doing commit #843:"
echo 'part of change #843' >> ${WC}/trunk/subversion/libsvn_subr/README.errors
echo 'part of change #843' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Entry.java
${SVN} commit -m 'commit #843' ${WC}/trunk/subversion/libsvn_subr/README.errors ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Entry.java

################### change 844 ###################
echo ""
echo "Doing commit #844:"
echo 'part of change #844' >> ${WC}/trunk/subversion/libsvn_client/commit.c
echo 'part of change #844' >> ${WC}/trunk/subversion/libsvn_fs/reps-strings.h
echo 'part of change #844' >> ${WC}/trunk/subversion/libsvn_fs/skel.h
${SVN} commit -m 'commit #844' ${WC}/trunk/subversion/libsvn_client/commit.c ${WC}/trunk/subversion/libsvn_fs/reps-strings.h ${WC}/trunk/subversion/libsvn_fs/skel.h

################### change 845 ###################
echo ""
echo "Doing commit #845:"
echo 'part of change #845' >> ${WC}/trunk/subversion/libsvn_wc/questions.c
echo 'part of change #845' >> ${WC}/trunk/notes/alpha-checklist.txt
echo 'part of change #845' >> ${WC}/trunk/notes/guis/planning.txt
echo 'part of change #845' >> ${WC}/trunk/subversion/libsvn_ra_dav/fetch.c
echo 'part of change #845' >> ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py
echo 'part of change #845' >> ${WC}/trunk/subversion/clients/win32/svn_com/svn_comCP.h
echo 'part of change #845' >> ${WC}/trunk/subversion/tests/libsvn_fs/fs_test.dsp
${SVN} commit -m 'commit #845' ${WC}/trunk/subversion/libsvn_wc/questions.c ${WC}/trunk/notes/alpha-checklist.txt ${WC}/trunk/notes/guis/planning.txt ${WC}/trunk/subversion/libsvn_ra_dav/fetch.c ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py ${WC}/trunk/subversion/clients/win32/svn_com/svn_comCP.h ${WC}/trunk/subversion/tests/libsvn_fs/fs_test.dsp

################### change 846 ###################
echo ""
echo "Doing commit #846:"
echo 'part of change #846' >> ${WC}/trunk/notes/m3-checklist.txt
echo 'part of change #846' >> ${WC}/trunk/notes/difftools/pics/xxdiff-README
echo 'part of change #846' >> ${WC}/trunk/subversion/clients/win32/SVNControls/ppgColumns.pag
echo 'part of change #846' >> ${WC}/trunk/tools/hook-scripts/README
echo 'part of change #846' >> ${WC}/trunk/subversion/libsvn_repos/hooks.c
echo 'part of change #846' >> ${WC}/trunk/subversion/libsvn_wc/Makefile
echo 'part of change #846' >> ${WC}/trunk/subversion/include/svn_quoprint.h
echo 'part of change #846' >> ${WC}/trunk/subversion/clients/win32/SVNControls/type.dat
${SVN} commit -m 'commit #846' ${WC}/trunk/notes/m3-checklist.txt ${WC}/trunk/notes/difftools/pics/xxdiff-README ${WC}/trunk/subversion/clients/win32/SVNControls/ppgColumns.pag ${WC}/trunk/tools/hook-scripts/README ${WC}/trunk/subversion/libsvn_repos/hooks.c ${WC}/trunk/subversion/libsvn_wc/Makefile ${WC}/trunk/subversion/include/svn_quoprint.h ${WC}/trunk/subversion/clients/win32/SVNControls/type.dat

################### change 847 ###################
echo ""
echo "Doing commit #847:"
echo 'part of change #847' >> ${WC}/trunk/subversion/libsvn_delta/xml_parse.c
echo 'part of change #847' >> ${WC}/trunk/TASKS
echo 'part of change #847' >> ${WC}/trunk/expat-lite/xmlrole.c
echo 'part of change #847' >> ${WC}/trunk/AUTHORS
echo 'part of change #847' >> ${WC}/trunk/notes/alpha-checklist.txt
echo 'part of change #847' >> ${WC}/trunk/subversion/libsvn_subr/io.c
echo 'part of change #847' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py
echo 'part of change #847' >> ${WC}/trunk/subversion/clients/cmdline/diff-cmd.c
${SVN} commit -m 'commit #847' ${WC}/trunk/subversion/libsvn_delta/xml_parse.c ${WC}/trunk/TASKS ${WC}/trunk/expat-lite/xmlrole.c ${WC}/trunk/AUTHORS ${WC}/trunk/notes/alpha-checklist.txt ${WC}/trunk/subversion/libsvn_subr/io.c ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py ${WC}/trunk/subversion/clients/cmdline/diff-cmd.c

################### change 848 ###################
echo ""
echo "Doing commit #848:"
echo 'part of change #848' >> ${WC}/trunk/subversion/tests/libsvn_delta/random-test.c
echo 'part of change #848' >> ${WC}/trunk/subversion/libsvn_delta/track_editor.c
echo 'part of change #848' >> ${WC}/trunk/subversion/include/svn_ra.h
echo 'part of change #848' >> ${WC}/trunk/subversion/include/svn_base64.h
echo 'part of change #848' >> ${WC}/trunk/subversion/libsvn_subr/time.c
echo 'part of change #848' >> ${WC}/trunk/subversion/clients/win32/WinSVN/ExplorerViewHelpers.cls
echo 'part of change #848' >> ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py
echo 'part of change #848' >> ${WC}/trunk/subversion/libsvn_ra_local/ra_local.h
echo 'part of change #848' >> ${WC}/trunk/subversion/libsvn_ra_dav/libsvn_ra_dav.dsp
echo 'part of change #848' >> ${WC}/trunk/subversion/clients/cmdline/trace-update.c
${SVN} commit -m 'commit #848' ${WC}/trunk/subversion/tests/libsvn_delta/random-test.c ${WC}/trunk/subversion/libsvn_delta/track_editor.c ${WC}/trunk/subversion/include/svn_ra.h ${WC}/trunk/subversion/include/svn_base64.h ${WC}/trunk/subversion/libsvn_subr/time.c ${WC}/trunk/subversion/clients/win32/WinSVN/ExplorerViewHelpers.cls ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py ${WC}/trunk/subversion/libsvn_ra_local/ra_local.h ${WC}/trunk/subversion/libsvn_ra_dav/libsvn_ra_dav.dsp ${WC}/trunk/subversion/clients/cmdline/trace-update.c

################### change 849 ###################
echo ""
echo "Doing commit #849:"
echo 'part of change #849' >> ${WC}/trunk/subversion/libsvn_ra_dav/merge.c
echo 'part of change #849' >> ${WC}/trunk/subversion/LICENSE
echo 'part of change #849' >> ${WC}/trunk/ac-helpers/ltmain.sh
echo 'part of change #849' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Entry.java
echo 'part of change #849' >> ${WC}/trunk/subversion/mod_dav_svn/deadprops.c
echo 'part of change #849' >> ${WC}/trunk/www/project_status.html
${SVN} commit -m 'commit #849' ${WC}/trunk/subversion/libsvn_ra_dav/merge.c ${WC}/trunk/subversion/LICENSE ${WC}/trunk/ac-helpers/ltmain.sh ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Entry.java ${WC}/trunk/subversion/mod_dav_svn/deadprops.c ${WC}/trunk/www/project_status.html

################### change 850 ###################
echo ""
echo "Doing commit #850:"
echo 'part of change #850' >> ${WC}/trunk/subversion/libsvn_fs/rev-table.c
echo 'part of change #850' >> ${WC}/trunk/subversion/libsvn_wc/adm_files.c
echo 'part of change #850' >> ${WC}/trunk/subversion/tests/clients/cmdline/README
echo 'part of change #850' >> ${WC}/trunk/notes/difftools/pics/FileMerge-README
echo 'part of change #850' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt
echo 'part of change #850' >> ${WC}/trunk/www/project_nav.html
echo 'part of change #850' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target5.txt
echo 'part of change #850' >> ${WC}/trunk/subversion/mod_dav_svn/version.c
${SVN} commit -m 'commit #850' ${WC}/trunk/subversion/libsvn_fs/rev-table.c ${WC}/trunk/subversion/libsvn_wc/adm_files.c ${WC}/trunk/subversion/tests/clients/cmdline/README ${WC}/trunk/notes/difftools/pics/FileMerge-README ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt ${WC}/trunk/www/project_nav.html ${WC}/trunk/subversion/tests/libsvn_vcdiff/target5.txt ${WC}/trunk/subversion/mod_dav_svn/version.c

################### change 851 ###################
echo ""
echo "Doing commit #851:"
echo 'part of change #851' >> ${WC}/trunk/subversion/tests/libsvn_fs/skel-test.c
echo 'part of change #851' >> ${WC}/trunk/subversion/libsvn_fs/strings-table.c
echo 'part of change #851' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmMain.frm
echo 'part of change #851' >> ${WC}/trunk/subversion/tests/libsvn_wc/simple.delta
echo 'part of change #851' >> ${WC}/trunk/subversion/libsvn_client/auth.c
${SVN} commit -m 'commit #851' ${WC}/trunk/subversion/tests/libsvn_fs/skel-test.c ${WC}/trunk/subversion/libsvn_fs/strings-table.c ${WC}/trunk/subversion/clients/win32/WinSVN/frmMain.frm ${WC}/trunk/subversion/tests/libsvn_wc/simple.delta ${WC}/trunk/subversion/libsvn_client/auth.c

################### change 852 ###################
echo ""
echo "Doing commit #852:"
echo 'part of change #852' >> ${WC}/trunk/subversion/libsvn_fs/rev-table.c
echo 'part of change #852' >> ${WC}/trunk/subversion/libsvn_fs/key-gen.c
echo 'part of change #852' >> ${WC}/trunk/subversion/clients/cmdline/import-cmd.c
echo 'part of change #852' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmTestMatrix.frm
echo 'part of change #852' >> ${WC}/trunk/expat-lite/nametab.h
echo 'part of change #852' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target4.txt
echo 'part of change #852' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmLogin.frm
echo 'part of change #852' >> ${WC}/trunk/subversion/tests/clients/cmdline/commit_tests.py
echo 'part of change #852' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta-test.c
${SVN} commit -m 'commit #852' ${WC}/trunk/subversion/libsvn_fs/rev-table.c ${WC}/trunk/subversion/libsvn_fs/key-gen.c ${WC}/trunk/subversion/clients/cmdline/import-cmd.c ${WC}/trunk/subversion/clients/win32/SVNControls/frmTestMatrix.frm ${WC}/trunk/expat-lite/nametab.h ${WC}/trunk/subversion/tests/libsvn_vcdiff/target4.txt ${WC}/trunk/subversion/clients/win32/WinSVN/frmLogin.frm ${WC}/trunk/subversion/tests/clients/cmdline/commit_tests.py ${WC}/trunk/subversion/tests/libsvn_delta/vdelta-test.c

################### change 853 ###################
echo ""
echo "Doing commit #853:"
echo 'part of change #853' >> ${WC}/trunk/subversion/bindings/svn_error.i
echo 'part of change #853' >> ${WC}/trunk/subversion/bindings/svn_io.i
echo 'part of change #853' >> ${WC}/trunk/subversion/tests/greek-tree.txt
echo 'part of change #853' >> ${WC}/trunk/subversion/clients/win32/SVNControls/mGDI.bas
${SVN} commit -m 'commit #853' ${WC}/trunk/subversion/bindings/svn_error.i ${WC}/trunk/subversion/bindings/svn_io.i ${WC}/trunk/subversion/tests/greek-tree.txt ${WC}/trunk/subversion/clients/win32/SVNControls/mGDI.bas

################### change 854 ###################
echo ""
echo "Doing commit #854:"
echo 'part of change #854' >> ${WC}/trunk/subversion/libsvn_subr/target.c
echo 'part of change #854' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Revision.java
echo 'part of change #854' >> ${WC}/trunk/subversion/mod_dav_svn/static/Makefile.in
echo 'part of change #854' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaWindow.java
${SVN} commit -m 'commit #854' ${WC}/trunk/subversion/libsvn_subr/target.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Revision.java ${WC}/trunk/subversion/mod_dav_svn/static/Makefile.in ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaWindow.java

################### change 855 ###################
echo ""
echo "Doing commit #855:"
echo 'part of change #855' >> ${WC}/trunk/notes/alpha-checklist.txt
echo 'part of change #855' >> ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.h
echo 'part of change #855' >> ${WC}/trunk/subversion/tests/xml/up1a-postfix.xml
echo 'part of change #855' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmTestMatrix.frm
echo 'part of change #855' >> ${WC}/trunk/tools/cvs2svn/cvs2svn.py
echo 'part of change #855' >> ${WC}/trunk/subversion/libsvn_delta/svndiff.c
echo 'part of change #855' >> ${WC}/trunk/subversion/clients/cmdline/prompt.c
echo 'part of change #855' >> ${WC}/trunk/subversion/libsvn_fs/err.h
${SVN} commit -m 'commit #855' ${WC}/trunk/notes/alpha-checklist.txt ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.h ${WC}/trunk/subversion/tests/xml/up1a-postfix.xml ${WC}/trunk/subversion/clients/win32/SVNControls/frmTestMatrix.frm ${WC}/trunk/tools/cvs2svn/cvs2svn.py ${WC}/trunk/subversion/libsvn_delta/svndiff.c ${WC}/trunk/subversion/clients/cmdline/prompt.c ${WC}/trunk/subversion/libsvn_fs/err.h

################### change 856 ###################
echo ""
echo "Doing commit #856:"
echo 'part of change #856' >> ${WC}/trunk/subversion/libsvn_wc/Makefile
echo 'part of change #856' >> ${WC}/trunk/doc/user/manual/svn-manual.html
echo 'part of change #856' >> ${WC}/trunk/subversion/svnadmin/svnadmin.dsp
echo 'part of change #856' >> ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h
echo 'part of change #856' >> ${WC}/trunk/subversion/tests/xml/up3.xml
echo 'part of change #856' >> ${WC}/trunk/STACK
echo 'part of change #856' >> ${WC}/trunk/subversion/clients/win32/svn_com/svn_com.dsp
echo 'part of change #856' >> ${WC}/trunk/notes/svndiff
echo 'part of change #856' >> ${WC}/trunk/doc/user/manual/README
${SVN} commit -m 'commit #856' ${WC}/trunk/subversion/libsvn_wc/Makefile ${WC}/trunk/doc/user/manual/svn-manual.html ${WC}/trunk/subversion/svnadmin/svnadmin.dsp ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h ${WC}/trunk/subversion/tests/xml/up3.xml ${WC}/trunk/STACK ${WC}/trunk/subversion/clients/win32/svn_com/svn_com.dsp ${WC}/trunk/notes/svndiff ${WC}/trunk/doc/user/manual/README

################### change 857 ###################
echo ""
echo "Doing commit #857:"
echo 'part of change #857' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py
echo 'part of change #857' >> ${WC}/trunk/subversion/libsvn_delta/delta.h
${SVN} commit -m 'commit #857' ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py ${WC}/trunk/subversion/libsvn_delta/delta.h

################### change 858 ###################
echo ""
echo "Doing commit #858:"
echo 'part of change #858' >> ${WC}/trunk/subversion/libsvn_fs/proplist.h
echo 'part of change #858' >> ${WC}/trunk/www/project_header.html
${SVN} commit -m 'commit #858' ${WC}/trunk/subversion/libsvn_fs/proplist.h ${WC}/trunk/www/project_header.html

################### change 859 ###################
echo ""
echo "Doing commit #859:"
echo 'part of change #859' >> ${WC}/trunk/expat-lite/xmlrole.c
echo 'part of change #859' >> ${WC}/trunk/expat-lite/xmltok_impl.c
echo 'part of change #859' >> ${WC}/trunk/notes/guis/pics/README
echo 'part of change #859' >> ${WC}/trunk/subversion/libsvn_fs/this-branch.txt
echo 'part of change #859' >> ${WC}/trunk/svn_config.dsp
echo 'part of change #859' >> ${WC}/trunk/NEWS
echo 'part of change #859' >> ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.ctl
echo 'part of change #859' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.def
echo 'part of change #859' >> ${WC}/trunk/build-outputs.mk
${SVN} commit -m 'commit #859' ${WC}/trunk/expat-lite/xmlrole.c ${WC}/trunk/expat-lite/xmltok_impl.c ${WC}/trunk/notes/guis/pics/README ${WC}/trunk/subversion/libsvn_fs/this-branch.txt ${WC}/trunk/svn_config.dsp ${WC}/trunk/NEWS ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.ctl ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.def ${WC}/trunk/build-outputs.mk

################### change 860 ###################
echo ""
echo "Doing commit #860:"
echo 'part of change #860' >> ${WC}/trunk/subversion/clients/cmdline/README
echo 'part of change #860' >> ${WC}/trunk/subversion/libsvn_subr/libsvn_subr.dsp
${SVN} commit -m 'commit #860' ${WC}/trunk/subversion/clients/cmdline/README ${WC}/trunk/subversion/libsvn_subr/libsvn_subr.dsp

################### change 861 ###################
echo ""
echo "Doing commit #861:"
echo 'part of change #861' >> ${WC}/trunk/subversion/libsvn_fs/id.c
echo 'part of change #861' >> ${WC}/trunk/subversion/libsvn_subr/xml.c
echo 'part of change #861' >> ${WC}/trunk/subversion/tests/libsvn_delta/svndiff-test.c
echo 'part of change #861' >> ${WC}/trunk/subversion/clients/win32/SVNControls/link.dat
echo 'part of change #861' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/README
echo 'part of change #861' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Entry.java
echo 'part of change #861' >> ${WC}/trunk/notes/old/draft-korn-vcdiff-01.txt
echo 'part of change #861' >> ${WC}/trunk/HACKING
echo 'part of change #861' >> ${WC}/trunk/subversion/libsvn_fs/node-rev.h
echo 'part of change #861' >> ${WC}/trunk/subversion/svn-dev.el
${SVN} commit -m 'commit #861' ${WC}/trunk/subversion/libsvn_fs/id.c ${WC}/trunk/subversion/libsvn_subr/xml.c ${WC}/trunk/subversion/tests/libsvn_delta/svndiff-test.c ${WC}/trunk/subversion/clients/win32/SVNControls/link.dat ${WC}/trunk/subversion/tests/libsvn_vcdiff/README ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Entry.java ${WC}/trunk/notes/old/draft-korn-vcdiff-01.txt ${WC}/trunk/HACKING ${WC}/trunk/subversion/libsvn_fs/node-rev.h ${WC}/trunk/subversion/svn-dev.el

################### change 862 ###################
echo ""
echo "Doing commit #862:"
echo 'part of change #862' >> ${WC}/trunk/notes/multi-args.txt
echo 'part of change #862' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/README
echo 'part of change #862' >> ${WC}/trunk/subversion/libsvn_subr/svn_error.c
echo 'part of change #862' >> ${WC}/trunk/subversion/libsvn_wc/adm_ops.c
echo 'part of change #862' >> ${WC}/trunk/subversion/libsvn_fs/key-gen.c
${SVN} commit -m 'commit #862' ${WC}/trunk/notes/multi-args.txt ${WC}/trunk/subversion/tests/libsvn_vcdiff/README ${WC}/trunk/subversion/libsvn_subr/svn_error.c ${WC}/trunk/subversion/libsvn_wc/adm_ops.c ${WC}/trunk/subversion/libsvn_fs/key-gen.c

################### change 863 ###################
echo ""
echo "Doing commit #863:"
echo 'part of change #863' >> ${WC}/trunk/subversion/libsvn_fs/fs.h
${SVN} commit -m 'commit #863' ${WC}/trunk/subversion/libsvn_fs/fs.h

################### change 864 ###################
echo ""
echo "Doing commit #864:"
echo 'part of change #864' >> ${WC}/trunk/doc/programmer/design/future.texi
echo 'part of change #864' >> ${WC}/trunk/www/project_tasks.html
echo 'part of change #864' >> ${WC}/trunk/doc/programmer/design/svn-design.html
echo 'part of change #864' >> ${WC}/trunk/doc/programmer/design/deltas.texi
echo 'part of change #864' >> ${WC}/trunk/notes/guis/pics/README
${SVN} commit -m 'commit #864' ${WC}/trunk/doc/programmer/design/future.texi ${WC}/trunk/www/project_tasks.html ${WC}/trunk/doc/programmer/design/svn-design.html ${WC}/trunk/doc/programmer/design/deltas.texi ${WC}/trunk/notes/guis/pics/README

################### change 865 ###################
echo ""
echo "Doing commit #865:"
echo 'part of change #865' >> ${WC}/trunk/subversion/libsvn_wc/libsvn_wc.dsp
echo 'part of change #865' >> ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.ctl
echo 'part of change #865' >> ${WC}/trunk/subversion/mod_dav_svn/version.c
${SVN} commit -m 'commit #865' ${WC}/trunk/subversion/libsvn_wc/libsvn_wc.dsp ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.ctl ${WC}/trunk/subversion/mod_dav_svn/version.c

################### change 866 ###################
echo ""
echo "Doing commit #866:"
echo 'part of change #866' >> ${WC}/trunk/subversion/libsvn_delta/libsvn_delta.dsp
echo 'part of change #866' >> ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp
echo 'part of change #866' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_1.txt
echo 'part of change #866' >> ${WC}/trunk/subversion/libsvn_fs/txn-table.c
echo 'part of change #866' >> ${WC}/trunk/subversion/libsvn_subr/svn_string.c
echo 'part of change #866' >> ${WC}/trunk/subversion/libsvn_fs/libsvn_fs.dsp
echo 'part of change #866' >> ${WC}/trunk/subversion/clients/win32/SVNControls/link.dat
echo 'part of change #866' >> ${WC}/trunk/subversion/clients/win32/WinSVN/WinSVN.vbp
${SVN} commit -m 'commit #866' ${WC}/trunk/subversion/libsvn_delta/libsvn_delta.dsp ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_1.txt ${WC}/trunk/subversion/libsvn_fs/txn-table.c ${WC}/trunk/subversion/libsvn_subr/svn_string.c ${WC}/trunk/subversion/libsvn_fs/libsvn_fs.dsp ${WC}/trunk/subversion/clients/win32/SVNControls/link.dat ${WC}/trunk/subversion/clients/win32/WinSVN/WinSVN.vbp

################### change 867 ###################
echo ""
echo "Doing commit #867:"
echo 'part of change #867' >> ${WC}/trunk/subversion/svnadmin/svnadmin.dsp
echo 'part of change #867' >> ${WC}/trunk/subversion/libsvn_client/update.c
echo 'part of change #867' >> ${WC}/trunk/subversion/libsvn_repos/libsvn_repos.dsp
echo 'part of change #867' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_test.dsp
echo 'part of change #867' >> ${WC}/trunk/build.conf
${SVN} commit -m 'commit #867' ${WC}/trunk/subversion/svnadmin/svnadmin.dsp ${WC}/trunk/subversion/libsvn_client/update.c ${WC}/trunk/subversion/libsvn_repos/libsvn_repos.dsp ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_test.dsp ${WC}/trunk/build.conf

################### change 868 ###################
echo ""
echo "Doing commit #868:"
echo 'part of change #868' >> ${WC}/trunk/subversion/libsvn_ra_dav/merge.c
echo 'part of change #868' >> ${WC}/trunk/notes/m3-checklist.txt
echo 'part of change #868' >> ${WC}/trunk/subversion/include/svn_io.h
${SVN} commit -m 'commit #868' ${WC}/trunk/subversion/libsvn_ra_dav/merge.c ${WC}/trunk/notes/m3-checklist.txt ${WC}/trunk/subversion/include/svn_io.h

################### change 869 ###################
echo ""
echo "Doing commit #869:"
echo 'part of change #869' >> ${WC}/trunk/subversion/tests/README
echo 'part of change #869' >> ${WC}/trunk/subversion/libsvn_subr/getdate.y
echo 'part of change #869' >> ${WC}/trunk/www/index.html
echo 'part of change #869' >> ${WC}/trunk/expat-lite/expat.html
echo 'part of change #869' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc
${SVN} commit -m 'commit #869' ${WC}/trunk/subversion/tests/README ${WC}/trunk/subversion/libsvn_subr/getdate.y ${WC}/trunk/www/index.html ${WC}/trunk/expat-lite/expat.html ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc

################### change 870 ###################
echo ""
echo "Doing commit #870:"
echo 'part of change #870' >> ${WC}/trunk/subversion/libsvn_client/checkout.c
echo 'part of change #870' >> ${WC}/trunk/subversion/clients/cmdline/diff-cmd.c
echo 'part of change #870' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Client.java
echo 'part of change #870' >> ${WC}/trunk/subversion/bindings/svn_wc.i
echo 'part of change #870' >> ${WC}/trunk/subversion/tests/libsvn_test_main.dsp
echo 'part of change #870' >> ${WC}/trunk/subversion/include/svn_xml.h
echo 'part of change #870' >> ${WC}/trunk/doc/programmer/design/svn-design.html
echo 'part of change #870' >> ${WC}/trunk/subversion/libsvn_wc/get_editor.c
echo 'part of change #870' >> ${WC}/trunk/subversion/tests/xml/up1b-postfix.xml
echo 'part of change #870' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookDemo.frm
${SVN} commit -m 'commit #870' ${WC}/trunk/subversion/libsvn_client/checkout.c ${WC}/trunk/subversion/clients/cmdline/diff-cmd.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Client.java ${WC}/trunk/subversion/bindings/svn_wc.i ${WC}/trunk/subversion/tests/libsvn_test_main.dsp ${WC}/trunk/subversion/include/svn_xml.h ${WC}/trunk/doc/programmer/design/svn-design.html ${WC}/trunk/subversion/libsvn_wc/get_editor.c ${WC}/trunk/subversion/tests/xml/up1b-postfix.xml ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookDemo.frm

################### change 871 ###################
echo ""
echo "Doing commit #871:"
echo 'part of change #871' >> ${WC}/trunk/expat-lite/nametab.h
echo 'part of change #871' >> ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta
echo 'part of change #871' >> ${WC}/trunk/subversion/clients/win32/SVNControls/pTest.vbp
echo 'part of change #871' >> ${WC}/trunk/subversion/libsvn_repos/commit_editor.c
echo 'part of change #871' >> ${WC}/trunk/doc/programmer/WritingChangeLogs.txt
echo 'part of change #871' >> ${WC}/trunk/ac-helpers/svn-apache.m4
echo 'part of change #871' >> ${WC}/trunk/subversion/include/svn_time.h
echo 'part of change #871' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Reporter.java
echo 'part of change #871' >> ${WC}/trunk/subversion/LICENSE
echo 'part of change #871' >> ${WC}/trunk/subversion/bindings/svn_client.i
${SVN} commit -m 'commit #871' ${WC}/trunk/expat-lite/nametab.h ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta ${WC}/trunk/subversion/clients/win32/SVNControls/pTest.vbp ${WC}/trunk/subversion/libsvn_repos/commit_editor.c ${WC}/trunk/doc/programmer/WritingChangeLogs.txt ${WC}/trunk/ac-helpers/svn-apache.m4 ${WC}/trunk/subversion/include/svn_time.h ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Reporter.java ${WC}/trunk/subversion/LICENSE ${WC}/trunk/subversion/bindings/svn_client.i

################### change 872 ###################
echo ""
echo "Doing commit #872:"
echo 'part of change #872' >> ${WC}/trunk/subversion/clients/cmdline/cl.h
echo 'part of change #872' >> ${WC}/trunk/subversion/clients/win32/svn_com/svn_com.dsp
echo 'part of change #872' >> ${WC}/trunk/subversion/clients/win32/SVNControls/gDevGrid.vbg
echo 'part of change #872' >> ${WC}/trunk/www/project_tasks.html
echo 'part of change #872' >> ${WC}/trunk/subversion/clients/cmdline/commit-cmd.c
echo 'part of change #872' >> ${WC}/trunk/subversion/tests/libsvn_fs/skel_test.dsp
echo 'part of change #872' >> ${WC}/trunk/ac-helpers/ltmain.sh
echo 'part of change #872' >> ${WC}/trunk/ac-helpers/berkeley-db.m4
${SVN} commit -m 'commit #872' ${WC}/trunk/subversion/clients/cmdline/cl.h ${WC}/trunk/subversion/clients/win32/svn_com/svn_com.dsp ${WC}/trunk/subversion/clients/win32/SVNControls/gDevGrid.vbg ${WC}/trunk/www/project_tasks.html ${WC}/trunk/subversion/clients/cmdline/commit-cmd.c ${WC}/trunk/subversion/tests/libsvn_fs/skel_test.dsp ${WC}/trunk/ac-helpers/ltmain.sh ${WC}/trunk/ac-helpers/berkeley-db.m4

################### change 873 ###################
echo ""
echo "Doing commit #873:"
echo 'part of change #873' >> ${WC}/trunk/subversion/tests/libsvn_fs/strings-reps-test.c
echo 'part of change #873' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TreeDeltaEditor.java
echo 'part of change #873' >> ${WC}/trunk/subversion/tests/libsvn_fs/key-test.c
echo 'part of change #873' >> ${WC}/trunk/subversion/libsvn_delta/README.xmlparse
echo 'part of change #873' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cFlatHeader.cls
echo 'part of change #873' >> ${WC}/trunk/subversion/include/svn_error_codes.h
${SVN} commit -m 'commit #873' ${WC}/trunk/subversion/tests/libsvn_fs/strings-reps-test.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TreeDeltaEditor.java ${WC}/trunk/subversion/tests/libsvn_fs/key-test.c ${WC}/trunk/subversion/libsvn_delta/README.xmlparse ${WC}/trunk/subversion/clients/win32/SVNControls/cFlatHeader.cls ${WC}/trunk/subversion/include/svn_error_codes.h

################### change 874 ###################
echo ""
echo "Doing commit #874:"
echo 'part of change #874' >> ${WC}/trunk/subversion/clients/win32/SVNControls/gDevGrid.vbg
echo 'part of change #874' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt
echo 'part of change #874' >> ${WC}/trunk/subversion/libsvn_fs/fs.c
${SVN} commit -m 'commit #874' ${WC}/trunk/subversion/clients/win32/SVNControls/gDevGrid.vbg ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt ${WC}/trunk/subversion/libsvn_fs/fs.c

################### change 875 ###################
echo ""
echo "Doing commit #875:"
echo 'part of change #875' >> ${WC}/trunk/doc/programmer/WritingChangeLogs.txt
echo 'part of change #875' >> ${WC}/trunk/subversion/tests/xml/up1a-postfix.xml
echo 'part of change #875' >> ${WC}/trunk/subversion/libsvn_client/delete.c
echo 'part of change #875' >> ${WC}/trunk/subversion/tests/libsvn_subr/tests_libsvn_subr_target_test.dsp
${SVN} commit -m 'commit #875' ${WC}/trunk/doc/programmer/WritingChangeLogs.txt ${WC}/trunk/subversion/tests/xml/up1a-postfix.xml ${WC}/trunk/subversion/libsvn_client/delete.c ${WC}/trunk/subversion/tests/libsvn_subr/tests_libsvn_subr_target_test.dsp

################### change 876 ###################
echo ""
echo "Doing commit #876:"
echo 'part of change #876' >> ${WC}/trunk/doc/programmer/design/client.texi
echo 'part of change #876' >> ${WC}/trunk/subversion/mod_dav_svn/liveprops.c
echo 'part of change #876' >> ${WC}/trunk/subversion/clients/win32/svn_com/misc.cpp
echo 'part of change #876' >> ${WC}/trunk/notes/svn-config-files
echo 'part of change #876' >> ${WC}/trunk/subversion/libsvn_wc/status.c
${SVN} commit -m 'commit #876' ${WC}/trunk/doc/programmer/design/client.texi ${WC}/trunk/subversion/mod_dav_svn/liveprops.c ${WC}/trunk/subversion/clients/win32/svn_com/misc.cpp ${WC}/trunk/notes/svn-config-files ${WC}/trunk/subversion/libsvn_wc/status.c

################### change 877 ###################
echo ""
echo "Doing commit #877:"
echo 'part of change #877' >> ${WC}/trunk/subversion/libsvn_fs/tree.h
echo 'part of change #877' >> ${WC}/trunk/subversion/include/svn_client.h
echo 'part of change #877' >> ${WC}/trunk/subversion/tests/libsvn_wc/commit-test.c
echo 'part of change #877' >> ${WC}/trunk/subversion/clients/win32/WinSVN/WinSVN.vbp
echo 'part of change #877' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaOp.java
echo 'part of change #877' >> ${WC}/trunk/configure.in
echo 'part of change #877' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.h
echo 'part of change #877' >> ${WC}/trunk/subversion/libsvn_ra/libsvn_ra.dsp
echo 'part of change #877' >> ${WC}/trunk/notes/svndiff
echo 'part of change #877' >> ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.h
${SVN} commit -m 'commit #877' ${WC}/trunk/subversion/libsvn_fs/tree.h ${WC}/trunk/subversion/include/svn_client.h ${WC}/trunk/subversion/tests/libsvn_wc/commit-test.c ${WC}/trunk/subversion/clients/win32/WinSVN/WinSVN.vbp ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaOp.java ${WC}/trunk/configure.in ${WC}/trunk/subversion/libsvn_fs/reps-table.h ${WC}/trunk/subversion/libsvn_ra/libsvn_ra.dsp ${WC}/trunk/notes/svndiff ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.h

################### change 878 ###################
echo ""
echo "Doing commit #878:"
echo 'part of change #878' >> ${WC}/trunk/expat-lite/CHANGES.svn
echo 'part of change #878' >> ${WC}/trunk/subversion/clients/win32/SVNControls/ppgMain.pag
echo 'part of change #878' >> ${WC}/trunk/subversion/libsvn_ra/ra_loader.c
echo 'part of change #878' >> ${WC}/trunk/expat-lite/xmltok.h
echo 'part of change #878' >> ${WC}/trunk/ChangeLog.CVS
echo 'part of change #878' >> ${WC}/trunk/subversion/libsvn_ra_dav/merge.c
echo 'part of change #878' >> ${WC}/trunk/subversion/clients/cmdline/status.c
${SVN} commit -m 'commit #878' ${WC}/trunk/expat-lite/CHANGES.svn ${WC}/trunk/subversion/clients/win32/SVNControls/ppgMain.pag ${WC}/trunk/subversion/libsvn_ra/ra_loader.c ${WC}/trunk/expat-lite/xmltok.h ${WC}/trunk/ChangeLog.CVS ${WC}/trunk/subversion/libsvn_ra_dav/merge.c ${WC}/trunk/subversion/clients/cmdline/status.c

################### change 879 ###################
echo ""
echo "Doing commit #879:"
echo 'part of change #879' >> ${WC}/trunk/tools/hook-scripts/README
echo 'part of change #879' >> ${WC}/trunk/subversion/include/svn_time.h
echo 'part of change #879' >> ${WC}/trunk/subversion/libsvn_subr/getdate.cw
echo 'part of change #879' >> ${WC}/trunk/subversion/libsvn_subr/quoprint.c
echo 'part of change #879' >> ${WC}/trunk/subversion/include/svn_test.h
echo 'part of change #879' >> ${WC}/trunk/subversion/libsvn_fs/key-gen.h
${SVN} commit -m 'commit #879' ${WC}/trunk/tools/hook-scripts/README ${WC}/trunk/subversion/include/svn_time.h ${WC}/trunk/subversion/libsvn_subr/getdate.cw ${WC}/trunk/subversion/libsvn_subr/quoprint.c ${WC}/trunk/subversion/include/svn_test.h ${WC}/trunk/subversion/libsvn_fs/key-gen.h

################### change 880 ###################
echo ""
echo "Doing commit #880:"
echo 'part of change #880' >> ${WC}/trunk/subversion/libsvn_fs/txn.c
echo 'part of change #880' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookDemo.frm
echo 'part of change #880' >> ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp
echo 'part of change #880' >> ${WC}/trunk/subversion/libsvn_fs/err.c
echo 'part of change #880' >> ${WC}/trunk/subversion/libsvn_client/libsvn_client.dsp
echo 'part of change #880' >> ${WC}/trunk/subversion/include/svn_config.h
${SVN} commit -m 'commit #880' ${WC}/trunk/subversion/libsvn_fs/txn.c ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookDemo.frm ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp ${WC}/trunk/subversion/libsvn_fs/err.c ${WC}/trunk/subversion/libsvn_client/libsvn_client.dsp ${WC}/trunk/subversion/include/svn_config.h

################### change 881 ###################
echo ""
echo "Doing commit #881:"
echo 'part of change #881' >> ${WC}/trunk/subversion/libsvn_wc/log.c
echo 'part of change #881' >> ${WC}/trunk/subversion/libsvn_client/revert.c
echo 'part of change #881' >> ${WC}/trunk/subversion/tests/fs-helpers.c
echo 'part of change #881' >> ${WC}/trunk/subversion/libsvn_fs/tree.h
echo 'part of change #881' >> ${WC}/trunk/expat-lite/xmlrole.h
echo 'part of change #881' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.h
echo 'part of change #881' >> ${WC}/trunk/subversion/libsvn_fs/dbt.c
${SVN} commit -m 'commit #881' ${WC}/trunk/subversion/libsvn_wc/log.c ${WC}/trunk/subversion/libsvn_client/revert.c ${WC}/trunk/subversion/tests/fs-helpers.c ${WC}/trunk/subversion/libsvn_fs/tree.h ${WC}/trunk/expat-lite/xmlrole.h ${WC}/trunk/subversion/clients/win32/svn_com/SVN.h ${WC}/trunk/subversion/libsvn_fs/dbt.c

################### change 882 ###################
echo ""
echo "Doing commit #882:"
echo 'part of change #882' >> ${WC}/trunk/subversion/libsvn_fs/trail.c
echo 'part of change #882' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookGroup.frm
echo 'part of change #882' >> ${WC}/trunk/subversion.dsp
echo 'part of change #882' >> ${WC}/trunk/subversion/libsvn_fs/nodes-table.h
echo 'part of change #882' >> ${WC}/trunk/subversion/libsvn_fs/skel.c
${SVN} commit -m 'commit #882' ${WC}/trunk/subversion/libsvn_fs/trail.c ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookGroup.frm ${WC}/trunk/subversion.dsp ${WC}/trunk/subversion/libsvn_fs/nodes-table.h ${WC}/trunk/subversion/libsvn_fs/skel.c

################### change 883 ###################
echo ""
echo "Doing commit #883:"
echo 'part of change #883' >> ${WC}/trunk/subversion/libsvn_client/commit.c
echo 'part of change #883' >> ${WC}/trunk/subversion/tests/xml/up2.xml
echo 'part of change #883' >> ${WC}/trunk/doc/user/manual/license.texi
echo 'part of change #883' >> ${WC}/trunk/subversion/include/svn_client.h
echo 'part of change #883' >> ${WC}/trunk/tools/hook-scripts/README
echo 'part of change #883' >> ${WC}/trunk/expat-lite/iasciitab.h
${SVN} commit -m 'commit #883' ${WC}/trunk/subversion/libsvn_client/commit.c ${WC}/trunk/subversion/tests/xml/up2.xml ${WC}/trunk/doc/user/manual/license.texi ${WC}/trunk/subversion/include/svn_client.h ${WC}/trunk/tools/hook-scripts/README ${WC}/trunk/expat-lite/iasciitab.h

################### change 884 ###################
echo ""
echo "Doing commit #884:"
echo 'part of change #884' >> ${WC}/trunk/subversion/libsvn_ra_local/ra_local.h
echo 'part of change #884' >> ${WC}/trunk/subversion/include/svn_types.h
echo 'part of change #884' >> ${WC}/trunk/www/project_nav.html
echo 'part of change #884' >> ${WC}/trunk/subversion/tests/libsvn_delta/random-test.c
echo 'part of change #884' >> ${WC}/trunk/doc/user/manual/svn-manual.html
echo 'part of change #884' >> ${WC}/trunk/subversion/libsvn_ra_dav/merge.c
echo 'part of change #884' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Status.java
echo 'part of change #884' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmVirtual.frm
echo 'part of change #884' >> ${WC}/trunk/subversion/bindings/apr.i
${SVN} commit -m 'commit #884' ${WC}/trunk/subversion/libsvn_ra_local/ra_local.h ${WC}/trunk/subversion/include/svn_types.h ${WC}/trunk/www/project_nav.html ${WC}/trunk/subversion/tests/libsvn_delta/random-test.c ${WC}/trunk/doc/user/manual/svn-manual.html ${WC}/trunk/subversion/libsvn_ra_dav/merge.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Status.java ${WC}/trunk/subversion/clients/win32/SVNControls/frmVirtual.frm ${WC}/trunk/subversion/bindings/apr.i

################### change 885 ###################
echo ""
echo "Doing commit #885:"
echo 'part of change #885' >> ${WC}/trunk/subversion/tests/xml/up1a-postfix.xml
echo 'part of change #885' >> ${WC}/trunk/www/project_footer.html
echo 'part of change #885' >> ${WC}/trunk/svn_private_config.hw
echo 'part of change #885' >> ${WC}/trunk/subversion/libsvn_subr/time.c
echo 'part of change #885' >> ${WC}/trunk/ac-helpers/ltconfig
echo 'part of change #885' >> ${WC}/trunk/ac-helpers/svn-apache.m4
echo 'part of change #885' >> ${WC}/trunk/subversion/include/svn_quoprint.h
echo 'part of change #885' >> ${WC}/trunk/subversion/libsvn_fs/skel.c
echo 'part of change #885' >> ${WC}/trunk/subversion/clients/cmdline/propset-cmd.c
echo 'part of change #885' >> ${WC}/trunk/expat-lite/nametab.h
${SVN} commit -m 'commit #885' ${WC}/trunk/subversion/tests/xml/up1a-postfix.xml ${WC}/trunk/www/project_footer.html ${WC}/trunk/svn_private_config.hw ${WC}/trunk/subversion/libsvn_subr/time.c ${WC}/trunk/ac-helpers/ltconfig ${WC}/trunk/ac-helpers/svn-apache.m4 ${WC}/trunk/subversion/include/svn_quoprint.h ${WC}/trunk/subversion/libsvn_fs/skel.c ${WC}/trunk/subversion/clients/cmdline/propset-cmd.c ${WC}/trunk/expat-lite/nametab.h

################### change 886 ###################
echo ""
echo "Doing commit #886:"
echo 'part of change #886' >> ${WC}/trunk/subversion/include/svn_base64.h
${SVN} commit -m 'commit #886' ${WC}/trunk/subversion/include/svn_base64.h

################### change 887 ###################
echo ""
echo "Doing commit #887:"
echo 'part of change #887' >> ${WC}/trunk/notes/entries-handling.txt
echo 'part of change #887' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.mk
echo 'part of change #887' >> ${WC}/trunk/subversion/libsvn_client/status.c
echo 'part of change #887' >> ${WC}/trunk/doc/user/manual/adds.texi
echo 'part of change #887' >> ${WC}/trunk/subversion/mod_dav_svn/liveprops.c
echo 'part of change #887' >> ${WC}/trunk/STACK
${SVN} commit -m 'commit #887' ${WC}/trunk/notes/entries-handling.txt ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.mk ${WC}/trunk/subversion/libsvn_client/status.c ${WC}/trunk/doc/user/manual/adds.texi ${WC}/trunk/subversion/mod_dav_svn/liveprops.c ${WC}/trunk/STACK

################### change 888 ###################
echo ""
echo "Doing commit #888:"
echo 'part of change #888' >> ${WC}/trunk/subversion/mod_dav_svn/repos.c
echo 'part of change #888' >> ${WC}/trunk/subversion/bindings/apr.i
echo 'part of change #888' >> ${WC}/trunk/subversion/tests/libsvn_repos/md5args.c
echo 'part of change #888' >> ${WC}/trunk/subversion/tests/xml/up-props.xml
echo 'part of change #888' >> ${WC}/trunk/subversion/include/svn_wc.h
echo 'part of change #888' >> ${WC}/trunk/subversion/libsvn_ra_local/libsvn_ra_local.dsp
echo 'part of change #888' >> ${WC}/trunk/subversion/libsvn_client/add.c
echo 'part of change #888' >> ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.h
echo 'part of change #888' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaHandler.java
${SVN} commit -m 'commit #888' ${WC}/trunk/subversion/mod_dav_svn/repos.c ${WC}/trunk/subversion/bindings/apr.i ${WC}/trunk/subversion/tests/libsvn_repos/md5args.c ${WC}/trunk/subversion/tests/xml/up-props.xml ${WC}/trunk/subversion/include/svn_wc.h ${WC}/trunk/subversion/libsvn_ra_local/libsvn_ra_local.dsp ${WC}/trunk/subversion/libsvn_client/add.c ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.h ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaHandler.java

################### change 889 ###################
echo ""
echo "Doing commit #889:"
echo 'part of change #889' >> ${WC}/trunk/subversion/clients/cmdline/import-cmd.c
echo 'part of change #889' >> ${WC}/trunk/subversion/bindings/svn_wc.i
echo 'part of change #889' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/entry.py
echo 'part of change #889' >> ${WC}/trunk/doc/programmer/design/model.texi
echo 'part of change #889' >> ${WC}/trunk/subversion/tests/fs-helpers.h
echo 'part of change #889' >> ${WC}/trunk/subversion/libsvn_subr/time.c
echo 'part of change #889' >> ${WC}/trunk/subversion/libsvn_fs/err.h
${SVN} commit -m 'commit #889' ${WC}/trunk/subversion/clients/cmdline/import-cmd.c ${WC}/trunk/subversion/bindings/svn_wc.i ${WC}/trunk/subversion/tests/clients/cmdline/svntest/entry.py ${WC}/trunk/doc/programmer/design/model.texi ${WC}/trunk/subversion/tests/fs-helpers.h ${WC}/trunk/subversion/libsvn_subr/time.c ${WC}/trunk/subversion/libsvn_fs/err.h

################### change 890 ###################
echo ""
echo "Doing commit #890:"
echo 'part of change #890' >> ${WC}/trunk/subversion/tests/libsvn_fs/fs-test.c
echo 'part of change #890' >> ${WC}/trunk/PORTING
echo 'part of change #890' >> ${WC}/trunk/expat-lite/CHANGES.svn
${SVN} commit -m 'commit #890' ${WC}/trunk/subversion/tests/libsvn_fs/fs-test.c ${WC}/trunk/PORTING ${WC}/trunk/expat-lite/CHANGES.svn

################### change 891 ###################
echo ""
echo "Doing commit #891:"
echo 'part of change #891' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaWindow.java
echo 'part of change #891' >> ${WC}/trunk/subversion/tests/libsvn_fs/fs-test.c
echo 'part of change #891' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.h
echo 'part of change #891' >> ${WC}/trunk/subversion/libsvn_wc/log.c
echo 'part of change #891' >> ${WC}/trunk/subversion/libsvn_subr/path.c
echo 'part of change #891' >> ${WC}/trunk/subversion/include/svn_time.h
echo 'part of change #891' >> ${WC}/trunk/doc/programmer/design/client.texi
echo 'part of change #891' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmAbout.frm
${SVN} commit -m 'commit #891' ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaWindow.java ${WC}/trunk/subversion/tests/libsvn_fs/fs-test.c ${WC}/trunk/subversion/libsvn_fs/reps-table.h ${WC}/trunk/subversion/libsvn_wc/log.c ${WC}/trunk/subversion/libsvn_subr/path.c ${WC}/trunk/subversion/include/svn_time.h ${WC}/trunk/doc/programmer/design/client.texi ${WC}/trunk/subversion/clients/win32/WinSVN/frmAbout.frm

################### change 892 ###################
echo ""
echo "Doing commit #892:"
echo 'part of change #892' >> ${WC}/trunk/subversion/mod_dav_svn/deadprops.c
echo 'part of change #892' >> ${WC}/trunk/doc/programmer/design/architecture.texi
echo 'part of change #892' >> ${WC}/trunk/build-outputs.mk
echo 'part of change #892' >> ${WC}/trunk/subversion/libsvn_wc/Makefile
echo 'part of change #892' >> ${WC}/trunk/subversion/libsvn_wc/status.c
${SVN} commit -m 'commit #892' ${WC}/trunk/subversion/mod_dav_svn/deadprops.c ${WC}/trunk/doc/programmer/design/architecture.texi ${WC}/trunk/build-outputs.mk ${WC}/trunk/subversion/libsvn_wc/Makefile ${WC}/trunk/subversion/libsvn_wc/status.c

################### change 893 ###################
echo ""
echo "Doing commit #893:"
echo 'part of change #893' >> ${WC}/trunk/subversion/tests/xml/README
echo 'part of change #893' >> ${WC}/trunk/subversion/libsvn_client/commit.c
echo 'part of change #893' >> ${WC}/trunk/BUGS
echo 'part of change #893' >> ${WC}/trunk/expat-lite/utf8tab.h
echo 'part of change #893' >> ${WC}/trunk/subversion/libsvn_ra/libsvn_ra.dsp
${SVN} commit -m 'commit #893' ${WC}/trunk/subversion/tests/xml/README ${WC}/trunk/subversion/libsvn_client/commit.c ${WC}/trunk/BUGS ${WC}/trunk/expat-lite/utf8tab.h ${WC}/trunk/subversion/libsvn_ra/libsvn_ra.dsp

################### change 894 ###################
echo ""
echo "Doing commit #894:"
echo 'part of change #894' >> ${WC}/trunk/svn_check.dsp
echo 'part of change #894' >> ${WC}/trunk/doc/user/svnlook/svnlook.texi
${SVN} commit -m 'commit #894' ${WC}/trunk/svn_check.dsp ${WC}/trunk/doc/user/svnlook/svnlook.texi

################### change 895 ###################
echo ""
echo "Doing commit #895:"
echo 'part of change #895' >> ${WC}/trunk/subversion/libsvn_ra_local/split_url.c
echo 'part of change #895' >> ${WC}/trunk/subversion/libsvn_wc/adm_ops.c
echo 'part of change #895' >> ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.h
echo 'part of change #895' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Reporter.java
echo 'part of change #895' >> ${WC}/trunk/ChangeLog.CVS
echo 'part of change #895' >> ${WC}/trunk/subversion/libsvn_client/libsvn_client.dsp
echo 'part of change #895' >> ${WC}/trunk/subversion/libsvn_wc/get_editor.c
echo 'part of change #895' >> ${WC}/trunk/subversion/libsvn_ra_dav/util.c
echo 'part of change #895' >> ${WC}/trunk/subversion/libsvn_delta/vdelta.c
echo 'part of change #895' >> ${WC}/trunk/subversion/tests/libsvn_delta/simple.delta
${SVN} commit -m 'commit #895' ${WC}/trunk/subversion/libsvn_ra_local/split_url.c ${WC}/trunk/subversion/libsvn_wc/adm_ops.c ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.h ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Reporter.java ${WC}/trunk/ChangeLog.CVS ${WC}/trunk/subversion/libsvn_client/libsvn_client.dsp ${WC}/trunk/subversion/libsvn_wc/get_editor.c ${WC}/trunk/subversion/libsvn_ra_dav/util.c ${WC}/trunk/subversion/libsvn_delta/vdelta.c ${WC}/trunk/subversion/tests/libsvn_delta/simple.delta

################### change 896 ###################
echo ""
echo "Doing commit #896:"
echo 'part of change #896' >> ${WC}/trunk/subversion/clients/cmdline/revert-cmd.c
echo 'part of change #896' >> ${WC}/trunk/subversion/libsvn_ra/ra_loader.c
echo 'part of change #896' >> ${WC}/trunk/subversion/tests/xml/up1b-postfix.xml
echo 'part of change #896' >> ${WC}/trunk/subversion/bindings/svn_string.i
echo 'part of change #896' >> ${WC}/trunk/subversion/bindings/java/jni/README
echo 'part of change #896' >> ${WC}/trunk/subversion/svnadmin/main.c
echo 'part of change #896' >> ${WC}/trunk/notes/difftools/pics/README
${SVN} commit -m 'commit #896' ${WC}/trunk/subversion/clients/cmdline/revert-cmd.c ${WC}/trunk/subversion/libsvn_ra/ra_loader.c ${WC}/trunk/subversion/tests/xml/up1b-postfix.xml ${WC}/trunk/subversion/bindings/svn_string.i ${WC}/trunk/subversion/bindings/java/jni/README ${WC}/trunk/subversion/svnadmin/main.c ${WC}/trunk/notes/difftools/pics/README

################### change 897 ###################
echo ""
echo "Doing commit #897:"
echo 'part of change #897' >> ${WC}/trunk/subversion/LICENSE
echo 'part of change #897' >> ${WC}/trunk/subversion/tests/xml/up5.xml
echo 'part of change #897' >> ${WC}/trunk/subversion/tests/xml/up1b-postfix.xml
echo 'part of change #897' >> ${WC}/trunk/subversion/clients/win32/SVNControls/ppgMain.pag
echo 'part of change #897' >> ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.ctl
echo 'part of change #897' >> ${WC}/trunk/subversion/libsvn_fs/skel.h
echo 'part of change #897' >> ${WC}/trunk/subversion/libsvn_subr/svn_string.c
echo 'part of change #897' >> ${WC}/trunk/subversion/svnadmin/main.c
echo 'part of change #897' >> ${WC}/trunk/notes/guis/README
echo 'part of change #897' >> ${WC}/trunk/subversion/libsvn_fs/reps-strings.c
${SVN} commit -m 'commit #897' ${WC}/trunk/subversion/LICENSE ${WC}/trunk/subversion/tests/xml/up5.xml ${WC}/trunk/subversion/tests/xml/up1b-postfix.xml ${WC}/trunk/subversion/clients/win32/SVNControls/ppgMain.pag ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.ctl ${WC}/trunk/subversion/libsvn_fs/skel.h ${WC}/trunk/subversion/libsvn_subr/svn_string.c ${WC}/trunk/subversion/svnadmin/main.c ${WC}/trunk/notes/guis/README ${WC}/trunk/subversion/libsvn_fs/reps-strings.c

################### change 898 ###################
echo ""
echo "Doing commit #898:"
echo 'part of change #898' >> ${WC}/trunk/subversion/libsvn_fs/reps-strings.h
echo 'part of change #898' >> ${WC}/trunk/subversion/clients/cmdline/prompt.c
echo 'part of change #898' >> ${WC}/trunk/doc/programmer/WritingChangeLogs.txt
echo 'part of change #898' >> ${WC}/trunk/subversion/tests/libsvn_subr/path-test.c
echo 'part of change #898' >> ${WC}/trunk/notes/old/draft-korn-vcdiff-01.txt
echo 'part of change #898' >> ${WC}/trunk/subversion/bindings/svn_types.i
echo 'part of change #898' >> ${WC}/trunk/subversion/tests/xml/up1b-postfix.xml
echo 'part of change #898' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py
echo 'part of change #898' >> ${WC}/trunk/subversion/bindings/svn_client.i
${SVN} commit -m 'commit #898' ${WC}/trunk/subversion/libsvn_fs/reps-strings.h ${WC}/trunk/subversion/clients/cmdline/prompt.c ${WC}/trunk/doc/programmer/WritingChangeLogs.txt ${WC}/trunk/subversion/tests/libsvn_subr/path-test.c ${WC}/trunk/notes/old/draft-korn-vcdiff-01.txt ${WC}/trunk/subversion/bindings/svn_types.i ${WC}/trunk/subversion/tests/xml/up1b-postfix.xml ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py ${WC}/trunk/subversion/bindings/svn_client.i

################### change 899 ###################
echo ""
echo "Doing commit #899:"
echo 'part of change #899' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.h
echo 'part of change #899' >> ${WC}/trunk/notes/svn-config-files
echo 'part of change #899' >> ${WC}/trunk/notes/svndiff
echo 'part of change #899' >> ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp
echo 'part of change #899' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaOp.java
echo 'part of change #899' >> ${WC}/trunk/notes/delta.dtd
${SVN} commit -m 'commit #899' ${WC}/trunk/subversion/libsvn_fs/reps-table.h ${WC}/trunk/notes/svn-config-files ${WC}/trunk/notes/svndiff ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaOp.java ${WC}/trunk/notes/delta.dtd

################### change 900 ###################
echo ""
echo "Doing commit #900:"
echo 'part of change #900' >> ${WC}/trunk/notes/txdelta_sanity
echo 'part of change #900' >> ${WC}/trunk/ac-helpers/berkeley-db.m4
echo 'part of change #900' >> ${WC}/trunk/subversion/libsvn_fs/nodes-table.c
echo 'part of change #900' >> ${WC}/trunk/subversion/libsvn_ra_local/split_url.c
echo 'part of change #900' >> ${WC}/trunk/expat-lite/asciitab.h
echo 'part of change #900' >> ${WC}/trunk/svn_private_config.h.in
echo 'part of change #900' >> ${WC}/trunk/expat-lite/xmltok_ns.c
echo 'part of change #900' >> ${WC}/trunk/subversion/libsvn_client/commit.c
echo 'part of change #900' >> ${WC}/trunk/tools/cvs2svn/design-notes.txt
${SVN} commit -m 'commit #900' ${WC}/trunk/notes/txdelta_sanity ${WC}/trunk/ac-helpers/berkeley-db.m4 ${WC}/trunk/subversion/libsvn_fs/nodes-table.c ${WC}/trunk/subversion/libsvn_ra_local/split_url.c ${WC}/trunk/expat-lite/asciitab.h ${WC}/trunk/svn_private_config.h.in ${WC}/trunk/expat-lite/xmltok_ns.c ${WC}/trunk/subversion/libsvn_client/commit.c ${WC}/trunk/tools/cvs2svn/design-notes.txt

################### change 901 ###################
echo ""
echo "Doing commit #901:"
echo 'part of change #901' >> ${WC}/trunk/doc/programmer/design/svn-design.txt
echo 'part of change #901' >> ${WC}/trunk/subversion/tests/fs-helpers.c
echo 'part of change #901' >> ${WC}/trunk/ac-helpers/ltconfig
echo 'part of change #901' >> ${WC}/trunk/subversion/bindings/svn_types.i
echo 'part of change #901' >> ${WC}/trunk/subversion/libsvn_ra_dav/util.c
echo 'part of change #901' >> ${WC}/trunk/subversion/libsvn_delta/libsvn_delta.dsp
echo 'part of change #901' >> ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.vbp
echo 'part of change #901' >> ${WC}/trunk/subversion/libsvn_subr/getdate.c
echo 'part of change #901' >> ${WC}/trunk/subversion/mod_dav_svn/static/README
${SVN} commit -m 'commit #901' ${WC}/trunk/doc/programmer/design/svn-design.txt ${WC}/trunk/subversion/tests/fs-helpers.c ${WC}/trunk/ac-helpers/ltconfig ${WC}/trunk/subversion/bindings/svn_types.i ${WC}/trunk/subversion/libsvn_ra_dav/util.c ${WC}/trunk/subversion/libsvn_delta/libsvn_delta.dsp ${WC}/trunk/subversion/clients/win32/SVNControls/SGrid.vbp ${WC}/trunk/subversion/libsvn_subr/getdate.c ${WC}/trunk/subversion/mod_dav_svn/static/README

################### change 902 ###################
echo ""
echo "Doing commit #902:"
echo 'part of change #902' >> ${WC}/trunk/subversion/libsvn_delta/default_editor.c
echo 'part of change #902' >> ${WC}/trunk/subversion/tests/libsvn_delta/simple.delta
echo 'part of change #902' >> ${WC}/trunk/subversion/tests/libsvn_repos/repos-test.c
echo 'part of change #902' >> ${WC}/trunk/subversion/tests/clients/cmdline/svnadmin_tests.py
echo 'part of change #902' >> ${WC}/trunk/subversion/libsvn_wc/entries.c
echo 'part of change #902' >> ${WC}/trunk/subversion/libsvn_wc/Makefile
echo 'part of change #902' >> ${WC}/trunk/subversion/libsvn_subr/xml.c
${SVN} commit -m 'commit #902' ${WC}/trunk/subversion/libsvn_delta/default_editor.c ${WC}/trunk/subversion/tests/libsvn_delta/simple.delta ${WC}/trunk/subversion/tests/libsvn_repos/repos-test.c ${WC}/trunk/subversion/tests/clients/cmdline/svnadmin_tests.py ${WC}/trunk/subversion/libsvn_wc/entries.c ${WC}/trunk/subversion/libsvn_wc/Makefile ${WC}/trunk/subversion/libsvn_subr/xml.c

################### change 903 ###################
echo ""
echo "Doing commit #903:"
echo 'part of change #903' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.def
echo 'part of change #903' >> ${WC}/trunk/subversion/include/svn_xml.h
echo 'part of change #903' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cShellSort.cls
${SVN} commit -m 'commit #903' ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.def ${WC}/trunk/subversion/include/svn_xml.h ${WC}/trunk/subversion/clients/win32/SVNControls/cShellSort.cls

################### change 904 ###################
echo ""
echo "Doing commit #904:"
echo 'part of change #904' >> ${WC}/trunk/subversion/clients/win32/svn_com/resource.h
echo 'part of change #904' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookDemo.frm
echo 'part of change #904' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_test.dsp
echo 'part of change #904' >> ${WC}/trunk/subversion/libsvn_delta/libsvn_delta.dsp
echo 'part of change #904' >> ${WC}/trunk/subversion/bindings/java/jni/README
echo 'part of change #904' >> ${WC}/trunk/notes/svn-config-files
${SVN} commit -m 'commit #904' ${WC}/trunk/subversion/clients/win32/svn_com/resource.h ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookDemo.frm ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_test.dsp ${WC}/trunk/subversion/libsvn_delta/libsvn_delta.dsp ${WC}/trunk/subversion/bindings/java/jni/README ${WC}/trunk/notes/svn-config-files

################### change 905 ###################
echo ""
echo "Doing commit #905:"
echo 'part of change #905' >> ${WC}/trunk/subversion/clients/win32/SVNControls/link.dat
echo 'part of change #905' >> ${WC}/trunk/subversion/libsvn_subr/svn_base64.c
echo 'part of change #905' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta-test.c
echo 'part of change #905' >> ${WC}/trunk/subversion/libsvn_ra/libsvn_ra.dsp
echo 'part of change #905' >> ${WC}/trunk/subversion/libsvn_ra_dav/util.c
echo 'part of change #905' >> ${WC}/trunk/expat-lite/asciitab.h
echo 'part of change #905' >> ${WC}/trunk/subversion/tests/xml/up5.xml
${SVN} commit -m 'commit #905' ${WC}/trunk/subversion/clients/win32/SVNControls/link.dat ${WC}/trunk/subversion/libsvn_subr/svn_base64.c ${WC}/trunk/subversion/tests/libsvn_delta/vdelta-test.c ${WC}/trunk/subversion/libsvn_ra/libsvn_ra.dsp ${WC}/trunk/subversion/libsvn_ra_dav/util.c ${WC}/trunk/expat-lite/asciitab.h ${WC}/trunk/subversion/tests/xml/up5.xml

################### change 906 ###################
echo ""
echo "Doing commit #906:"
echo 'part of change #906' >> ${WC}/trunk/subversion/clients/cmdline/status-cmd.c
echo 'part of change #906' >> ${WC}/trunk/subversion/bindings/svn_error.i
echo 'part of change #906' >> ${WC}/trunk/subversion/clients/win32/svn_com/svn_comCP.h
echo 'part of change #906' >> ${WC}/trunk/subversion/tests/svn_test_editor.c
echo 'part of change #906' >> ${WC}/trunk/tools/cvs2svn/README
${SVN} commit -m 'commit #906' ${WC}/trunk/subversion/clients/cmdline/status-cmd.c ${WC}/trunk/subversion/bindings/svn_error.i ${WC}/trunk/subversion/clients/win32/svn_com/svn_comCP.h ${WC}/trunk/subversion/tests/svn_test_editor.c ${WC}/trunk/tools/cvs2svn/README

################### change 907 ###################
echo ""
echo "Doing commit #907:"
echo 'part of change #907' >> ${WC}/trunk/subversion/include/svn_string.h
echo 'part of change #907' >> ${WC}/trunk/www/project_nav.html
echo 'part of change #907' >> ${WC}/trunk/HACKING
echo 'part of change #907' >> ${WC}/trunk/subversion/clients/cmdline/util.c
echo 'part of change #907' >> ${WC}/trunk/www/testing-goals.html
echo 'part of change #907' >> ${WC}/trunk/subversion/clients/win32/SVNControls/gDevGrid.vbg
echo 'part of change #907' >> ${WC}/trunk/subversion/tests/libsvn_wc/simple.delta
${SVN} commit -m 'commit #907' ${WC}/trunk/subversion/include/svn_string.h ${WC}/trunk/www/project_nav.html ${WC}/trunk/HACKING ${WC}/trunk/subversion/clients/cmdline/util.c ${WC}/trunk/www/testing-goals.html ${WC}/trunk/subversion/clients/win32/SVNControls/gDevGrid.vbg ${WC}/trunk/subversion/tests/libsvn_wc/simple.delta

################### change 908 ###################
echo ""
echo "Doing commit #908:"
echo 'part of change #908' >> ${WC}/trunk/subversion/include/svn_path.h
echo 'part of change #908' >> ${WC}/trunk/Makefile.in
echo 'part of change #908' >> ${WC}/trunk/PORTING
echo 'part of change #908' >> ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta
echo 'part of change #908' >> ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h
echo 'part of change #908' >> ${WC}/trunk/www/testing-goals.html
echo 'part of change #908' >> ${WC}/trunk/subversion/libsvn_subr/getdate.c
${SVN} commit -m 'commit #908' ${WC}/trunk/subversion/include/svn_path.h ${WC}/trunk/Makefile.in ${WC}/trunk/PORTING ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h ${WC}/trunk/www/testing-goals.html ${WC}/trunk/subversion/libsvn_subr/getdate.c

################### change 909 ###################
echo ""
echo "Doing commit #909:"
echo 'part of change #909' >> ${WC}/trunk/subversion/libsvn_fs/fs.h
echo 'part of change #909' >> ${WC}/trunk/subversion/libsvn_repos/commit_editor.c
echo 'part of change #909' >> ${WC}/trunk/subversion/mod_dav_svn/deadprops.c
echo 'part of change #909' >> ${WC}/trunk/subversion/tests/libsvn_repos/repos_test.dsp
echo 'part of change #909' >> ${WC}/trunk/notes/guis/README
echo 'part of change #909' >> ${WC}/trunk/tools/cvs2svn/README
echo 'part of change #909' >> ${WC}/trunk/subversion.dsw
echo 'part of change #909' >> ${WC}/trunk/subversion/include/svn_string.h
echo 'part of change #909' >> ${WC}/trunk/www/project_source.html
${SVN} commit -m 'commit #909' ${WC}/trunk/subversion/libsvn_fs/fs.h ${WC}/trunk/subversion/libsvn_repos/commit_editor.c ${WC}/trunk/subversion/mod_dav_svn/deadprops.c ${WC}/trunk/subversion/tests/libsvn_repos/repos_test.dsp ${WC}/trunk/notes/guis/README ${WC}/trunk/tools/cvs2svn/README ${WC}/trunk/subversion.dsw ${WC}/trunk/subversion/include/svn_string.h ${WC}/trunk/www/project_source.html

################### change 910 ###################
echo ""
echo "Doing commit #910:"
echo 'part of change #910' >> ${WC}/trunk/subversion/mod_dav_svn/mod_dav_svn.c
echo 'part of change #910' >> ${WC}/trunk/subversion/libsvn_subr/svn_string.c
echo 'part of change #910' >> ${WC}/trunk/subversion/clients/win32/svn_com/misc.h
echo 'part of change #910' >> ${WC}/trunk/doc/programmer/design/architecture.texi
echo 'part of change #910' >> ${WC}/trunk/ChangeLog.CVS
echo 'part of change #910' >> ${WC}/trunk/subversion/mod_dav_svn/merge.c
echo 'part of change #910' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_1.txt
echo 'part of change #910' >> ${WC}/trunk/subversion/include/svn_base64.h
echo 'part of change #910' >> ${WC}/trunk/doc/programmer/design/architecture.texi
${SVN} commit -m 'commit #910' ${WC}/trunk/subversion/mod_dav_svn/mod_dav_svn.c ${WC}/trunk/subversion/libsvn_subr/svn_string.c ${WC}/trunk/subversion/clients/win32/svn_com/misc.h ${WC}/trunk/doc/programmer/design/architecture.texi ${WC}/trunk/ChangeLog.CVS ${WC}/trunk/subversion/mod_dav_svn/merge.c ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_1.txt ${WC}/trunk/subversion/include/svn_base64.h ${WC}/trunk/doc/programmer/design/architecture.texi

################### change 911 ###################
echo ""
echo "Doing commit #911:"
echo 'part of change #911' >> ${WC}/trunk/subversion/libsvn_fs/proplist.c
echo 'part of change #911' >> ${WC}/trunk/doc/programmer/design/svn-design.html
${SVN} commit -m 'commit #911' ${WC}/trunk/subversion/libsvn_fs/proplist.c ${WC}/trunk/doc/programmer/design/svn-design.html

################### change 912 ###################
echo ""
echo "Doing commit #912:"
echo 'part of change #912' >> ${WC}/trunk/subversion/libsvn_client/diff.c
echo 'part of change #912' >> ${WC}/trunk/notes/difftools/README
echo 'part of change #912' >> ${WC}/trunk/subversion/libsvn_fs/txn.h
echo 'part of change #912' >> ${WC}/trunk/README
echo 'part of change #912' >> ${WC}/trunk/doc/user/manual/svn-manual.txt
echo 'part of change #912' >> ${WC}/trunk/subversion/libsvn_subr/io.c
echo 'part of change #912' >> ${WC}/trunk/notes/guis/pics/ClearCase-lsvtree-README
echo 'part of change #912' >> ${WC}/trunk/expat-lite/xmlparse.c
echo 'part of change #912' >> ${WC}/trunk/subversion/libsvn_client/auth.c
${SVN} commit -m 'commit #912' ${WC}/trunk/subversion/libsvn_client/diff.c ${WC}/trunk/notes/difftools/README ${WC}/trunk/subversion/libsvn_fs/txn.h ${WC}/trunk/README ${WC}/trunk/doc/user/manual/svn-manual.txt ${WC}/trunk/subversion/libsvn_subr/io.c ${WC}/trunk/notes/guis/pics/ClearCase-lsvtree-README ${WC}/trunk/expat-lite/xmlparse.c ${WC}/trunk/subversion/libsvn_client/auth.c

################### change 913 ###################
echo ""
echo "Doing commit #913:"
echo 'part of change #913' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaWindow.java
echo 'part of change #913' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmVirtual.frm
echo 'part of change #913' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target0.txt
${SVN} commit -m 'commit #913' ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaWindow.java ${WC}/trunk/subversion/clients/win32/SVNControls/frmVirtual.frm ${WC}/trunk/subversion/tests/libsvn_vcdiff/target0.txt

################### change 914 ###################
echo ""
echo "Doing commit #914:"
echo 'part of change #914' >> ${WC}/trunk/subversion/libsvn_client/status.c
echo 'part of change #914' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cHeaderControl.cls
echo 'part of change #914' >> ${WC}/trunk/subversion/include/svn_wc.h
echo 'part of change #914' >> ${WC}/trunk/expat-lite/latin1tab.h
echo 'part of change #914' >> ${WC}/trunk/subversion/mod_dav_svn/static/Makefile.in
echo 'part of change #914' >> ${WC}/trunk/subversion/libsvn_subr/sorts.c
echo 'part of change #914' >> ${WC}/trunk/subversion/libsvn_fs/fs.h
echo 'part of change #914' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmLogin.frm
echo 'part of change #914' >> ${WC}/trunk/doc/user/manual/svn-manual.html
echo 'part of change #914' >> ${WC}/trunk/subversion/libsvn_subr/svn_error.c
${SVN} commit -m 'commit #914' ${WC}/trunk/subversion/libsvn_client/status.c ${WC}/trunk/subversion/clients/win32/SVNControls/cHeaderControl.cls ${WC}/trunk/subversion/include/svn_wc.h ${WC}/trunk/expat-lite/latin1tab.h ${WC}/trunk/subversion/mod_dav_svn/static/Makefile.in ${WC}/trunk/subversion/libsvn_subr/sorts.c ${WC}/trunk/subversion/libsvn_fs/fs.h ${WC}/trunk/subversion/clients/win32/WinSVN/frmLogin.frm ${WC}/trunk/doc/user/manual/svn-manual.html ${WC}/trunk/subversion/libsvn_subr/svn_error.c

################### change 915 ###################
echo ""
echo "Doing commit #915:"
echo 'part of change #915' >> ${WC}/trunk/expat-lite/asciitab.h
echo 'part of change #915' >> ${WC}/trunk/subversion/tests/libsvn_wc/checkout-test.c
echo 'part of change #915' >> ${WC}/trunk/subversion/libsvn_repos/hooks.c
echo 'part of change #915' >> ${WC}/trunk/subversion/mod_dav_svn/static/README
echo 'part of change #915' >> ${WC}/trunk/subversion/tests/xml/up5.xml
echo 'part of change #915' >> ${WC}/trunk/notes/old/karlnotes
echo 'part of change #915' >> ${WC}/trunk/subversion/clients/cmdline/propset-cmd.c
echo 'part of change #915' >> ${WC}/trunk/subversion/mod_dav_svn/mod_dav_svn.c
echo 'part of change #915' >> ${WC}/trunk/subversion/include/svn_pools.h
echo 'part of change #915' >> ${WC}/trunk/expat-lite/xmlparse.h
${SVN} commit -m 'commit #915' ${WC}/trunk/expat-lite/asciitab.h ${WC}/trunk/subversion/tests/libsvn_wc/checkout-test.c ${WC}/trunk/subversion/libsvn_repos/hooks.c ${WC}/trunk/subversion/mod_dav_svn/static/README ${WC}/trunk/subversion/tests/xml/up5.xml ${WC}/trunk/notes/old/karlnotes ${WC}/trunk/subversion/clients/cmdline/propset-cmd.c ${WC}/trunk/subversion/mod_dav_svn/mod_dav_svn.c ${WC}/trunk/subversion/include/svn_pools.h ${WC}/trunk/expat-lite/xmlparse.h

################### change 916 ###################
echo ""
echo "Doing commit #916:"
echo 'part of change #916' >> ${WC}/trunk/subversion/libsvn_fs/strings-table.c
echo 'part of change #916' >> ${WC}/trunk/subversion/tests/libsvn_fs/fs-test.c
echo 'part of change #916' >> ${WC}/trunk/subversion/libsvn_fs/strings-table.c
${SVN} commit -m 'commit #916' ${WC}/trunk/subversion/libsvn_fs/strings-table.c ${WC}/trunk/subversion/tests/libsvn_fs/fs-test.c ${WC}/trunk/subversion/libsvn_fs/strings-table.c

################### change 917 ###################
echo ""
echo "Doing commit #917:"
echo 'part of change #917' >> ${WC}/trunk/COPYING
echo 'part of change #917' >> ${WC}/trunk/expat-lite/xmltok_impl.h
echo 'part of change #917' >> ${WC}/trunk/notes/issues.txt
echo 'part of change #917' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmLogin.frm
echo 'part of change #917' >> ${WC}/trunk/subversion/libsvn_fs/node-rev.c
echo 'part of change #917' >> ${WC}/trunk/doc/programmer/design/svn-design.html
echo 'part of change #917' >> ${WC}/trunk/subversion/include/svn_error.h
${SVN} commit -m 'commit #917' ${WC}/trunk/COPYING ${WC}/trunk/expat-lite/xmltok_impl.h ${WC}/trunk/notes/issues.txt ${WC}/trunk/subversion/clients/win32/WinSVN/frmLogin.frm ${WC}/trunk/subversion/libsvn_fs/node-rev.c ${WC}/trunk/doc/programmer/design/svn-design.html ${WC}/trunk/subversion/include/svn_error.h

################### change 918 ###################
echo ""
echo "Doing commit #918:"
echo 'part of change #918' >> ${WC}/trunk/subversion/libsvn_repos/lock.c
${SVN} commit -m 'commit #918' ${WC}/trunk/subversion/libsvn_repos/lock.c

################### change 919 ###################
echo ""
echo "Doing commit #919:"
echo 'part of change #919' >> ${WC}/trunk/subversion/libsvn_fs/this-branch.txt
echo 'part of change #919' >> ${WC}/trunk/subversion/libsvn_ra_local/libsvn_ra_local.dsp
echo 'part of change #919' >> ${WC}/trunk/PORTING
echo 'part of change #919' >> ${WC}/trunk/subversion/clients/win32/WinSVN/DriveHelpers.bas
echo 'part of change #919' >> ${WC}/trunk/subversion/tests/libsvn_fs/fs_test.dsp
echo 'part of change #919' >> ${WC}/trunk/subversion/libsvn_fs/err.c
echo 'part of change #919' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaOp.java
echo 'part of change #919' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.rgs
echo 'part of change #919' >> ${WC}/trunk/subversion/libsvn_delta/text_delta.c
${SVN} commit -m 'commit #919' ${WC}/trunk/subversion/libsvn_fs/this-branch.txt ${WC}/trunk/subversion/libsvn_ra_local/libsvn_ra_local.dsp ${WC}/trunk/PORTING ${WC}/trunk/subversion/clients/win32/WinSVN/DriveHelpers.bas ${WC}/trunk/subversion/tests/libsvn_fs/fs_test.dsp ${WC}/trunk/subversion/libsvn_fs/err.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaOp.java ${WC}/trunk/subversion/clients/win32/svn_com/SVN.rgs ${WC}/trunk/subversion/libsvn_delta/text_delta.c

################### change 920 ###################
echo ""
echo "Doing commit #920:"
echo 'part of change #920' >> ${WC}/trunk/STACK
echo 'part of change #920' >> ${WC}/trunk/expat-lite/iasciitab.h
echo 'part of change #920' >> ${WC}/trunk/notes/delta.dtd
echo 'part of change #920' >> ${WC}/trunk/tools/cvs2svn/CheckedClass.pm
echo 'part of change #920' >> ${WC}/trunk/subversion/mod_dav_svn/static/README
echo 'part of change #920' >> ${WC}/trunk/subversion/clients/win32/svn_com/resource.h
${SVN} commit -m 'commit #920' ${WC}/trunk/STACK ${WC}/trunk/expat-lite/iasciitab.h ${WC}/trunk/notes/delta.dtd ${WC}/trunk/tools/cvs2svn/CheckedClass.pm ${WC}/trunk/subversion/mod_dav_svn/static/README ${WC}/trunk/subversion/clients/win32/svn_com/resource.h

################### change 921 ###################
echo ""
echo "Doing commit #921:"
echo 'part of change #921' >> ${WC}/trunk/tools/cvs2svn/CheckedClass.pm
${SVN} commit -m 'commit #921' ${WC}/trunk/tools/cvs2svn/CheckedClass.pm

################### change 922 ###################
echo ""
echo "Doing commit #922:"
echo 'part of change #922' >> ${WC}/trunk/notes/difftools/pics/xxdiff-README
echo 'part of change #922' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cGridCell.cls
echo 'part of change #922' >> ${WC}/trunk/subversion/tests/libsvn_delta/svndiff-test.c
${SVN} commit -m 'commit #922' ${WC}/trunk/notes/difftools/pics/xxdiff-README ${WC}/trunk/subversion/clients/win32/SVNControls/cGridCell.cls ${WC}/trunk/subversion/tests/libsvn_delta/svndiff-test.c

################### change 923 ###################
echo ""
echo "Doing commit #923:"
echo 'part of change #923' >> ${WC}/trunk/subversion/libsvn_wc/README
echo 'part of change #923' >> ${WC}/trunk/subversion/libsvn_ra_dav/ra_dav.h
echo 'part of change #923' >> ${WC}/trunk/ac-helpers/berkeley-db.m4
echo 'part of change #923' >> ${WC}/trunk/subversion/libsvn_subr/target.c
echo 'part of change #923' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.c
echo 'part of change #923' >> ${WC}/trunk/expat-lite/libexpat.dsp
echo 'part of change #923' >> ${WC}/trunk/doc/programmer/design/svn-design.txt
echo 'part of change #923' >> ${WC}/trunk/subversion/libsvn_subr/xml.c
echo 'part of change #923' >> ${WC}/trunk/subversion/libsvn_fs/id.h
echo 'part of change #923' >> ${WC}/trunk/expat-lite/xmlparse.h
${SVN} commit -m 'commit #923' ${WC}/trunk/subversion/libsvn_wc/README ${WC}/trunk/subversion/libsvn_ra_dav/ra_dav.h ${WC}/trunk/ac-helpers/berkeley-db.m4 ${WC}/trunk/subversion/libsvn_subr/target.c ${WC}/trunk/subversion/libsvn_fs/reps-table.c ${WC}/trunk/expat-lite/libexpat.dsp ${WC}/trunk/doc/programmer/design/svn-design.txt ${WC}/trunk/subversion/libsvn_subr/xml.c ${WC}/trunk/subversion/libsvn_fs/id.h ${WC}/trunk/expat-lite/xmlparse.h

################### change 924 ###################
echo ""
echo "Doing commit #924:"
echo 'part of change #924' >> ${WC}/trunk/subversion/mod_dav_svn/static/README
${SVN} commit -m 'commit #924' ${WC}/trunk/subversion/mod_dav_svn/static/README

################### change 925 ###################
echo ""
echo "Doing commit #925:"
echo 'part of change #925' >> ${WC}/trunk/subversion.dsp
echo 'part of change #925' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta-test.c
echo 'part of change #925' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_test.dsp
echo 'part of change #925' >> ${WC}/trunk/PORTING
echo 'part of change #925' >> ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp
${SVN} commit -m 'commit #925' ${WC}/trunk/subversion.dsp ${WC}/trunk/subversion/tests/libsvn_delta/vdelta-test.c ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_test.dsp ${WC}/trunk/PORTING ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp

################### change 926 ###################
echo ""
echo "Doing commit #926:"
echo 'part of change #926' >> ${WC}/trunk/www/testing-goals.html
echo 'part of change #926' >> ${WC}/trunk/subversion/libsvn_repos/README
echo 'part of change #926' >> ${WC}/trunk/subversion/libsvn_client/status.c
echo 'part of change #926' >> ${WC}/trunk/subversion/clients/cmdline/update-cmd.c
echo 'part of change #926' >> ${WC}/trunk/subversion/libsvn_fs/txn.h
echo 'part of change #926' >> ${WC}/trunk/www/index.html
echo 'part of change #926' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target4.txt
${SVN} commit -m 'commit #926' ${WC}/trunk/www/testing-goals.html ${WC}/trunk/subversion/libsvn_repos/README ${WC}/trunk/subversion/libsvn_client/status.c ${WC}/trunk/subversion/clients/cmdline/update-cmd.c ${WC}/trunk/subversion/libsvn_fs/txn.h ${WC}/trunk/www/index.html ${WC}/trunk/subversion/tests/libsvn_vcdiff/target4.txt

################### change 927 ###################
echo ""
echo "Doing commit #927:"
echo 'part of change #927' >> ${WC}/trunk/subversion/tests/libsvn_delta/xml_output_test.dsp
echo 'part of change #927' >> ${WC}/trunk/subversion/clients/cmdline/import-cmd.c
echo 'part of change #927' >> ${WC}/trunk/doc/programmer/design/svn-design.texi
echo 'part of change #927' >> ${WC}/trunk/subversion/svnlook/svnlook.dsp
echo 'part of change #927' >> ${WC}/trunk/www/project_license.html
echo 'part of change #927' >> ${WC}/trunk/doc/user/manual/license.texi
${SVN} commit -m 'commit #927' ${WC}/trunk/subversion/tests/libsvn_delta/xml_output_test.dsp ${WC}/trunk/subversion/clients/cmdline/import-cmd.c ${WC}/trunk/doc/programmer/design/svn-design.texi ${WC}/trunk/subversion/svnlook/svnlook.dsp ${WC}/trunk/www/project_license.html ${WC}/trunk/doc/user/manual/license.texi

################### change 928 ###################
echo ""
echo "Doing commit #928:"
echo 'part of change #928' >> ${WC}/trunk/subversion/tests/clients/cmdline/commit_tests.py
echo 'part of change #928' >> ${WC}/trunk/subversion/svnlook/svnlook.dsp
echo 'part of change #928' >> ${WC}/trunk/tools/cvs2svn/cvs2svn.py
echo 'part of change #928' >> ${WC}/trunk/subversion/libsvn_wc/Makefile
echo 'part of change #928' >> ${WC}/trunk/subversion/tests/libsvn_wc/simple.delta
echo 'part of change #928' >> ${WC}/trunk/subversion/libsvn_wc/adm_files.c
echo 'part of change #928' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmVirtual.frm
echo 'part of change #928' >> ${WC}/trunk/subversion/libsvn_delta/default_editor.c
${SVN} commit -m 'commit #928' ${WC}/trunk/subversion/tests/clients/cmdline/commit_tests.py ${WC}/trunk/subversion/svnlook/svnlook.dsp ${WC}/trunk/tools/cvs2svn/cvs2svn.py ${WC}/trunk/subversion/libsvn_wc/Makefile ${WC}/trunk/subversion/tests/libsvn_wc/simple.delta ${WC}/trunk/subversion/libsvn_wc/adm_files.c ${WC}/trunk/subversion/clients/win32/SVNControls/frmVirtual.frm ${WC}/trunk/subversion/libsvn_delta/default_editor.c

################### change 929 ###################
echo ""
echo "Doing commit #929:"
echo 'part of change #929' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmTestMatrix.frm
echo 'part of change #929' >> ${WC}/trunk/subversion/libsvn_fs/tree.c
echo 'part of change #929' >> ${WC}/trunk/subversion/clients/win32/svn_com/misc.cpp
echo 'part of change #929' >> ${WC}/trunk/subversion/libsvn_fs/rev-table.c
echo 'part of change #929' >> ${WC}/trunk/subversion/clients/cmdline/proplist-cmd.c
echo 'part of change #929' >> ${WC}/trunk/subversion/include/svn_wc.h
echo 'part of change #929' >> ${WC}/trunk/expat-lite/xmlrole.c
echo 'part of change #929' >> ${WC}/trunk/notes/difftools/README
echo 'part of change #929' >> ${WC}/trunk/subversion/tests/libsvn_repos/repos_test.dsp
${SVN} commit -m 'commit #929' ${WC}/trunk/subversion/clients/win32/SVNControls/frmTestMatrix.frm ${WC}/trunk/subversion/libsvn_fs/tree.c ${WC}/trunk/subversion/clients/win32/svn_com/misc.cpp ${WC}/trunk/subversion/libsvn_fs/rev-table.c ${WC}/trunk/subversion/clients/cmdline/proplist-cmd.c ${WC}/trunk/subversion/include/svn_wc.h ${WC}/trunk/expat-lite/xmlrole.c ${WC}/trunk/notes/difftools/README ${WC}/trunk/subversion/tests/libsvn_repos/repos_test.dsp

################### change 930 ###################
echo ""
echo "Doing commit #930:"
echo 'part of change #930' >> ${WC}/trunk/subversion/tests/greek-tree.txt
${SVN} commit -m 'commit #930' ${WC}/trunk/subversion/tests/greek-tree.txt

################### change 931 ###################
echo ""
echo "Doing commit #931:"
echo 'part of change #931' >> ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.cpp
echo 'part of change #931' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmLogin.frm
echo 'part of change #931' >> ${WC}/trunk/subversion/clients/win32/WinSVN/ExplorerViewHelpers.cls
echo 'part of change #931' >> ${WC}/trunk/subversion/libsvn_ra_local/split_url.c
${SVN} commit -m 'commit #931' ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.cpp ${WC}/trunk/subversion/clients/win32/WinSVN/frmLogin.frm ${WC}/trunk/subversion/clients/win32/WinSVN/ExplorerViewHelpers.cls ${WC}/trunk/subversion/libsvn_ra_local/split_url.c

################### change 932 ###################
echo ""
echo "Doing commit #932:"
echo 'part of change #932' >> ${WC}/trunk/subversion/clients/cmdline/TODO
echo 'part of change #932' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cShellSort.cls
echo 'part of change #932' >> ${WC}/trunk/subversion/libsvn_client/commit.c
echo 'part of change #932' >> ${WC}/trunk/subversion/libsvn_ra_dav/ra_dav.h
echo 'part of change #932' >> ${WC}/trunk/subversion/libsvn_repos/hooks.txt
echo 'part of change #932' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Entry.java
echo 'part of change #932' >> ${WC}/trunk/subversion/libsvn_ra_dav/fetch.c
echo 'part of change #932' >> ${WC}/trunk/subversion/libsvn_wc/adm_files.c
echo 'part of change #932' >> ${WC}/trunk/BUGS
${SVN} commit -m 'commit #932' ${WC}/trunk/subversion/clients/cmdline/TODO ${WC}/trunk/subversion/clients/win32/SVNControls/cShellSort.cls ${WC}/trunk/subversion/libsvn_client/commit.c ${WC}/trunk/subversion/libsvn_ra_dav/ra_dav.h ${WC}/trunk/subversion/libsvn_repos/hooks.txt ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Entry.java ${WC}/trunk/subversion/libsvn_ra_dav/fetch.c ${WC}/trunk/subversion/libsvn_wc/adm_files.c ${WC}/trunk/BUGS

################### change 933 ###################
echo ""
echo "Doing commit #933:"
echo 'part of change #933' >> ${WC}/trunk/subversion/libsvn_subr/io.c
echo 'part of change #933' >> ${WC}/trunk/subversion/libsvn_repos/commit_editor.c
echo 'part of change #933' >> ${WC}/trunk/www/project_status.html
echo 'part of change #933' >> ${WC}/trunk/www/project_license.html
echo 'part of change #933' >> ${WC}/trunk/svn_private_config.h.in
echo 'part of change #933' >> ${WC}/trunk/notes/guis/pics/README
echo 'part of change #933' >> ${WC}/trunk/subversion/libsvn_subr/time.c
echo 'part of change #933' >> ${WC}/trunk/subversion/clients/cmdline/util.c
${SVN} commit -m 'commit #933' ${WC}/trunk/subversion/libsvn_subr/io.c ${WC}/trunk/subversion/libsvn_repos/commit_editor.c ${WC}/trunk/www/project_status.html ${WC}/trunk/www/project_license.html ${WC}/trunk/svn_private_config.h.in ${WC}/trunk/notes/guis/pics/README ${WC}/trunk/subversion/libsvn_subr/time.c ${WC}/trunk/subversion/clients/cmdline/util.c

################### change 934 ###################
echo ""
echo "Doing commit #934:"
echo 'part of change #934' >> ${WC}/trunk/subversion/LICENSE
echo 'part of change #934' >> ${WC}/trunk/subversion/libsvn_ra_dav/props.c
echo 'part of change #934' >> ${WC}/trunk/subversion/tests/libsvn_subr/string_test.dsp
echo 'part of change #934' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target0.txt
echo 'part of change #934' >> ${WC}/trunk/subversion/libsvn_repos/delta.c
${SVN} commit -m 'commit #934' ${WC}/trunk/subversion/LICENSE ${WC}/trunk/subversion/libsvn_ra_dav/props.c ${WC}/trunk/subversion/tests/libsvn_subr/string_test.dsp ${WC}/trunk/subversion/tests/libsvn_vcdiff/target0.txt ${WC}/trunk/subversion/libsvn_repos/delta.c

################### change 935 ###################
echo ""
echo "Doing commit #935:"
echo 'part of change #935' >> ${WC}/trunk/subversion/libsvn_fs/dbt.h
echo 'part of change #935' >> ${WC}/trunk/notes/issues.txt
echo 'part of change #935' >> ${WC}/trunk/subversion/clients/cmdline/commit-cmd.c
echo 'part of change #935' >> ${WC}/trunk/subversion/libsvn_client/add.c
echo 'part of change #935' >> ${WC}/trunk/subversion/libsvn_client/status.c
echo 'part of change #935' >> ${WC}/trunk/subversion/tests/libsvn_delta/random-test.c
echo 'part of change #935' >> ${WC}/trunk/doc/user/manual/dirversioning.texi
${SVN} commit -m 'commit #935' ${WC}/trunk/subversion/libsvn_fs/dbt.h ${WC}/trunk/notes/issues.txt ${WC}/trunk/subversion/clients/cmdline/commit-cmd.c ${WC}/trunk/subversion/libsvn_client/add.c ${WC}/trunk/subversion/libsvn_client/status.c ${WC}/trunk/subversion/tests/libsvn_delta/random-test.c ${WC}/trunk/doc/user/manual/dirversioning.texi

################### change 936 ###################
echo ""
echo "Doing commit #936:"
echo 'part of change #936' >> ${WC}/trunk/notes/delta.dtd
echo 'part of change #936' >> ${WC}/trunk/subversion/libsvn_fs/err.c
echo 'part of change #936' >> ${WC}/trunk/subversion/libsvn_fs/id.h
echo 'part of change #936' >> ${WC}/trunk/expat-lite/libexpat.dsp
echo 'part of change #936' >> ${WC}/trunk/subversion/libsvn_fs/validate.c
echo 'part of change #936' >> ${WC}/trunk/subversion/libsvn_wc/log.c
echo 'part of change #936' >> ${WC}/trunk/notes/the_update_problem.txt
${SVN} commit -m 'commit #936' ${WC}/trunk/notes/delta.dtd ${WC}/trunk/subversion/libsvn_fs/err.c ${WC}/trunk/subversion/libsvn_fs/id.h ${WC}/trunk/expat-lite/libexpat.dsp ${WC}/trunk/subversion/libsvn_fs/validate.c ${WC}/trunk/subversion/libsvn_wc/log.c ${WC}/trunk/notes/the_update_problem.txt

################### change 937 ###################
echo ""
echo "Doing commit #937:"
echo 'part of change #937' >> ${WC}/trunk/subversion/tests/xml/co1-postfix.xml
echo 'part of change #937' >> ${WC}/trunk/subversion/clients/cmdline/revert-cmd.c
echo 'part of change #937' >> ${WC}/trunk/subversion/tests/clients/cmdline/svnadmin_tests.py
echo 'part of change #937' >> ${WC}/trunk/subversion/clients/cmdline/status-cmd.c
echo 'part of change #937' >> ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.h
${SVN} commit -m 'commit #937' ${WC}/trunk/subversion/tests/xml/co1-postfix.xml ${WC}/trunk/subversion/clients/cmdline/revert-cmd.c ${WC}/trunk/subversion/tests/clients/cmdline/svnadmin_tests.py ${WC}/trunk/subversion/clients/cmdline/status-cmd.c ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.h

################### change 938 ###################
echo ""
echo "Doing commit #938:"
echo 'part of change #938' >> ${WC}/trunk/subversion/mod_dav_svn/merge.c
echo 'part of change #938' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cScrollBars.cls
echo 'part of change #938' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.cpp
echo 'part of change #938' >> ${WC}/trunk/subversion/include/svn_sorts.h
echo 'part of change #938' >> ${WC}/trunk/README
echo 'part of change #938' >> ${WC}/trunk/subversion/tests/xml/up1b-inline.xml
echo 'part of change #938' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_1.txt
${SVN} commit -m 'commit #938' ${WC}/trunk/subversion/mod_dav_svn/merge.c ${WC}/trunk/subversion/clients/win32/SVNControls/cScrollBars.cls ${WC}/trunk/subversion/clients/win32/svn_com/SVN.cpp ${WC}/trunk/subversion/include/svn_sorts.h ${WC}/trunk/README ${WC}/trunk/subversion/tests/xml/up1b-inline.xml ${WC}/trunk/subversion/tests/libsvn_delta/vdelta_1.txt

################### change 939 ###################
echo ""
echo "Doing commit #939:"
echo 'part of change #939' >> ${WC}/trunk/subversion/libsvn_subr/time.c
echo 'part of change #939' >> ${WC}/trunk/subversion/include/svn_io.h
echo 'part of change #939' >> ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse_test.dsp
echo 'part of change #939' >> ${WC}/trunk/notes/issues.txt
echo 'part of change #939' >> ${WC}/trunk/notes/m3-checklist.txt
echo 'part of change #939' >> ${WC}/trunk/subversion/libsvn_subr/svn_base64.c
echo 'part of change #939' >> ${WC}/trunk/subversion/tests/libsvn_subr/string_test.dsp
${SVN} commit -m 'commit #939' ${WC}/trunk/subversion/libsvn_subr/time.c ${WC}/trunk/subversion/include/svn_io.h ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse_test.dsp ${WC}/trunk/notes/issues.txt ${WC}/trunk/notes/m3-checklist.txt ${WC}/trunk/subversion/libsvn_subr/svn_base64.c ${WC}/trunk/subversion/tests/libsvn_subr/string_test.dsp

################### change 940 ###################
echo ""
echo "Doing commit #940:"
echo 'part of change #940' >> ${WC}/trunk/subversion/libsvn_repos/hooks.txt
${SVN} commit -m 'commit #940' ${WC}/trunk/subversion/libsvn_repos/hooks.txt

################### change 941 ###################
echo ""
echo "Doing commit #941:"
echo 'part of change #941' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.mk
echo 'part of change #941' >> ${WC}/trunk/notes/old/karlnotes
${SVN} commit -m 'commit #941' ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOMps.mk ${WC}/trunk/notes/old/karlnotes

################### change 942 ###################
echo ""
echo "Doing commit #942:"
echo 'part of change #942' >> ${WC}/trunk/subversion/clients/win32/WinSVN/ExplorerViewHelpers.cls
echo 'part of change #942' >> ${WC}/trunk/subversion/clients/cmdline/util.c
echo 'part of change #942' >> ${WC}/trunk/subversion/mod_dav_svn/util.c
echo 'part of change #942' >> ${WC}/trunk/subversion/svnadmin/svnadmin.dsp
echo 'part of change #942' >> ${WC}/trunk/subversion/tests/xml/up1a-postfix.xml
echo 'part of change #942' >> ${WC}/trunk/subversion/tests/xml/up1b-inline.xml
echo 'part of change #942' >> ${WC}/trunk/subversion/include/svn_error_codes.h
${SVN} commit -m 'commit #942' ${WC}/trunk/subversion/clients/win32/WinSVN/ExplorerViewHelpers.cls ${WC}/trunk/subversion/clients/cmdline/util.c ${WC}/trunk/subversion/mod_dav_svn/util.c ${WC}/trunk/subversion/svnadmin/svnadmin.dsp ${WC}/trunk/subversion/tests/xml/up1a-postfix.xml ${WC}/trunk/subversion/tests/xml/up1b-inline.xml ${WC}/trunk/subversion/include/svn_error_codes.h

################### change 943 ###################
echo ""
echo "Doing commit #943:"
echo 'part of change #943' >> ${WC}/trunk/subversion/svnlook/main.c
echo 'part of change #943' >> ${WC}/trunk/subversion/clients/win32/SVNControls/link.dat
${SVN} commit -m 'commit #943' ${WC}/trunk/subversion/svnlook/main.c ${WC}/trunk/subversion/clients/win32/SVNControls/link.dat

################### change 944 ###################
echo ""
echo "Doing commit #944:"
echo 'part of change #944' >> ${WC}/trunk/subversion/include/svn_wc.h
echo 'part of change #944' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/source.txt
echo 'part of change #944' >> ${WC}/trunk/ac-helpers/svn-apache.m4
echo 'part of change #944' >> ${WC}/trunk/subversion/libsvn_client/checkout.c
echo 'part of change #944' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmTestMatrix.frm
echo 'part of change #944' >> ${WC}/trunk/subversion/libsvn_repos/rev_hunt.c
${SVN} commit -m 'commit #944' ${WC}/trunk/subversion/include/svn_wc.h ${WC}/trunk/subversion/tests/libsvn_vcdiff/source.txt ${WC}/trunk/ac-helpers/svn-apache.m4 ${WC}/trunk/subversion/libsvn_client/checkout.c ${WC}/trunk/subversion/clients/win32/SVNControls/frmTestMatrix.frm ${WC}/trunk/subversion/libsvn_repos/rev_hunt.c

################### change 945 ###################
echo ""
echo "Doing commit #945:"
echo 'part of change #945' >> ${WC}/trunk/subversion/clients/cmdline/diff-cmd.c
echo 'part of change #945' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt
${SVN} commit -m 'commit #945' ${WC}/trunk/subversion/clients/cmdline/diff-cmd.c ${WC}/trunk/subversion/tests/libsvn_vcdiff/target3.txt

################### change 946 ###################
echo ""
echo "Doing commit #946:"
echo 'part of change #946' >> ${WC}/trunk/ac-helpers/ltconfig
echo 'part of change #946' >> ${WC}/trunk/doc/programmer/design/future.texi
echo 'part of change #946' >> ${WC}/trunk/HACKING
echo 'part of change #946' >> ${WC}/trunk/subversion/tests/xml/up1a-inline.xml
echo 'part of change #946' >> ${WC}/trunk/PORTING
${SVN} commit -m 'commit #946' ${WC}/trunk/ac-helpers/ltconfig ${WC}/trunk/doc/programmer/design/future.texi ${WC}/trunk/HACKING ${WC}/trunk/subversion/tests/xml/up1a-inline.xml ${WC}/trunk/PORTING

################### change 947 ###################
echo ""
echo "Doing commit #947:"
echo 'part of change #947' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmOptions.frm
echo 'part of change #947' >> ${WC}/trunk/expat-lite/nametab.h
${SVN} commit -m 'commit #947' ${WC}/trunk/subversion/clients/win32/WinSVN/frmOptions.frm ${WC}/trunk/expat-lite/nametab.h

################### change 948 ###################
echo ""
echo "Doing commit #948:"
echo 'part of change #948' >> ${WC}/trunk/subversion/svnadmin/main.c
echo 'part of change #948' >> ${WC}/trunk/subversion/tests/libsvn_fs/skel_test.dsp
echo 'part of change #948' >> ${WC}/trunk/doc/user/manual/svn-manual.html
echo 'part of change #948' >> ${WC}/trunk/expat-lite/hashtable.c
echo 'part of change #948' >> ${WC}/trunk/subversion/libsvn_subr/path.c
echo 'part of change #948' >> ${WC}/trunk/subversion/mod_dav_svn/merge.c
${SVN} commit -m 'commit #948' ${WC}/trunk/subversion/svnadmin/main.c ${WC}/trunk/subversion/tests/libsvn_fs/skel_test.dsp ${WC}/trunk/doc/user/manual/svn-manual.html ${WC}/trunk/expat-lite/hashtable.c ${WC}/trunk/subversion/libsvn_subr/path.c ${WC}/trunk/subversion/mod_dav_svn/merge.c

################### change 949 ###################
echo ""
echo "Doing commit #949:"
echo 'part of change #949' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.h
echo 'part of change #949' >> ${WC}/trunk/BUGS
echo 'part of change #949' >> ${WC}/trunk/subversion/libsvn_ra_dav/util.c
echo 'part of change #949' >> ${WC}/trunk/subversion/tests/libsvn_subr/target-test.c
echo 'part of change #949' >> ${WC}/trunk/ac-helpers/ltconfig
echo 'part of change #949' >> ${WC}/trunk/subversion/svnadmin/svnadmin.dsp
echo 'part of change #949' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.h
echo 'part of change #949' >> ${WC}/trunk/subversion/bindings/svn_ra.i
echo 'part of change #949' >> ${WC}/trunk/subversion/libsvn_subr/sorts.c
${SVN} commit -m 'commit #949' ${WC}/trunk/subversion/libsvn_fs/reps-table.h ${WC}/trunk/BUGS ${WC}/trunk/subversion/libsvn_ra_dav/util.c ${WC}/trunk/subversion/tests/libsvn_subr/target-test.c ${WC}/trunk/ac-helpers/ltconfig ${WC}/trunk/subversion/svnadmin/svnadmin.dsp ${WC}/trunk/subversion/clients/win32/svn_com/SVNStatus.h ${WC}/trunk/subversion/bindings/svn_ra.i ${WC}/trunk/subversion/libsvn_subr/sorts.c

################### change 950 ###################
echo ""
echo "Doing commit #950:"
echo 'part of change #950' >> ${WC}/trunk/www/variance-adjusted-patching.html
${SVN} commit -m 'commit #950' ${WC}/trunk/www/variance-adjusted-patching.html

################### change 951 ###################
echo ""
echo "Doing commit #951:"
echo 'part of change #951' >> ${WC}/trunk/subversion/libsvn_subr/svn_base64.c
echo 'part of change #951' >> ${WC}/trunk/subversion/libsvn_delta/delta.h
echo 'part of change #951' >> ${WC}/trunk/subversion/tests/libsvn_delta/simple.delta
${SVN} commit -m 'commit #951' ${WC}/trunk/subversion/libsvn_subr/svn_base64.c ${WC}/trunk/subversion/libsvn_delta/delta.h ${WC}/trunk/subversion/tests/libsvn_delta/simple.delta

################### change 952 ###################
echo ""
echo "Doing commit #952:"
echo 'part of change #952' >> ${WC}/trunk/doc/README
echo 'part of change #952' >> ${WC}/trunk/subversion/clients/cmdline/prompt.c
echo 'part of change #952' >> ${WC}/trunk/www/license-1.html
echo 'part of change #952' >> ${WC}/trunk/www/variance-adjusted-patching.html
${SVN} commit -m 'commit #952' ${WC}/trunk/doc/README ${WC}/trunk/subversion/clients/cmdline/prompt.c ${WC}/trunk/www/license-1.html ${WC}/trunk/www/variance-adjusted-patching.html

################### change 953 ###################
echo ""
echo "Doing commit #953:"
echo 'part of change #953' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py
${SVN} commit -m 'commit #953' ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py

################### change 954 ###################
echo ""
echo "Doing commit #954:"
echo 'part of change #954' >> ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py
echo 'part of change #954' >> ${WC}/trunk/subversion/tests/libsvn_delta/simple.delta
echo 'part of change #954' >> ${WC}/trunk/subversion/tests/libsvn_delta/svndiff-test.c
echo 'part of change #954' >> ${WC}/trunk/subversion/svnadmin/svnadmin.dsp
echo 'part of change #954' >> ${WC}/trunk/subversion/tests/xml/up3.xml
echo 'part of change #954' >> ${WC}/trunk/subversion/libsvn_fs/txn.c
${SVN} commit -m 'commit #954' ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py ${WC}/trunk/subversion/tests/libsvn_delta/simple.delta ${WC}/trunk/subversion/tests/libsvn_delta/svndiff-test.c ${WC}/trunk/subversion/svnadmin/svnadmin.dsp ${WC}/trunk/subversion/tests/xml/up3.xml ${WC}/trunk/subversion/libsvn_fs/txn.c

################### change 955 ###################
echo ""
echo "Doing commit #955:"
echo 'part of change #955' >> ${WC}/trunk/subversion/tests/svn_tests_main.c
echo 'part of change #955' >> ${WC}/trunk/subversion/bindings/svn_client.i
${SVN} commit -m 'commit #955' ${WC}/trunk/subversion/tests/svn_tests_main.c ${WC}/trunk/subversion/bindings/svn_client.i

################### change 956 ###################
echo ""
echo "Doing commit #956:"
echo 'part of change #956' >> ${WC}/trunk/subversion/tests/libsvn_fs/skel_test.dsp
echo 'part of change #956' >> ${WC}/trunk/subversion/libsvn_repos/lock.c
echo 'part of change #956' >> ${WC}/trunk/notes/m3-checklist.txt
echo 'part of change #956' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmOptions.frm
echo 'part of change #956' >> ${WC}/trunk/subversion/tests/libsvn_vcdiff/README
echo 'part of change #956' >> ${WC}/trunk/TASKS
echo 'part of change #956' >> ${WC}/trunk/subversion/include/svn_time.h
echo 'part of change #956' >> ${WC}/trunk/INSTALL
${SVN} commit -m 'commit #956' ${WC}/trunk/subversion/tests/libsvn_fs/skel_test.dsp ${WC}/trunk/subversion/libsvn_repos/lock.c ${WC}/trunk/notes/m3-checklist.txt ${WC}/trunk/subversion/clients/win32/WinSVN/frmOptions.frm ${WC}/trunk/subversion/tests/libsvn_vcdiff/README ${WC}/trunk/TASKS ${WC}/trunk/subversion/include/svn_time.h ${WC}/trunk/INSTALL

################### change 957 ###################
echo ""
echo "Doing commit #957:"
echo 'part of change #957' >> ${WC}/trunk/subversion/tests/libsvn_fs/key-test.c
echo 'part of change #957' >> ${WC}/trunk/subversion/clients/cmdline/propdel-cmd.c
echo 'part of change #957' >> ${WC}/trunk/notes/the_update_problem.txt
echo 'part of change #957' >> ${WC}/trunk/notes/guis/pics/README
echo 'part of change #957' >> ${WC}/trunk/subversion/libsvn_fs/node-rev.c
echo 'part of change #957' >> ${WC}/trunk/subversion/tests/libsvn_wc/checkout-test.c
echo 'part of change #957' >> ${WC}/trunk/www/webdav-usage.html
${SVN} commit -m 'commit #957' ${WC}/trunk/subversion/tests/libsvn_fs/key-test.c ${WC}/trunk/subversion/clients/cmdline/propdel-cmd.c ${WC}/trunk/notes/the_update_problem.txt ${WC}/trunk/notes/guis/pics/README ${WC}/trunk/subversion/libsvn_fs/node-rev.c ${WC}/trunk/subversion/tests/libsvn_wc/checkout-test.c ${WC}/trunk/www/webdav-usage.html

################### change 958 ###################
echo ""
echo "Doing commit #958:"
echo 'part of change #958' >> ${WC}/trunk/subversion/tests/libsvn_subr/hashdump-test.c
echo 'part of change #958' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cHeaderControl.cls
echo 'part of change #958' >> ${WC}/trunk/subversion/mod_dav_svn/static/Makefile.in
echo 'part of change #958' >> ${WC}/trunk/subversion/clients/cmdline/help-cmd.c
echo 'part of change #958' >> ${WC}/trunk/subversion/libsvn_client/status.c
echo 'part of change #958' >> ${WC}/trunk/subversion/libsvn_ra_local/checkout.c
echo 'part of change #958' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc
echo 'part of change #958' >> ${WC}/trunk/svn_check.dsp
echo 'part of change #958' >> ${WC}/trunk/subversion/include/svn_hash.h
${SVN} commit -m 'commit #958' ${WC}/trunk/subversion/tests/libsvn_subr/hashdump-test.c ${WC}/trunk/subversion/clients/win32/SVNControls/cHeaderControl.cls ${WC}/trunk/subversion/mod_dav_svn/static/Makefile.in ${WC}/trunk/subversion/clients/cmdline/help-cmd.c ${WC}/trunk/subversion/libsvn_client/status.c ${WC}/trunk/subversion/libsvn_ra_local/checkout.c ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.rc ${WC}/trunk/svn_check.dsp ${WC}/trunk/subversion/include/svn_hash.h

################### change 959 ###################
echo ""
echo "Doing commit #959:"
echo 'part of change #959' >> ${WC}/trunk/expat-lite/expat.html
echo 'part of change #959' >> ${WC}/trunk/subversion/libsvn_fs/dag.h
echo 'part of change #959' >> ${WC}/trunk/subversion/libsvn_repos/hooks.c
echo 'part of change #959' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaWindow.java
echo 'part of change #959' >> ${WC}/trunk/expat-lite/xmltok_impl.c
echo 'part of change #959' >> ${WC}/trunk/subversion.dsp
echo 'part of change #959' >> ${WC}/trunk/subversion/tests/libsvn_subr/tests_libsvn_subr_target_test.dsp
echo 'part of change #959' >> ${WC}/trunk/subversion/libsvn_fs/TODO
echo 'part of change #959' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Revision.java
echo 'part of change #959' >> ${WC}/trunk/subversion/tests/xml/co1-inline.xml
${SVN} commit -m 'commit #959' ${WC}/trunk/expat-lite/expat.html ${WC}/trunk/subversion/libsvn_fs/dag.h ${WC}/trunk/subversion/libsvn_repos/hooks.c ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaWindow.java ${WC}/trunk/expat-lite/xmltok_impl.c ${WC}/trunk/subversion.dsp ${WC}/trunk/subversion/tests/libsvn_subr/tests_libsvn_subr_target_test.dsp ${WC}/trunk/subversion/libsvn_fs/TODO ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Revision.java ${WC}/trunk/subversion/tests/xml/co1-inline.xml

################### change 960 ###################
echo ""
echo "Doing commit #960:"
echo 'part of change #960' >> ${WC}/trunk/subversion/libsvn_subr/svn_error.c
echo 'part of change #960' >> ${WC}/trunk/subversion/libsvn_fs/nodes-table.c
echo 'part of change #960' >> ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.h
echo 'part of change #960' >> ${WC}/trunk/subversion/libsvn_fs/id.h
echo 'part of change #960' >> ${WC}/trunk/notes/dav_setup.txt
echo 'part of change #960' >> ${WC}/trunk/subversion/libsvn_client/add.c
echo 'part of change #960' >> ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h
echo 'part of change #960' >> ${WC}/trunk/subversion/libsvn_client/commit.c
echo 'part of change #960' >> ${WC}/trunk/subversion/libsvn_client/status.c
${SVN} commit -m 'commit #960' ${WC}/trunk/subversion/libsvn_subr/svn_error.c ${WC}/trunk/subversion/libsvn_fs/nodes-table.c ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.h ${WC}/trunk/subversion/libsvn_fs/id.h ${WC}/trunk/notes/dav_setup.txt ${WC}/trunk/subversion/libsvn_client/add.c ${WC}/trunk/subversion/clients/win32/svn_com/MarshalArray.h ${WC}/trunk/subversion/libsvn_client/commit.c ${WC}/trunk/subversion/libsvn_client/status.c

################### change 961 ###################
echo ""
echo "Doing commit #961:"
echo 'part of change #961' >> ${WC}/trunk/doc/programmer/design/client.texi
echo 'part of change #961' >> ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.h
echo 'part of change #961' >> ${WC}/trunk/subversion/clients/cmdline/revert-cmd.c
echo 'part of change #961' >> ${WC}/trunk/subversion/clients/win32/WinSVN/WinSVN.vbp
echo 'part of change #961' >> ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp
echo 'part of change #961' >> ${WC}/trunk/subversion/tests/libsvn_subr/tests_libsvn_subr_target_test.dsp
echo 'part of change #961' >> ${WC}/trunk/subversion/tests/libsvn_wc/commit_test.dsp
echo 'part of change #961' >> ${WC}/trunk/subversion/clients/cmdline/subversion_client.dsp
echo 'part of change #961' >> ${WC}/trunk/subversion/libsvn_ra_dav/libsvn_ra_dav.dsp
echo 'part of change #961' >> ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py
${SVN} commit -m 'commit #961' ${WC}/trunk/doc/programmer/design/client.texi ${WC}/trunk/subversion/tests/libsvn_repos/dir-delta-editor.h ${WC}/trunk/subversion/clients/cmdline/revert-cmd.c ${WC}/trunk/subversion/clients/win32/WinSVN/WinSVN.vbp ${WC}/trunk/subversion/tests/libsvn_delta/svndiff_test.dsp ${WC}/trunk/subversion/tests/libsvn_subr/tests_libsvn_subr_target_test.dsp ${WC}/trunk/subversion/tests/libsvn_wc/commit_test.dsp ${WC}/trunk/subversion/clients/cmdline/subversion_client.dsp ${WC}/trunk/subversion/libsvn_ra_dav/libsvn_ra_dav.dsp ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py

################### change 962 ###################
echo ""
echo "Doing commit #962:"
echo 'part of change #962' >> ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py
${SVN} commit -m 'commit #962' ${WC}/trunk/subversion/tests/clients/cmdline/basic_tests.py

################### change 963 ###################
echo ""
echo "Doing commit #963:"
echo 'part of change #963' >> ${WC}/trunk/subversion/libsvn_fs/validate.c
echo 'part of change #963' >> ${WC}/trunk/TASKS
echo 'part of change #963' >> ${WC}/trunk/notes/txdelta_sanity
echo 'part of change #963' >> ${WC}/trunk/svn_private_config.h.in
echo 'part of change #963' >> ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.cpp
${SVN} commit -m 'commit #963' ${WC}/trunk/subversion/libsvn_fs/validate.c ${WC}/trunk/TASKS ${WC}/trunk/notes/txdelta_sanity ${WC}/trunk/svn_private_config.h.in ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.cpp

################### change 964 ###################
echo ""
echo "Doing commit #964:"
echo 'part of change #964' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py
echo 'part of change #964' >> ${WC}/trunk/subversion/libsvn_fs/libsvn_fs.dsp
${SVN} commit -m 'commit #964' ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py ${WC}/trunk/subversion/libsvn_fs/libsvn_fs.dsp

################### change 965 ###################
echo ""
echo "Doing commit #965:"
echo 'part of change #965' >> ${WC}/trunk/notes/difftools/pics/FileMerge-README
echo 'part of change #965' >> ${WC}/trunk/subversion/include/svn_error.h
echo 'part of change #965' >> ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta
${SVN} commit -m 'commit #965' ${WC}/trunk/notes/difftools/pics/FileMerge-README ${WC}/trunk/subversion/include/svn_error.h ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta

################### change 966 ###################
echo ""
echo "Doing commit #966:"
echo 'part of change #966' >> ${WC}/trunk/www/project_faq.html
echo 'part of change #966' >> ${WC}/trunk/subversion/libsvn_delta/track_editor.c
echo 'part of change #966' >> ${WC}/trunk/subversion/libsvn_subr/getdate.c
echo 'part of change #966' >> ${WC}/trunk/subversion/tests/xml/co1-inline.xml
echo 'part of change #966' >> ${WC}/trunk/subversion/libsvn_fs/this-branch.txt
echo 'part of change #966' >> ${WC}/trunk/subversion/libsvn_fs/trail.h
${SVN} commit -m 'commit #966' ${WC}/trunk/www/project_faq.html ${WC}/trunk/subversion/libsvn_delta/track_editor.c ${WC}/trunk/subversion/libsvn_subr/getdate.c ${WC}/trunk/subversion/tests/xml/co1-inline.xml ${WC}/trunk/subversion/libsvn_fs/this-branch.txt ${WC}/trunk/subversion/libsvn_fs/trail.h

################### change 967 ###################
echo ""
echo "Doing commit #967:"
echo 'part of change #967' >> ${WC}/trunk/subversion/clients/cmdline/README
echo 'part of change #967' >> ${WC}/trunk/www/testing-goals.html
echo 'part of change #967' >> ${WC}/trunk/subversion/libsvn_wc/log.c
echo 'part of change #967' >> ${WC}/trunk/notes/fs-improvements.txt
echo 'part of change #967' >> ${WC}/trunk/subversion/libsvn_client/client.h
${SVN} commit -m 'commit #967' ${WC}/trunk/subversion/clients/cmdline/README ${WC}/trunk/www/testing-goals.html ${WC}/trunk/subversion/libsvn_wc/log.c ${WC}/trunk/notes/fs-improvements.txt ${WC}/trunk/subversion/libsvn_client/client.h

################### change 968 ###################
echo ""
echo "Doing commit #968:"
echo 'part of change #968' >> ${WC}/trunk/subversion/libsvn_fs/key-gen.h
echo 'part of change #968' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.cpp
echo 'part of change #968' >> ${WC}/trunk/subversion/clients/cmdline/diff.c
echo 'part of change #968' >> ${WC}/trunk/subversion/libsvn_ra_local/ra_plugin.c
echo 'part of change #968' >> ${WC}/trunk/subversion/tests/libsvn_delta/svndiff-test.c
echo 'part of change #968' >> ${WC}/trunk/subversion/tests/fs-helpers.c
${SVN} commit -m 'commit #968' ${WC}/trunk/subversion/libsvn_fs/key-gen.h ${WC}/trunk/subversion/clients/win32/svn_com/SVN.cpp ${WC}/trunk/subversion/clients/cmdline/diff.c ${WC}/trunk/subversion/libsvn_ra_local/ra_plugin.c ${WC}/trunk/subversion/tests/libsvn_delta/svndiff-test.c ${WC}/trunk/subversion/tests/fs-helpers.c

################### change 969 ###################
echo ""
echo "Doing commit #969:"
echo 'part of change #969' >> ${WC}/trunk/subversion/clients/cmdline/trace-update.c
echo 'part of change #969' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/actions.py
echo 'part of change #969' >> ${WC}/trunk/expat-lite/xmlrole.c
echo 'part of change #969' >> ${WC}/trunk/doc/user/manual/license.texi
echo 'part of change #969' >> ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse-test.c
echo 'part of change #969' >> ${WC}/trunk/subversion/tests/greek-tree.txt
${SVN} commit -m 'commit #969' ${WC}/trunk/subversion/clients/cmdline/trace-update.c ${WC}/trunk/subversion/tests/clients/cmdline/svntest/actions.py ${WC}/trunk/expat-lite/xmlrole.c ${WC}/trunk/doc/user/manual/license.texi ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse-test.c ${WC}/trunk/subversion/tests/greek-tree.txt

################### change 970 ###################
echo ""
echo "Doing commit #970:"
echo 'part of change #970' >> ${WC}/trunk/subversion/tests/xml/up1b-inline.xml
${SVN} commit -m 'commit #970' ${WC}/trunk/subversion/tests/xml/up1b-inline.xml

################### change 971 ###################
echo ""
echo "Doing commit #971:"
echo 'part of change #971' >> ${WC}/trunk/PORTING
echo 'part of change #971' >> ${WC}/trunk/subversion/libsvn_client/checkout.c
echo 'part of change #971' >> ${WC}/trunk/subversion/include/svn_error_codes.h
echo 'part of change #971' >> ${WC}/trunk/notes/dav_setup.txt
echo 'part of change #971' >> ${WC}/trunk/subversion/clients/cmdline/feedback.c
echo 'part of change #971' >> ${WC}/trunk/subversion/clients/cmdline/help-cmd.c
${SVN} commit -m 'commit #971' ${WC}/trunk/PORTING ${WC}/trunk/subversion/libsvn_client/checkout.c ${WC}/trunk/subversion/include/svn_error_codes.h ${WC}/trunk/notes/dav_setup.txt ${WC}/trunk/subversion/clients/cmdline/feedback.c ${WC}/trunk/subversion/clients/cmdline/help-cmd.c

################### change 972 ###################
echo ""
echo "Doing commit #972:"
echo 'part of change #972' >> ${WC}/trunk/notes/delta.dtd
echo 'part of change #972' >> ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta
${SVN} commit -m 'commit #972' ${WC}/trunk/notes/delta.dtd ${WC}/trunk/subversion/tests/libsvn_delta/foo.delta

################### change 973 ###################
echo ""
echo "Doing commit #973:"
echo 'part of change #973' >> ${WC}/trunk/subversion/libsvn_fs/err.c
echo 'part of change #973' >> ${WC}/trunk/subversion/bindings/svn_wc.i
echo 'part of change #973' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookDemo.frm
echo 'part of change #973' >> ${WC}/trunk/subversion/tests/libsvn_delta/vdelta-test.c
echo 'part of change #973' >> ${WC}/trunk/subversion/tests/libsvn_wc/commit-test.c
${SVN} commit -m 'commit #973' ${WC}/trunk/subversion/libsvn_fs/err.c ${WC}/trunk/subversion/bindings/svn_wc.i ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookDemo.frm ${WC}/trunk/subversion/tests/libsvn_delta/vdelta-test.c ${WC}/trunk/subversion/tests/libsvn_wc/commit-test.c

################### change 974 ###################
echo ""
echo "Doing commit #974:"
echo 'part of change #974' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmAbout.frm
echo 'part of change #974' >> ${WC}/trunk/ac-helpers/svn-apache.m4
${SVN} commit -m 'commit #974' ${WC}/trunk/subversion/clients/win32/WinSVN/frmAbout.frm ${WC}/trunk/ac-helpers/svn-apache.m4

################### change 975 ###################
echo ""
echo "Doing commit #975:"
echo 'part of change #975' >> ${WC}/trunk/ac-helpers/ltmain.sh
echo 'part of change #975' >> ${WC}/trunk/subversion/clients/cmdline/util.c
echo 'part of change #975' >> ${WC}/trunk/expat-lite/nametab.h
${SVN} commit -m 'commit #975' ${WC}/trunk/ac-helpers/ltmain.sh ${WC}/trunk/subversion/clients/cmdline/util.c ${WC}/trunk/expat-lite/nametab.h

################### change 976 ###################
echo ""
echo "Doing commit #976:"
echo 'part of change #976' >> ${WC}/trunk/subversion/libsvn_fs/txn.c
echo 'part of change #976' >> ${WC}/trunk/ac-helpers/svn-macros.m4
echo 'part of change #976' >> ${WC}/trunk/doc/user/manual/removals.texi
echo 'part of change #976' >> ${WC}/trunk/subversion/libsvn_fs/dbt.c
${SVN} commit -m 'commit #976' ${WC}/trunk/subversion/libsvn_fs/txn.c ${WC}/trunk/ac-helpers/svn-macros.m4 ${WC}/trunk/doc/user/manual/removals.texi ${WC}/trunk/subversion/libsvn_fs/dbt.c

################### change 977 ###################
echo ""
echo "Doing commit #977:"
echo 'part of change #977' >> ${WC}/trunk/notes/entries-handling.txt
echo 'part of change #977' >> ${WC}/trunk/www/project_faq.html
${SVN} commit -m 'commit #977' ${WC}/trunk/notes/entries-handling.txt ${WC}/trunk/www/project_faq.html

################### change 978 ###################
echo ""
echo "Doing commit #978:"
echo 'part of change #978' >> ${WC}/trunk/subversion/LICENSE
echo 'part of change #978' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/main.py
echo 'part of change #978' >> ${WC}/trunk/subversion/clients/cmdline/revert-cmd.c
echo 'part of change #978' >> ${WC}/trunk/subversion/libsvn_repos/lock.c
${SVN} commit -m 'commit #978' ${WC}/trunk/subversion/LICENSE ${WC}/trunk/subversion/tests/clients/cmdline/svntest/main.py ${WC}/trunk/subversion/clients/cmdline/revert-cmd.c ${WC}/trunk/subversion/libsvn_repos/lock.c

################### change 979 ###################
echo ""
echo "Doing commit #979:"
echo 'part of change #979' >> ${WC}/trunk/doc/programmer/design/server.texi
echo 'part of change #979' >> ${WC}/trunk/doc/programmer/WritingChangeLogs.txt
echo 'part of change #979' >> ${WC}/trunk/notes/difftools/pics/README
echo 'part of change #979' >> ${WC}/trunk/configure.in
echo 'part of change #979' >> ${WC}/trunk/notes/svndiff
echo 'part of change #979' >> ${WC}/trunk/notes/difftools/pics/FileMerge-README
echo 'part of change #979' >> ${WC}/trunk/ac-helpers/svn-apache.m4
${SVN} commit -m 'commit #979' ${WC}/trunk/doc/programmer/design/server.texi ${WC}/trunk/doc/programmer/WritingChangeLogs.txt ${WC}/trunk/notes/difftools/pics/README ${WC}/trunk/configure.in ${WC}/trunk/notes/svndiff ${WC}/trunk/notes/difftools/pics/FileMerge-README ${WC}/trunk/ac-helpers/svn-apache.m4

################### change 980 ###################
echo ""
echo "Doing commit #980:"
echo 'part of change #980' >> ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.c
echo 'part of change #980' >> ${WC}/trunk/svn_private_config.hw
echo 'part of change #980' >> ${WC}/trunk/subversion/libsvn_wc/adm_crawler.c
echo 'part of change #980' >> ${WC}/trunk/HACKING
echo 'part of change #980' >> ${WC}/trunk/subversion/bindings/README
echo 'part of change #980' >> ${WC}/trunk/subversion/clients/win32/svn_com/misc.h
${SVN} commit -m 'commit #980' ${WC}/trunk/subversion/clients/win32/svn_com/dlldatax.c ${WC}/trunk/svn_private_config.hw ${WC}/trunk/subversion/libsvn_wc/adm_crawler.c ${WC}/trunk/HACKING ${WC}/trunk/subversion/bindings/README ${WC}/trunk/subversion/clients/win32/svn_com/misc.h

################### change 981 ###################
echo ""
echo "Doing commit #981:"
echo 'part of change #981' >> ${WC}/trunk/subversion/include/svn_config.h
${SVN} commit -m 'commit #981' ${WC}/trunk/subversion/include/svn_config.h

################### change 982 ###################
echo ""
echo "Doing commit #982:"
echo 'part of change #982' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Status.java
echo 'part of change #982' >> ${WC}/trunk/subversion/libsvn_delta/vdelta.c
echo 'part of change #982' >> ${WC}/trunk/subversion/clients/win32/SVNControls/ppgColumns.pag
echo 'part of change #982' >> ${WC}/trunk/subversion/clients/cmdline/update-cmd.c
echo 'part of change #982' >> ${WC}/trunk/subversion/libsvn_fs/err.c
${SVN} commit -m 'commit #982' ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Status.java ${WC}/trunk/subversion/libsvn_delta/vdelta.c ${WC}/trunk/subversion/clients/win32/SVNControls/ppgColumns.pag ${WC}/trunk/subversion/clients/cmdline/update-cmd.c ${WC}/trunk/subversion/libsvn_fs/err.c

################### change 983 ###################
echo ""
echo "Doing commit #983:"
echo 'part of change #983' >> ${WC}/trunk/expat-lite/nametab.h
echo 'part of change #983' >> ${WC}/trunk/expat-lite/hashtable.c
echo 'part of change #983' >> ${WC}/trunk/subversion/svn-dev.el
echo 'part of change #983' >> ${WC}/trunk/subversion/libsvn_client/checkout.c
echo 'part of change #983' >> ${WC}/trunk/subversion/libsvn_fs/skel.h
echo 'part of change #983' >> ${WC}/trunk/subversion/bindings/README
echo 'part of change #983' >> ${WC}/trunk/subversion/include/svn_xml.h
echo 'part of change #983' >> ${WC}/trunk/subversion/clients/win32/svn_com/svn_comCP.h
echo 'part of change #983' >> ${WC}/trunk/expat-lite/xmltok_impl.h
${SVN} commit -m 'commit #983' ${WC}/trunk/expat-lite/nametab.h ${WC}/trunk/expat-lite/hashtable.c ${WC}/trunk/subversion/svn-dev.el ${WC}/trunk/subversion/libsvn_client/checkout.c ${WC}/trunk/subversion/libsvn_fs/skel.h ${WC}/trunk/subversion/bindings/README ${WC}/trunk/subversion/include/svn_xml.h ${WC}/trunk/subversion/clients/win32/svn_com/svn_comCP.h ${WC}/trunk/expat-lite/xmltok_impl.h

################### change 984 ###################
echo ""
echo "Doing commit #984:"
echo 'part of change #984' >> ${WC}/trunk/subversion/clients/win32/SVNControls/cHeaderControl.cls
${SVN} commit -m 'commit #984' ${WC}/trunk/subversion/clients/win32/SVNControls/cHeaderControl.cls

################### change 985 ###################
echo ""
echo "Doing commit #985:"
echo 'part of change #985' >> ${WC}/trunk/subversion/libsvn_wc/Makefile
echo 'part of change #985' >> ${WC}/trunk/subversion/libsvn_client/status.c
echo 'part of change #985' >> ${WC}/trunk/notes/multi-args.txt
${SVN} commit -m 'commit #985' ${WC}/trunk/subversion/libsvn_wc/Makefile ${WC}/trunk/subversion/libsvn_client/status.c ${WC}/trunk/notes/multi-args.txt

################### change 986 ###################
echo ""
echo "Doing commit #986:"
echo 'part of change #986' >> ${WC}/trunk/expat-lite/CHANGES
echo 'part of change #986' >> ${WC}/trunk/gen-make.py
echo 'part of change #986' >> ${WC}/trunk/subversion/include/svn_fs.h
echo 'part of change #986' >> ${WC}/trunk/doc/user/manual/svn-manual.html
echo 'part of change #986' >> ${WC}/trunk/subversion/libsvn_fs/reps-table.c
echo 'part of change #986' >> ${WC}/trunk/subversion/svnlook/main.c
echo 'part of change #986' >> ${WC}/trunk/doc/user/svnlook/svnlook.texi
echo 'part of change #986' >> ${WC}/trunk/doc/user/manual/license.texi
echo 'part of change #986' >> ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py
${SVN} commit -m 'commit #986' ${WC}/trunk/expat-lite/CHANGES ${WC}/trunk/gen-make.py ${WC}/trunk/subversion/include/svn_fs.h ${WC}/trunk/doc/user/manual/svn-manual.html ${WC}/trunk/subversion/libsvn_fs/reps-table.c ${WC}/trunk/subversion/svnlook/main.c ${WC}/trunk/doc/user/svnlook/svnlook.texi ${WC}/trunk/doc/user/manual/license.texi ${WC}/trunk/subversion/tests/clients/cmdline/svntest/tree.py

################### change 987 ###################
echo ""
echo "Doing commit #987:"
echo 'part of change #987' >> ${WC}/trunk/subversion/libsvn_delta/default_editor.c
echo 'part of change #987' >> ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse_test.dsp
echo 'part of change #987' >> ${WC}/trunk/subversion/clients/cmdline/add-cmd.c
echo 'part of change #987' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmAbout.frm
echo 'part of change #987' >> ${WC}/trunk/subversion/clients/win32/WinSVN/frmOptions.frm
echo 'part of change #987' >> ${WC}/trunk/subversion/svn-dev.el
echo 'part of change #987' >> ${WC}/trunk/README
echo 'part of change #987' >> ${WC}/trunk/subversion/clients/win32/svn_com/svn_com.dsp
${SVN} commit -m 'commit #987' ${WC}/trunk/subversion/libsvn_delta/default_editor.c ${WC}/trunk/subversion/tests/libsvn_delta/deltaparse_test.dsp ${WC}/trunk/subversion/clients/cmdline/add-cmd.c ${WC}/trunk/subversion/clients/win32/WinSVN/frmAbout.frm ${WC}/trunk/subversion/clients/win32/WinSVN/frmOptions.frm ${WC}/trunk/subversion/svn-dev.el ${WC}/trunk/README ${WC}/trunk/subversion/clients/win32/svn_com/svn_com.dsp

################### change 988 ###################
echo ""
echo "Doing commit #988:"
echo 'part of change #988' >> ${WC}/trunk/subversion/libsvn_wc/lock.c
${SVN} commit -m 'commit #988' ${WC}/trunk/subversion/libsvn_wc/lock.c

################### change 989 ###################
echo ""
echo "Doing commit #989:"
echo 'part of change #989' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaWindow.java
echo 'part of change #989' >> ${WC}/trunk/subversion/libsvn_ra_dav/merge.c
echo 'part of change #989' >> ${WC}/trunk/subversion/libsvn_ra_local/checkout.c
${SVN} commit -m 'commit #989' ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/TextdeltaWindow.java ${WC}/trunk/subversion/libsvn_ra_dav/merge.c ${WC}/trunk/subversion/libsvn_ra_local/checkout.c

################### change 990 ###################
echo ""
echo "Doing commit #990:"
echo 'part of change #990' >> ${WC}/trunk/NEWS
echo 'part of change #990' >> ${WC}/trunk/subversion/tests/xml/README
echo 'part of change #990' >> ${WC}/trunk/subversion/libsvn_delta/xml_parse.c
echo 'part of change #990' >> ${WC}/trunk/subversion/libsvn_delta/svndiff.c
echo 'part of change #990' >> ${WC}/trunk/doc/programmer/design/deltas.texi
echo 'part of change #990' >> ${WC}/trunk/subversion/LICENSE
echo 'part of change #990' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Client.java
echo 'part of change #990' >> ${WC}/trunk/notes/difftools/pics/xxdiff-README
echo 'part of change #990' >> ${WC}/trunk/www/project_license.html
echo 'part of change #990' >> ${WC}/trunk/expat-lite/expat.html
${SVN} commit -m 'commit #990' ${WC}/trunk/NEWS ${WC}/trunk/subversion/tests/xml/README ${WC}/trunk/subversion/libsvn_delta/xml_parse.c ${WC}/trunk/subversion/libsvn_delta/svndiff.c ${WC}/trunk/doc/programmer/design/deltas.texi ${WC}/trunk/subversion/LICENSE ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Client.java ${WC}/trunk/notes/difftools/pics/xxdiff-README ${WC}/trunk/www/project_license.html ${WC}/trunk/expat-lite/expat.html

################### change 991 ###################
echo ""
echo "Doing commit #991:"
echo 'part of change #991' >> ${WC}/trunk/subversion.dsp
${SVN} commit -m 'commit #991' ${WC}/trunk/subversion.dsp

################### change 992 ###################
echo ""
echo "Doing commit #992:"
echo 'part of change #992' >> ${WC}/trunk/subversion/clients/cmdline/cleanup-cmd.c
echo 'part of change #992' >> ${WC}/trunk/subversion/libsvn_fs/rev-table.h
echo 'part of change #992' >> ${WC}/trunk/subversion/tests/clients/cmdline/svnadmin_tests.py
echo 'part of change #992' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.idl
echo 'part of change #992' >> ${WC}/trunk/subversion/include/svn_base64.h
echo 'part of change #992' >> ${WC}/trunk/notes/auth_proposal.txt
echo 'part of change #992' >> ${WC}/trunk/subversion/libsvn_subr/hashdump.c
echo 'part of change #992' >> ${WC}/trunk/subversion/include/svn_fs.h
echo 'part of change #992' >> ${WC}/trunk/subversion/tests/libsvn_delta/xml-output-test.c
${SVN} commit -m 'commit #992' ${WC}/trunk/subversion/clients/cmdline/cleanup-cmd.c ${WC}/trunk/subversion/libsvn_fs/rev-table.h ${WC}/trunk/subversion/tests/clients/cmdline/svnadmin_tests.py ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.idl ${WC}/trunk/subversion/include/svn_base64.h ${WC}/trunk/notes/auth_proposal.txt ${WC}/trunk/subversion/libsvn_subr/hashdump.c ${WC}/trunk/subversion/include/svn_fs.h ${WC}/trunk/subversion/tests/libsvn_delta/xml-output-test.c

################### change 993 ###################
echo ""
echo "Doing commit #993:"
echo 'part of change #993' >> ${WC}/trunk/subversion/clients/win32/SVNControls/pTest.vbp
echo 'part of change #993' >> ${WC}/trunk/expat-lite/xmlrole.c
echo 'part of change #993' >> ${WC}/trunk/doc/user/manual/removals.texi
echo 'part of change #993' >> ${WC}/trunk/subversion/libsvn_client/cleanup.c
echo 'part of change #993' >> ${WC}/trunk/subversion.dsw
echo 'part of change #993' >> ${WC}/trunk/subversion/libsvn_fs/tree.h
echo 'part of change #993' >> ${WC}/trunk/subversion/libsvn_fs/proplist.h
echo 'part of change #993' >> ${WC}/trunk/subversion/clients/win32/WinSVN/DriveHelpers.bas
${SVN} commit -m 'commit #993' ${WC}/trunk/subversion/clients/win32/SVNControls/pTest.vbp ${WC}/trunk/expat-lite/xmlrole.c ${WC}/trunk/doc/user/manual/removals.texi ${WC}/trunk/subversion/libsvn_client/cleanup.c ${WC}/trunk/subversion.dsw ${WC}/trunk/subversion/libsvn_fs/tree.h ${WC}/trunk/subversion/libsvn_fs/proplist.h ${WC}/trunk/subversion/clients/win32/WinSVN/DriveHelpers.bas

################### change 994 ###################
echo ""
echo "Doing commit #994:"
echo 'part of change #994' >> ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Status.java
echo 'part of change #994' >> ${WC}/trunk/AUTHORS
echo 'part of change #994' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.cpp
echo 'part of change #994' >> ${WC}/trunk/COPYING
echo 'part of change #994' >> ${WC}/trunk/subversion/tests/xml/up1b-inline.xml
echo 'part of change #994' >> ${WC}/trunk/subversion/libsvn_ra_dav/fetch.c
echo 'part of change #994' >> ${WC}/trunk/doc/programmer/design/future.texi
echo 'part of change #994' >> ${WC}/trunk/subversion/libsvn_fs/tree.c
echo 'part of change #994' >> ${WC}/trunk/subversion/tests/libsvn_fs/strings-reps-test.c
echo 'part of change #994' >> ${WC}/trunk/subversion/libsvn_fs/structure
${SVN} commit -m 'commit #994' ${WC}/trunk/subversion/bindings/java/jni/org/tigris/subversion/lib/Status.java ${WC}/trunk/AUTHORS ${WC}/trunk/subversion/clients/win32/svn_com/SVNCOM.cpp ${WC}/trunk/COPYING ${WC}/trunk/subversion/tests/xml/up1b-inline.xml ${WC}/trunk/subversion/libsvn_ra_dav/fetch.c ${WC}/trunk/doc/programmer/design/future.texi ${WC}/trunk/subversion/libsvn_fs/tree.c ${WC}/trunk/subversion/tests/libsvn_fs/strings-reps-test.c ${WC}/trunk/subversion/libsvn_fs/structure

################### change 995 ###################
echo ""
echo "Doing commit #995:"
echo 'part of change #995' >> ${WC}/trunk/subversion/libsvn_repos/hooks.c
echo 'part of change #995' >> ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py
echo 'part of change #995' >> ${WC}/trunk/build-outputs.mk
echo 'part of change #995' >> ${WC}/trunk/subversion/libsvn_subr/README.errors
${SVN} commit -m 'commit #995' ${WC}/trunk/subversion/libsvn_repos/hooks.c ${WC}/trunk/subversion/tests/clients/cmdline/prop_tests.py ${WC}/trunk/build-outputs.mk ${WC}/trunk/subversion/libsvn_subr/README.errors

################### change 996 ###################
echo ""
echo "Doing commit #996:"
echo 'part of change #996' >> ${WC}/trunk/notes/the_update_problem.txt
${SVN} commit -m 'commit #996' ${WC}/trunk/notes/the_update_problem.txt

################### change 997 ###################
echo ""
echo "Doing commit #997:"
echo 'part of change #997' >> ${WC}/trunk/subversion/libsvn_ra_local/split_url.c
echo 'part of change #997' >> ${WC}/trunk/subversion/libsvn_repos/node_tree.c
echo 'part of change #997' >> ${WC}/trunk/subversion/clients/cmdline/main.c
echo 'part of change #997' >> ${WC}/trunk/doc/programmer/design/svn-design.html
echo 'part of change #997' >> ${WC}/trunk/subversion/include/svn_io.h
echo 'part of change #997' >> ${WC}/trunk/subversion/libsvn_fs/txn-table.h
echo 'part of change #997' >> ${WC}/trunk/subversion/include/svn_quoprint.h
echo 'part of change #997' >> ${WC}/trunk/subversion/clients/cmdline/diff-cmd.c
echo 'part of change #997' >> ${WC}/trunk/subversion/include/svn_repos.h
${SVN} commit -m 'commit #997' ${WC}/trunk/subversion/libsvn_ra_local/split_url.c ${WC}/trunk/subversion/libsvn_repos/node_tree.c ${WC}/trunk/subversion/clients/cmdline/main.c ${WC}/trunk/doc/programmer/design/svn-design.html ${WC}/trunk/subversion/include/svn_io.h ${WC}/trunk/subversion/libsvn_fs/txn-table.h ${WC}/trunk/subversion/include/svn_quoprint.h ${WC}/trunk/subversion/clients/cmdline/diff-cmd.c ${WC}/trunk/subversion/include/svn_repos.h

################### change 998 ###################
echo ""
echo "Doing commit #998:"
echo 'part of change #998' >> ${WC}/trunk/subversion/mod_dav_svn/repos.c
echo 'part of change #998' >> ${WC}/trunk/subversion/libsvn_wc/README
echo 'part of change #998' >> ${WC}/trunk/svn_private_config.hw
echo 'part of change #998' >> ${WC}/trunk/subversion/tests/libsvn_delta/postfix.delta
echo 'part of change #998' >> ${WC}/trunk/expat-lite/xmltok.c
echo 'part of change #998' >> ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.cpp
echo 'part of change #998' >> ${WC}/trunk/subversion/clients/win32/svn_com/SVN.cpp
echo 'part of change #998' >> ${WC}/trunk/subversion/tests/libsvn_subr/tests_libsvn_subr_target_test.dsp
echo 'part of change #998' >> ${WC}/trunk/subversion/mod_dav_svn/static/README
echo 'part of change #998' >> ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookDemo.frm
${SVN} commit -m 'commit #998' ${WC}/trunk/subversion/mod_dav_svn/repos.c ${WC}/trunk/subversion/libsvn_wc/README ${WC}/trunk/svn_private_config.hw ${WC}/trunk/subversion/tests/libsvn_delta/postfix.delta ${WC}/trunk/expat-lite/xmltok.c ${WC}/trunk/subversion/clients/win32/svn_com/StdAfx.cpp ${WC}/trunk/subversion/clients/win32/svn_com/SVN.cpp ${WC}/trunk/subversion/tests/libsvn_subr/tests_libsvn_subr_target_test.dsp ${WC}/trunk/subversion/mod_dav_svn/static/README ${WC}/trunk/subversion/clients/win32/SVNControls/frmOutlookDemo.frm

################### change 999 ###################
echo ""
echo "Doing commit #999:"
echo 'part of change #999' >> ${WC}/trunk/ChangeLog.CVS
echo 'part of change #999' >> ${WC}/trunk/subversion/clients/cmdline/status-cmd.c
echo 'part of change #999' >> ${WC}/trunk/expat-lite/xmldef.h
echo 'part of change #999' >> ${WC}/trunk/subversion/libsvn_client/apply_edits.c
echo 'part of change #999' >> ${WC}/trunk/tools/cvs2svn/README
echo 'part of change #999' >> ${WC}/trunk/subversion/include/svn_repos.h
${SVN} commit -m 'commit #999' ${WC}/trunk/ChangeLog.CVS ${WC}/trunk/subversion/clients/cmdline/status-cmd.c ${WC}/trunk/expat-lite/xmldef.h ${WC}/trunk/subversion/libsvn_client/apply_edits.c ${WC}/trunk/tools/cvs2svn/README ${WC}/trunk/subversion/include/svn_repos.h

################### change 1000 ###################
echo ""
echo "Doing commit #1000:"
echo 'part of change #1000' >> ${WC}/trunk/notes/svndiff
echo 'part of change #1000' >> ${WC}/trunk/subversion/libsvn_fs/key-gen.h
echo 'part of change #1000' >> ${WC}/trunk/subversion/clients/cmdline/help-cmd.c
echo 'part of change #1000' >> ${WC}/trunk/subversion/libsvn_fs/txn.h
echo 'part of change #1000' >> ${WC}/trunk/subversion/bindings/svn_wc.i
echo 'part of change #1000' >> ${WC}/trunk/subversion/clients/cmdline/status-cmd.c
echo 'part of change #1000' >> ${WC}/trunk/notes/old/draft-korn-vcdiff-01.txt
echo 'part of change #1000' >> ${WC}/trunk/subversion/include/svn_hash.h
${SVN} commit -m 'commit #1000' ${WC}/trunk/notes/svndiff ${WC}/trunk/subversion/libsvn_fs/key-gen.h ${WC}/trunk/subversion/clients/cmdline/help-cmd.c ${WC}/trunk/subversion/libsvn_fs/txn.h ${WC}/trunk/subversion/bindings/svn_wc.i ${WC}/trunk/subversion/clients/cmdline/status-cmd.c ${WC}/trunk/notes/old/draft-korn-vcdiff-01.txt ${WC}/trunk/subversion/include/svn_hash.h

--------------------8-<-------cut-here---------8-<-----------------------

  /home/kfogel/src/subversion/subversion/tests/mc-repos-17075/db:
  total 266628
  drwxr-xr-x 2 kfogel kfogel 4096 Aug 20 16:04 ./
  drwxr-xr-x 7 kfogel kfogel 4096 Aug 20 15:50 ../
  -rw-r--r-- 1 kfogel kfogel 8192 Aug 20 16:05 __db.001
  -rw-r--r-- 1 kfogel kfogel 270336 Aug 20 16:05 __db.002
  -rw-r--r-- 1 kfogel kfogel 98304 Aug 20 16:05 __db.003
  -rw-r--r-- 1 kfogel kfogel 344064 Aug 20 16:05 __db.004
  -rw-r--r-- 1 kfogel kfogel 16384 Aug 20 16:05 __db.005
  -rw-r--r-- 1 kfogel kfogel 10483946 Aug 20 15:50 log.0000000001
  -rw-r--r-- 1 kfogel kfogel 10485081 Aug 20 15:50 log.0000000002
  -rw-r--r-- 1 kfogel kfogel 10482095 Aug 20 15:51 log.0000000003
  -rw-r--r-- 1 kfogel kfogel 10485119 Aug 20 15:51 log.0000000004
  -rw-r--r-- 1 kfogel kfogel 10485018 Aug 20 15:51 log.0000000005
  -rw-r--r-- 1 kfogel kfogel 10485401 Aug 20 15:52 log.0000000006
  -rw-r--r-- 1 kfogel kfogel 10485736 Aug 20 15:52 log.0000000007
  -rw-r--r-- 1 kfogel kfogel 10484321 Aug 20 15:53 log.0000000008
  -rw-r--r-- 1 kfogel kfogel 10485697 Aug 20 15:53 log.0000000009
  -rw-r--r-- 1 kfogel kfogel 10484274 Aug 20 15:53 log.0000000010
  -rw-r--r-- 1 kfogel kfogel 10485609 Aug 20 15:54 log.0000000011
  -rw-r--r-- 1 kfogel kfogel 10485683 Aug 20 15:54 log.0000000012
  -rw-r--r-- 1 kfogel kfogel 10485712 Aug 20 15:55 log.0000000013
  -rw-r--r-- 1 kfogel kfogel 10484411 Aug 20 15:55 log.0000000014
  -rw-r--r-- 1 kfogel kfogel 10481807 Aug 20 15:56 log.0000000015
  -rw-r--r-- 1 kfogel kfogel 10485681 Aug 20 15:56 log.0000000016
  -rw-r--r-- 1 kfogel kfogel 10485267 Aug 20 15:57 log.0000000017
  -rw-r--r-- 1 kfogel kfogel 10482672 Aug 20 15:58 log.0000000018
  -rw-r--r-- 1 kfogel kfogel 10485684 Aug 20 15:58 log.0000000019
  -rw-r--r-- 1 kfogel kfogel 10485727 Aug 20 15:59 log.0000000020
  -rw-r--r-- 1 kfogel kfogel 10484345 Aug 20 16:00 log.0000000021
  -rw-r--r-- 1 kfogel kfogel 10484038 Aug 20 16:01 log.0000000022
  -rw-r--r-- 1 kfogel kfogel 10482923 Aug 20 16:03 log.0000000023
  -rw-r--r-- 1 kfogel kfogel 10485451 Aug 20 16:04 log.0000000024
  -rw-r--r-- 1 kfogel kfogel 9094478 Aug 20 16:05 log.0000000025
  -rw-r--r-- 1 kfogel kfogel 446464 Aug 20 16:05 nodes
  -rw-r--r-- 1 kfogel kfogel 860160 Aug 20 16:05 representations
  -rw-r--r-- 1 kfogel kfogel 69632 Aug 20 16:05 revisions
  -rw-r--r-- 1 kfogel kfogel 9867264 Aug 20 16:05 strings
  -rw-r--r-- 1 kfogel kfogel 8192 Aug 20 16:05 transactions

--------------------8-<-------cut-here---------8-<-----------------------

  /home/kfogel/src/subversion/subversion/tests/mc-repos-17075/db:
  total 270616
  drwxr-xr-x 2 kfogel kfogel 4096 Aug 20 16:05 ./
  drwxr-xr-x 7 kfogel kfogel 4096 Aug 20 15:50 ../
  -rw-r--r-- 1 kfogel kfogel 8192 Aug 20 16:05 __db.001
  -rw-r--r-- 1 kfogel kfogel 270336 Aug 20 16:05 __db.002
  -rw-r--r-- 1 kfogel kfogel 98304 Aug 20 16:05 __db.003
  -rw-r--r-- 1 kfogel kfogel 344064 Aug 20 16:05 __db.004
  -rw-r--r-- 1 kfogel kfogel 16384 Aug 20 16:05 __db.005
  -rw-r--r-- 1 kfogel kfogel 10483946 Aug 20 15:50 log.0000000001
  -rw-r--r-- 1 kfogel kfogel 10485081 Aug 20 15:50 log.0000000002
  -rw-r--r-- 1 kfogel kfogel 10482095 Aug 20 15:51 log.0000000003
  -rw-r--r-- 1 kfogel kfogel 10485119 Aug 20 15:51 log.0000000004
  -rw-r--r-- 1 kfogel kfogel 10485018 Aug 20 15:51 log.0000000005
  -rw-r--r-- 1 kfogel kfogel 10485401 Aug 20 15:52 log.0000000006
  -rw-r--r-- 1 kfogel kfogel 10485736 Aug 20 15:52 log.0000000007
  -rw-r--r-- 1 kfogel kfogel 10484321 Aug 20 15:53 log.0000000008
  -rw-r--r-- 1 kfogel kfogel 10485697 Aug 20 15:53 log.0000000009
  -rw-r--r-- 1 kfogel kfogel 10484274 Aug 20 15:53 log.0000000010
  -rw-r--r-- 1 kfogel kfogel 10485609 Aug 20 15:54 log.0000000011
  -rw-r--r-- 1 kfogel kfogel 10485683 Aug 20 15:54 log.0000000012
  -rw-r--r-- 1 kfogel kfogel 10485712 Aug 20 15:55 log.0000000013
  -rw-r--r-- 1 kfogel kfogel 10484411 Aug 20 15:55 log.0000000014
  -rw-r--r-- 1 kfogel kfogel 10481807 Aug 20 15:56 log.0000000015
  -rw-r--r-- 1 kfogel kfogel 10485681 Aug 20 15:56 log.0000000016
  -rw-r--r-- 1 kfogel kfogel 10485267 Aug 20 15:57 log.0000000017
  -rw-r--r-- 1 kfogel kfogel 10482672 Aug 20 15:58 log.0000000018
  -rw-r--r-- 1 kfogel kfogel 10485684 Aug 20 15:58 log.0000000019
  -rw-r--r-- 1 kfogel kfogel 10485727 Aug 20 15:59 log.0000000020
  -rw-r--r-- 1 kfogel kfogel 10484345 Aug 20 16:00 log.0000000021
  -rw-r--r-- 1 kfogel kfogel 10484038 Aug 20 16:01 log.0000000022
  -rw-r--r-- 1 kfogel kfogel 10482923 Aug 20 16:03 log.0000000023
  -rw-r--r-- 1 kfogel kfogel 10485451 Aug 20 16:04 log.0000000024
  -rw-r--r-- 1 kfogel kfogel 10483485 Aug 20 16:05 log.0000000025
  -rw-r--r-- 1 kfogel kfogel 2603574 Aug 20 16:05 log.0000000026
  -rw-r--r-- 1 kfogel kfogel 446464 Aug 20 16:05 nodes
  -rw-r--r-- 1 kfogel kfogel 864256 Aug 20 16:05 representations
  -rw-r--r-- 1 kfogel kfogel 69632 Aug 20 16:05 revisions
  -rw-r--r-- 1 kfogel kfogel 9949184 Aug 20 16:05 strings
  -rw-r--r-- 1 kfogel kfogel 8192 Aug 20 16:05 transactions

--------------------8-<-------cut-here---------8-<-----------------------

  /home/kfogel/src/subversion/subversion/tests/mc-repos-17075/db:
  total 273980
  drwxr-xr-x 2 kfogel kfogel 4096 Aug 20 16:05 ./
  drwxr-xr-x 7 kfogel kfogel 4096 Aug 20 15:50 ../
  -rw-r--r-- 1 kfogel kfogel 8192 Aug 20 16:05 __db.001
  -rw-r--r-- 1 kfogel kfogel 270336 Aug 20 16:05 __db.002
  -rw-r--r-- 1 kfogel kfogel 98304 Aug 20 16:05 __db.003
  -rw-r--r-- 1 kfogel kfogel 344064 Aug 20 16:05 __db.004
  -rw-r--r-- 1 kfogel kfogel 16384 Aug 20 16:05 __db.005
  -rw-r--r-- 1 kfogel kfogel 10483946 Aug 20 15:50 log.0000000001
  -rw-r--r-- 1 kfogel kfogel 10485081 Aug 20 15:50 log.0000000002
  -rw-r--r-- 1 kfogel kfogel 10482095 Aug 20 15:51 log.0000000003
  -rw-r--r-- 1 kfogel kfogel 10485119 Aug 20 15:51 log.0000000004
  -rw-r--r-- 1 kfogel kfogel 10485018 Aug 20 15:51 log.0000000005
  -rw-r--r-- 1 kfogel kfogel 10485401 Aug 20 15:52 log.0000000006
  -rw-r--r-- 1 kfogel kfogel 10485736 Aug 20 15:52 log.0000000007
  -rw-r--r-- 1 kfogel kfogel 10484321 Aug 20 15:53 log.0000000008
  -rw-r--r-- 1 kfogel kfogel 10485697 Aug 20 15:53 log.0000000009
  -rw-r--r-- 1 kfogel kfogel 10484274 Aug 20 15:53 log.0000000010
  -rw-r--r-- 1 kfogel kfogel 10485609 Aug 20 15:54 log.0000000011
  -rw-r--r-- 1 kfogel kfogel 10485683 Aug 20 15:54 log.0000000012
  -rw-r--r-- 1 kfogel kfogel 10485712 Aug 20 15:55 log.0000000013
  -rw-r--r-- 1 kfogel kfogel 10484411 Aug 20 15:55 log.0000000014
  -rw-r--r-- 1 kfogel kfogel 10481807 Aug 20 15:56 log.0000000015
  -rw-r--r-- 1 kfogel kfogel 10485681 Aug 20 15:56 log.0000000016
  -rw-r--r-- 1 kfogel kfogel 10485267 Aug 20 15:57 log.0000000017
  -rw-r--r-- 1 kfogel kfogel 10482672 Aug 20 15:58 log.0000000018
  -rw-r--r-- 1 kfogel kfogel 10485684 Aug 20 15:58 log.0000000019
  -rw-r--r-- 1 kfogel kfogel 10485727 Aug 20 15:59 log.0000000020
  -rw-r--r-- 1 kfogel kfogel 10484345 Aug 20 16:00 log.0000000021
  -rw-r--r-- 1 kfogel kfogel 10484038 Aug 20 16:01 log.0000000022
  -rw-r--r-- 1 kfogel kfogel 10482923 Aug 20 16:03 log.0000000023
  -rw-r--r-- 1 kfogel kfogel 10485451 Aug 20 16:04 log.0000000024
  -rw-r--r-- 1 kfogel kfogel 10483485 Aug 20 16:05 log.0000000025
  -rw-r--r-- 1 kfogel kfogel 6031949 Aug 20 16:05 log.0000000026
  -rw-r--r-- 1 kfogel kfogel 450560 Aug 20 16:05 nodes
  -rw-r--r-- 1 kfogel kfogel 868352 Aug 20 16:05 representations
  -rw-r--r-- 1 kfogel kfogel 69632 Aug 20 16:05 revisions
  -rw-r--r-- 1 kfogel kfogel 9949184 Aug 20 16:05 strings
  -rw-r--r-- 1 kfogel kfogel 8192 Aug 20 16:05 transactions

--------------------8-<-------cut-here---------8-<-----------------------

  /home/kfogel/src/subversion/subversion/tests/mc-repos-17075/db:
  total 280176
  drwxr-xr-x 2 kfogel kfogel 4096 Aug 20 16:06 ./
  drwxr-xr-x 7 kfogel kfogel 4096 Aug 20 15:50 ../
  -rw-r--r-- 1 kfogel kfogel 8192 Aug 20 16:06 __db.001
  -rw-r--r-- 1 kfogel kfogel 270336 Aug 20 16:06 __db.002
  -rw-r--r-- 1 kfogel kfogel 98304 Aug 20 16:06 __db.003
  -rw-r--r-- 1 kfogel kfogel 344064 Aug 20 16:06 __db.004
  -rw-r--r-- 1 kfogel kfogel 16384 Aug 20 16:06 __db.005
  -rw-r--r-- 1 kfogel kfogel 10483946 Aug 20 15:50 log.0000000001
  -rw-r--r-- 1 kfogel kfogel 10485081 Aug 20 15:50 log.0000000002
  -rw-r--r-- 1 kfogel kfogel 10482095 Aug 20 15:51 log.0000000003
  -rw-r--r-- 1 kfogel kfogel 10485119 Aug 20 15:51 log.0000000004
  -rw-r--r-- 1 kfogel kfogel 10485018 Aug 20 15:51 log.0000000005
  -rw-r--r-- 1 kfogel kfogel 10485401 Aug 20 15:52 log.0000000006
  -rw-r--r-- 1 kfogel kfogel 10485736 Aug 20 15:52 log.0000000007
  -rw-r--r-- 1 kfogel kfogel 10484321 Aug 20 15:53 log.0000000008
  -rw-r--r-- 1 kfogel kfogel 10485697 Aug 20 15:53 log.0000000009
  -rw-r--r-- 1 kfogel kfogel 10484274 Aug 20 15:53 log.0000000010
  -rw-r--r-- 1 kfogel kfogel 10485609 Aug 20 15:54 log.0000000011
  -rw-r--r-- 1 kfogel kfogel 10485683 Aug 20 15:54 log.0000000012
  -rw-r--r-- 1 kfogel kfogel 10485712 Aug 20 15:55 log.0000000013
  -rw-r--r-- 1 kfogel kfogel 10484411 Aug 20 15:55 log.0000000014
  -rw-r--r-- 1 kfogel kfogel 10481807 Aug 20 15:56 log.0000000015
  -rw-r--r-- 1 kfogel kfogel 10485681 Aug 20 15:56 log.0000000016
  -rw-r--r-- 1 kfogel kfogel 10485267 Aug 20 15:57 log.0000000017
  -rw-r--r-- 1 kfogel kfogel 10482672 Aug 20 15:58 log.0000000018
  -rw-r--r-- 1 kfogel kfogel 10485684 Aug 20 15:58 log.0000000019
  -rw-r--r-- 1 kfogel kfogel 10485727 Aug 20 15:59 log.0000000020
  -rw-r--r-- 1 kfogel kfogel 10484345 Aug 20 16:00 log.0000000021
  -rw-r--r-- 1 kfogel kfogel 10484038 Aug 20 16:01 log.0000000022
  -rw-r--r-- 1 kfogel kfogel 10482923 Aug 20 16:03 log.0000000023
  -rw-r--r-- 1 kfogel kfogel 10485451 Aug 20 16:04 log.0000000024
  -rw-r--r-- 1 kfogel kfogel 10483485 Aug 20 16:05 log.0000000025
  -rw-r--r-- 1 kfogel kfogel 10483480 Aug 20 16:06 log.0000000026
  -rw-r--r-- 1 kfogel kfogel 1872306 Aug 20 16:06 log.0000000027
  -rw-r--r-- 1 kfogel kfogel 450560 Aug 20 16:06 nodes
  -rw-r--r-- 1 kfogel kfogel 876544 Aug 20 16:06 representations
  -rw-r--r-- 1 kfogel kfogel 69632 Aug 20 16:06 revisions
  -rw-r--r-- 1 kfogel kfogel 9949184 Aug 20 16:06 strings
  -rw-r--r-- 1 kfogel kfogel 8192 Aug 20 16:06 transactions

--------------------8-<-------cut-here---------8-<-----------------------

  /home/kfogel/src/subversion/subversion/tests/mc-repos-17075/db:
  total 281300
  drwxr-xr-x 2 kfogel kfogel 4096 Aug 20 16:06 ./
  drwxr-xr-x 7 kfogel kfogel 4096 Aug 20 15:50 ../
  -rw-r--r-- 1 kfogel kfogel 8192 Aug 20 16:06 __db.001
  -rw-r--r-- 1 kfogel kfogel 270336 Aug 20 16:06 __db.002
  -rw-r--r-- 1 kfogel kfogel 98304 Aug 20 16:06 __db.003
  -rw-r--r-- 1 kfogel kfogel 344064 Aug 20 16:06 __db.004
  -rw-r--r-- 1 kfogel kfogel 16384 Aug 20 16:06 __db.005
  -rw-r--r-- 1 kfogel kfogel 10483946 Aug 20 15:50 log.0000000001
  -rw-r--r-- 1 kfogel kfogel 10485081 Aug 20 15:50 log.0000000002
  -rw-r--r-- 1 kfogel kfogel 10482095 Aug 20 15:51 log.0000000003
  -rw-r--r-- 1 kfogel kfogel 10485119 Aug 20 15:51 log.0000000004
  -rw-r--r-- 1 kfogel kfogel 10485018 Aug 20 15:51 log.0000000005
  -rw-r--r-- 1 kfogel kfogel 10485401 Aug 20 15:52 log.0000000006
  -rw-r--r-- 1 kfogel kfogel 10485736 Aug 20 15:52 log.0000000007
  -rw-r--r-- 1 kfogel kfogel 10484321 Aug 20 15:53 log.0000000008
  -rw-r--r-- 1 kfogel kfogel 10485697 Aug 20 15:53 log.0000000009
  -rw-r--r-- 1 kfogel kfogel 10484274 Aug 20 15:53 log.0000000010
  -rw-r--r-- 1 kfogel kfogel 10485609 Aug 20 15:54 log.0000000011
  -rw-r--r-- 1 kfogel kfogel 10485683 Aug 20 15:54 log.0000000012
  -rw-r--r-- 1 kfogel kfogel 10485712 Aug 20 15:55 log.0000000013
  -rw-r--r-- 1 kfogel kfogel 10484411 Aug 20 15:55 log.0000000014
  -rw-r--r-- 1 kfogel kfogel 10481807 Aug 20 15:56 log.0000000015
  -rw-r--r-- 1 kfogel kfogel 10485681 Aug 20 15:56 log.0000000016
  -rw-r--r-- 1 kfogel kfogel 10485267 Aug 20 15:57 log.0000000017
  -rw-r--r-- 1 kfogel kfogel 10482672 Aug 20 15:58 log.0000000018
  -rw-r--r-- 1 kfogel kfogel 10485684 Aug 20 15:58 log.0000000019
  -rw-r--r-- 1 kfogel kfogel 10485727 Aug 20 15:59 log.0000000020
  -rw-r--r-- 1 kfogel kfogel 10484345 Aug 20 16:00 log.0000000021
  -rw-r--r-- 1 kfogel kfogel 10484038 Aug 20 16:01 log.0000000022
  -rw-r--r-- 1 kfogel kfogel 10482923 Aug 20 16:03 log.0000000023
  -rw-r--r-- 1 kfogel kfogel 10485451 Aug 20 16:04 log.0000000024
  -rw-r--r-- 1 kfogel kfogel 10483485 Aug 20 16:05 log.0000000025
  -rw-r--r-- 1 kfogel kfogel 10483480 Aug 20 16:06 log.0000000026
  -rw-r--r-- 1 kfogel kfogel 2987619 Aug 20 16:06 log.0000000027
  -rw-r--r-- 1 kfogel kfogel 454656 Aug 20 16:06 nodes
  -rw-r--r-- 1 kfogel kfogel 880640 Aug 20 16:06 representations
  -rw-r--r-- 1 kfogel kfogel 69632 Aug 20 16:06 revisions
  -rw-r--r-- 1 kfogel kfogel 9977856 Aug 20 16:06 strings
  -rw-r--r-- 1 kfogel kfogel 8192 Aug 20 16:06 transactions

--------------------8-<-------cut-here---------8-<-----------------------

  /home/kfogel/src/subversion/subversion/tests/mc-repos-17075/db:
  total 285328
  drwxr-xr-x 2 kfogel kfogel 4096 Aug 20 16:06 ./
  drwxr-xr-x 7 kfogel kfogel 4096 Aug 20 15:50 ../
  -rw-r--r-- 1 kfogel kfogel 8192 Aug 20 16:06 __db.001
  -rw-r--r-- 1 kfogel kfogel 270336 Aug 20 16:06 __db.002
  -rw-r--r-- 1 kfogel kfogel 98304 Aug 20 16:06 __db.003
  -rw-r--r-- 1 kfogel kfogel 344064 Aug 20 16:06 __db.004
  -rw-r--r-- 1 kfogel kfogel 16384 Aug 20 16:06 __db.005
  -rw-r--r-- 1 kfogel kfogel 10483946 Aug 20 15:50 log.0000000001
  -rw-r--r-- 1 kfogel kfogel 10485081 Aug 20 15:50 log.0000000002
  -rw-r--r-- 1 kfogel kfogel 10482095 Aug 20 15:51 log.0000000003
  -rw-r--r-- 1 kfogel kfogel 10485119 Aug 20 15:51 log.0000000004
  -rw-r--r-- 1 kfogel kfogel 10485018 Aug 20 15:51 log.0000000005
  -rw-r--r-- 1 kfogel kfogel 10485401 Aug 20 15:52 log.0000000006
  -rw-r--r-- 1 kfogel kfogel 10485736 Aug 20 15:52 log.0000000007
  -rw-r--r-- 1 kfogel kfogel 10484321 Aug 20 15:53 log.0000000008
  -rw-r--r-- 1 kfogel kfogel 10485697 Aug 20 15:53 log.0000000009
  -rw-r--r-- 1 kfogel kfogel 10484274 Aug 20 15:53 log.0000000010
  -rw-r--r-- 1 kfogel kfogel 10485609 Aug 20 15:54 log.0000000011
  -rw-r--r-- 1 kfogel kfogel 10485683 Aug 20 15:54 log.0000000012
  -rw-r--r-- 1 kfogel kfogel 10485712 Aug 20 15:55 log.0000000013
  -rw-r--r-- 1 kfogel kfogel 10484411 Aug 20 15:55 log.0000000014
  -rw-r--r-- 1 kfogel kfogel 10481807 Aug 20 15:56 log.0000000015
  -rw-r--r-- 1 kfogel kfogel 10485681 Aug 20 15:56 log.0000000016
  -rw-r--r-- 1 kfogel kfogel 10485267 Aug 20 15:57 log.0000000017
  -rw-r--r-- 1 kfogel kfogel 10482672 Aug 20 15:58 log.0000000018
  -rw-r--r-- 1 kfogel kfogel 10485684 Aug 20 15:58 log.0000000019
  -rw-r--r-- 1 kfogel kfogel 10485727 Aug 20 15:59 log.0000000020
  -rw-r--r-- 1 kfogel kfogel 10484345 Aug 20 16:00 log.0000000021
  -rw-r--r-- 1 kfogel kfogel 10484038 Aug 20 16:01 log.0000000022
  -rw-r--r-- 1 kfogel kfogel 10482923 Aug 20 16:03 log.0000000023
  -rw-r--r-- 1 kfogel kfogel 10485451 Aug 20 16:04 log.0000000024
  -rw-r--r-- 1 kfogel kfogel 10483485 Aug 20 16:05 log.0000000025
  -rw-r--r-- 1 kfogel kfogel 10483480 Aug 20 16:06 log.0000000026
  -rw-r--r-- 1 kfogel kfogel 7097534 Aug 20 16:06 log.0000000027
  -rw-r--r-- 1 kfogel kfogel 454656 Aug 20 16:06 nodes
  -rw-r--r-- 1 kfogel kfogel 888832 Aug 20 16:06 representations
  -rw-r--r-- 1 kfogel kfogel 69632 Aug 20 16:06 revisions
  -rw-r--r-- 1 kfogel kfogel 9977856 Aug 20 16:06 strings
  -rw-r--r-- 1 kfogel kfogel 8192 Aug 20 16:06 transactions

--------------------8-<-------cut-here---------8-<-----------------------

That's all.

-K

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Sat Oct 21 14:36:36 2006

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.