jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/334455 )

Change subject: v 1.88.2 - Remove deprecated PHP entry point
......................................................................


v 1.88.2 - Remove deprecated PHP entry point

Change-Id: I4292dcb8489adabd072df02e55e0bfab74a633dd
---
D AJAXPoll.php
M extension.json
2 files changed, 1 insertion(+), 111 deletions(-)

Approvals:
  Jack Phoenix: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/AJAXPoll.php b/AJAXPoll.php
deleted file mode 100644
index 3286011..0000000
--- a/AJAXPoll.php
+++ /dev/null
@@ -1,110 +0,0 @@
-<?php
-/**
- * AJAX Poll extension for MediaWiki
- * Created by Dariusz Siedlecki, based on the work by Eric David.
- * Licensed under the GFDL.
- *
- * <poll>
- * Question
- * Answer 1
- * Answer 2
- * Answer ...
- * Answer n
- * </poll>
- *
- * to allow the viewing of the poll results even without having voted
- * <poll show-results-before-voting>
- * Question
- * Answer 1
- * Answer 2
- * Answer ...
- * Answer n
- * </poll>
- *
- * If the first line after <poll> is "STATS",
- * then some statistics about the wiki and its polls will be displayed.
- * These statistics are not localizable and this whole feature will probably be
- * removed (or at least refactored, but probably removed) in the future.
- * <poll>
- * STATS
- * </poll>
- *
- * @file
- * @ingroup Extensions
- * @author Dariusz Siedlecki <dat...@gmail.com>
- * @author Jack Phoenix <j...@countervandalism.net>
- * @author Thomas Gries
- * @maintainer Thomas Gries
- * @link http://www.mediawiki.org/wiki/Extension:AJAX_Poll Documentation
- */
-
-if ( !defined( 'MEDIAWIKI' ) ) {
-       die( "This is not a valid entry point.\n" );
-}
-
-// Extension credits that will show up on Special:Version
-$wgExtensionCredits['parserhook'][] = [
-       'path' => __FILE__,
-       'name' => 'AJAX Poll',
-       'version' => '1.89.0 20150928',
-       'author' => [ 'Dariusz Siedlecki', 'Jack Phoenix', 'Thomas Gries' ],
-       'descriptionmsg' => 'ajaxpoll-desc',
-       'url' => 'https://www.mediawiki.org/wiki/Extension:AJAX_Poll',
-];
-
-// Internationalization + AJAX function
-$wgMessagesDirs['AJAXPoll'] = __DIR__ . '/i18n';
-$wgAutoloadClasses['AJAXPoll'] = __DIR__ . '/AJAXPoll_body.php';
-$wgAjaxExportList[] = 'AJAXPoll::submitVote';
-$wgHooks['ParserFirstCallInit'][] = 'AJAXPoll::onParserInit';
-$wgHooks['LoadExtensionSchemaUpdates'][] = 
'AJAXPoll::onLoadExtensionSchemaUpdates';
-
-$myResourceTemplate = [
-       'localBasePath' => __DIR__ . '/resources',
-       'remoteExtPath' => 'AJAXPoll/resources',
-       'group' => 'ext.ajaxpoll',
-];
-$wgResourceModules['ext.ajaxpoll'] = $myResourceTemplate + [
-               'scripts' => [
-                       'ajaxpoll.js',
-               ],
-               'styles' => [
-                       'ajaxpoll.css',
-               ],
-               'dependencies' => [],
-               'messages' => [
-                       'ajaxpoll-submitting',
-               ]
-       ];
-
-# new user rights
-$wgAvailableRights[] = 'ajaxpoll-vote';
-$wgAvailableRights[] = 'ajaxpoll-view-results';
-$wgAvailableRights[] = 'ajaxpoll-view-results-before-vote';
-
-# The 'ajaxpoll-view-results-before-vote' group permission allows the specified
-# group members to view poll results even without having voted
-# but only if the high-level group permission 'ajaxpoll-vote' allows to view
-# results in general.
-
-# This 'ajaxpoll-view-results-before-vote' can be overwritten with the specific
-# per-poll setting "show-results-before-voting" which takes precedence over the
-# group permission.
-
-# permission 'ajaxpoll-view-results' >>
-# >> per-poll setting "show-results-before-voting" (if present)
-# >> permission 'ajaxpoll-view-results-before-vote'
-
-# anons
-# default: anons cannot vote and will never see results
-$wgGroupPermissions['*']['ajaxpoll-vote'] = false;
-$wgGroupPermissions['*']['ajaxpoll-view-results'] = false;
-$wgGroupPermissions['*']['ajaxpoll-view-results-before-vote'] = false;
-
-# users
-# default: users can vote and can see poll results - when they have voted
-$wgGroupPermissions['user']['ajaxpoll-vote'] = true;
-$wgGroupPermissions['user']['ajaxpoll-view-results'] = true;
-
-# tracking category for Special:TrackingCategories
-$wgTrackingCategories[] = 'ajaxpoll-tracking-category';
diff --git a/extension.json b/extension.json
index c32ce8a..e712708 100644
--- a/extension.json
+++ b/extension.json
@@ -1,6 +1,6 @@
 {
        "name": "AJAX Poll",
-       "version": "1.88.1",
+       "version": "1.88.2",
        "author": [
                "Dariusz Siedlecki",
                "Jack Phoenix",

-- 
To view, visit https://gerrit.wikimedia.org/r/334455
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I4292dcb8489adabd072df02e55e0bfab74a633dd
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/AJAXPoll
Gerrit-Branch: master
Gerrit-Owner: SamanthaNguyen <samanthanguyen1...@gmail.com>
Gerrit-Reviewer: Jack Phoenix <j...@countervandalism.net>
Gerrit-Reviewer: jenkins-bot <>

_______________________________________________
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to