Paladox has uploaded a new change for review. https://gerrit.wikimedia.org/r/226684
Change subject: Add php entry points ...................................................................... Add php entry points Jenkings test fails for mwext-examples-testextension-zend because it carnt find entry point for examples Change-Id: I0f5cd6bc8ef1d4a72f2e7ede05a8815fb9715827 --- A BoilerPlate.php A ContentAction.php A DataPages.php A examples.php 4 files changed, 8 insertions(+), 0 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/examples refs/changes/84/226684/1 diff --git a/BoilerPlate.php b/BoilerPlate.php new file mode 100644 index 0000000..8b48c6d --- /dev/null +++ b/BoilerPlate.php @@ -0,0 +1,2 @@ +<?php +require_once __DIR__ . "/BoilerPlate/BoilerPlate.php"; \ No newline at end of file diff --git a/ContentAction.php b/ContentAction.php new file mode 100644 index 0000000..7d6b6d7 --- /dev/null +++ b/ContentAction.php @@ -0,0 +1,2 @@ +<?php +require_once __DIR__ . "/ContentAction/ContentAction.php"; \ No newline at end of file diff --git a/DataPages.php b/DataPages.php new file mode 100644 index 0000000..98247e9 --- /dev/null +++ b/DataPages.php @@ -0,0 +1,2 @@ +<?php +require_once __DIR__ . "/DataPages/DataPages.php"; \ No newline at end of file diff --git a/examples.php b/examples.php new file mode 100644 index 0000000..c9faaeb --- /dev/null +++ b/examples.php @@ -0,0 +1,2 @@ +<?php +require_once __DIR__ . "/Example/Example.php"; \ No newline at end of file -- To view, visit https://gerrit.wikimedia.org/r/226684 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I0f5cd6bc8ef1d4a72f2e7ede05a8815fb9715827 Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/extensions/examples Gerrit-Branch: master Gerrit-Owner: Paladox <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
