propagate from branch 'ca.inverse.sogo.1_3_17' (head f0fb54908898753faba576cb702431e4a761d814)

to branch 'ca.inverse.sogo' (head dd70649f47a4d24e9414656eda1cc9955949dca2)

Monotone-Parent: dd70649f47a4d24e9414656eda1cc9955949dca2
Monotone-Parent: f0fb54908898753faba576cb702431e4a761d814
Monotone-Revision: 7983cbe0c7e64bf7704effecf4a69991464e4276

Monotone-Author: jraby@inverse.ca
Monotone-Date: 2012-07-09T18:17:00
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Jean Raby 2012-07-09 18:17:00 +00:00
commit 630d86bf2a
2 changed files with 5 additions and 1 deletions

View file

@ -1,5 +1,9 @@
2012-07-09 Jean Raby <jraby@inverse.ca>
* Tools/SOGoToolUserPreferences.m:
use printf() instead of NSLog to print out user preferences.
Makes it easier to grep.
* UI/WebServerResources/generic.js (onSearchFormSubmit):
Restore behavior of a single dot (.) in the search field (wildcard search)

View file

@ -161,7 +161,7 @@ typedef enum
o = [source objectForKey: key];
if (o)
NSLog(@"value for key \"%@\": %@", key, [o jsonRepresentation]);
printf("%s: %s\n", [key UTF8String], [[o jsonRepresentation] UTF8String]);
else
NSLog(@"Value for key \"%@\" not found in %@", key, type);