Skip to content

Commit a9823e7

Browse files
committed
Ignore me. Trim trailing space
This has been annoying me for a long time, especially the '<?php '
1 parent dad5d51 commit a9823e7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+70
-70
lines changed

Makefile.frag

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ patch:
109109
fi \
110110
done; \
111111
touch $(top_srcdir)/.patched; \
112-
fi
112+
fi
113113

114114
package.xml:
115115
php bin/prep-release.php $(PHONGO_VERSION)-$(PHONGO_STABILITY)

docs/batch.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<?php
55

66
$hannes = array(
7-
"name" => "Hannes",
7+
"name" => "Hannes",
88
"nick" => "bjori",
99
"citizen" => "Iceland",
1010
);

docs/ods.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ This will result in the following document to be stored (as shown by mongo shell
180180
]
181181
],
182182
{
183-
183+
184184
}
185185
]
186186
]

php_array.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ zend_bool php_array_existsl_safe(zval *zarr, const char *key, int key_len) {
8080
return ret;
8181
}
8282
#define php_array_existsn(zarr, idx) \
83-
zend_hash_index_exists(Z_ARRVAL_P(zarr), idx)
83+
zend_hash_index_exists(Z_ARRVAL_P(zarr), idx)
8484
static inline
8585
zend_bool php_array_existsz(zval *zarr, zval *key) {
8686
switch (Z_TYPE_P(key)) {

php_compat_53.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@
3030
default: \
3131
RETURN_NULL(); \
3232
} \
33-
}
33+
}
3434
#endif

scripts/centos/ldap/ldapconfig.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def main():
3232
print "adding ", uname
3333
dn= 'uid=' + uname.lower() + ',ou=Users,dc=10gen,dc=me'
3434

35-
ldif = configUser(uname.rstrip('\r\n'))
35+
ldif = configUser(uname.rstrip('\r\n'))
3636

3737
# Do the actual synchronous add-operation to the ldapserver
3838
l.add_s(dn,ldif)

scripts/presets/standalone-auth.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
2-
"name": "mongod",
2+
"name": "mongod",
33
"id" : "STANDALONE-AUTH",
44
"auth_key": "secret",
5-
"login": "root",
6-
"password": "toor",
5+
"login": "root",
6+
"password": "toor",
77
"procParams": {
88
"dbpath": "/tmp/standalone-auth/",
9-
"ipv6": true,
10-
"logappend": true,
11-
"logpath": "/tmp/standalone-auth/m.log",
9+
"ipv6": true,
10+
"logappend": true,
11+
"logpath": "/tmp/standalone-auth/m.log",
1212
"journal": true,
1313
"port": 2200,
1414
"setParameter": {"enableTestCommands": 1}

scripts/presets/standalone-ssl.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
2-
"name": "mongod",
2+
"name": "mongod",
33
"id" : "STANDALONE-SSL",
44
"procParams": {
55
"dbpath": "/tmp/standalone-ssl/",
6-
"ipv6": true,
7-
"logappend": true,
8-
"logpath": "/tmp/standalone-ssl/m.log",
6+
"ipv6": true,
7+
"logappend": true,
8+
"logpath": "/tmp/standalone-ssl/m.log",
99
"journal": true,
1010
"port": 2100,
1111
"setParameter": {"enableTestCommands": 1}
12-
},
12+
},
1313
"sslParams": {
1414
"sslMode": "requireSSL",
15-
"sslCAFile": "/phongo/scripts/ssl/ca.pem",
16-
"sslPEMKeyFile": "/phongo/scripts/ssl/server.pem",
15+
"sslCAFile": "/phongo/scripts/ssl/ca.pem",
16+
"sslPEMKeyFile": "/phongo/scripts/ssl/server.pem",
1717
"sslWeakCertificateValidation": true
1818
}
1919
}

scripts/presets/standalone-x509.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
{
2-
"name": "mongod",
2+
"name": "mongod",
33
"id" : "STANDALONE-X509",
44
"authSource": "$external",
55
"login": "C=US,ST=California,L=Palo Alto,O=MongoDB,OU=phongo,CN=localhost",
66
"procParams": {
77
"dbpath": "/tmp/standalone-x509/",
8-
"ipv6": true,
9-
"logappend": true,
10-
"logpath": "/tmp/standalone-x509/m.log",
8+
"ipv6": true,
9+
"logappend": true,
10+
"logpath": "/tmp/standalone-x509/m.log",
1111
"journal": true,
1212
"port": 2300,
1313
"setParameter": {"enableTestCommands": 1, "authenticationMechanisms": "MONGODB-X509"}
14-
},
14+
},
1515
"sslParams": {
1616
"sslMode": "requireSSL",
17-
"sslCAFile": "/phongo/scripts/ssl/ca.pem",
18-
"sslPEMKeyFile": "/phongo/scripts/ssl/server.pem",
17+
"sslCAFile": "/phongo/scripts/ssl/ca.pem",
18+
"sslPEMKeyFile": "/phongo/scripts/ssl/server.pem",
1919
"sslWeakCertificateValidation": true
2020
}
2121
}

scripts/presets/standalone.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"name": "mongod",
2+
"name": "mongod",
33
"id" : "STANDALONE",
44
"procParams": {
55
"dbpath": "/tmp/standalone/",
6-
"ipv6": true,
7-
"logappend": true,
8-
"logpath": "/tmp/standalone/mongod.log",
6+
"ipv6": true,
7+
"logappend": true,
8+
"logpath": "/tmp/standalone/mongod.log",
99
"journal": true,
1010
"port": 2000,
1111
"setParameter": {"enableTestCommands": 1}

0 commit comments

Comments
 (0)