Closed (fixed)
Project:
Version Control API -- Subversion backend
Version:
5.x-2.0-rc2
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
14 Jan 2009 at 11:57 UTC
Updated:
4 Feb 2009 at 23:50 UTC
I use a svn 1.4 version and the --depth appear in the 1.5 version.
Comments
Comment #1
jpetso commentedoh, hey, sorry, i didn't know that option was new. expect a fix shortly.
Comment #2
taiky commentedmaybe just delete it. it works
Comment #3
jpetso commentedNope, just deleting it is not an option as that will break svnlib_info() calls that specify another depth than "empty". (For example, directory content listings use svnlib_info() with "immediates" as depth, so if you just delete it then e.g. Repoview won't show any files and directories anymore.)
I fixed it properly by leaving out the option for an "empty" depth, using '-R' for "recursive" depth (which is supported by 1.4 afaik), and working around the lack of "files" and "immediates" options in Subversion 1.4 with a little help from "svn ls". Committed to HEAD and DRUPAL-5--2, so the fix will be in all versions of the SVN backend starting from 5.x-2.0-rc3 (or 5.x-2.0, in case we don't do another release candidate).
Comment #4
jschumann commentedSo I should get a copy of HEAD and run that?