2 Copyright (C) 2000-2004 SKYRIX Software AG
4 This file is part of OGo
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
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.
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
24 #include "SOGoJSStringFormatter.h"
27 @implementation SOGoJSStringFormatter
29 static NSCharacterSet *quotesSet = nil;
30 static NSCharacterSet *squoteSet = nil;
31 static NSCharacterSet *dquoteSet = nil;
34 static BOOL didInit = NO;
41 [[NSCharacterSet characterSetWithCharactersInString:@"'\""] retain];
43 [[NSCharacterSet characterSetWithCharactersInString:@"'"] retain];
45 [[NSCharacterSet characterSetWithCharactersInString:@"\""] retain];
48 + (id)sharedFormatter {
49 static id sharedInstance = nil;
51 sharedInstance = [[self alloc] init];
53 return sharedInstance;
56 - (NSString *)stringByEscapingQuotesInString:(NSString *)_s {
57 return [_s stringByEscapingCharactersFromSet:quotesSet
58 usingStringEscaping:self];
61 - (NSString *)stringByEscapingSingleQuotesInString:(NSString *)_s {
62 return [_s stringByEscapingCharactersFromSet:squoteSet
63 usingStringEscaping:self];
66 - (NSString *)stringByEscapingDoubleQuotesInString:(NSString *)_s {
67 return [_s stringByEscapingCharactersFromSet:dquoteSet
68 usingStringEscaping:self];
71 - (NSString *)stringByEscapingString:(NSString *)_s {
72 if([_s isEqualToString:@"'"]) {