Yoshiki Hayashi <yoshiki@xemacs.org> (yoshiki)


Patch Suggested
r1061, r1026, r593, r566 r250

r1061 | kfogel | 2002-01-25 10:45:00 -0600 (Fri, 25 Jan 2002)

The comment above import_dir says calling EDITOR->close_directory is
the caller's job.  Now, import_dir calls import_dir recursively.  It
needs to close directories it opened.

Patch by: Yoshiki Hayashi <yoshiki@xemacs.org>

* subversion/libsvn_client/commit.c (import_dir): Call close_directory
for directories you opened.


r1026 | cmpilato | 2002-01-23 09:05:21 -0600 (Wed, 23 Jan 2002)

Fix the problem that change_dir_prop always tries to create an
svn_string_t even when local_value is NULL (which means deleting
property).

Patch by: Yoshiki Hayashi <yoshiki@xemacs.org>

* get_editor.c (change_dir_prop): When local_value is NULL, simply set
  propchange->value to NULL.


r593 | cmpilato | 2001-12-04 11:03:26 -0600 (Tue, 04 Dec 2001)

Remove user argument to svn_client_import.  User is retrieved via
auth_baton.

Patch by: Yoshiki Hayashi <yoshiki@xemacs.org>

* subversion/include/svn_client.h

  (svn_client_import): Remove user parameter.
  (svn_client_commit): Docstring edit.

* subversion/libsvn_client/commit.c

  (svn_client_import): Remove user parameter.

* subversion/clients/cmdline/import-cmd.c 

  (cl_import): Adjust argument of svn_client_import.

* subversion/bindings/ruby/client.c 
  
  (cl_import): Adjust argument of svn_client_import.


r566 | cmpilato | 2001-11-29 11:13:25 -0600 (Thu, 29 Nov 2001)

This patch allows you to commit files without providing get_func.
Current code will lose information because it will succeed to commit
even when it should result in conflict.  It should version_url
according to revision, which is not always the latest revision.

Patch by: Yoshiki Hayashi <yoshiki@xemacs.org>

* subversion/libsvn_ra_dav/commit.c

  (get_version_url): Take revision as argument.  Returns the property
  of the latest revision when revision is invalid.  Otherwise, get the
  property of specified revision.

  (add_child): Take revision as argument and pass it to
  get_version_url.

  (commit_open_root): Pass SVN_INVALID_REVNUM to get_version_url.
  (commit_add_dir, commit_add_file): Pass SVN_INVALID_REVNUM to add_child.
  (commit_open_dir, commit_open_file): Pass base_revision to add_child.


r250 | kfogel | 2001-10-16 14:09:48 -0500 (Tue, 16 Oct 2001)

* reps-strings.c (svn_fs__rep_deltify): Use APR_SIZE_T_FMT and no cast
instead of guessing at a format string.

Suggested by: Yoshiki Hayashi <yoshiki@xemacs.org>