Page MenuHomePhabricator

SVN file externals aren't properly detected
Open, WishlistPublic

Description

In SVN 1.6 a change was introduced, that will allow to have file (before only folders were allowed) listed as part of svn:externals directory property. File externals looks differently in svn status --xml command output and that's why they are not detected.

Here is xml, produced by svn status --xml on a working copy, that have both file and folder externals:

<?xml version="1.0" encoding="UTF-8"?>
<status>
    <target path=".">
        <entry path="system">
            <wc-status props="none" item="external" />
        </entry>
        <entry path="LICENSE">
            <wc-status file-external="true" props="normal" item="normal" revision="16091">
                <commit revision="14585">
                    <author>alex</author>
                    <date>2011-09-24T12:04:17.516241Z</date>
                </commit>
            </wc-status>
        </entry>
    </target>
</status>

Event Timeline

aik099 raised the priority of this task from to Needs Triage.
aik099 updated the task description. (Show Details)
aik099 added a project: Arcanist.
aik099 added a subscriber: aik099.
epriestley triaged this task as Wishlist priority.Nov 1 2014, 11:33 PM
epriestley added a subscriber: epriestley.

Are you sure, that Wishlist priority can be applied in this case, because all necessary code changes are already made in D10772 revision. So it's just a matter of reviewing.

snoyl8 moved this task from In Progress to Backlog on the Arcanist board.