-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.json
58 lines (58 loc) · 1.63 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
{
"name": "PageToGitHub",
"author": "[https://www.lucamauri.com/ Luca Mauri]",
"url": "https://github.com/lucamauri/PageToGitHub",
"description": "Allow the transport of page content to GitHub on page save",
"version": "2.0",
"license-name": "GPL-2.0-or-later",
"type": "parserhook",
"manifest_version": 1,
"AutoloadClasses": {
"PageToGitHubCommon": "includes/P2GCommon.php",
"PageToGitHubHooks": "PageToGitHub.php",
"PageToGitHubSpecial": "includes/P2GSpecial.php"
},
"Hooks": {
"PageSaveComplete": ["PageToGitHubHooks::onPageSaveComplete"]
},
"config": {
"P2GIgnoreMinor": {
"description": "Ignore chages if they are Minor",
"value": true
},
"P2GNameSpace": {
"description": "Label of the namespace to check",
"descriptionmsg": "p2g-config-namespace",
"value": null
},
"P2GOwner": {
"description": "Name of the owner of the repository",
"value": null
},
"P2GRepo": {
"description": "Name of the repository where to save the files",
"value": null
},
"P2GKeyword": {
"description": "Optional keyword to include selected page only in the transport",
"value": null
},
"P2GAddKeyword": {
"description": "Add keyword to file name",
"value": null
},
"P2GAuthToken": {
"description": "Personal GitHub token",
"value": null
}
},
"ConfigRegistry": {
"PageToGitHub": "GlobalVarConfig::newInstance"
},
"SpecialPages": {
"PageToGitHub": "PageToGitHubSpecial"
},
"MessagesDirs": {
"PageToGitHub": ["i18n"]
}
}