Skip to content
This repository was archived by the owner on Sep 10, 2021. It is now read-only.

Commit 3d21387

Browse files
author
Jamie Snape
committed
Consistently format ini files
1 parent 505852a commit 3d21387

File tree

2 files changed

+36
-36
lines changed

2 files changed

+36
-36
lines changed

core/configs/application.ini

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,60 @@
11
[global]
22
;development or production
3-
environment=development
3+
environment = development
44
;name of the application
5-
application.name=MIDAS - Digital Archiving System
5+
application.name = MIDAS - Digital Archiving System
66
;description of the application
7-
application.description=
7+
application.description =
88
;keywords of the application
9-
application.keywords=upload, manage, share
9+
application.keywords = upload, manage, share
1010
;language of the application (en or fr)
11-
application.lang=en
11+
application.lang = en
1212
;Optimize JS and CSS
13-
smartoptimizer=1
13+
smartoptimizer = 0
1414
;Session lifetime (minute)
15-
session.lifetime=20
15+
session.lifetime = 20
1616
;Path to md5sum
17-
md5sum.path=
17+
md5sum.path =
1818
;Default Assetstore
19-
defaultassetstore.id=
19+
defaultassetstore.id =
2020
;DefaultTimezone
21-
default.timezone=America/New_York
21+
default.timezone = America/New_York
2222
;Processing onthefly or cron
23-
processing=onthefly
23+
processing = onthefly
2424
;Default license
25-
defaultlicense=1
26-
;Demo Mode (only works with MySql)
27-
demomode=0
25+
defaultlicense = 1
26+
;Demo Mode (only works with MySQL)
27+
demomode = 0
2828
;Enable Dynamic help
29-
dynamichelp=1
29+
dynamichelp = 1
3030
;Enable logging of every Midas request
31-
logtrace=0
31+
logtrace = 0
3232
;Entry for password prefix (dynamically generated at install time)
33-
password.prefix=
33+
password.prefix =
3434
;Outbound HTTP proxy to be used by PHP (empty for none)
35-
httpproxy=
35+
httpproxy =
3636

3737

3838
[module]
3939

4040
[production]
4141
;Activate error reporting using Zend
42-
mode.debug=0
43-
mode.test=0
42+
mode.debug = 0
43+
mode.test = 0
4444
;Show native errors
45-
error.php=0
45+
error.php = 0
4646

4747
[development]
4848
;Activate error reporting using Zend
49-
mode.debug=1
50-
mode.test=0
49+
mode.debug = 1
50+
mode.test = 0
5151
;Show native errors
52-
error.php=1
52+
error.php = 1
5353

5454

5555
[testing]
5656
;Activate error reporting using Zend
57-
mode.debug=1
58-
mode.test=1
57+
mode.debug = 1
58+
mode.test = 1
5959
;Show native errors
60-
error.php=1
60+
error.php = 1

core/configs/database.ini

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
[production]
2-
database.type=pdo
3-
database.profiler=0
4-
database.adapter = PDO_MYSQL
2+
database.type = pdo
3+
database.profiler = 0
4+
database.adapter = Pdo_Mysql
55
database.params.host = localhost
66
database.params.port = 3306
77
database.params.username = root
88
database.params.password = set_your_password
99
database.params.dbname = midas3
1010

1111
[development]
12-
database.type=pdo
13-
database.profiler=1
14-
database.adapter = PDO_MYSQL
12+
database.type = pdo
13+
database.profiler = 1
14+
database.adapter = Pdo_Mysql
1515
database.params.host = localhost
1616
database.params.port = 3306
1717
database.params.username = root
1818
database.params.password = set_your_password
1919
database.params.dbname = midas3
2020

2121
[testing]
22-
database.type=pdo
23-
database.profiler=1
24-
database.adapter = PDO_MYSQL
22+
database.type = pdo
23+
database.profiler = 1
24+
database.adapter = Pdo_Mysql
2525
database.params.host = localhost
2626
database.params.port = 3306
2727
database.params.username = root

0 commit comments

Comments
 (0)