Citeren Max Bowsher <maxb@ukf.net>:
> Lieven wrote:
> > Hi,
> >
> > We're using the svn_load_dirs.pl script to import a dump of our previous
> > SCM to Subversion. Platform is Cygwin on Windows 2000, Subversion version
> > 1.2.0 client & server, svn_load_dirs.pl rev. 10000.
> >
> > I encountered an issue in the script with files containing the $-sign:
> >
> > ( extract from console output ):
> > -----------------------
> > Running svn propget svn:eol-style
> > oracle/packages/PCK$GEOROUTE_STREET_SEGMENTS.PKB
> > svn: 'oracle/packages/PCK.PKB' is not under version control
> > ./svn_load_dirs.pl: svn propget svn:eol-style
> > oracle/packages/PCK$GEOROUTE_STREET_SEGMENTS.PKB failed with this output:
> >
> > Press return to quit and clean up svn working directory:
> > -----------------------
> >
> > Cause of the error is that in the line:
> >
> > svn propget svn:eol-style oracle/packages/PCK$GEOROUTE_STREET_SEGMENTS.PKB
> >
> > the string $GEOROUTE_STREET_SEGMENTS is replaced with its value ( which is
> > empty ).
> >
> > I see in the svn_load_dirs.pl script that filenames containing spaces are
> > already wrapped with double-quotes. This cannot be extended to filenames
> > with $-sign, as bash expand variables in double-quotes.
> >
> > So, my patch will wrap all files containing a space or a $-sign with a
> > single quote instead. Which is a solution that definitely works in Cygwin,
> > and I'm pretty sure it also works on Linux, but this may be double-checked
> > by others.
> >
> > Lieven.
> >
> > Log:
> > [[[
> > * contrib/client-side/svn_load_dirs.pl.in: Wrap all filenames containing
> > a space or $ with single quotes.
> > ]]]
>
>
> You say you are using Cygwin, yet your patch exclusively touches code which
> is only used when running with native-Windows Perl.
> I suspect your problems are due to mixing Cygwin and non-Cygwin components.
>
> I think that the patch would cause problems for fully native-Windows
> environments.
>
> Max.
Max,
I don't have Perl installed in my windows environment, only as a cygwin
package. As a double check, this is the info concerning perl and svn in
my cygwin:
$ which perl
/usr/bin/perl
$ perl --version
This is perl, v5.8.7 built for cygwin-thread-multi-64int
$ which svn
/usr/bin/svn
$ svn --version
svn, version 1.2.0 (r14790)
compiled Jun 10 2005, 22:10:10
It's clear that the code in my patch is executed, as it fixes my problem.
Any idea which other component can be involved then?
thx,
Lieven.
----------------------------------------------------------------
This message was sent using IMP, the Internet Messaging Program.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Mon Sep 5 12:35:28 2005