Index: trunk/wikiation/installer/installfiles/wikiation_toolkit/util.install/download.sh |
— | — | @@ -1,6 +1,6 @@ |
2 | 2 | #!/bin/sh |
3 | 3 | |
4 | | -repository="http://svn.wikimedia.org/svnroot/mediawiki/trunk/wikiation/util/" |
| 4 | +repository="http://svn.wikimedia.org/svnroot/mediawiki/trunk/testing/util/" |
5 | 5 | |
6 | 6 | cd $DESTINATION_DIR |
7 | 7 | if test -n "$REVISION"; then |
Index: trunk/wikiation/installer/installfiles/wikiation_toolkit/check_isolation.install/download.sh |
— | — | @@ -0,0 +1,10 @@ |
| 2 | +#!/bin/sh |
| 3 | + |
| 4 | +repository="http://svn.wikimedia.org/svnroot/mediawiki/trunk/testing/check_isolation/" |
| 5 | + |
| 6 | +cd $DESTINATION_DIR |
| 7 | +if test -n "$REVISION"; then |
| 8 | + svn checkout -r $REVISION $repository |
| 9 | +else |
| 10 | + svn checkout $repository |
| 11 | +fi |
Property changes on: trunk/wikiation/installer/installfiles/wikiation_toolkit/check_isolation.install/download.sh |
___________________________________________________________________ |
Name: svn:eol-style |
1 | 12 | + native |
Name: svn:executable |
2 | 13 | + |
Index: trunk/wikiation/installer/installfiles/wikiation_toolkit/check_isolation.install/uninstall.sh |
— | — | @@ -0,0 +1,5 @@ |
| 2 | +#!/bin/sh |
| 3 | + |
| 4 | +cd $DESTINATION_DIR |
| 5 | +rm -f test |
| 6 | +rm -rf check_isolation |
Property changes on: trunk/wikiation/installer/installfiles/wikiation_toolkit/check_isolation.install/uninstall.sh |
___________________________________________________________________ |
Name: svn:eol-style |
1 | 7 | + native |
Name: svn:executable |
2 | 8 | + |
Index: trunk/wikiation/installer/installfiles/wikiation_toolkit/check_isolation.install/is_installed.sh |
— | — | @@ -0,0 +1,3 @@ |
| 2 | +#!/bin/sh |
| 3 | + |
| 4 | +test -d $DESTINATION_DIR/check_isolation && echo "true"|| echo "false" |
Property changes on: trunk/wikiation/installer/installfiles/wikiation_toolkit/check_isolation.install/is_installed.sh |
___________________________________________________________________ |
Name: svn:eol-style |
1 | 5 | + native |
Name: svn:executable |
2 | 6 | + |
Index: trunk/wikiation/installer/installfiles/wikiation_toolkit/check_isolation.install/test.sh |
— | — | @@ -0,0 +1,3 @@ |
| 2 | +#!/bin/sh |
| 3 | + |
| 4 | +echo $hello_world |
Property changes on: trunk/wikiation/installer/installfiles/wikiation_toolkit/check_isolation.install/test.sh |
___________________________________________________________________ |
Name: svn:eol-style |
1 | 5 | + native |
Index: trunk/wikiation/installer/installfiles/wikiation_toolkit/check_isolation.install/info |
— | — | @@ -0,0 +1,7 @@ |
| 2 | +Required by the installer |
| 3 | +stores information about database and mediawiki files before installation or testing |
| 4 | +later diffs this information against the installed system to see if anything |
| 5 | +has changed. If something changes, you (might) have some interesting issues. |
| 6 | + |
| 7 | + |
| 8 | + |
Property changes on: trunk/wikiation/installer/installfiles/wikiation_toolkit/check_isolation.install/info |
___________________________________________________________________ |
Name: svn:eol-style |
1 | 9 | + native |
Index: trunk/wikiation/installer/installfiles/wikiation_toolkit/check_isolation.install/update.sh |
— | — | @@ -0,0 +1,8 @@ |
| 2 | +#!/bin/sh |
| 3 | + |
| 4 | +cd $DESTINATION_DIR/check_isolation |
| 5 | +if test -n "$REVISION"; then |
| 6 | + svn update -r $REVISION |
| 7 | +else |
| 8 | + svn update |
| 9 | +fi |
Property changes on: trunk/wikiation/installer/installfiles/wikiation_toolkit/check_isolation.install/update.sh |
___________________________________________________________________ |
Name: svn:eol-style |
1 | 10 | + native |
Name: svn:executable |
2 | 11 | + |
Property changes on: trunk/wikiation/installer/installfiles/wikiation_toolkit/check_isolation.install |
___________________________________________________________________ |
Name: svn:mergeinfo |
3 | 12 | + |
Index: trunk/wikiation/installer/installfiles/wikiation_toolkit/pywikipedia.install/info |
— | — | @@ -1 +1 @@ |
2 | | -A version of pywikipedia suitable for wikiation exttest environments |
| 2 | +A version of pywikipedia suitable for exttest environments |
Index: trunk/wikiation/installer/installfiles/wikiation_toolkit/exttest.install/download.sh |
— | — | @@ -0,0 +1,10 @@ |
| 2 | +#!/bin/sh |
| 3 | + |
| 4 | +repository="http://svn.wikimedia.org/svnroot/mediawiki/trunk/testing/exttest/" |
| 5 | + |
| 6 | +cd $DESTINATION_DIR |
| 7 | +if test -n "$REVISION"; then |
| 8 | + svn checkout -r $REVISION $repository |
| 9 | +else |
| 10 | + svn checkout $repository |
| 11 | +fi |
Property changes on: trunk/wikiation/installer/installfiles/wikiation_toolkit/exttest.install/download.sh |
___________________________________________________________________ |
Name: svn:eol-style |
1 | 12 | + native |
Name: svn:executable |
2 | 13 | + |
Index: trunk/wikiation/installer/installfiles/wikiation_toolkit/exttest.install/uninstall.sh |
— | — | @@ -0,0 +1,4 @@ |
| 2 | +#!/bin/sh |
| 3 | + |
| 4 | +cd $DESTINATION_DIR |
| 5 | +rm -rf $NAME |
Property changes on: trunk/wikiation/installer/installfiles/wikiation_toolkit/exttest.install/uninstall.sh |
___________________________________________________________________ |
Name: svn:eol-style |
1 | 6 | + native |
Name: svn:executable |
2 | 7 | + |
Index: trunk/wikiation/installer/installfiles/wikiation_toolkit/exttest.install/is_installed.sh |
— | — | @@ -0,0 +1,3 @@ |
| 2 | +#!/bin/sh |
| 3 | + |
| 4 | +test -d $DESTINATION_DIR/$NAME && echo "true" || echo "false" |
Property changes on: trunk/wikiation/installer/installfiles/wikiation_toolkit/exttest.install/is_installed.sh |
___________________________________________________________________ |
Name: svn:eol-style |
1 | 5 | + native |
Name: svn:executable |
2 | 6 | + |
Index: trunk/wikiation/installer/installfiles/wikiation_toolkit/exttest.install/ImageMap.settings.php |
— | — | @@ -0,0 +1,6 @@ |
| 2 | +<?PHP |
| 3 | + |
| 4 | +require_once("$IP/extensions/ImageMap/ImageMap.php"); |
| 5 | + |
| 6 | + |
| 7 | +?> |
Property changes on: trunk/wikiation/installer/installfiles/wikiation_toolkit/exttest.install/ImageMap.settings.php |
___________________________________________________________________ |
Name: svn:eol-style |
1 | 8 | + native |
Index: trunk/wikiation/installer/installfiles/wikiation_toolkit/exttest.install/info |
— | — | @@ -0,0 +1,2 @@ |
| 2 | +imagemap: |
| 3 | +http://www.mediawiki.org/wiki/Extension:ImageMap |
Property changes on: trunk/wikiation/installer/installfiles/wikiation_toolkit/exttest.install/info |
___________________________________________________________________ |
Name: svn:eol-style |
1 | 4 | + native |
Index: trunk/wikiation/installer/installfiles/wikiation_toolkit/exttest.install/update.sh |
— | — | @@ -0,0 +1,8 @@ |
| 2 | +#!/bin/sh |
| 3 | + |
| 4 | +cd $DESTINATION_DIR/$NAME |
| 5 | +if test -n "$REVISION"; then |
| 6 | + svn update -r $REVISION |
| 7 | +else |
| 8 | + svn update |
| 9 | +fi |
Property changes on: trunk/wikiation/installer/installfiles/wikiation_toolkit/exttest.install/update.sh |
___________________________________________________________________ |
Name: svn:eol-style |
1 | 10 | + native |
Name: svn:executable |
2 | 11 | + |
Property changes on: trunk/wikiation/installer/installfiles/wikiation_toolkit/exttest.install |
___________________________________________________________________ |
Name: svn:mergeinfo |
3 | 12 | + |