You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Gerhard Wiesinger <li...@wiesinger.com> on 2006/10/28 18:03:44 UTC

Problem with uppercase filenames and auto-props

Hello!

I use the configuration discussed below for 
subversion (/etc/subversion/config):

Subversion version:
Redhat Fedora Core 4
svn, version 1.2.3 (r15833)

A "svn add file.txt" works well and has the correct properties set,
a "svn add file.TXT" hasn't the correct properties set.

What's wrong? Is this a bug?

I found some user which has also the problem:
http://svn.haxx.se/users/archive-2005-04/1862.shtml

Thank you for the answer.

Ciao,
Gerhard

[miscellany]
enable-auto-props = yes

[auto-props]
*.c = svn:eol-style=native
*.C = svn:eol-style=native
*.h = svn:eol-style=native
*.H = svn:eol-style=native
*.txt = svn:eol-style=native
*.TXT = svn:eol-style=native

--
http://www.wiesinger.com/

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org

Re: Problem with uppercase filenames and auto-props

Posted by Ryan Schmidt <su...@ryandesign.com>.
On Oct 28, 2006, at 13:03, Gerhard Wiesinger wrote:

> A "svn add file.txt" works well and has the correct properties set,
> a "svn add file.TXT" hasn't the correct properties set.
>
> What's wrong? Is this a bug?

Yes; it's this one:

http://subversion.tigris.org/issues/show_bug.cgi?id=2036

Some workarounds are provided here:

http://svn.haxx.se/users/archive-2006-10/0917.shtml


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org

Re: Problem with uppercase filenames and auto-props

Posted by Ryan Schmidt <su...@ryandesign.com>.
On Oct 28, 2006, at 13:03, Gerhard Wiesinger wrote:

> A "svn add file.txt" works well and has the correct properties set,
> a "svn add file.TXT" hasn't the correct properties set.
>
> What's wrong? Is this a bug?

Yes; it's this one:

http://subversion.tigris.org/issues/show_bug.cgi?id=2036

Some workarounds are provided here:

http://svn.haxx.se/users/archive-2006-10/0917.shtml


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Re: Problem with uppercase filenames and auto-props

Posted by Martin Furter <mf...@rola.ch>.
Hi!

I believe the problem is that the config is case-insensitive and duplicate 
keys get lost.

Your problem can be solved the following way:

[auto-props]
*.[Cc] = svn:eol-style=native
*.[Hh] = svn:eol-style=native
*.[Tt][Xx][Tt] = svn:eol-style=native


On Sat, 28 Oct 2006, Gerhard Wiesinger wrote:

> Hello!
>
> I use the configuration discussed below for subversion 
> (/etc/subversion/config):
>
> Subversion version:
> Redhat Fedora Core 4
> svn, version 1.2.3 (r15833)
>
> A "svn add file.txt" works well and has the correct properties set,
> a "svn add file.TXT" hasn't the correct properties set.
>
> What's wrong? Is this a bug?
>
> I found some user which has also the problem:
> http://svn.haxx.se/users/archive-2005-04/1862.shtml
>
> Thank you for the answer.
>
> Ciao,
> Gerhard
>
> [miscellany]
> enable-auto-props = yes
>
> [auto-props]
> *.c = svn:eol-style=native
> *.C = svn:eol-style=native
> *.h = svn:eol-style=native
> *.H = svn:eol-style=native
> *.txt = svn:eol-style=native
> *.TXT = svn:eol-style=native
>
> --
> http://www.wiesinger.com/
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
> For additional commands, e-mail: dev-help@subversion.tigris.org
>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org

Re: Problem with uppercase filenames and auto-props

Posted by Martin Furter <mf...@rola.ch>.
Hi!

I believe the problem is that the config is case-insensitive and duplicate 
keys get lost.

Your problem can be solved the following way:

[auto-props]
*.[Cc] = svn:eol-style=native
*.[Hh] = svn:eol-style=native
*.[Tt][Xx][Tt] = svn:eol-style=native


On Sat, 28 Oct 2006, Gerhard Wiesinger wrote:

> Hello!
>
> I use the configuration discussed below for subversion 
> (/etc/subversion/config):
>
> Subversion version:
> Redhat Fedora Core 4
> svn, version 1.2.3 (r15833)
>
> A "svn add file.txt" works well and has the correct properties set,
> a "svn add file.TXT" hasn't the correct properties set.
>
> What's wrong? Is this a bug?
>
> I found some user which has also the problem:
> http://svn.haxx.se/users/archive-2005-04/1862.shtml
>
> Thank you for the answer.
>
> Ciao,
> Gerhard
>
> [miscellany]
> enable-auto-props = yes
>
> [auto-props]
> *.c = svn:eol-style=native
> *.C = svn:eol-style=native
> *.h = svn:eol-style=native
> *.H = svn:eol-style=native
> *.txt = svn:eol-style=native
> *.TXT = svn:eol-style=native
>
> --
> http://www.wiesinger.com/
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
> For additional commands, e-mail: dev-help@subversion.tigris.org
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org