You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Daniel Shahaf <d....@daniel.shahaf.name> on 2014/04/09 10:17:19 UTC

Auto-props not validated

With trunk@Monday:

[[[
% subversion/svn/svn add \
	--config-option 'config:miscellany:enable-auto-props=true' \
	--config-option 'config:auto-props:*.t=*.c=bar' \
	foo.t 
A         foo.t
% svn pl -v foo.t
Properties on 'foo.t':
  *.c
    bar
% svn propset '*.h' baz foo.t 
svn: E195011: '*.h' is not a valid Subversion property name
zsh: exit 1     svn propset '*.h' baz foo.t
]]]

It shouldn't be the case that '*.c' can be set and '*.h' can't be set.

Daniel
(thanks to Geoff Field on users@ for making me run into this:
<ht...@AAPLExchange.aapl.com.au>)

Re: Auto-props not validated

Posted by Julian Foad <ju...@btopenworld.com>.
Daniel Shahaf wrote:

> With trunk@Monday:
> 
> [[[
> % subversion/svn/svn add \
>     --config-option 'config:miscellany:enable-auto-props=true' \
>     --config-option 'config:auto-props:*.t=*.c=bar' \
>     foo.t 
> A         foo.t
> % svn pl -v foo.t
> Properties on 'foo.t':
>   *.c
>     bar
> % svn propset '*.h' baz foo.t 
> svn: E195011: '*.h' is not a valid Subversion property name
> zsh: exit 1     svn propset '*.h' baz foo.t
> ]]]
> 
> It shouldn't be the case that '*.c' can be set and '*.h' 
> can't be set.

I filed issue #4493 "Auto-props not validated".

- Julian