-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
extension.json
116 lines (116 loc) · 2.72 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
{
"name": "SimpleBlogPage",
"version": "3.0.1",
"author": [
"Universal Omega",
"David Pean",
"Jack Phoenix",
"1f604"
],
"license-name": "GPL-3.0-or-later",
"url": "https://www.mediawiki.org/wiki/Extension:SimpleBlogPage",
"descriptionmsg": "simpleblogpage-desc",
"requires": {
"MediaWiki": ">= 1.39.0"
},
"type": "other",
"callback": "SimpleBlogPageHooks::onRegistration",
"MessagesDirs": {
"SimpleBlogPage": [
"i18n"
]
},
"ExtensionMessagesFiles": {
"SimpleBlogPageAliases": "includes/specials/SimpleBlogPageAliases.php",
"SimpleBlogPageNamespaces": "includes/SimpleBlogPageNamespaces.php"
},
"AutoloadClasses": {
"SimpleBlogPage": "includes/SimpleBlogPage.php",
"ArticlesHome": "includes/specials/SpecialArticlesHome.php",
"BlogTagCloud": "includes/BlogTagCloud.php",
"SpecialCreateBlogPost": "includes/specials/SpecialCreateBlogPost.php",
"SimpleBlogPageHooks": "includes/SimpleBlogPageHooks.php"
},
"GroupPermissions": {
"user": {
"createblogpost": true
}
},
"AvailableRights": [
"createblogpost"
],
"namespaces": [
{
"id": 502,
"constant": "NS_USER_BLOG",
"name": "User_blog",
"protection": "edit",
"subpages": true
},
{
"id": 503,
"constant": "NS_USER_BLOG_TALK",
"name": "User_blog_talk",
"subpages": true
}
],
"SpecialPages": {
"ArticlesHome": "ArticlesHome",
"CreateBlogPost": "SpecialCreateBlogPost"
},
"ResourceModules": {
"ext.simpleBlogPage": {
"styles": [
"resources/css/ext.simpleblogpage.simpleblogpage.css",
"resources/css/ext.simpleblogpage.hideContentsub.css"
]
},
"ext.simpleBlogPage.articlesHome": {
"styles": [
"resources/css/ext.simpleblogpage.articleshome.css",
"resources/css/ext.simpleblogpage.hideContentsub.css"
]
},
"ext.simpleBlogPage.create.css": {
"styles": [
"resources/css/ext.simpleblogpage.createblogpost.css"
]
},
"ext.simpleBlogPage.create.js": {
"scripts": [
"resources/js/ext.simpleblogpage.createblogpost.js",
"resources/js/AddMoreButton.js"
],
"dependencies": [
"mediawiki.api"
]
}
},
"ResourceFileModulePaths": {
"localBasePath": "",
"remoteExtPath": "SimpleBlogPage"
},
"config": {
"SimpleBlogPageDisplay": {
"value": {
"leftcolumn": true,
"rightcolumn": true,
"author": true,
"author_articles": true,
"recent_editors": true,
"recent_voters": true,
"popular_articles": true,
"in_the_news": true,
"comments_of_day": false,
"games": true,
"new_articles": true
}
}
},
"Hooks": {
"AlternateEdit": "SimpleBlogPageHooks::onAlternateEdit",
"ArticleFromTitle": "SimpleBlogPageHooks::onArticleFromTitle",
"CosmosRailBuilder": "SimpleBlogPageHooks::onCosmosRailBuilder"
},
"manifest_version": 2
}