Index: trunk/wikiation/installer/installfiles/toolkit/util.install/download.sh |
— | — | @@ -0,0 +1,10 @@ |
| 2 | +#!/bin/sh |
| 3 | + |
| 4 | +repository="http://svn.wikimedia.org/svnroot/mediawiki/trunk/testing/util/" |
| 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/toolkit/util.install/download.sh |
___________________________________________________________________ |
Added: svn:executable |
1 | 12 | + * |
Index: trunk/wikiation/installer/installfiles/toolkit/util.install/uninstall.sh |
— | — | @@ -0,0 +1,4 @@ |
| 2 | +#!/bin/sh |
| 3 | + |
| 4 | +cd $DESTINATION_DIR |
| 5 | +rm -rf util |
Property changes on: trunk/wikiation/installer/installfiles/toolkit/util.install/uninstall.sh |
___________________________________________________________________ |
Added: svn:executable |
1 | 6 | + * |
Index: trunk/wikiation/installer/installfiles/toolkit/util.install/is_installed.sh |
— | — | @@ -0,0 +1,5 @@ |
| 2 | +#!/bin/sh |
| 3 | + |
| 4 | + |
| 5 | + |
| 6 | +test -d $DESTINATION_DIR/util && echo "true" || echo "false" |
Property changes on: trunk/wikiation/installer/installfiles/toolkit/util.install/is_installed.sh |
___________________________________________________________________ |
Added: svn:executable |
1 | 7 | + * |
Index: trunk/wikiation/installer/installfiles/toolkit/util.install/info |
— | — | @@ -0,0 +1 @@ |
| 2 | +diverse utility scripts |
Index: trunk/wikiation/installer/installfiles/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/toolkit/check_isolation.install/test.sh |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 5 | + native |
Index: trunk/wikiation/installer/installfiles/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/toolkit/check_isolation.install/info |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 9 | + native |
Index: trunk/wikiation/installer/installfiles/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/toolkit/check_isolation.install/update.sh |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 10 | + native |
Added: svn:executable |
2 | 11 | + |
Index: trunk/wikiation/installer/installfiles/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/toolkit/check_isolation.install/download.sh |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 12 | + native |
Added: svn:executable |
2 | 13 | + |
Index: trunk/wikiation/installer/installfiles/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/toolkit/check_isolation.install/uninstall.sh |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 7 | + native |
Added: svn:executable |
2 | 8 | + |
Index: trunk/wikiation/installer/installfiles/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/toolkit/check_isolation.install/is_installed.sh |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 5 | + native |
Added: svn:executable |
2 | 6 | + |
Property changes on: trunk/wikiation/installer/installfiles/toolkit/check_isolation.install |
___________________________________________________________________ |
Added: svn:mergeinfo |
Index: trunk/wikiation/installer/installfiles/toolkit/pywikipedia.install/info |
— | — | @@ -0,0 +1 @@ |
| 2 | +A version of pywikipedia suitable for exttest environments |
Property changes on: trunk/wikiation/installer/installfiles/toolkit/pywikipedia.install/info |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 3 | + native |
Index: trunk/wikiation/installer/installfiles/toolkit/pywikipedia.install/download.sh |
— | — | @@ -0,0 +1,5 @@ |
| 2 | +#!/bin/sh |
| 3 | + |
| 4 | + |
| 5 | +cd $DESTINATION_DIR |
| 6 | +svn checkout 'http://svn.wikimedia.org/svnroot/pywikipedia/trunk/pywikipedia/' |
Property changes on: trunk/wikiation/installer/installfiles/toolkit/pywikipedia.install/download.sh |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 7 | + native |
Added: svn:executable |
2 | 8 | + |
Index: trunk/wikiation/installer/installfiles/toolkit/pywikipedia.install/uninstall.sh |
— | — | @@ -0,0 +1,4 @@ |
| 2 | +#!/bin/sh |
| 3 | + |
| 4 | +cd $DESTINATION_DIR |
| 5 | +rm -rf pywikipedia |
Property changes on: trunk/wikiation/installer/installfiles/toolkit/pywikipedia.install/uninstall.sh |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 6 | + native |
Added: svn:executable |
2 | 7 | + |
Index: trunk/wikiation/installer/installfiles/toolkit/pywikipedia.install/is_installed.sh |
— | — | @@ -0,0 +1,5 @@ |
| 2 | +#!/bin/sh |
| 3 | + |
| 4 | + |
| 5 | + |
| 6 | +test -d $DESTINATION_DIR/pywikipedia && echo "true" || echo "false" |
Property changes on: trunk/wikiation/installer/installfiles/toolkit/pywikipedia.install/is_installed.sh |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 7 | + native |
Added: svn:executable |
2 | 8 | + |
Index: trunk/wikiation/installer/installfiles/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/toolkit/exttest.install/info |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 4 | + native |
Index: trunk/wikiation/installer/installfiles/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/toolkit/exttest.install/update.sh |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 10 | + native |
Added: svn:executable |
2 | 11 | + |
Index: trunk/wikiation/installer/installfiles/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/toolkit/exttest.install/download.sh |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 12 | + native |
Added: svn:executable |
2 | 13 | + |
Index: trunk/wikiation/installer/installfiles/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/toolkit/exttest.install/uninstall.sh |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 6 | + native |
Added: svn:executable |
2 | 7 | + |
Index: trunk/wikiation/installer/installfiles/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/toolkit/exttest.install/is_installed.sh |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 5 | + native |
Added: svn:executable |
2 | 6 | + |
Index: trunk/wikiation/installer/installfiles/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/toolkit/exttest.install/ImageMap.settings.php |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 8 | + native |
Property changes on: trunk/wikiation/installer/installfiles/toolkit/exttest.install |
___________________________________________________________________ |
Added: svn:mergeinfo |
Property changes on: trunk/wikiation/installer/installfiles/toolkit |
___________________________________________________________________ |
Added: svn:mergeinfo |