Re: Unshelving through the new WC editor API

2019-02-01 Thread Julian Foad
Julian Foad wrote on 2019-01-14: > I'm starting to re-implement "unshelve" using the new WC editor API. [...] > What I'll want to do now is drive a WC-mods-editor with the changes found: > [...] That's committed and working. Next I'll want to use the editor API for pushing changes *into* a shelf

Unshelving through the new WC editor API

2019-01-14 Thread Julian Foad
I'm starting to re-implement "unshelve" using the new WC editor API. Here's what "unshelve" looks like now: for each node-change found by shelf_status_walk(shelf-storage): if it's "delete": call svn_wc_delete4(path,...) if it's "modify": wc_file_merge(path,...) etc. What I'll want to do no