]> err.no Git - scalable-opengroupware.org/blob - UI/SOGoUI/SOGoJSStringFormatter.m
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1212 d1b88da0-ebda-0310...
[scalable-opengroupware.org] / UI / SOGoUI / SOGoJSStringFormatter.m
1 /*
2   Copyright (C) 2000-2004 SKYRIX Software AG
3
4   This file is part of OGo
5
6   OGo is free software; you can redistribute it and/or modify it under
7   the terms of the GNU Lesser General Public License as published by the
8   Free Software Foundation; either version 2, or (at your option) any
9   later version.
10
11   OGo is distributed in the hope that it will be useful, but WITHOUT ANY
12   WARRANTY; without even the implied warranty of MERCHANTABILITY or
13   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
14   License for more details.
15
16   You should have received a copy of the GNU Lesser General Public
17   License along with OGo; see the file COPYING.  If not, write to the
18   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19   02111-1307, USA.
20 */
21
22 #import "SOGoJSStringFormatter.h"
23
24 @implementation SOGoJSStringFormatter
25
26 static NSCharacterSet *quotesSet = nil;
27 static NSCharacterSet *squoteSet = nil;
28 static NSCharacterSet *dquoteSet = nil;
29
30 + (void)initialize {
31   static BOOL didInit = NO;
32   
33   if(didInit)
34     return;
35   
36   didInit   = YES;
37   quotesSet = \
38     [[NSCharacterSet characterSetWithCharactersInString:@"'\""] retain];
39   squoteSet = \
40     [[NSCharacterSet characterSetWithCharactersInString:@"'"] retain];
41   dquoteSet = \
42     [[NSCharacterSet characterSetWithCharactersInString:@"\""] retain];
43 }
44
45 + (id)sharedFormatter {
46   static id sharedInstance = nil;
47   if(!sharedInstance) {
48     sharedInstance = [[self alloc] init];
49   }
50   return sharedInstance;
51 }
52
53 - (NSString *)stringByEscapingQuotesInString:(NSString *)_s {
54   return [_s stringByEscapingCharactersFromSet:quotesSet
55              usingStringEscaping:self];
56 }
57
58 - (NSString *)stringByEscapingSingleQuotesInString:(NSString *)_s {
59   return [_s stringByEscapingCharactersFromSet:squoteSet
60              usingStringEscaping:self];
61 }
62
63 - (NSString *)stringByEscapingDoubleQuotesInString:(NSString *)_s {
64   return [_s stringByEscapingCharactersFromSet:dquoteSet
65              usingStringEscaping:self];
66 }
67
68 - (NSString *)stringByEscapingString:(NSString *)_s {
69   if([_s isEqualToString:@"'"]) {
70     return @"'";
71   }
72   return @""";
73 }
74
75 @end