You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by kf...@collab.net on 2004/10/18 04:58:55 UTC

Re: svn commit: r11457 - in trunk/subversion: libsvn_wc tests/clients/cmdline

philip@tigris.org writes:
> --- trunk/subversion/libsvn_wc/copy.c	(original)
> +++ trunk/subversion/libsvn_wc/copy.c	Sun Oct 17 14:13:39 2004
> @@ -264,6 +265,84 @@
>    return SVN_NO_ERROR;
>  }
>  
> +/* For all entries in and under ADM_ACCESS convert deleted=true into
> +   schedule=delete.  The result of this is that when the copy is committed
> +   the items in question get deleted and the result is a directory in the
> +   repository that matches the original source directory for copy.  If this
> +   were not done the deleted=true items would simply vanish from the
> +   entries file as the copy is added to the working copy.  Issue 2101. */
> +static svn_error_t *
> +convert_deleted_to_schedule_delete (svn_wc_adm_access_t *adm_access,
> +                                    apr_pool_t *pool)

Shouldn't the doc string also mention that this will change the
'kind', that is, directory entries become file entries?

Clever solution, by the way!  (The whole thing, I mean, not the
conversion of dirs to files.)

-Karl

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org

Re: svn commit: r11457 - in trunk/subversion: libsvn_wc tests/clients/cmdline

Posted by Philip Martin <ph...@codematters.co.uk>.
kfogel@collab.net writes:

> Shouldn't the doc string also mention that this will change the
> 'kind', that is, directory entries become file entries?

Done in r11475.

-- 
Philip Martin

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org