Hi, I'm a bit baffled by the following behaviour on a small test repository where in r2 the directory a and file a/b exist and are deleted in HEAD/r4:
| [...@passepartout ~]$ svn --version | svn, version 1.6.6 (r40053) | compiled Nov 8 2009, 13:09:20 | [...] | [...@passepartout ~]$ svn list file:///var/tmp/svn-repo | [...@passepartout ~]$ svn list -r r2 file:///var/tmp/svn-repo | a/ | [...@passepartout ~]$ svn list -r r2 file:///var/tmp/svn-repo/a | svn: File not found: revision 4, path '/a' | [...@passepartout ~]$ svn list file:///var/tmp/svn-repo/a...@r2 | b | [...@passepartout ~]$ "svn help list" shows "-r" as a valid option, but apparently it is only honoured in a directory that is existent in HEAD as well? Is there a way to express the '-r {DATE}' syntax with the "@" suffix? "@{2009-01-01}" seems to be ignored: | [...@passepartout ~]$ svn list 'file:///var/tmp/svn-repo/a...@{2009-01-26}' | svn: URL 'file:///var/tmp/svn-repo/a' non-existent in that revision | [...@passepartout ~]$ TIA, Tim