Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id B3EF4200CCF for ; Mon, 24 Jul 2017 13:55:43 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id B237E164F9A; Mon, 24 Jul 2017 11:55:43 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 039F0164F99 for ; Mon, 24 Jul 2017 13:55:42 +0200 (CEST) Received: (qmail 34499 invoked by uid 500); 24 Jul 2017 11:55:42 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 34487 invoked by uid 99); 24 Jul 2017 11:55:42 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Jul 2017 11:55:42 +0000 Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 8656C3A0561 for ; Mon, 24 Jul 2017 11:55:41 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1802795 - /subversion/trunk/subversion/libsvn_client/import.c Date: Mon, 24 Jul 2017 11:55:41 -0000 To: commits@subversion.apache.org From: julianfoad@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20170724115541.8656C3A0561@svn01-us-west.apache.org> archived-at: Mon, 24 Jul 2017 11:55:43 -0000 Author: julianfoad Date: Mon Jul 24 11:55:41 2017 New Revision: 1802795 URL: http://svn.apache.org/viewvc?rev=1802795&view=rev Log: * subversion/libsvn_client/import.c (import): Update doc string. Modified: subversion/trunk/subversion/libsvn_client/import.c Modified: subversion/trunk/subversion/libsvn_client/import.c URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/import.c?rev=1802795&r1=1802794&r2=1802795&view=diff ============================================================================== --- subversion/trunk/subversion/libsvn_client/import.c (original) +++ subversion/trunk/subversion/libsvn_client/import.c Mon Jul 24 11:55:41 2017 @@ -577,26 +577,26 @@ import_dir(const svn_delta_editor_t *edi } -/* Recursively import PATH to a repository using EDITOR and - * EDIT_BATON. PATH can be a file or directory. +/* Recursively import LOCAL_ABSPATH to a repository using EDITOR and + * EDIT_BATON. LOCAL_ABSPATH can be a file or directory. * * Sets *UPDATED_REPOSITORY to TRUE when the repository was modified by * a successfull commit, otherwise to FALSE. * - * DEPTH is the depth at which to import PATH; it behaves as for - * svn_client_import4(). + * DEPTH is the depth at which to import LOCAL_ABSPATH; it behaves as for + * svn_client_import5(). * * BASE_REV is the revision to use for the root of the commit. We * checked the preconditions against this revision. * * NEW_ENTRIES is an ordered array of path components that must be * created in the repository (where the ordering direction is - * parent-to-child). If PATH is a directory, NEW_ENTRIES may be empty + * parent-to-child). If LOCAL_ABSPATH is a directory, NEW_ENTRIES may be empty * -- the result is an import which creates as many new entries in the * top repository target directory as there are importable entries in - * the top of PATH; but if NEW_ENTRIES is not empty, its last item is + * the top of LOCAL_ABSPATH; but if NEW_ENTRIES is not empty, its last item is * the name of a new subdirectory in the repository to hold the - * import. If PATH is a file, NEW_ENTRIES may not be empty, and its + * import. If LOCAL_ABSPATH is a file, NEW_ENTRIES may not be empty, and its * last item is the name used for the file in the repository. If * NEW_ENTRIES contains more than one item, all but the last item are * the names of intermediate directories that are created before the @@ -624,6 +624,8 @@ import_dir(const svn_delta_editor_t *edi * If CTX->NOTIFY_FUNC is non-null, invoke it with CTX->NOTIFY_BATON for * each imported path, passing actions svn_wc_notify_commit_added. * + * URL is used only in the 'commit_finalizing' notification. + * * Use POOL for any temporary allocation. * * Note: the repository directory receiving the import was specified