]> err.no Git - scalable-opengroupware.org/blob - UI/SOGoUI/SOGoJSStringFormatter.m
do not use Anais
[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 // $Id$
22
23
24 #include "SOGoJSStringFormatter.h"
25 #include "common.h"
26
27 @implementation SOGoJSStringFormatter
28
29 static NSCharacterSet *quotesSet = nil;
30 static NSCharacterSet *squoteSet = nil;
31 static NSCharacterSet *dquoteSet = nil;
32
33 + (void)initialize {
34   static BOOL didInit = NO;
35   
36   if(didInit)
37     return;
38   
39   didInit   = YES;
40   quotesSet = \
41     [[NSCharacterSet characterSetWithCharactersInString:@"'\""] retain];
42   squoteSet = \
43     [[NSCharacterSet characterSetWithCharactersInString:@"'"] retain];
44   dquoteSet = \
45     [[NSCharacterSet characterSetWithCharactersInString:@"\""] retain];
46 }
47
48 + (id)sharedFormatter {
49   static id sharedInstance = nil;
50   if(!sharedInstance) {
51     sharedInstance = [[self alloc] init];
52   }
53   return sharedInstance;
54 }
55
56 - (NSString *)stringByEscapingQuotesInString:(NSString *)_s {
57   return [_s stringByEscapingCharactersFromSet:quotesSet
58              usingStringEscaping:self];
59 }
60
61 - (NSString *)stringByEscapingSingleQuotesInString:(NSString *)_s {
62   return [_s stringByEscapingCharactersFromSet:squoteSet
63              usingStringEscaping:self];
64 }
65
66 - (NSString *)stringByEscapingDoubleQuotesInString:(NSString *)_s {
67   return [_s stringByEscapingCharactersFromSet:dquoteSet
68              usingStringEscaping:self];
69 }
70
71 - (NSString *)stringByEscapingString:(NSString *)_s {
72   if([_s isEqualToString:@"'"]) {
73     return @"'";
74   }
75   return @""";
76 }
77
78 @end