-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextension.json
More file actions
56 lines (56 loc) · 1.21 KB
/
extension.json
File metadata and controls
56 lines (56 loc) · 1.21 KB
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
{
"name": "Calendar",
"version": "3.0",
"author": [
"Barrylb",
"Jack Phoenix",
"Misza",
"Ryan Schmidt",
"Samantha Nguyen"
],
"license-name": "GPL-2.0+",
"url": "https://www.mediawiki.org/wiki/Extension:Calendar_(Barrylb)",
"description": "Adds <code><calendar></code> tag for displaying calendars inside wiki pages and [[Special:Events|a special page]] for viewing existing events",
"type": "other",
"config": {
"CalendarWeekdayStart": 1
},
"SpecialPages": {
"Events": "SpecialEvents"
},
"MessagesDirs": {
"Calendar": [
"i18n"
]
},
"APIModules": {
"calendar": "ApiCalendar"
},
"ExtensionMessagesFiles": {
"CalendarAliases": "Calendar.alias.php"
},
"AutoloadClasses": {
"ApiCalendar": "ApiCalendar.php",
"CalendarHooks": "CalendarHooks.php",
"mwCalendar": "Calendar.class.php",
"SpecialEvents": "SpecialEvents.page.php"
},
"Hooks": {
"ParserFirstCallInit": [
"CalendarHooks::registerTag"
]
},
"ResourceFileModulePaths": {
"localBasePath": "",
"remoteExtPath": "Calendar"
},
"ResourceModules": {
"ext.calendar": {
"scripts": "Calendar.js",
"dependencies": [ "mediawiki.util" ],
"styles": "Calendar.css",
"position": "top"
}
},
"manifest_version": 1
}