fixed line endings

This commit is contained in:
tmont 2008-10-22 06:37:12 +00:00
parent f3bf96a5af
commit bf3dbeadb0

View File

@ -1,107 +1,107 @@
[externals] [externals]
; The path to the binary to use for diffs ; The path to the binary to use for diffs
; ;
; The default is "diff" and assumes the diff binary is ; The default is "diff" and assumes the diff binary is
; available via your PATH environment variable ; available via your PATH environment variable
; ;
; Example: /usr/bin/diff ; Example: /usr/bin/diff
diff = diff diff = diff
[database] [database]
; The name of the database vendor ; The name of the database vendor
; ;
; Note that your PHP binary will have to be compiled with ; Note that your PHP binary will have to be compiled with
; the appropriate libraries if it isn't already. ; the appropriate libraries if it isn't already.
; ;
; The default is "mysql". ; The default is "mysql".
; ;
; Possible values: ; Possible values:
; mysql ; mysql
; oracle ; oracle
; postgresql ; postgresql
; sqlite ; sqlite
vendor = mysql vendor = mysql
; Connection details for connecting to the database ; Connection details for connecting to the database
; ;
; Example configuration (default MySQL root user): ; Example configuration (default MySQL root user):
; host = localhost ; host = localhost
; username = root ; username = root
; password = ; password =
; port = 3306 ; port = 3306
host = host =
username = username =
password = password =
port = port =
; The name of the wiki database ; The name of the wiki database
; ;
; This will only need to be changed if you manually ; This will only need to be changed if you manually
; altered the name of the database. ; altered the name of the database.
; ;
; The default is "wiki". ; The default is "wiki".
database = wiki database = wiki
[application] [application]
; Toggles debug mode ; Toggles debug mode
; ;
; In debug mode, a display is shown after every page load ; In debug mode, a display is shown after every page load
; with the following information: ; with the following information:
; - page load time ; - page load time
; - all SQL queries ; - all SQL queries
; - superglobal data ($_SERVER, $_POST, $_GET, $_REQUEST, ; - superglobal data ($_SERVER, $_POST, $_GET, $_REQUEST,
; $_COOKIE, $_SESSION) ; $_COOKIE, $_SESSION)
; - wiki-related stuff, e.g. time elapsed to parse wikitext ; - wiki-related stuff, e.g. time elapsed to parse wikitext
; to HTML ; to HTML
; ;
; The default is "off". ; The default is "off".
; ;
; Possible values: ; Possible values:
; on ; on
; off ; off
debug = off debug = off
; Toggles logging ; Toggles logging
; ;
; The default is "off". ; The default is "off".
; ;
; Possible values: ; Possible values:
; on ; on
; off ; off
logging = off logging = off
; Specifies the logging severity ; Specifies the logging severity
; ;
; Severities: ; Severities:
; DEBUG - logs everything under the sun ; DEBUG - logs everything under the sun
; INFO - logs informational events (e.g. "Query on wiki.history ; INFO - logs informational events (e.g. "Query on wiki.history
; returned 30 rows") ; returned 30 rows")
; WARNING - logs warnings (e.g. "two people editing the same page") ; WARNING - logs warnings (e.g. "two people editing the same page")
; ERROR - logs page-crashing errors (e.g. "query on wiki.history ; ERROR - logs page-crashing errors (e.g. "query on wiki.history
; failed: could not resolve hostname") ; failed: could not resolve hostname")
; DEATH - logs program-crashing errors (e.g. "cannot connect ; DEATH - logs program-crashing errors (e.g. "cannot connect
; to database") ; to database")
; ;
; The severities are a bitwise operation, so a WARNING severity ; The severities are a bitwise operation, so a WARNING severity
; logs WARNINGs, ERRORs and DEATHs. ; logs WARNINGs, ERRORs and DEATHs.
; ;
; The default is "WARNING". ; The default is "WARNING".
; ;
; Possible values: ; Possible values:
; DEBUG ; DEBUG
; INFO ; INFO
; WARNING ; WARNING
; ERROR ; ERROR
; DEATH ; DEATH
logseverity = WARNING logseverity = WARNING
; The directory in which to create the logs ; The directory in which to create the logs
; ;
; Obviously, apache needs read/write/execute permissions ; Obviously, apache needs read/write/execute permissions
; in this directory. ; in this directory.
; ;
; The default is "./logs". ; The default is "./logs".
logdir = ./logs logdir = ./logs