Index: trunk/testing/installer/installfiles/extensions/LocalisationUpdate.install/LocalisationUpdate.settings.php |
— | — | @@ -0,0 +1,5 @@ |
| 2 | +<?PHP |
| 3 | + |
| 4 | +require_once("$IP/extensions/LocalisationUpdate/LocalisationUpdate.php"); |
| 5 | + |
| 6 | +?> |
Index: trunk/testing/installer/installfiles/extensions/LocalisationUpdate.install/setup.sh |
— | — | @@ -0,0 +1,3 @@ |
| 2 | +#!/bin/sh |
| 3 | + |
| 4 | +$MYSQL_COMMAND $DATABASE_NAME < $DESTINATION_DIR/$NAME/install.sql |
Property changes on: trunk/testing/installer/installfiles/extensions/LocalisationUpdate.install/setup.sh |
___________________________________________________________________ |
Added: svn:executable |
1 | 5 | + * |
Index: trunk/testing/installer/installfiles/extensions/LocalisationUpdate.install/info |
— | — | @@ -0,0 +1,2 @@ |
| 2 | +LocalisationUpdate: |
| 3 | +http://www.mediawiki.org/wiki/Extension:LocalisationUpdate |
Index: trunk/testing/installer/installfiles/extensions/LocalisationUpdate.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/testing/installer/installfiles/extensions/LocalisationUpdate.install/update.sh |
___________________________________________________________________ |
Added: svn:executable |
1 | 10 | + * |
Index: trunk/testing/installer/installfiles/extensions/LocalisationUpdate.install/download.sh |
— | — | @@ -0,0 +1,10 @@ |
| 2 | +#!/bin/sh |
| 3 | + |
| 4 | +repository="$EXTENSIONS_SVN/$NAME" |
| 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/testing/installer/installfiles/extensions/LocalisationUpdate.install/download.sh |
___________________________________________________________________ |
Added: svn:executable |
1 | 12 | + * |
Index: trunk/testing/installer/installfiles/extensions/LocalisationUpdate.install/uninstall.sh |
— | — | @@ -0,0 +1,7 @@ |
| 2 | +#!/bin/sh |
| 3 | + |
| 4 | +$MYSQL_COMMAND $DATABASE_NAME < $DESTINATION_DIR/$NAME/uninstall.sql |
| 5 | + |
| 6 | +cd $DESTINATION_DIR |
| 7 | +rm -rf $NAME |
| 8 | + |
Property changes on: trunk/testing/installer/installfiles/extensions/LocalisationUpdate.install/uninstall.sh |
___________________________________________________________________ |
Added: svn:executable |
1 | 9 | + * |
Index: trunk/testing/installer/installfiles/extensions/LocalisationUpdate.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/testing/installer/installfiles/extensions/LocalisationUpdate.install/is_installed.sh |
___________________________________________________________________ |
Added: svn:executable |
1 | 5 | + * |