forked from beudbeud/radicale_ynh
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathconfig_panel.json
More file actions
116 lines (116 loc) · 3.65 KB
/
Copy pathconfig_panel.json
File metadata and controls
116 lines (116 loc) · 3.65 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
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": "Radicale configuration panel",
"version": "0.1",
"panel": [{
"name": "Radicale configuration",
"id": "main",
"sections": [{
"name": "InfCloud configuration",
"id": "infcloud_configuration",
"options": [{
"name": "Choose your interface language",
"help": "We can't use a choices field for now. In the meantime please choose between one of this values:<br>Czech, Danish, German, English/US, Spanish, French, Italian, Japan, Hungarian, Dutch, Slovak, Turkish, Russian, Ukrainian, Chinese.",
"id": "language",
"type": "text",
"//": "\"choices\" : [\"Czech\", \"Danish\", \"German\", \"English/US\", \"Spanish\", \"French\", \"Italian\", \"Japan\", \"Hungarian\", \"Dutch\", \"Slovak\", \"Turkish\", \"Russian\", \"Ukrainian\", \"Chinese\"]",
"default" : "English/US"
},
{
"name": "First day of the week ?",
"help": "We can't use a choices field for now. In the meantime please choose between one of this values:<br>Sunday, Monday.",
"id": "firstdayofweek",
"type": "text",
"//": "\"choices\" : [\"Sunday\", \"Monday\"]",
"default" : "Monday"
},
{
"name": "Default calendar view ?",
"help": "We can't use a choices field for now. In the meantime please choose between one of this values:<br>month, multiWeek, agendaWeek, agendaDay.",
"id": "activeview",
"type": "text",
"//": "\"choices\" : [\"month\", \"multiWeek\", \"agendaWeek\", \"agendaDay\"]",
"default" : "agendaWeek"
},
{
"name": "New event on single or double click ?",
"help": "We can't use a choices field for now. In the meantime please choose between one of this values:<br>single, double.",
"id": "openformmode",
"type": "text",
"//": "\"choices\" : [\"single\", \"double\"]",
"default" : "double"
},
{
"name": "Start of business hour ?",
"help": "Non-business hours are faded out in the calendar interface.",
"id": "startofbusiness",
"type": "number",
"default": 8
},
{
"name": "End of business hour ?",
"help": "Non-business hours are faded out in the calendar interface.",
"id": "endofbusiness",
"type": "number",
"default": 18
},
{
"name": "Default event duration ?",
"help": "In minutes.",
"id": "defaulteventduration",
"type": "number",
"default": 120
}]
},
{
"name": "Overwriting config files",
"id": "overwrite_files",
"options": [{
"name": "Overwrite the config file logging ?",
"help": "If the file is overwritten, a backup will be created.",
"id": "overwrite_logging",
"type": "bool",
"default": true
},
{
"name": "Overwrite the config file config ?",
"help": "If the file is overwritten, a backup will be created.",
"id": "overwrite_config",
"type": "bool",
"default": true
},
{
"name": "Overwrite the InfCloud config file config.js ?",
"help": "If the file is overwritten, a backup will be created.",
"id": "overwrite_infcloud",
"type": "bool",
"default": true
},
{
"name": "Overwrite the nginx config file ?",
"help": "If the file is overwritten, a backup will be created.",
"id": "overwrite_nginx",
"type": "bool",
"default": true
},
{
"name": "Overwrite the php-fpm config file ?",
"help": "If the file is overwritten, a backup will be created.",
"id": "overwrite_phpfpm",
"type": "bool",
"default": true
}]
},
{
"name": "Global configuration",
"id": "global_config",
"options": [{
"name": "Send HTML email to admin ?",
"help": "Allow app scripts to send HTML mails instead of plain text.",
"id": "email_type",
"type": "bool",
"default": true
}]
}]
}
]
}