Opened 16 years ago
Last modified 16 years ago
#3568 closed Bug report
SVN directories filter should include _svn
Reported by: | jerph | Owned by: | |
---|---|---|---|
Priority: | normal | Component: | Other |
Keywords: | Cc: | jerph, Tim Kosse | |
Component version: | Operating system type: | ||
Operating system version: |
Description
Developers unfortunate enough to use Visual Studio 2003 can't use .svn directories, so there's a hack built into SVN/TortoiseSVN to use _svn directories instead. The "CVS and SVN directories" filter in the default filters collection should include _svn directories as well. This should probably only apply to Windows installations, though I can imagine situations where these files make there way onto non-windows systems before uploading.
Here's the modified filter, taken from
C:\Program Files\FileZilla FTP Client\resources\defaultfilters.xml
in FZ 3.0.11:
---
<Filter>
<Name>CVS and SVN directories</Name>
<ApplyToFiles>0</ApplyToFiles>
<ApplyToDirs>1</ApplyToDirs>
<MatchType>Any</MatchType>
<MatchCase>1</MatchCase>
<Conditions>
<Condition>
<Type>0</Type>
<Condition>1</Condition>
<Value>CVS</Value>
</Condition>
<Condition>
<Type>0</Type>
<Condition>1</Condition>
<Value>.svn</Value>
</Condition>
<Condition>
<Type>0</Type>
<Condition>1</Condition>
<Value>_svn</Value>
</Condition>
</Conditions>
</Filter>
---
I have Visual Studio 2003 and am using .svn, it works just fine.
Anyhow, the filters are just examples, they are not intended to be suitable for everyone.