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

Commit 7c5ee21

Browse files
committed
Fixed indentation
* Used only tabs for indentations
1 parent 7f4ce24 commit 7c5ee21

File tree

9 files changed

+511
-508
lines changed

9 files changed

+511
-508
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ All notable changes to this project will be documented in this file.
88
[Changed]
99
- Storing entityIds instead of SpName/IdPName.
1010

11+
[Fixed]
12+
- Used only tabs for indentations
13+
1114
## [v1.2.1]
1215
[Fixed]
1316
- Fixed the problem with getting utf8 chars from database

config-templates/module_statisticsproxy.php

Lines changed: 77 additions & 77 deletions
Original file line numberDiff line numberDiff line change
@@ -8,82 +8,82 @@
88

99
$config = array(
1010

11-
/*
12-
* Fill the serverName
13-
*/
14-
'serverName' => 'localhost',
15-
16-
/*
17-
* If you want to use the default port, please comment option 'port'
18-
*/
19-
'port' => 3306,
20-
21-
/*
22-
* Fill the user name
23-
*/
24-
'userName' => 'stats',
25-
26-
/*
27-
* Fill the password
28-
*/
29-
'password' => 'stats',
30-
31-
/*
32-
* Fill the database name
33-
*/
34-
'databaseName' => 'STATS',
35-
36-
/*
37-
* Fill the table name for identityProviders
38-
*/
39-
'identityProvidersTableName' => 'identityProviders',
40-
41-
/*
42-
* Fill the table name for identityProvidersMap
43-
*/
44-
'identityProvidersMapTableName' => 'identityProvidersMap',
45-
46-
/*
47-
* Fill the table name for serviceProviders
48-
*/
49-
'serviceProvidersTableName' => 'serviceProviders',
50-
51-
/*
52-
* Fill the table name for serviceProviders
53-
*/
54-
'serviceProvidersMapTableName' => 'serviceProvidersMap',
55-
56-
/*
57-
* Fill true, if you want to use encryption, false if not.
58-
*/
59-
'encryption' => true/false,
60-
61-
/*
62-
* The path name to the certificate authority file.
63-
*
64-
* If you use encryption, you must fill this option.
65-
*/
66-
'ssl_ca' => '/example/ca.pem',
67-
68-
/*
69-
* The path name to the certificate file.
70-
*
71-
* If you use encryption, you must fill this option.
72-
*/
73-
'ssl_cert_path' => '/example/cert.pem',
74-
75-
/*
76-
* The path name to the key file.
77-
*
78-
* If you use encryption, you must fill this option.
79-
*/
80-
'ssl_key_path' => '/example/key.pem',
81-
82-
/*
83-
* The pathname to a directory that contains trusted SSL CA certificates in PEM format.
84-
*
85-
* If you use encryption, you must fill this option.
86-
*/
87-
'ssl_ca_path' => '/etc/ssl',
11+
/*
12+
* Fill the serverName
13+
*/
14+
'serverName' => 'localhost',
15+
16+
/*
17+
* If you want to use the default port, please comment option 'port'
18+
*/
19+
'port' => 3306,
20+
21+
/*
22+
* Fill the user name
23+
*/
24+
'userName' => 'stats',
25+
26+
/*
27+
* Fill the password
28+
*/
29+
'password' => 'stats',
30+
31+
/*
32+
* Fill the database name
33+
*/
34+
'databaseName' => 'STATS',
35+
36+
/*
37+
* Fill the table name for identityProviders
38+
*/
39+
'identityProvidersTableName' => 'identityProviders',
40+
41+
/*
42+
* Fill the table name for identityProvidersMap
43+
*/
44+
'identityProvidersMapTableName' => 'identityProvidersMap',
45+
46+
/*
47+
* Fill the table name for serviceProviders
48+
*/
49+
'serviceProvidersTableName' => 'serviceProviders',
50+
51+
/*
52+
* Fill the table name for serviceProviders
53+
*/
54+
'serviceProvidersMapTableName' => 'serviceProvidersMap',
55+
56+
/*
57+
* Fill true, if you want to use encryption, false if not.
58+
*/
59+
'encryption' => true/false,
60+
61+
/*
62+
* The path name to the certificate authority file.
63+
*
64+
* If you use encryption, you must fill this option.
65+
*/
66+
'ssl_ca' => '/example/ca.pem',
67+
68+
/*
69+
* The path name to the certificate file.
70+
*
71+
* If you use encryption, you must fill this option.
72+
*/
73+
'ssl_cert_path' => '/example/cert.pem',
74+
75+
/*
76+
* The path name to the key file.
77+
*
78+
* If you use encryption, you must fill this option.
79+
*/
80+
'ssl_key_path' => '/example/key.pem',
81+
82+
/*
83+
* The pathname to a directory that contains trusted SSL CA certificates in PEM format.
84+
*
85+
* If you use encryption, you must fill this option.
86+
*/
87+
'ssl_ca_path' => '/etc/ssl',
8888

8989
);

0 commit comments

Comments
 (0)