]> git.mxchange.org Git - core.git/commitdiff
Helper script added, externals are now no longer with www. (because it is really...
authorRoland Häder <roland@mxchange.org>
Sat, 12 Feb 2011 23:44:08 +0000 (23:44 +0000)
committerRoland Häder <roland@mxchange.org>
Sat, 12 Feb 2011 23:44:08 +0000 (23:44 +0000)
application-external.txt
prop-set.sh [new file with mode: 0755]
svn-externals.txt

index d21f5f8188ea95a17ea4bbae70319ce923b4f060..6869dcc5526e5573ecbc9fc9e1c9233438dd44ba 100644 (file)
@@ -1,3 +1,3 @@
-admin http://www.ship-simu.org/repos/admin/trunk/application/admin/ 
-install http://www.ship-simu.org/repos/install/trunk/application/install/ 
-qa http://www.ship-simu.org/repos/qa/trunk/application/qa/
+admin http://ship-simu.org/repos/admin/trunk/application/admin/ 
+install http://ship-simu.org/repos/install/trunk/application/install/ 
+qa http://ship-simu.org/repos/qa/trunk/application/qa/
diff --git a/prop-set.sh b/prop-set.sh
new file mode 100755 (executable)
index 0000000..6f0c134
--- /dev/null
@@ -0,0 +1,26 @@
+#!/bin/sh
+
+find -type f -name "*.php" -exec svn propset svn:keywords "Author Id Revision HeadURL Date Tag" {} \;
+find -type f -name "*.xml" -exec svn propset svn:keywords "Author Id Revision HeadURL Date Tag" {} \;
+find -type f -name "*.ctp" -exec svn propset svn:keywords "Author Id Revision HeadURL Date Tag" {} \;
+find -type f -name "*.php" -exec svn propset svn:mime-type "text/plain" {} \;
+find -type f -name "*.ctp" -exec svn propset svn:mime-type "text/plain" {} \;
+find -type f -name "*.jpg" -exec svn propset svn:mime-type "image/jpeg" {} \;
+find -type f -name "*.png" -exec svn propset svn:mime-type "image/png" {} \;
+find -type f -name "*.gif" -exec svn propset svn:mime-type "image/gif" {} \;
+find -type f -name "*.ico" -exec svn propset svn:mime-type "image/x-ico" {} \;
+find -type f -name "*.html" -exec svn propset svn:mime-type "text/plain" {} \;
+find -type f -name "*.xml" -exec svn propset svn:mime-type "text/xml" {} \;
+find -type f -name "*.txt" -exec svn propset svn:mime-type "text/plain" {} \;
+find -type f -name "*.lng" -exec svn propset svn:mime-type "text/plain" {} \;
+
+# Shell scripts can be executable
+echo "$0: propset svn:executable on *.sh"
+find -type f -name "*.sh" | xargs svn propset svn:executable 2>/dev/null
+
+# These files don't need a executable right (chmod +x)
+DEL_EXECUTE="java html lng jpg png gif ico txt xml php nsi jar js rss"
+for entry in ${DEL_EXECUTE}; do
+       echo "$0: propdel svn:executable on *.${entry}"
+       find -type f -name "*.${entry}" -exec svn propdel svn:executable {} \; 2>/dev/null
+done
index 1d2219315a0bac3dd1b85fa0998079cffec6b162..659854ccefdc3f13b6c590e7c0e3ce6274675eed 100644 (file)
@@ -1,2 +1,2 @@
-inc http://www.ship-simu.org/repos/core/trunk/inc/
-templates http://www.ship-simu.org/repos/core/trunk/templates/
+inc http://ship-simu.org/repos/core/trunk/inc/
+templates http://ship-simu.org/repos/core/trunk/templates/