Subversion 1.6.6 doesn't appear to allow adding files with @ in the name

2009-12-18 Thread Alec Kloss
Subject pretty much says it all.  My 1.6.4 client does allow adding
files with an @ in their name.

mybox% svnadmin create repo
mybox% svn co repo work
svn: 'repo' does not appear to be a URL
mybox% svn co file:///$PWD/repo work 
Checked out revision 0.
mybox% touch work/t...@file
mybox% svn add work/t...@file 
svn: warning: 'work/test' not found
mybox% svn --version
svn, version 1.6.6 (r40053)
   compiled Dec  2 2009, 14:54:12

Copyright (C) 2000-2009 CollabNet.
Subversion is open source software, see http://subversion.tigris.org/
This product includes software developed by CollabNet
(http://www.Collab.Net/).

The following repository access (RA) modules are available:

* ra_neon : Module for accessing a repository via WebDAV protocol using
* Neon.
  - handles 'http' scheme
  - handles 'https' scheme
* ra_svn : Module for accessing a repository using the svn network
* protocol.
  - with Cyrus SASL authentication
  - handles 'svn' scheme
* ra_local : Module for accessing a repository on local disk.
  - handles 'file' scheme

mybox% 


-- 
alec.kl...@oracle.com   Oracle Middleware
PGP key: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x432B9956


pgpGSpwiqM2xX.pgp
Description: PGP signature


Re: Subversion 1.6.6 doesn't appear to allow adding files with @ in the name

2009-12-18 Thread Felix Gilcher
The @ sign denotes a peg revision. Just add another @ at the end of  
the filename, that should do the trick.


Felix

Sent from my iPhone

On 18.12.2009, at 15:50, "Alec Kloss"  wrote:


Subject pretty much says it all.  My 1.6.4 client does allow adding
files with an @ in their name.

mybox% svnadmin create repo
mybox% svn co repo work
svn: 'repo' does not appear to be a URL
mybox% svn co file:///$PWD/repo work
Checked out revision 0.
mybox% touch work/t...@file
mybox% svn add work/t...@file
svn: warning: 'work/test' not found
mybox% svn --version
svn, version 1.6.6 (r40053)
  compiled Dec  2 2009, 14:54:12

Copyright (C) 2000-2009 CollabNet.
Subversion is open source software, see http://subversion.tigris.org/
This product includes software developed by CollabNet
(http://www.Collab.Net/).

The following repository access (RA) modules are available:

* ra_neon : Module for accessing a repository via WebDAV protocol  
using

* Neon.
 - handles 'http' scheme
 - handles 'https' scheme
* ra_svn : Module for accessing a repository using the svn network
* protocol.
 - with Cyrus SASL authentication
 - handles 'svn' scheme
* ra_local : Module for accessing a repository on local disk.
 - handles 'file' scheme

mybox%


--
alec.kl...@oracle.comOracle Middleware
PGP key: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x432B9956


Re: Subversion 1.6.6 doesn't appear to allow adding files with @ in the name

2009-12-18 Thread John Beranek
2009/12/18 Alec Kloss :
> Subject pretty much says it all.  My 1.6.4 client does allow adding
> files with an @ in their name.

$ svn add "a...@a@"
A a...@a

;)

John.


Re: Subversion 1.6.6 doesn't appear to allow adding files with @ in the name

2009-12-18 Thread Alec Kloss
On 2009-12-18 15:01, John Beranek wrote:
> 2009/12/18 Alec Kloss :
> > Subject pretty much says it all.  My 1.6.4 client does allow adding
> > files with an @ in their name.
> 
> $ svn add "a...@a@"
> A a...@a
> 
> ;)
> 
> John.
> 

Thanks everyone, I should have thought of that.  

-- 
alec.kl...@oracle.com   Oracle Middleware
PGP key: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x432B9956


pgpgB0m70LVTx.pgp
Description: PGP signature


Re: Subversion 1.6.6 doesn't appear to allow adding files with @ in the name

2009-12-18 Thread John Beranek
2009/12/18 John Beranek :
> 2009/12/18 Alec Kloss :
>> Subject pretty much says it all.  My 1.6.4 client does allow adding
>> files with an @ in their name.
>
> $ svn add "a...@a@"
> A         a...@a

Chatper 3, page 90 of the Subversion book.

John.