Go to file
Kunal Mehta 519f30355e Implement Gadgets definition namespace repo
Implements:
* Gadget definition content and content handler
* Basic validation for gadget definition content
* GadgetDefinitionNamespace implementation of GadgetRepo
* DataUpdates upon editing/deletion of Gadget definition pages
* EditFilterMerged hook for improved error messages
* 'GadgetsRepoClass' option to switch GadgetRepo implementation used
* Lazy-load the GadgetResourceLoaderModule class so we don't need to
load each individual gadget object unless its needed

Note that Special:Gadgets's export feature intentionally doesn't work
yet, and will be fixed in a follow up patch.

Bug: T106177
Change-Id: Ib11db5fb0f7b46793bfa956cf1367f1dc1059b1c
2015-11-20 12:01:21 -06:00
api Add support for 'messages' and 'hidden' gadgets 2015-08-08 00:43:16 +00:00
i18n Implement Gadgets definition namespace repo 2015-11-20 12:01:21 -06:00
includes Implement Gadgets definition namespace repo 2015-11-20 12:01:21 -06:00
tests Implement Gadgets definition namespace repo 2015-11-20 12:01:21 -06:00
.gitignore build: Configure banana-checker and jsonlint 2015-06-17 19:52:25 +01:00
.gitreview Add .gitreview file 2012-03-22 13:58:45 -07:00
COPYING Add COPYING 2014-01-16 02:31:28 +00:00
extension.json Implement Gadgets definition namespace repo 2015-11-20 12:01:21 -06:00
GadgetHooks.php Implement Gadgets definition namespace repo 2015-11-20 12:01:21 -06:00
Gadgets.alias.php Add a special page to show number of users for each gadget on the wiki 2015-10-23 15:02:23 +00:00
Gadgets.namespaces.php Add Estonian translations for gadget namespaces 2015-11-03 22:15:38 +00:00
Gadgets.php Load namespaces 2015-08-21 13:41:20 +00:00
Gadgets_body.php Implement Gadgets definition namespace repo 2015-11-20 12:01:21 -06:00
Gruntfile.js build: Configure banana-checker and jsonlint 2015-06-17 19:52:25 +01:00
install.settings Whitespace fixes 2008-02-04 08:08:43 +00:00
package.json build: Updating development dependencies 2015-10-11 11:45:25 -04:00
README Implement Gadgets definition namespace repo 2015-11-20 12:01:21 -06:00
SpecialGadgets.php Implement Gadgets definition namespace repo 2015-11-20 12:01:21 -06:00
SpecialGadgetUsage.php Remove non-existent gadgets from Special:GadgetUsage 2015-11-03 22:11:10 +00:00

--------------------------------------------------------------------------
README for the Gadgets extension
Copyright © 2007 Daniel Kinzler
Licenses: GNU General Public Licence (GPL)
          GNU Free Documentation License (GFDL)
--------------------------------------------------------------------------

The Gadgets extension provides a way for users to pick JavaScript or CSS
based "gadgets" that other wiki users provide.

<https://www.mediawiki.org/wiki/Extension:Gadgets>

The Gadgets extension was originally written by Daniel Kinzler in 2007
and is released under the GNU General Public Licence (GPL).
The internationalization files may contain contributions by several people;
they should be mentioned in each file individually.

== Prerequisites ==
This version of Gadgets requires MediaWiki 1.27 or later. To get a version
compatible with earlier MediaWiki release, visit
    https://www.mediawiki.org/wiki/Special:ExtensionDistributor/Gadgets

== Installing ==
Copy the Gadgets directory into the extensions folder of your
MediaWiki installation. Then add the following lines to your
LocalSettings.php file (near the end):

  require_once "$IP/extensions/Gadgets/Gadgets.php";

== Usage ==
See http://www.mediawiki.org/wiki/Extension:Gadgets#Usage

== Caveats ==

* Gadgets do not apply to Special:Preferences, Special:UserLogin and
  Special:ResetPass so users can always disable any broken gadgets they
  may have enabled, and malicious gadgets will be unable to steal passwords.

== Configuration settings ==
* $wgGadgetsRepoClass configures which GadgetRepo implementation will be used
  to source gadgets from. Currently, "MediaWikiGadgetsDefinitionRepo" is the
  recommended setting and default. The "GadgetDefinitionNamespaceRepo" is not
  ready for production usage yet.