source: branches/version-2_5-dev/svn_propset.sh @ 20120

Revision 20120, 501 bytes checked in by nanasess, 13 years ago (diff)

module 以下は除外するように修正

  • Property svn:eol-style set to LF
  • Property svn:executable set to *
Line 
1#!/bin/sh
2
3while read PROP
4do
5svn propdel -R $PROP ./
6done <<EOF
7svn:keywords
8svn:executable
9svn:mime-type
10svn:eol-style
11EOF
12
13find . \( -name module -o -name .svn \) -prune -o -type f -print | xargs svn propset 'svn:keywords' 'Id'
14svn propset -R 'svn:executable' *.sh
15svn propset -R 'svn:eol-style' 'LF' ./
16find . -name '*.php' | xargs svn propset -R 'svn:mime-type' 'text/x-httpd-php; charset=UTF-8'
17find . -name '*.tpl' | xargs svn propset -R 'svn:mime-type' 'text/x-smarty-template; charset=UTF-8'
Note: See TracBrowser for help on using the repository browser.