forked from wikipathways/mediawiki-extensions-WikiPathways
-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.json
232 lines (232 loc) · 8.36 KB
/
extension.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
{
"name": "WikiPathways",
"version": "1.0",
"license-name": "GPL-2.0+",
"author": [
"[http://nichework.com Mark A. Hershberger]",
"..."
],
"requires": {
"MediaWiki": ">=1.29"
},
"url": "https://wikipathways.org/",
"descriptionmsg": "wikipathways-desc",
"type": "misc",
"MessagesDirs": {
"WikiPathways": [
"i18n"
]
},
"SpecialPages": {
"CreatePathwayPage": "WikiPathways\\CreatePathway",
"CurationTags": "WikiPathways\\SpecialCurationTags",
"SpecialCurationTags": "WikiPathways\\SpecialCurationTags",
"RecentPathwayChanges": "WikiPathways\\RecentPathwayChanges",
"BrowsePathways": "WikiPathways\\BrowsePathways",
"BrowsePathwaysPage": "WikiPathways\\BrowsePathways",
"MostEditedPathwaysPage": "WikiPathways\\MostEditedPathways",
"NewPathwaysPage": "WikiPathways\\NewPathways",
"OntologyIndex": "WikiPathways\\OntologyIndex",
"PopularPathwaysPage": "WikiPathways\\PopularPathways",
"SearchPathways": "WikiPathways\\SearchPathways",
"ShowError": "WikiPathways\\ShowError",
"SpecialWishList": "WikiPathways\\SpecialWishList",
"TissueAnalyzer": "WikiPathways\\TissueAnalyzer"
},
"AutoloadClasses": {
"WikiPathways\\BasePathwaysPager": "src/BasePathwaysPager.php",
"WikiPathways\\BatchDownloader": "src/BatchDownloader.php",
"WikiPathways\\BrowsePathways": "src/BrowsePathways.php",
"WikiPathways\\CreatePathway": "src/CreatePathway.php",
"WikiPathways\\CurationTag": "src/CurationTag.php",
"WikiPathways\\CurationTag": "src/CurationTag.php",
"WikiPathways\\CurationTagsAjax": "src/CurationTagsAjax.php",
"WikiPathways\\DataSource": "src/DataSource.php",
"WikiPathways\\DataSourcesCache": "src/DataSourcesCache.php",
"WikiPathways\\FeaturedPathway": "src/FeaturedPathway.php",
"WikiPathways\\Hook": "src/Hook.php",
"WikiPathways\\ImageLink": "src/ImageLink.php",
"WikiPathways\\IndexClient": "src/IndexClient.php",
"WikiPathways\\IndexNotFoundException": "src/IndexNotFoundException.php",
"WikiPathways\\Interaction": "src/Interaction.php",
"WikiPathways\\ListPathwaysPager": "src/ListPathwaysPager.php",
"WikiPathways\\MagicWord": "src/MagicWord.php",
"WikiPathways\\MetaDataCache": "src/MetaDataCache.php",
"WikiPathways\\MetaTag": "src/MetaTag.php",
"WikiPathways\\MetaTagException": "src/MetaTagException.php",
"WikiPathways\\MetaTagHistoryRow": "src/MetaTagHistoryRow.php",
"WikiPathways\\MimeTypes": "src/MimeTypes.php",
"WikiPathways\\MostEditedPathways": "src/MostEditedPathways.php",
"WikiPathways\\NewPathways": "src/NewPathways.php",
"WikiPathways\\Organism": "src/Organism.php",
"WikiPathways\\PageEditor": "src/PageEditor.php",
"WikiPathways\\PagePermissions": "src/PagePermissions.php",
"PagePermissions": "src/PagePermissions.php",
"WikiPathways\\Pathway": "src/Pathway.php",
"WikiPathways\\PathwayBibliography": "src/PathwayBibliography.php",
"WikiPathways\\PathwayCache\\Base": "src/PathwayCache/Base.php",
"WikiPathways\\PathwayCache\\Factory": "src/PathwayCache/Factory.php",
"WikiPathways\\PathwayCache\\GPML": "src/PathwayCache/GPML.php",
"WikiPathways\\PathwayCache\\JSON": "src/PathwayCache/JSON.php",
"WikiPathways\\PathwayCache\\PNG": "src/PathwayCache/PNG.php",
"WikiPathways\\PathwayCache\\PathVisioConvertible": "src/PathwayCache/PathVisioConvertible.php",
"WikiPathways\\PathwayCache\\SVG": "src/PathwayCache/SVG.php",
"WikiPathways\\PathwayCache\\TXT": "src/PathwayCache/TXT.php",
"WikiPathways\\PathwayContributionsByAuthor": "src/PathwayContributionsByAuthor.php",
"WikiPathways\\PathwayData": "src/PathwayData.php",
"WikiPathways\\PathwayHistory": "src/PathwayHistory.php",
"WikiPathways\\PathwayIndex": "src/PathwayIndex.php",
"WikiPathways\\PathwayInfo": "src/PathwayInfo.php",
"WikiPathways\\PathwayOfTheDay": "src/PathwayOfTheDay.php",
"WikiPathways\\PathwayThumb": "src/PathwayThumb.php",
"WikiPathways\\PathwayViewer": "src/PathwayViewer.php",
"WikiPathways\\PathwayWishList": "src/PathwayWishList.php",
"WikiPathways\\PathwaysPagerFactory": "src/PathwaysPagerFactory.php",
"WikiPathways\\PermissionManager": "src/PermissionManager.php",
"WikiPathways\\PopularPathways": "src/PopularPathways.php",
"WikiPathways\\RecentChangesBox": "src/RecentChangesBox.php",
"WikiPathways\\RecentPathwayChanges": "src/RecentPathwayChanges.php",
"WikiPathways\\RecentQueryPage": "src/RecentQueryPage.php",
"WikiPathways\\SearchHit": "src/SearchHit.php",
"WikiPathways\\SearchPathways": "src/SearchPathways.php",
"WikiPathways\\SearchPathwaysAjax": "src/SearchPathwaysAjax.php",
"WikiPathways\\ShowError": "src/ShowError.php",
"WikiPathways\\SinglePathwaysPager": "src/SinglePathwaysPager.php",
"WikiPathways\\SpecialCurationTags": "src/SpecialCurationTags.php",
"WikiPathways\\SpecialWishList": "src/SpecialWishList.php",
"WikiPathways\\Statistics": "src/Statistics.php",
"WikiPathways\\StatisticsCache": "src/StatisticsCache.php",
"WikiPathways\\Statistics\\Generator": "statistics/Generator.php",
"WikiPathways\\Statistics\\Pathway": "statistics/Pathway.php",
"WikiPathways\\Statistics\\Statistics": "statistics/Statistics.php",
"WikiPathways\\Statistics\\Tag": "statistics/Tag.php",
"WikiPathways\\Statistics\\User": "statistics/User.php",
"WikiPathways\\Statistics\\Webservice": "statistics/Webservice.php",
"WikiPathways\\TagChangeNotification": "src/TagChangeNotification.php",
"WikiPathways\\TaggedPathway": "src/TaggedPathway.php",
"WikiPathways\\ThumbPathwaysPager": "src/ThumbPathwaysPager.php",
"WikiPathways\\TissueAnalyzer": "src/TissueAnalyzer.php",
"WikiPathways\\TopWishes": "src/TopWishes.php",
"WikiPathways\\Wish": "src/Wish.php",
"WikiPathways\\Xref": "src/Xref.php",
"WikiPathways\\XrefPanel": "src/XrefPanel.php",
"WikiPathways\\wpi": "wpi.php"
},
"ExtensionFunctions": [
"WikiPathways\\Hook::pathwayViewer"
],
"callback": "WikiPathways\\Hook::onRegistration",
"Hooks": {
"ContentGetParserOutput": "WikiPathways\\Hook::onContentGetParserOutput",
"AbortNewAccount": "abortOnBadDomain",
"ArticleSaveComplete": [
"WikiPathways\\Hook::updateTags"
],
"userCan": [
"WikiPathways\\Hook::checkDeleted",
"WikiPathways\\Hook::checkSoleAuthor"
],
"LanguageGetMagic": [
"WikiPathways\\MagicWord::onLanguageGetMagic",
"WikiPathways\\Hook::pathwayMagic"
],
"LinkerMakeExternalLink": "WikiPathways\\Hook::externalLink",
"MagicWordMagicWords": "WikiPathways\\MagicWord::onMagicWordMagicWords",
"MagicWordwgVariableIDs": "WikiPathways\\MagicWord::onMagicWordwgVariableIDs",
"PageDisplay": "WikiPathways\\Hook::stopDisplay",
"ParserGetVariableValueSwitch": "WikiPathways\\MagicWord::onParserGetVariableValueSwitch",
"userCan": "WikiPathways\\PermissionManager::checkRestrictions",
"SkinTemplateContentActions": "WikiPathways\\PermissionManager::addPermissionTab",
"UnknownAction": "WikiPathways\\PermissionManager::permissionTabAction",
"MakeGlobalVariablesScript": [
"WikiPathways\\CurationTag::onMakeGlobalVariablesScript",
"WikiPathways\\XrefPanel::onMakeGlobalVariablesScript"
]
},
"GroupPermissions": {
"sysop": {
"addpagetoanywatchlist": true,
"seepagewatchers": true
}
},
"AvailableRights": [
"addpagetoanywatchlist",
"seepagewatchers"
],
"ResourceFileModulePaths": {
"localBasePath": "modules",
"remoteExtPath": "WikiPathways/modules"
},
"ResourceModules": {
"wpi.toggleButton": {
"scripts": [
"ToggleButton.js"
],
"styles": [
"ToggleButton.css"
]
},
"wpi.browsePathways": {
"position": "top",
"styles": [
"BrowsePathways.css"
]
},
"wpi.browsePathwaysScript": {
"scripts": [
"BrowsePathways.js"
]
},
"wpi.PageEditor": {
"scripts": [
"PageEditor.js"
],
"styles": [
"PageEditor.css"
]
},
"wpi.CurationTags": {
"position": "top",
"scripts": [
"CurationTags.js"
],
"styles": [
"CurationTags.css"
]
},
"wpi.searchPathways": {
"scripts": [
"SearchPathways.js"
],
"styles": [
"SearchPathways.css"
],
"dependencies": "mediawiki.util"
},
"wpi.XrefPanel": {
"scripts": [
"xrefpanel.js"
],
"styles": [
"xrefpanel.css"
],
"dependencies": [
"jquery.ui.dialog",
"jquery.ui.accordion"
]
},
"wpi.StatisticsStyles": {
"styles": [ "statistics.css" ]
},
"wpi.Statistics": {
"scripts": [ "statistics.js" ]
}
},
"ResourceFileModulePaths": {
"localBasePath": "modules",
"remoteExtPath": "WikiPathways/modules"
},
"config": {
},
"manifest_version": 1
}