Index: trunk/tools/ToolserverI18N/scripts/tsIntUpdate |
— | — | @@ -2,8 +2,8 @@ |
3 | 3 | ## Update svn checkout of ToolserverI18N to HEAD |
4 | 4 | ## Quick ugly script to check working copy, update and log |
5 | 5 | |
6 | | -TSINT_DIR="$HOME/ToolserverI18N" |
7 | | -TSINT_UPLOG="$HOME/tsint-update.log" |
| 6 | +TSINT_DIR="$HOME/SVN/ToolserverI18N" |
| 7 | +TSINT_UPLOG="$HOME/logs/tsint-update.log" |
8 | 8 | TSINT_UPSTATE="failed" |
9 | 9 | |
10 | 10 | echo " |
Index: trunk/tools/ToolserverI18N/scripts/toolserver_init |
— | — | @@ -0,0 +1,35 @@ |
| 2 | +#!/bin/bash |
| 3 | + |
| 4 | +# |
| 5 | +# SVN |
| 6 | +# |
| 7 | +cd $HOME |
| 8 | +mkdir SVN; cd SVN |
| 9 | + |
| 10 | +## SVN/ToolserverI18N |
| 11 | +svn co http://svn.wikimedia.org/svnroot/mediawiki/trunk/tools/ToolserverI18N |
| 12 | + |
| 13 | +## SVN/p_intuition |
| 14 | +svn co https://svn.toolserver.org/svnroot/p_intuition |
| 15 | + |
| 16 | +# |
| 17 | +# Symlinks |
| 18 | +# |
| 19 | +cd $HOME |
| 20 | + |
| 21 | +## public_html |
| 22 | +### Uncomment only if you're absolutely sure |
| 23 | +### that there is nothing of importance in your public_html ! |
| 24 | +#rm -rf public_html |
| 25 | +#ln -s SVN/p_intuition/public_html public_html |
| 26 | + |
| 27 | +# Backwards compatibility for require_once calls |
| 28 | +# pointing to /home/project/i/n/t/intuition/ToolserverI18N/ToolStart.php |
| 29 | +ln -s SVN/p_intuition ToolserverI18N |
| 30 | + |
| 31 | +# |
| 32 | +# Misc |
| 33 | +# |
| 34 | +cd $HOME |
| 35 | + |
| 36 | +mkdir logs |