Jeroen De Dauw has uploaded a new change for review. https://gerrit.wikimedia.org/r/50168
Change subject: Made docs more clear and include example settings ...................................................................... Made docs more clear and include example settings Change-Id: I86985d16f1e6306528905cf0941de18d202aa919 --- M Wikibase.php 1 file changed, 5 insertions(+), 2 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Wikibase refs/changes/68/50168/1 diff --git a/Wikibase.php b/Wikibase.php index 06bd8e0..fbf3c54 100644 --- a/Wikibase.php +++ b/Wikibase.php @@ -1,10 +1,10 @@ <?php /** - * Loader for all extensions in the Wikibase git repository. + * TESTING entry point. DO NOT USE FOR REAL SETUPS! * + * This entry point is meant to facilitate development and testing. * THIS IS NOT the entry point you want to use in production. - * It is mainly meant to facilitate development and testing. * For production setups, inclusion of the entry points of * the extensions you want to load according to their respective * installation instructions is recommended. See the INSTALL @@ -18,3 +18,6 @@ require_once __DIR__ . '/lib/WikibaseLib.php'; require_once __DIR__ . '/repo/Wikibase.php'; + +define( 'WB_EXPERIMENTAL_FEATURES', true ); +require_once __DIR__ . '/repo/ExampleSettings.php'; -- To view, visit https://gerrit.wikimedia.org/r/50168 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I86985d16f1e6306528905cf0941de18d202aa919 Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/extensions/Wikibase Gerrit-Branch: master Gerrit-Owner: Jeroen De Dauw <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
