/usr/share/pyshared/schooltool/app/config-schema.xml is in python-schooltool 1:2.1.0-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | <schema>
<description>
SchoolTool configuration schema.
This schema describes the configuration options available for SchoolTool
HTTP server.
</description>
<import package="ZODB" />
<section type="zodb.database" name="*" required="yes" attribute="database">
<description>
The main application database that should be used.
</description>
<example>
<zodb>
<filestorage>
path Data.fs
</filestorage>
</zodb>
</example>
</section>
<multikey name="listen" datatype="inet-address">
<description>
Network interface and port number the HTTP server should listen on.
Network interface can be omitted and just the port number specified.
</description>
<example>
listen 8080
listen 127.0.0.1:80
</example>
</multikey>
<multikey name="web" datatype="inet-address">
<description>
Network interface and port number the web server should listen on.
Network interface can be omitted and just the port number specified.
</description>
<example>
web 80
web 127.0.0.1:80
</example>
</multikey>
<multikey name="listen_ssl" datatype="inet-address">
<description>
Network interface and port number the HTTPS server should listen on.
Network interface can be omitted and just the port number specified.
</description>
<example>
listen_ssl 8080
listen_ssl 127.0.0.1:80
</example>
</multikey>
<multikey name="web_ssl" datatype="inet-address">
<description>
Network interface and port number the ssl web server should listen on.
Network interface can be omitted and just the port number specified.
</description>
<example>
web_ssl 8080
web_ssl 127.0.0.1:80
</example>
</multikey>
<key name="ssl_certificate" datatype="string">
<description>
PEM Certificate
</description>
</key>
<key name="thread-pool-size" datatype="integer" default="10">
<description>
Suggested thread pool size.
</description>
<example>
thread-pool-size 20
</example>
</key>
<key name="event-logging" datatype="boolean" default="off">
<description>
Enables or disables global event logging to /utils/eventlog.
</description>
<example>
event-logging on
</example>
</key>
<key name="pid-file" datatype="string">
<description>
Specifies the path of a pid file.
</description>
<example>
pid-file /var/run/schooltool.pid
</example>
</key>
<multikey name="error-log-file" datatype="string">
<description>
Specifies the path of a log file used for exceptions. Special
values STDERR and STDOUT mean standard error and standard output
respectively.
</description>
<default>STDERR</default>
<example>
error-log-file /var/log/schooltool/error.log
error-log-file STDERR
</example>
</multikey>
<multikey name="web-access-log-file" datatype="string">
<description>
Specifies the path of a file used for an Apache combined format
access log for the web application interface. Special values
STDERR and STDOUT mean standard error and standard output
respectively.
</description>
<default>STDOUT</default>
<example>
access-log-file /var/log/schooltool/web-access.log
access-log-file STDOUT
</example>
</multikey>
<multikey name="attendance-log-file" datatype="string">
<description>
Specifies the path of a file used for the attendance log.
Special values STDERR and STDOUT mean standard error and standard
output respectively.
This option is obsolete.
</description>
<example>
attendance-log-file /var/log/schooltool/attendance.log
</example>
</multikey>
<key name="lang" datatype="string" default="auto">
<description>
Specifies the locale of the messages to be used on the server.
If 'auto' is set, the language is chosen according to the user's
preference specified in the web browser configuration.
</description>
<example>
lang en_US
</example>
</key>
<key name="reportlab_fontdir" datatype="string">
<description>
Specifies the path to TrueType fonts (Liberation)
for reportlab.
Comment out to disable reportlab.
</description>
<example>
reportlab_fontdir /usr/share/fonts/truetype/ttf-liberation
</example>
</key>
<key name="devmode" datatype="boolean">
<description>
Switches the Developer Mode on and off.
In developer mode, the Web UI will provide usefull utilities for
developers to work on schooltool applications.
</description>
<example>
devmode on
</example>
<metadefault>off</metadefault>
</key>
<key name="site-definition" default="site.zcml">
<description>
The name of the top-level ZCML file that defines the component
configuration used for this site.
</description>
<example>
site-definition site.zcml
</example>
</key>
<key name="school-type" default="">
<description>
The school type to be used when initializing the database.
This option is obsolete.
</description>
<example>
school-type lyceum
</example>
</key>
%(plugins)s
</schema>
|