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

Re: svn commit: r17234 - in trunk/subversion: libsvn_wc

From: <kfogel_at_collab.net>
Date: 2005-11-08 21:17:34 CET

malcolm@tigris.org writes:
> Log:
> Ensure that local property modifications aren't reported during diffs to
> BASE, by reporting against the BASE properties rather than the WORKING
> properties.

I had trouble understanding this log message. Did you mean to say
"are" rather than "aren't"? Or is there something deeper I'm missing?

I would think that local property modifications *should* be reported
during diffs against BASE, and that the clause following the comma in
your above paragraph describes how one would make that happen.

-Karl

> * subversion/libsvn_wc/diff.c
> (close_directory, close_file): If diffing against the text-base,
> use the BASE properties (instead of the cached WORKING properties)
> as a base to pass, together with the BASE->repos propchanges, to
> the diff callback functions.
>
> * subversion/tests/clients/cmdline/diff_tests.py
> (test_list): Unmark diff_property_changes_to_base as XFail.
>
>
> Modified: trunk/subversion/libsvn_wc/diff.c
> Url: http://svn.collab.net/viewcvs/svn/trunk/subversion/libsvn_wc/diff.c?rev=17234&p1=trunk/subversion/libsvn_wc/diff.c&p2=trunk/subversion/libsvn_wc/diff.c&r1=17233&r2=17234
> ==============================================================================
> --- trunk/subversion/libsvn_wc/diff.c (original)
> +++ trunk/subversion/libsvn_wc/diff.c Mon Nov 7 09:31:08 2005
> @@ -953,14 +953,32 @@
>
> if (b->propchanges->nelts > 0)
> {
> + /* The working copy properties at the base of the wc->repos comparison:
> + either BASE or WORKING. */
> + apr_hash_t *wcprops;
> +
> + if (b->edit_baton->use_text_base)
> + {
> + svn_wc_adm_access_t *adm_access;
> +
> + SVN_ERR (svn_wc_adm_probe_retrieve (&adm_access,
> + b->edit_baton->anchor,
> + b->path, b->pool));
> +
> + SVN_ERR (svn_wc_get_prop_diffs (NULL, &wcprops,
> + b->path, adm_access, pool));
> + }
> + else
> + wcprops = b->baseprops;
> +
> if (! b->edit_baton->reverse_order)
> - reverse_propchanges (b->baseprops, b->propchanges, b->pool);
> + reverse_propchanges (wcprops, b->propchanges, b->pool);
>
> SVN_ERR (b->edit_baton->callbacks->dir_props_changed
> (NULL, NULL,
> b->path,
> b->propchanges,
> - b->baseprops,
> + wcprops,
> b->edit_baton->callback_baton));
> }
>
> @@ -1259,12 +1277,22 @@
> else
> localfile = temp_file_path = NULL;
>
> - if (b->propchanges->nelts > 0
> - && ! eb->reverse_order)
> - reverse_propchanges (b->baseprops, b->propchanges, b->pool);
> -
> if (localfile || b->propchanges->nelts > 0)
> {
> + /* The working copy properties at the base of the wc->repos
> + comparison: either BASE or WORKING. */
> + apr_hash_t *wcprops;
> +
> + if (eb->use_text_base)
> + SVN_ERR (svn_wc_get_prop_diffs (NULL, &wcprops,
> + b->path, adm_access, pool));
> + else
> + wcprops = b->baseprops;
> +
> + if (b->propchanges->nelts > 0
> + && ! eb->reverse_order)
> + reverse_propchanges (wcprops, b->propchanges, b->pool);
> +
> err1 = b->edit_baton->callbacks->file_changed
> (NULL, NULL, NULL,
> b->path,
> @@ -1274,7 +1302,7 @@
> eb->reverse_order ? b->edit_baton->revnum : SVN_INVALID_REVNUM,
> eb->reverse_order ? working_mimetype : pristine_mimetype,
> eb->reverse_order ? pristine_mimetype : working_mimetype,
> - b->propchanges, b->baseprops,
> + b->propchanges, wcprops,
> b->edit_baton->callback_baton);
>
> if (localfile && (! eb->use_text_base) && (! b->schedule_delete)
>
> Modified: trunk/subversion/tests/clients/cmdline/diff_tests.py
> Url: http://svn.collab.net/viewcvs/svn/trunk/subversion/tests/clients/cmdline/diff_tests.py?rev=17234&p1=trunk/subversion/tests/clients/cmdline/diff_tests.py&p2=trunk/subversion/tests/clients/cmdline/diff_tests.py&r1=17233&r2=17234
> ==============================================================================
> --- trunk/subversion/tests/clients/cmdline/diff_tests.py (original)
> +++ trunk/subversion/tests/clients/cmdline/diff_tests.py Mon Nov 7 09:31:08 2005
> @@ -1990,7 +1990,7 @@
> diff_keywords,
> diff_force,
> XFail(diff_renamed_dir),
> - XFail(diff_property_changes_to_base),
> + diff_property_changes_to_base,
> ]
>
> if __name__ == '__main__':
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: svn-unsubscribe@subversion.tigris.org
> For additional commands, e-mail: svn-help@subversion.tigris.org
>

-- 
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Tue Nov 8 22:36:09 2005

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.