mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-29 00:30:44 +00:00
Merge "extension.json: Rebuild using maintenance/convertExtensionToRegistration.php"
This commit is contained in:
commit
cd05fb0fc4
364
extension.json
364
extension.json
|
@ -20,19 +20,79 @@
|
|||
"descriptionmsg": "visualeditor-desc",
|
||||
"license-name": "MIT",
|
||||
"type": "other",
|
||||
"DefaultUserOptions": {
|
||||
"visualeditor-enable": 0,
|
||||
"visualeditor-betatempdisable": 0,
|
||||
"visualeditor-enable-experimental": 0,
|
||||
"visualeditor-enable-language": 0,
|
||||
"visualeditor-hidebetawelcome": 0
|
||||
"config": {
|
||||
"VisualEditorPreferenceModules": {
|
||||
"visualeditor-enable-experimental": "ext.visualEditor.experimental",
|
||||
"visualeditor-enable-language": "ext.visualEditor.language"
|
||||
},
|
||||
"VisualEditorSerializationCacheTimeout": 3600,
|
||||
"VisualEditorUseChangeTagging": true,
|
||||
"VisualEditorSupportedSkins": [
|
||||
"vector",
|
||||
"apex",
|
||||
"monobook",
|
||||
"minerva"
|
||||
],
|
||||
"VisualEditorResourceTemplate": {
|
||||
"localBasePath": "/vagrant/mediawiki/extensions/VisualEditor",
|
||||
"remoteExtPath": "VisualEditor"
|
||||
},
|
||||
"VisualEditorParsoidPrefix": "localhost",
|
||||
"VisualEditorDisableForAnons": false,
|
||||
"VisualEditorPluginModules": [],
|
||||
"VisualEditorParsoidForwardCookies": false,
|
||||
"VisualEditorTabMessages": {
|
||||
"edit": null,
|
||||
"editsource": "visualeditor-ca-editsource",
|
||||
"create": null,
|
||||
"createsource": "visualeditor-ca-createsource",
|
||||
"editlocaldescriptionsource": "visualeditor-ca-editlocaldescriptionsource",
|
||||
"createlocaldescriptionsource": "visualeditor-ca-createlocaldescriptionsource",
|
||||
"editsection": null,
|
||||
"editsectionsource": "visualeditor-ca-editsource-section",
|
||||
"editappendix": null,
|
||||
"editsourceappendix": null,
|
||||
"createappendix": null,
|
||||
"createsourceappendix": null,
|
||||
"editsectionappendix": null,
|
||||
"editsectionsourceappendix": null
|
||||
},
|
||||
"VisualEditorShowBetaWelcome": false,
|
||||
"VisualEditorParsoidHTTPProxy": false,
|
||||
"VisualEditorBrowserBlacklist": {
|
||||
"msie": [
|
||||
[
|
||||
"<=",
|
||||
9
|
||||
]
|
||||
],
|
||||
"android": [
|
||||
[
|
||||
"<",
|
||||
3
|
||||
]
|
||||
],
|
||||
"firefox": [
|
||||
[
|
||||
"<=",
|
||||
14
|
||||
]
|
||||
],
|
||||
"opera": [
|
||||
[
|
||||
"<",
|
||||
12
|
||||
]
|
||||
],
|
||||
"blackberry": null,
|
||||
"silk": null
|
||||
},
|
||||
"VisualEditorTabPosition": "before",
|
||||
"VisualEditorParsoidURL": "http://localhost:8000",
|
||||
"VisualEditorEnableTocWidget": false,
|
||||
"VisualEditorNamespaces": [],
|
||||
"VisualEditorParsoidTimeout": 100
|
||||
},
|
||||
"ConfigRegistry": {
|
||||
"visualeditor": "GlobalVarConfig::newInstance"
|
||||
},
|
||||
"ExtensionFunctions": [
|
||||
"VisualEditorHooks::onSetup"
|
||||
],
|
||||
"APIModules": {
|
||||
"visualeditor": {
|
||||
"class": "ApiVisualEditor",
|
||||
|
@ -43,6 +103,59 @@
|
|||
"factory": "VisualEditorHooks::VisualEditorApiFactory"
|
||||
}
|
||||
},
|
||||
"Hooks": {
|
||||
"BeforePageDisplay": [
|
||||
"VisualEditorHooks::onBeforePageDisplay"
|
||||
],
|
||||
"ContentHandlerDefaultModelFor": [
|
||||
"VisualEditorHooks::onContentHandlerDefaultModelFor"
|
||||
],
|
||||
"DoEditSectionLink": [
|
||||
"VisualEditorHooks::onDoEditSectionLink"
|
||||
],
|
||||
"GetBetaFeaturePreferences": [
|
||||
"VisualEditorHooks::onGetBetaPreferences"
|
||||
],
|
||||
"GetPreferences": [
|
||||
"VisualEditorHooks::onGetPreferences"
|
||||
],
|
||||
"ListDefinedTags": [
|
||||
"VisualEditorHooks::onListDefinedTags"
|
||||
],
|
||||
"ChangeTagsListActive": [
|
||||
"VisualEditorHooks::onListDefinedTags"
|
||||
],
|
||||
"MakeGlobalVariablesScript": [
|
||||
"VisualEditorHooks::onMakeGlobalVariablesScript"
|
||||
],
|
||||
"RedirectSpecialArticleRedirectParams": [
|
||||
"VisualEditorHooks::onRedirectSpecialArticleRedirectParams"
|
||||
],
|
||||
"ResourceLoaderGetConfigVars": [
|
||||
"VisualEditorHooks::onResourceLoaderGetConfigVars"
|
||||
],
|
||||
"ResourceLoaderRegisterModules": [
|
||||
"VisualEditorHooks::onResourceLoaderRegisterModules"
|
||||
],
|
||||
"ResourceLoaderTestModules": [
|
||||
"VisualEditorHooks::onResourceLoaderTestModules"
|
||||
],
|
||||
"SkinTemplateNavigation": [
|
||||
"VisualEditorHooks::onSkinTemplateNavigation"
|
||||
],
|
||||
"ParserTestGlobals": [
|
||||
"VisualEditorHooks::onParserTestGlobals"
|
||||
],
|
||||
"EditPage::showEditForm:fields": [
|
||||
"VisualEditorHooks::onEditPageShowEditFormFields"
|
||||
],
|
||||
"PageContentSaveComplete": [
|
||||
"VisualEditorHooks::onPageContentSaveComplete"
|
||||
],
|
||||
"BeforeInitialize": [
|
||||
"VisualEditorHooks::onBeforeInitialize"
|
||||
]
|
||||
},
|
||||
"MessagesDirs": {
|
||||
"VisualEditor": [
|
||||
"lib/ve/i18n",
|
||||
|
@ -50,17 +163,8 @@
|
|||
"modules/ve-wmf/i18n"
|
||||
]
|
||||
},
|
||||
"AutoloadClasses": {
|
||||
"ApiVisualEditor": "ApiVisualEditor.php",
|
||||
"ApiVisualEditorEdit": "ApiVisualEditorEdit.php",
|
||||
"VisualEditorHooks": "VisualEditor.hooks.php",
|
||||
"VisualEditorDataModule": "VisualEditorDataModule.php",
|
||||
"VisualEditorViewPageTargetInitModule": "VisualEditorViewPageTargetInitModule.php"
|
||||
},
|
||||
"ResourceModules": {
|
||||
"jquery.visibleText": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"scripts": [
|
||||
"lib/ve/lib/jquery/jquery.visibleText.js"
|
||||
],
|
||||
|
@ -70,8 +174,6 @@
|
|||
]
|
||||
},
|
||||
"Base64.js": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"scripts": [
|
||||
"lib/Base64.js/base64.js"
|
||||
],
|
||||
|
@ -81,8 +183,6 @@
|
|||
]
|
||||
},
|
||||
"easy-deflate.core": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"scripts": [
|
||||
"lib/Easy-Deflate/easydeflate.js",
|
||||
"lib/Easy-Deflate/typedarrays.js"
|
||||
|
@ -96,8 +196,6 @@
|
|||
]
|
||||
},
|
||||
"easy-deflate.deflate": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"scripts": [
|
||||
"lib/Easy-Deflate/deflate.js"
|
||||
],
|
||||
|
@ -110,8 +208,6 @@
|
|||
]
|
||||
},
|
||||
"unicodejs": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"scripts": [
|
||||
"lib/ve/lib/unicodejs/unicodejs.js"
|
||||
],
|
||||
|
@ -121,13 +217,9 @@
|
|||
]
|
||||
},
|
||||
"unicodejs.wordbreak": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"dependencies": "unicodejs"
|
||||
},
|
||||
"papaparse": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"scripts": "lib/ve/lib/papaparse/papaparse.js",
|
||||
"targets": [
|
||||
"desktop",
|
||||
|
@ -135,8 +227,6 @@
|
|||
]
|
||||
},
|
||||
"rangefix": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"scripts": "lib/ve/lib/rangefix/rangefix.js",
|
||||
"targets": [
|
||||
"desktop",
|
||||
|
@ -144,8 +234,6 @@
|
|||
]
|
||||
},
|
||||
"ext.visualEditor.viewPageTarget.init": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"class": "VisualEditorViewPageTargetInitModule",
|
||||
"scripts": "modules/ve-mw/init/targets/ve.init.mw.ViewPageTarget.init.js",
|
||||
"styles": "modules/ve-mw/init/styles/ve.init.mw.ViewPageTarget.init.css",
|
||||
|
@ -174,13 +262,9 @@
|
|||
"position": "top"
|
||||
},
|
||||
"ext.visualEditor.viewPageTarget.noscript": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"styles": "modules/ve-mw/init/styles/ve.init.mw.ViewPageTarget.noscript.css"
|
||||
},
|
||||
"ext.visualEditor.viewPageTarget": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"scripts": [
|
||||
"modules/ve-mw/init/targets/ve.init.mw.ViewPageTarget.js"
|
||||
],
|
||||
|
@ -227,8 +311,6 @@
|
|||
]
|
||||
},
|
||||
"ext.visualEditor.mobileViewTarget": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"scripts": [
|
||||
"modules/ve-mw/init/targets/ve.init.mw.MobileViewTarget.js"
|
||||
],
|
||||
|
@ -246,8 +328,6 @@
|
|||
]
|
||||
},
|
||||
"ext.visualEditor.ve": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"scripts": "lib/ve/src/ve.js",
|
||||
"targets": [
|
||||
"desktop",
|
||||
|
@ -255,8 +335,6 @@
|
|||
]
|
||||
},
|
||||
"ext.visualEditor.track": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"scripts": "lib/ve/src/ve.track.js",
|
||||
"dependencies": "ext.visualEditor.ve",
|
||||
"targets": [
|
||||
|
@ -265,8 +343,6 @@
|
|||
]
|
||||
},
|
||||
"ext.visualEditor.base": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"scripts": [
|
||||
"lib/ve/src/ve.utils.js",
|
||||
"lib/ve/src/ve.TriggerListener.js",
|
||||
|
@ -290,8 +366,6 @@
|
|||
]
|
||||
},
|
||||
"ext.visualEditor.mediawiki": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"scripts": [
|
||||
"modules/ve-mw/init/ve.init.mw.js",
|
||||
"modules/ve-mw/init/ve.init.mw.ApiResponseCache.js",
|
||||
|
@ -328,8 +402,6 @@
|
|||
]
|
||||
},
|
||||
"ext.visualEditor.mediawiki.mobile": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"scripts": [
|
||||
"modules/ve-mw/ui/ve.ui.MWMobileContext.js",
|
||||
"modules/ve-mw/ui/ve.ui.MWMobileSurface.js"
|
||||
|
@ -343,8 +415,6 @@
|
|||
]
|
||||
},
|
||||
"ext.visualEditor.standalone": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"scripts": [
|
||||
"lib/ve/src/init/sa/ve.init.sa.js",
|
||||
"lib/ve/src/init/sa/ve.init.sa.Platform.js",
|
||||
|
@ -359,13 +429,9 @@
|
|||
]
|
||||
},
|
||||
"ext.visualEditor.data": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"class": "VisualEditorDataModule"
|
||||
},
|
||||
"ext.visualEditor.core": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"scripts": [
|
||||
"lib/ve/src/ve.Range.js",
|
||||
"lib/ve/src/ve.Node.js",
|
||||
|
@ -382,12 +448,14 @@
|
|||
"lib/ve/src/dm/ve.dm.MetaItemFactory.js",
|
||||
"lib/ve/src/dm/ve.dm.Node.js",
|
||||
"lib/ve/src/dm/ve.dm.ClassAttributeNode.js",
|
||||
"lib/ve/src/dm/ve.dm.AlignableNode.js",
|
||||
"lib/ve/src/dm/ve.dm.FocusableNode.js",
|
||||
"lib/ve/src/dm/ve.dm.Scalable.js",
|
||||
"lib/ve/src/dm/ve.dm.APIResultsProvider.js",
|
||||
"lib/ve/src/dm/ve.dm.APIResultsQueue.js",
|
||||
"lib/ve/src/dm/ve.dm.ResizableNode.js",
|
||||
"lib/ve/src/dm/ve.dm.BranchNode.js",
|
||||
"lib/ve/src/dm/ve.dm.LeafNode.js",
|
||||
"lib/ve/src/dm/ve.dm.AlignableNode.js",
|
||||
"lib/ve/src/dm/ve.dm.Annotation.js",
|
||||
"lib/ve/src/dm/ve.dm.InternalList.js",
|
||||
"lib/ve/src/dm/ve.dm.MetaItem.js",
|
||||
|
@ -471,9 +539,9 @@
|
|||
"lib/ve/src/ce/ve.ce.BranchNode.js",
|
||||
"lib/ve/src/ce/ve.ce.ContentBranchNode.js",
|
||||
"lib/ve/src/ce/ve.ce.LeafNode.js",
|
||||
"lib/ve/src/ce/ve.ce.AlignableNode.js",
|
||||
"lib/ve/src/ce/ve.ce.FocusableNode.js",
|
||||
"lib/ve/src/ce/ve.ce.ResizableNode.js",
|
||||
"lib/ve/src/ce/ve.ce.AlignableNode.js",
|
||||
"lib/ve/src/ce/ve.ce.Surface.js",
|
||||
"lib/ve/src/ce/ve.ce.SurfaceObserver.js",
|
||||
"lib/ve/src/ce/nodes/ve.ce.GeneratedContentNode.js",
|
||||
|
@ -747,8 +815,6 @@
|
|||
]
|
||||
},
|
||||
"ext.visualEditor.core.desktop": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"scripts": [
|
||||
"lib/ve/src/ui/ve.ui.DesktopSurface.js",
|
||||
"lib/ve/src/ui/ve.ui.DesktopContext.js",
|
||||
|
@ -765,8 +831,6 @@
|
|||
]
|
||||
},
|
||||
"ext.visualEditor.core.mobile": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"scripts": [
|
||||
"lib/ve/src/ui/ve.ui.MobileSurface.js",
|
||||
"lib/ve/src/ui/ve.ui.MobileContext.js",
|
||||
|
@ -785,8 +849,6 @@
|
|||
]
|
||||
},
|
||||
"ext.visualEditor.mwcore": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"scripts": [
|
||||
"modules/ve-mw/dm/ve.dm.MW.js",
|
||||
"modules/ve-mw/dm/nodes/ve.dm.MWEntityNode.js",
|
||||
|
@ -905,8 +967,6 @@
|
|||
]
|
||||
},
|
||||
"ext.visualEditor.mwformatting": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"scripts": [
|
||||
"modules/ve-mw/dm/nodes/ve.dm.MWHeadingNode.js",
|
||||
"modules/ve-mw/dm/nodes/ve.dm.MWPreformattedNode.js",
|
||||
|
@ -936,8 +996,6 @@
|
|||
]
|
||||
},
|
||||
"ext.visualEditor.mwimage.core": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"scripts": [
|
||||
"modules/ve-mw/dm/nodes/ve.dm.MWImageNode.js",
|
||||
"modules/ve-mw/dm/nodes/ve.dm.MWInlineImageNode.js",
|
||||
|
@ -962,8 +1020,6 @@
|
|||
]
|
||||
},
|
||||
"ext.visualEditor.mwimage": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"scripts": [
|
||||
"modules/ve-mw/dm/models/ve.dm.MWImageModel.js",
|
||||
"modules/ve-mw/dm/models/ve.dm.MWMediaResourceProvider.js",
|
||||
|
@ -1040,8 +1096,6 @@
|
|||
]
|
||||
},
|
||||
"ext.visualEditor.mwlink": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"scripts": [
|
||||
"modules/ve-mw/dm/nodes/ve.dm.MWNumberedExternalLinkNode.js",
|
||||
"modules/ve-mw/dm/annotations/ve.dm.MWExternalLinkAnnotation.js",
|
||||
|
@ -1085,8 +1139,6 @@
|
|||
]
|
||||
},
|
||||
"ext.visualEditor.mwmeta": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"scripts": [
|
||||
"modules/ve-mw/dm/metaitems/ve.dm.MWCategoryMetaItem.js",
|
||||
"modules/ve-mw/dm/metaitems/ve.dm.MWDefaultSortMetaItem.js",
|
||||
|
@ -1200,8 +1252,6 @@
|
|||
]
|
||||
},
|
||||
"ext.visualEditor.mwreference.core": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"scripts": [
|
||||
"modules/ve-mw/dm/models/ve.dm.MWReferenceModel.js",
|
||||
"modules/ve-mw/dm/nodes/ve.dm.MWReferencesListNode.js",
|
||||
|
@ -1227,8 +1277,6 @@
|
|||
]
|
||||
},
|
||||
"ext.visualEditor.mwreference": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"scripts": [
|
||||
"modules/ve-mw/ui/widgets/ve.ui.MWReferenceGroupInputWidget.js",
|
||||
"modules/ve-mw/ui/widgets/ve.ui.MWReferenceSearchWidget.js",
|
||||
|
@ -1269,8 +1317,6 @@
|
|||
]
|
||||
},
|
||||
"ext.visualEditor.mwtransclusion.core": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"scripts": [
|
||||
"modules/ve-mw/dm/nodes/ve.dm.MWTransclusionNode.js",
|
||||
"modules/ve-mw/dm/metaitems/ve.dm.MWTransclusionMetaItem.js",
|
||||
|
@ -1285,8 +1331,6 @@
|
|||
]
|
||||
},
|
||||
"ext.visualEditor.mwtransclusion": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"scripts": [
|
||||
"modules/ve-mw/dm/models/ve.dm.MWTransclusionModel.js",
|
||||
"modules/ve-mw/dm/models/ve.dm.MWTransclusionPartModel.js",
|
||||
|
@ -1373,8 +1417,6 @@
|
|||
]
|
||||
},
|
||||
"ext.visualEditor.language": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"scripts": [
|
||||
"lib/ve/src/dm/annotations/ve.dm.LanguageAnnotation.js",
|
||||
"lib/ve/src/ce/annotations/ve.ce.LanguageAnnotation.js",
|
||||
|
@ -1412,8 +1454,6 @@
|
|||
]
|
||||
},
|
||||
"ext.visualEditor.mwalienextension": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"scripts": [
|
||||
"modules/ve-mw/dm/nodes/ve.dm.MWAlienExtensionNode.js",
|
||||
"modules/ve-mw/ce/nodes/ve.ce.MWAlienExtensionNode.js",
|
||||
|
@ -1435,8 +1475,6 @@
|
|||
]
|
||||
},
|
||||
"ext.visualEditor.mwgallery": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"scripts": [
|
||||
"modules/ve-mw/dm/nodes/ve.dm.MWGalleryNode.js",
|
||||
"modules/ve-mw/ce/nodes/ve.ce.MWGalleryNode.js",
|
||||
|
@ -1466,8 +1504,6 @@
|
|||
]
|
||||
},
|
||||
"ext.visualEditor.icons": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor",
|
||||
"styles": [
|
||||
"lib/ve/src/ui/styles/ve.ui.Icons.css",
|
||||
"modules/ve-mw/ui/styles/ve.ui.Icons.css"
|
||||
|
@ -1478,126 +1514,28 @@
|
|||
]
|
||||
}
|
||||
},
|
||||
"Hooks": {
|
||||
"BeforePageDisplay": [
|
||||
"VisualEditorHooks::onBeforePageDisplay"
|
||||
],
|
||||
"ContentHandlerDefaultModelFor": [
|
||||
"VisualEditorHooks::onContentHandlerDefaultModelFor"
|
||||
],
|
||||
"DoEditSectionLink": [
|
||||
"VisualEditorHooks::onDoEditSectionLink"
|
||||
],
|
||||
"GetBetaFeaturePreferences": [
|
||||
"VisualEditorHooks::onGetBetaPreferences"
|
||||
],
|
||||
"GetPreferences": [
|
||||
"VisualEditorHooks::onGetPreferences"
|
||||
],
|
||||
"ListDefinedTags": [
|
||||
"VisualEditorHooks::onListDefinedTags"
|
||||
],
|
||||
"ChangeTagsListActive": [
|
||||
"VisualEditorHooks::onListDefinedTags"
|
||||
],
|
||||
"MakeGlobalVariablesScript": [
|
||||
"VisualEditorHooks::onMakeGlobalVariablesScript"
|
||||
],
|
||||
"RedirectSpecialArticleRedirectParams": [
|
||||
"VisualEditorHooks::onRedirectSpecialArticleRedirectParams"
|
||||
],
|
||||
"ResourceLoaderGetConfigVars": [
|
||||
"VisualEditorHooks::onResourceLoaderGetConfigVars"
|
||||
],
|
||||
"ResourceLoaderRegisterModules": [
|
||||
"VisualEditorHooks::onResourceLoaderRegisterModules"
|
||||
],
|
||||
"ResourceLoaderTestModules": [
|
||||
"VisualEditorHooks::onResourceLoaderTestModules"
|
||||
],
|
||||
"SkinTemplateNavigation": [
|
||||
"VisualEditorHooks::onSkinTemplateNavigation"
|
||||
],
|
||||
"ParserTestGlobals": [
|
||||
"VisualEditorHooks::onParserTestGlobals"
|
||||
],
|
||||
"EditPage::showEditForm:fields": [
|
||||
"VisualEditorHooks::onEditPageShowEditFormFields"
|
||||
],
|
||||
"PageContentSaveComplete": [
|
||||
"VisualEditorHooks::onPageContentSaveComplete"
|
||||
],
|
||||
"BeforeInitialize": [
|
||||
"VisualEditorHooks::onBeforeInitialize"
|
||||
]
|
||||
"ResourceFileModulePaths": {
|
||||
"localBasePath": "",
|
||||
"remoteExtPath": "VisualEditor"
|
||||
},
|
||||
"config": {
|
||||
"VisualEditorPreferenceModules": {
|
||||
"visualeditor-enable-experimental": "ext.visualEditor.experimental",
|
||||
"visualeditor-enable-language": "ext.visualEditor.language"
|
||||
},
|
||||
"VisualEditorParsoidURL": "http://localhost:8000",
|
||||
"VisualEditorParsoidHTTPProxy": false,
|
||||
"VisualEditorParsoidPrefix": "localhost",
|
||||
"VisualEditorParsoidForwardCookies": false,
|
||||
"VisualEditorParsoidTimeout": 100,
|
||||
"VisualEditorSerializationCacheTimeout": 3600,
|
||||
"VisualEditorNamespaces": [],
|
||||
"VisualEditorEnableTocWidget": false,
|
||||
"VisualEditorSupportedSkins": [
|
||||
"vector",
|
||||
"apex",
|
||||
"monobook",
|
||||
"minerva"
|
||||
],
|
||||
"VisualEditorBrowserBlacklist": {
|
||||
"msie": [
|
||||
[
|
||||
"<=",
|
||||
9
|
||||
]
|
||||
],
|
||||
"android": [
|
||||
[
|
||||
"<",
|
||||
3
|
||||
]
|
||||
],
|
||||
"firefox": [
|
||||
[
|
||||
"<=",
|
||||
14
|
||||
]
|
||||
],
|
||||
"opera": [
|
||||
[
|
||||
"<",
|
||||
12
|
||||
]
|
||||
],
|
||||
"blackberry": null,
|
||||
"silk": null
|
||||
},
|
||||
"VisualEditorUseChangeTagging": true,
|
||||
"VisualEditorDisableForAnons": false,
|
||||
"VisualEditorPluginModules": [],
|
||||
"VisualEditorShowBetaWelcome": false,
|
||||
"VisualEditorTabPosition": "before",
|
||||
"VisualEditorTabMessages": {
|
||||
"edit": null,
|
||||
"editsource": "visualeditor-ca-editsource",
|
||||
"create": null,
|
||||
"createsource": "visualeditor-ca-createsource",
|
||||
"editlocaldescriptionsource": "visualeditor-ca-editlocaldescriptionsource",
|
||||
"createlocaldescriptionsource": "visualeditor-ca-createlocaldescriptionsource",
|
||||
"editsection": null,
|
||||
"editsectionsource": "visualeditor-ca-editsource-section",
|
||||
"editappendix": null,
|
||||
"editsourceappendix": null,
|
||||
"createappendix": null,
|
||||
"createsourceappendix": null,
|
||||
"editsectionappendix": null,
|
||||
"editsectionsourceappendix": null
|
||||
}
|
||||
"DefaultUserOptions": {
|
||||
"visualeditor-enable": 0,
|
||||
"visualeditor-betatempdisable": 0,
|
||||
"visualeditor-enable-experimental": 0,
|
||||
"visualeditor-enable-language": 0,
|
||||
"visualeditor-hidebetawelcome": 0
|
||||
},
|
||||
"ExtensionFunctions": [
|
||||
"VisualEditorHooks::onSetup"
|
||||
],
|
||||
"AutoloadClasses": {
|
||||
"ApiVisualEditor": "ApiVisualEditor.php",
|
||||
"ApiVisualEditorEdit": "ApiVisualEditorEdit.php",
|
||||
"VisualEditorHooks": "VisualEditor.hooks.php",
|
||||
"VisualEditorDataModule": "VisualEditorDataModule.php",
|
||||
"VisualEditorViewPageTargetInitModule": "VisualEditorViewPageTargetInitModule.php"
|
||||
},
|
||||
"ConfigRegistry": {
|
||||
"visualeditor": "GlobalVarConfig::newInstance"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue