Index: trunk/test-server/cc-home/projects/mw/ExtraSettings.php |
— | — | @@ -0,0 +1,13 @@ |
| 2 | +<?php |
| 3 | +# This file will be included by LocalSettings.php |
| 4 | + |
| 5 | +$ext = dirname( __FILE__ ) . '/extensions'; |
| 6 | +require_once( "$ext/Cite/Cite.php" ); |
| 7 | +require_once( "$ext/CodeReview/CodeReview.php" ); |
| 8 | +require_once( "$ext/Gadgets/Gadgets.php" ); |
| 9 | +require_once( "$ext/FlaggedRevs/FlaggedRevs.php" ); |
| 10 | +require_once( "$ext/LabeledSectionTransclusion/lst.php" ); |
| 11 | +require_once( "$ext/ParserFunctions/ParserFunctions.php" ); |
| 12 | +require_once( "$ext/Poem/Poem.php" ); |
| 13 | + |
| 14 | +$wgPFEnableStringFunctions = true; # fully test ParserFunctions |
Property changes on: trunk/test-server/cc-home/projects/mw/ExtraSettings.php |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 15 | + native |
Index: trunk/test-server/cc-home/projects/mw/build.xml |
— | — | @@ -63,6 +63,9 @@ |
64 | 64 | <exec executable="sh" dir="${sourcedir}/" failonerror="true"> |
65 | 65 | <arg line="-c "echo require_once\( dirname\( dirname\( __FILE__ \) \) \) . \'/ExtraSettings.php\'\;>>LocalSettings.php""/> |
66 | 66 | </exec> |
| 67 | + <exec executable="php" dir="${sourcedir}/" failonerror="true"> |
| 68 | + <arg line="maintenance/update.php --quick" /> |
| 69 | + </exec> |
67 | 70 | </target> |
68 | 71 | |
69 | 72 | <target name="test-static" depends="prepare"> |