From 880ba9aff677020cf35a983fe1cde0d8da324414 Mon Sep 17 00:00:00 2001 From: Nicolas Seriot Date: Sun, 31 Oct 2010 03:12:30 +0100 Subject: [PATCH] added wifi bssid location lookup --- Classes/SPSourceKeyboardTVC.m | 9 +- Classes/SPSourceLocationTVC.h | 6 +- Classes/SPSourceLocationTVC.m | 14 + Classes/SPSourceWifiTVC.h | 3 +- Classes/SPSourceWifiTVC.m | 12 + Classes/SpyPhoneAppDelegate.m | 20 +- {Classes => EXIF}/EXF.h | 0 {Classes => EXIF}/EXFConstants.h | 0 {Classes => EXIF}/EXFGPS.h | 0 {Classes => EXIF}/EXFGPS.m | 0 {Classes => EXIF}/EXFHandlers.h | 0 {Classes => EXIF}/EXFHandlers.m | 0 {Classes => EXIF}/EXFJFIF.h | 0 {Classes => EXIF}/EXFJFIF.m | 0 {Classes => EXIF}/EXFJpeg.h | 0 {Classes => EXIF}/EXFJpeg.m | 0 {Classes => EXIF}/EXFLogging.h | 0 {Classes => EXIF}/EXFMetaData.h | 0 {Classes => EXIF}/EXFMetaData.m | 0 {Classes => EXIF}/EXFMutableMetaData.h | 0 {Classes => EXIF}/EXFTagDefinitionHolder.h | 0 {Classes => EXIF}/EXFTagDefinitionHolder.m | 0 {Classes => EXIF}/EXFUtils.h | 0 {Classes => EXIF}/EXFUtils.m | 0 {Classes => FMDB}/FMDatabase.h | 0 {Classes => FMDB}/FMDatabase.m | 0 {Classes => FMDB}/FMDatabaseAdditions.h | 0 {Classes => FMDB}/FMDatabaseAdditions.m | 0 {Classes => FMDB}/FMResultSet.h | 0 {Classes => FMDB}/FMResultSet.m | 0 JSON/JSON.h | 67 + JSON/LICENSE | 24 + JSON/NSObject+SBJSON.h | 53 + JSON/NSObject+SBJSON.m | 44 + JSON/NSString+SBJSON.h | 48 + JSON/NSString+SBJSON.m | 45 + JSON/Readme.markdown | 28 + JSON/SBJsonBase.h | 86 + JSON/SBJsonBase.m | 78 + JSON/SBJsonParser.h | 86 + JSON/SBJsonParser.m | 516 +++ JSON/SBJsonStreamWriter.h | 144 + JSON/SBJsonStreamWriter.m | 509 +++ JSON/SBJsonWriter.h | 111 + JSON/SBJsonWriter.m | 96 + JSON/SBProxyForJson.h | 58 + OUILookupTool/OUILookupTool.h | 26 + OUILookupTool/OUILookupTool.m | 110 + SpyPhone.xcodeproj/nst.pbxuser | 3588 ++++++++++++++++++-- SpyPhone.xcodeproj/nst.perspectivev3 | 150 +- SpyPhone.xcodeproj/project.pbxproj | 221 +- UIApplication_TVOut.m | 131 - 52 files changed, 5685 insertions(+), 598 deletions(-) rename {Classes => EXIF}/EXF.h (100%) rename {Classes => EXIF}/EXFConstants.h (100%) rename {Classes => EXIF}/EXFGPS.h (100%) rename {Classes => EXIF}/EXFGPS.m (100%) rename {Classes => EXIF}/EXFHandlers.h (100%) rename {Classes => EXIF}/EXFHandlers.m (100%) rename {Classes => EXIF}/EXFJFIF.h (100%) rename {Classes => EXIF}/EXFJFIF.m (100%) rename {Classes => EXIF}/EXFJpeg.h (100%) rename {Classes => EXIF}/EXFJpeg.m (100%) rename {Classes => EXIF}/EXFLogging.h (100%) rename {Classes => EXIF}/EXFMetaData.h (100%) rename {Classes => EXIF}/EXFMetaData.m (100%) rename {Classes => EXIF}/EXFMutableMetaData.h (100%) rename {Classes => EXIF}/EXFTagDefinitionHolder.h (100%) rename {Classes => EXIF}/EXFTagDefinitionHolder.m (100%) rename {Classes => EXIF}/EXFUtils.h (100%) rename {Classes => EXIF}/EXFUtils.m (100%) rename {Classes => FMDB}/FMDatabase.h (100%) rename {Classes => FMDB}/FMDatabase.m (100%) rename {Classes => FMDB}/FMDatabaseAdditions.h (100%) rename {Classes => FMDB}/FMDatabaseAdditions.m (100%) rename {Classes => FMDB}/FMResultSet.h (100%) rename {Classes => FMDB}/FMResultSet.m (100%) create mode 100644 JSON/JSON.h create mode 100644 JSON/LICENSE create mode 100644 JSON/NSObject+SBJSON.h create mode 100644 JSON/NSObject+SBJSON.m create mode 100644 JSON/NSString+SBJSON.h create mode 100644 JSON/NSString+SBJSON.m create mode 100644 JSON/Readme.markdown create mode 100644 JSON/SBJsonBase.h create mode 100644 JSON/SBJsonBase.m create mode 100644 JSON/SBJsonParser.h create mode 100644 JSON/SBJsonParser.m create mode 100644 JSON/SBJsonStreamWriter.h create mode 100644 JSON/SBJsonStreamWriter.m create mode 100644 JSON/SBJsonWriter.h create mode 100644 JSON/SBJsonWriter.m create mode 100644 JSON/SBProxyForJson.h create mode 100644 OUILookupTool/OUILookupTool.h create mode 100644 OUILookupTool/OUILookupTool.m delete mode 100644 UIApplication_TVOut.m diff --git a/Classes/SPSourceKeyboardTVC.m b/Classes/SPSourceKeyboardTVC.m index 71e9f6e..35117d9 100644 --- a/Classes/SPSourceKeyboardTVC.m +++ b/Classes/SPSourceKeyboardTVC.m @@ -63,7 +63,14 @@ - (void)loadData { NSMutableSet *set = [NSMutableSet set]; NSString *dir = @"/var/mobile/Library/Keyboard/"; - NSArray *dirContents = [[NSFileManager defaultManager] directoryContentsAtPath:dir]; + NSError *error = nil; + NSArray *dirContents = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:dir error:&error]; + + if(dirContents == nil) { + NSLog(@"-- error: %@", error); + return; + } + for(NSString *filePath in dirContents) { if(![filePath hasSuffix:@".dat"]) continue; NSArray *a = [self wordsInDictionaryCacheFileAtPath:[dir stringByAppendingPathComponent:filePath]]; diff --git a/Classes/SPSourceLocationTVC.h b/Classes/SPSourceLocationTVC.h index cf665c4..83239d4 100644 --- a/Classes/SPSourceLocationTVC.h +++ b/Classes/SPSourceLocationTVC.h @@ -11,6 +11,8 @@ #import #import "SPSourceTVC.h" +@class CLLocation; + @interface SPSourceLocationTVC : SPSourceTVC /* */ { NSArray *items; // MKReverseGeocoder *geo; @@ -20,11 +22,13 @@ NSString *locDateString; NSString *timezone; NSArray *cities; + + CLLocation *cachedLocationFromMaps; } //@property (nonatomic, retain) MKReverseGeocoder *geo; @property (nonatomic, retain) NSString *geoString; - +@property (nonatomic, retain) CLLocation *cachedLocationFromMaps; @property (nonatomic, retain) NSArray *cities; @property (nonatomic, retain) NSString *locString; @property (nonatomic, retain) NSString *locDateString; diff --git a/Classes/SPSourceLocationTVC.m b/Classes/SPSourceLocationTVC.m index 62daac9..fb5794f 100644 --- a/Classes/SPSourceLocationTVC.m +++ b/Classes/SPSourceLocationTVC.m @@ -9,6 +9,8 @@ #import "SPSourceLocationTVC.h" #import +#import "SPMapVC.h" +#import "SPImageAnnotation.h" @implementation SPSourceLocationTVC @@ -18,6 +20,16 @@ @implementation SPSourceLocationTVC @synthesize locString; @synthesize locDateString; @synthesize timezone; +@synthesize cachedLocationFromMaps; + +- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { + if(indexPath.section == 0 && indexPath.row == 0 && cachedLocationFromMaps) { + SPMapVC *mapVC = [[SPMapVC alloc] initWithNibName:@"SPMapVC" bundle:[NSBundle mainBundle]]; + [self.navigationController pushViewController:mapVC animated:YES]; + SPImageAnnotation *annotation = [SPImageAnnotation annotationWithCoordinate:cachedLocationFromMaps.coordinate date:nil path:nil]; + [mapVC addAnnotation:annotation]; + } +} - (void)loadData { if(contentsDictionaries) return; @@ -26,6 +38,7 @@ - (void)loadData { NSDictionary *d = [NSDictionary dictionaryWithContentsOfFile:path]; NSData *data = [d valueForKey:@"UserLocation"]; CLLocation *loc = data ? [NSKeyedUnarchiver unarchiveObjectWithData:data] : nil; + self.cachedLocationFromMaps = loc; self.locString = @""; self.locDateString = @""; if(loc) { @@ -62,6 +75,7 @@ - (void)dealloc { [items release]; // [geo release]; [geoString release]; + [cachedLocationFromMaps release]; [super dealloc]; } /* diff --git a/Classes/SPSourceWifiTVC.h b/Classes/SPSourceWifiTVC.h index 8c3ff71..29c0bb5 100644 --- a/Classes/SPSourceWifiTVC.h +++ b/Classes/SPSourceWifiTVC.h @@ -9,8 +9,9 @@ #import #import "SPSourceTVC.h" +#import "OUILookupTool.h" -@interface SPSourceWifiTVC : SPSourceTVC { +@interface SPSourceWifiTVC : SPSourceTVC { } diff --git a/Classes/SPSourceWifiTVC.m b/Classes/SPSourceWifiTVC.m index 46dde8f..93f527f 100644 --- a/Classes/SPSourceWifiTVC.m +++ b/Classes/SPSourceWifiTVC.m @@ -8,10 +8,14 @@ // #import "SPSourceWifiTVC.h" +#import "OUILookupTool.h" @implementation SPSourceWifiTVC - (void)loadData { + + //[OUILookupTool lookupBSSID:@"0:30:bd:97:7:72" delegate:self]; + if(contentsDictionaries) return; self.contentsDictionaries = [NSMutableArray array]; @@ -24,6 +28,8 @@ - (void)loadData { if(!a) return; for(NSDictionary *d in a) { + [OUILookupTool locateWifiAccessPoint:d delegate:self]; + NSString *name = [d valueForKey:@"SSID_STR"]; NSData *joined = [d valueForKey:@"lastJoined"]; @@ -35,4 +41,10 @@ - (void)loadData { } } +#pragma mark OUILookupTool + +- (void)OUILookupTool:(OUILookupTool *)ouiLookupTool didLocateAccessPoint:(NSDictionary *)ap { + //NSLog(@"-- %@", ap); +} + @end diff --git a/Classes/SpyPhoneAppDelegate.m b/Classes/SpyPhoneAppDelegate.m index 39a5025..14dae0e 100644 --- a/Classes/SpyPhoneAppDelegate.m +++ b/Classes/SpyPhoneAppDelegate.m @@ -9,10 +9,11 @@ #import "SpyPhoneAppDelegate.h" -@interface UIApplication (tvout) -- (void) startTVOut; -@end - +// +//@interface UIApplication (tvout) +//- (void) startTVOut; +//@end +// @implementation SpyPhoneAppDelegate @synthesize window; @@ -23,12 +24,11 @@ - (void)applicationDidFinishLaunching:(UIApplication *)application { // Add the tab bar controller's current view as a subview of the window [window addSubview:tabBarController.view]; - /* - BOOL isTVOutEnabled = [[NSUserDefaults standardUserDefaults] boolForKey:@"TVOutEnabled"]; - if(isTVOutEnabled) { - [[UIApplication sharedApplication] startTVOut]; - } - */ + +// BOOL isTVOutEnabled = [[NSUserDefaults standardUserDefaults] boolForKey:@"TVOutEnabled"]; +// if(isTVOutEnabled) { +// [[TVOutManager sharedInstance] startTVOut]; +// } } diff --git a/Classes/EXF.h b/EXIF/EXF.h similarity index 100% rename from Classes/EXF.h rename to EXIF/EXF.h diff --git a/Classes/EXFConstants.h b/EXIF/EXFConstants.h similarity index 100% rename from Classes/EXFConstants.h rename to EXIF/EXFConstants.h diff --git a/Classes/EXFGPS.h b/EXIF/EXFGPS.h similarity index 100% rename from Classes/EXFGPS.h rename to EXIF/EXFGPS.h diff --git a/Classes/EXFGPS.m b/EXIF/EXFGPS.m similarity index 100% rename from Classes/EXFGPS.m rename to EXIF/EXFGPS.m diff --git a/Classes/EXFHandlers.h b/EXIF/EXFHandlers.h similarity index 100% rename from Classes/EXFHandlers.h rename to EXIF/EXFHandlers.h diff --git a/Classes/EXFHandlers.m b/EXIF/EXFHandlers.m similarity index 100% rename from Classes/EXFHandlers.m rename to EXIF/EXFHandlers.m diff --git a/Classes/EXFJFIF.h b/EXIF/EXFJFIF.h similarity index 100% rename from Classes/EXFJFIF.h rename to EXIF/EXFJFIF.h diff --git a/Classes/EXFJFIF.m b/EXIF/EXFJFIF.m similarity index 100% rename from Classes/EXFJFIF.m rename to EXIF/EXFJFIF.m diff --git a/Classes/EXFJpeg.h b/EXIF/EXFJpeg.h similarity index 100% rename from Classes/EXFJpeg.h rename to EXIF/EXFJpeg.h diff --git a/Classes/EXFJpeg.m b/EXIF/EXFJpeg.m similarity index 100% rename from Classes/EXFJpeg.m rename to EXIF/EXFJpeg.m diff --git a/Classes/EXFLogging.h b/EXIF/EXFLogging.h similarity index 100% rename from Classes/EXFLogging.h rename to EXIF/EXFLogging.h diff --git a/Classes/EXFMetaData.h b/EXIF/EXFMetaData.h similarity index 100% rename from Classes/EXFMetaData.h rename to EXIF/EXFMetaData.h diff --git a/Classes/EXFMetaData.m b/EXIF/EXFMetaData.m similarity index 100% rename from Classes/EXFMetaData.m rename to EXIF/EXFMetaData.m diff --git a/Classes/EXFMutableMetaData.h b/EXIF/EXFMutableMetaData.h similarity index 100% rename from Classes/EXFMutableMetaData.h rename to EXIF/EXFMutableMetaData.h diff --git a/Classes/EXFTagDefinitionHolder.h b/EXIF/EXFTagDefinitionHolder.h similarity index 100% rename from Classes/EXFTagDefinitionHolder.h rename to EXIF/EXFTagDefinitionHolder.h diff --git a/Classes/EXFTagDefinitionHolder.m b/EXIF/EXFTagDefinitionHolder.m similarity index 100% rename from Classes/EXFTagDefinitionHolder.m rename to EXIF/EXFTagDefinitionHolder.m diff --git a/Classes/EXFUtils.h b/EXIF/EXFUtils.h similarity index 100% rename from Classes/EXFUtils.h rename to EXIF/EXFUtils.h diff --git a/Classes/EXFUtils.m b/EXIF/EXFUtils.m similarity index 100% rename from Classes/EXFUtils.m rename to EXIF/EXFUtils.m diff --git a/Classes/FMDatabase.h b/FMDB/FMDatabase.h similarity index 100% rename from Classes/FMDatabase.h rename to FMDB/FMDatabase.h diff --git a/Classes/FMDatabase.m b/FMDB/FMDatabase.m similarity index 100% rename from Classes/FMDatabase.m rename to FMDB/FMDatabase.m diff --git a/Classes/FMDatabaseAdditions.h b/FMDB/FMDatabaseAdditions.h similarity index 100% rename from Classes/FMDatabaseAdditions.h rename to FMDB/FMDatabaseAdditions.h diff --git a/Classes/FMDatabaseAdditions.m b/FMDB/FMDatabaseAdditions.m similarity index 100% rename from Classes/FMDatabaseAdditions.m rename to FMDB/FMDatabaseAdditions.m diff --git a/Classes/FMResultSet.h b/FMDB/FMResultSet.h similarity index 100% rename from Classes/FMResultSet.h rename to FMDB/FMResultSet.h diff --git a/Classes/FMResultSet.m b/FMDB/FMResultSet.m similarity index 100% rename from Classes/FMResultSet.m rename to FMDB/FMResultSet.m diff --git a/JSON/JSON.h b/JSON/JSON.h new file mode 100644 index 0000000..5bb0311 --- /dev/null +++ b/JSON/JSON.h @@ -0,0 +1,67 @@ +/* + Copyright (C) 2009-2010 Stig Brautaset. All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name of the author nor the names of its contributors may be used + to endorse or promote products derived from this software without specific + prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +/** + @mainpage A strict JSON parser and generator for Objective-C + + JSON (JavaScript Object Notation) is a lightweight data-interchange + format. This framework provides two apis for parsing and generating + JSON. One standard object-based and a higher level api consisting of + categories added to existing Objective-C classes. + + This framework does its best to be as strict as possible, both in what it accepts and what it generates. For example, it does not support trailing commas in arrays or objects. Nor does it support embedded comments, or anything else not in the JSON specification. This is considered a feature. + + @section Links + + @li Project home page. + @li Online version of the API documentation. + +*/ + + +// This setting of 1 is best if you copy the source into your project. +// The build transforms the 1 to a 0 when building the framework and static lib. + +#if 1 + +#import "SBJsonParser.h" +#import "SBJsonWriter.h" +#import "SBJsonStreamWriter.h" +#import "NSObject+SBJSON.h" +#import "NSString+SBJSON.h" + +#else + +#import +#import +#import +#import +#import + +#endif diff --git a/JSON/LICENSE b/JSON/LICENSE new file mode 100644 index 0000000..ec7193e --- /dev/null +++ b/JSON/LICENSE @@ -0,0 +1,24 @@ +Copyright (C) 2007-2010 Stig Brautaset. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +* Neither the name of the author nor the names of its contributors may be used + to endorse or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/JSON/NSObject+SBJSON.h b/JSON/NSObject+SBJSON.h new file mode 100644 index 0000000..8e9620e --- /dev/null +++ b/JSON/NSObject+SBJSON.h @@ -0,0 +1,53 @@ +/* + Copyright (C) 2009 Stig Brautaset. All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name of the author nor the names of its contributors may be used + to endorse or promote products derived from this software without specific + prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#import + + +/** + @brief Adds JSON generation to Foundation classes + + This is a category on NSObject that adds methods for returning JSON representations + of standard objects to the objects themselves. This means you can call the + -JSONRepresentation method on an NSArray object and it'll do what you want. + */ +@interface NSObject (NSObject_SBJSON) + +/** + @brief Returns a string containing the receiver encoded in JSON. + + This method is added as a category on NSObject but is only actually + supported for the following objects: + @li NSDictionary + @li NSArray + */ +- (NSString *)JSONRepresentation; + +@end + diff --git a/JSON/NSObject+SBJSON.m b/JSON/NSObject+SBJSON.m new file mode 100644 index 0000000..30570b5 --- /dev/null +++ b/JSON/NSObject+SBJSON.m @@ -0,0 +1,44 @@ +/* + Copyright (C) 2009 Stig Brautaset. All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name of the author nor the names of its contributors may be used + to endorse or promote products derived from this software without specific + prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#import "NSObject+SBJSON.h" +#import "SBJsonWriter.h" + +@implementation NSObject (NSObject_SBJSON) + +- (NSString *)JSONRepresentation { + SBJsonWriter *jsonWriter = [SBJsonWriter new]; + NSString *json = [jsonWriter stringWithObject:self]; + if (!json) + NSLog(@"-JSONRepresentation failed. Error trace is: %@", [jsonWriter errorTrace]); + [jsonWriter release]; + return json; +} + +@end diff --git a/JSON/NSString+SBJSON.h b/JSON/NSString+SBJSON.h new file mode 100644 index 0000000..029aa30 --- /dev/null +++ b/JSON/NSString+SBJSON.h @@ -0,0 +1,48 @@ +/* + Copyright (C) 2009 Stig Brautaset. All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name of the author nor the names of its contributors may be used + to endorse or promote products derived from this software without specific + prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#import + +/** + @brief Adds JSON parsing methods to NSString + +This is a category on NSString that adds methods for parsing the target string. +*/ +@interface NSString (NSString_SBJSON) + +/** + @brief Returns the NSDictionary or NSArray represented by the current string's JSON representation. + + Returns the dictionary or array represented in the receiver, or nil on error. + + Returns the NSDictionary or NSArray represented by the current string's JSON representation. + */ +- (id)JSONValue; + +@end diff --git a/JSON/NSString+SBJSON.m b/JSON/NSString+SBJSON.m new file mode 100644 index 0000000..bb132e1 --- /dev/null +++ b/JSON/NSString+SBJSON.m @@ -0,0 +1,45 @@ +/* + Copyright (C) 2007-2009 Stig Brautaset. All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name of the author nor the names of its contributors may be used + to endorse or promote products derived from this software without specific + prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#import "NSString+SBJSON.h" +#import "SBJsonParser.h" + +@implementation NSString (NSString_SBJSON) + +- (id)JSONValue +{ + SBJsonParser *jsonParser = [SBJsonParser new]; + id repr = [jsonParser objectWithString:self]; + if (!repr) + NSLog(@"-JSONValue failed. Error trace is: %@", [jsonParser errorTrace]); + [jsonParser release]; + return repr; +} + +@end diff --git a/JSON/Readme.markdown b/JSON/Readme.markdown new file mode 100644 index 0000000..a37e384 --- /dev/null +++ b/JSON/Readme.markdown @@ -0,0 +1,28 @@ +JSON Framework +============== + +JSON is a light-weight data interchange format that's easy to read and +write for humans and computers alike. This framework implements a strict +JSON parser and generator in Objective-C. + +Features +-------- + +* BSD license. +* Easy-to-use API. +* Strict parsing & generation. +* Stack of error available in case of failure so you can easily figure out what is wrong. +* Optional pretty-printing of JSON output. +* Optionally sorted dictionary keys in JSON output. +* Configurable recursion depth for parsing, for added security. + +Links +----- + +* The GitHub [project page][src]. +* The online [API documentation][api]. +* The new [website][web]. + +[api]: http://stig.github.com/json-framework/api +[web]: http://stig.github.com/json-framework +[src]: http://github.com/stig/json-framework diff --git a/JSON/SBJsonBase.h b/JSON/SBJsonBase.h new file mode 100644 index 0000000..7b10844 --- /dev/null +++ b/JSON/SBJsonBase.h @@ -0,0 +1,86 @@ +/* + Copyright (C) 2009 Stig Brautaset. All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name of the author nor the names of its contributors may be used + to endorse or promote products derived from this software without specific + prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#import + +extern NSString * SBJSONErrorDomain; + + +enum { + EUNSUPPORTED = 1, + EPARSENUM, + EPARSE, + EFRAGMENT, + ECTRL, + EUNICODE, + EDEPTH, + EESCAPE, + ETRAILCOMMA, + ETRAILGARBAGE, + EEOF, + EINPUT +}; + +/** + @brief Common base class for parsing & writing. + + This class contains the common error-handling code and option between the parser/writer. + */ +@interface SBJsonBase : NSObject { + NSMutableArray *errorTrace; + +@protected + NSUInteger depth, maxDepth; +} + +/** + @brief The maximum recursing depth. + + Defaults to 512. If the input is nested deeper than this the input will be deemed to be + malicious and the parser returns nil, signalling an error. ("Nested too deep".) You can + turn off this security feature by setting the maxDepth value to 0. + */ +@property NSUInteger maxDepth; + +/** + @brief Return an error trace, or nil if there was no errors. + + Note that this method returns the trace of the last method that failed. + You need to check the return value of the call you're making to figure out + if the call actually failed, before you know call this method. + */ + @property(copy,readonly) NSArray* errorTrace; + +/// @internal for use in subclasses to add errors to the stack trace +- (void)addErrorWithCode:(NSUInteger)code description:(NSString*)str; + +/// @internal for use in subclasess to clear the error before a new parsing attempt +- (void)clearErrorTrace; + +@end diff --git a/JSON/SBJsonBase.m b/JSON/SBJsonBase.m new file mode 100644 index 0000000..6684325 --- /dev/null +++ b/JSON/SBJsonBase.m @@ -0,0 +1,78 @@ +/* + Copyright (C) 2009 Stig Brautaset. All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name of the author nor the names of its contributors may be used + to endorse or promote products derived from this software without specific + prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#import "SBJsonBase.h" +NSString * SBJSONErrorDomain = @"org.brautaset.JSON.ErrorDomain"; + + +@implementation SBJsonBase + +@synthesize errorTrace; +@synthesize maxDepth; + +- (id)init { + self = [super init]; + if (self) + self.maxDepth = 512; + return self; +} + +- (void)dealloc { + [errorTrace release]; + [super dealloc]; +} + +- (void)addErrorWithCode:(NSUInteger)code description:(NSString*)str { + NSDictionary *userInfo; + if (!errorTrace) { + errorTrace = [NSMutableArray new]; + userInfo = [NSDictionary dictionaryWithObject:str forKey:NSLocalizedDescriptionKey]; + + } else { + userInfo = [NSDictionary dictionaryWithObjectsAndKeys: + str, NSLocalizedDescriptionKey, + [errorTrace lastObject], NSUnderlyingErrorKey, + nil]; + } + + NSError *error = [NSError errorWithDomain:SBJSONErrorDomain code:code userInfo:userInfo]; + + [self willChangeValueForKey:@"errorTrace"]; + [errorTrace addObject:error]; + [self didChangeValueForKey:@"errorTrace"]; +} + +- (void)clearErrorTrace { + [self willChangeValueForKey:@"errorTrace"]; + [errorTrace release]; + errorTrace = nil; + [self didChangeValueForKey:@"errorTrace"]; +} + +@end diff --git a/JSON/SBJsonParser.h b/JSON/SBJsonParser.h new file mode 100644 index 0000000..feaccd8 --- /dev/null +++ b/JSON/SBJsonParser.h @@ -0,0 +1,86 @@ +/* + Copyright (C) 2009 Stig Brautaset. All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name of the author nor the names of its contributors may be used + to endorse or promote products derived from this software without specific + prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#import +#import "SBJsonBase.h" + +/** + @brief The JSON parser class. + + JSON is mapped to Objective-C types in the following way: + + @li Null -> NSNull + @li String -> NSMutableString + @li Array -> NSMutableArray + @li Object -> NSMutableDictionary + @li Boolean -> NSNumber (initialised with -initWithBool:) + @li Number -> (NSNumber | NSDecimalNumber) + + Since Objective-C doesn't have a dedicated class for boolean values, these turns into NSNumber + instances. These are initialised with the -initWithBool: method, and + round-trip back to JSON properly. (They won't silently suddenly become 0 or 1; they'll be + represented as 'true' and 'false' again.) + + As an optimisation short JSON integers turn into NSNumber instances, while complex ones turn into NSDecimalNumber instances. + We can thus avoid any loss of precision as JSON allows ridiculously large numbers. + + */ +@interface SBJsonParser : SBJsonBase { + +@private + const char *c; +} + +/** + @brief Return the object represented by the given string + + Returns the object represented by the passed-in string or nil on error. The returned object can be + a string, number, boolean, null, array or dictionary. + + @param repr the json string to parse + */ +- (id)objectWithString:(NSString *)repr; + +/** + @brief Return the object represented by the given string + + Returns the object represented by the passed-in string or nil on error. The returned object can be + a string, number, boolean, null, array or dictionary. + + @param jsonText the json string to parse + @param error pointer to an NSError object to populate on error + */ + +- (id)objectWithString:(NSString*)jsonText + error:(NSError**)error; + + +@end + + diff --git a/JSON/SBJsonParser.m b/JSON/SBJsonParser.m new file mode 100644 index 0000000..222ef70 --- /dev/null +++ b/JSON/SBJsonParser.m @@ -0,0 +1,516 @@ +/* + Copyright (C) 2009,2010 Stig Brautaset. All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name of the author nor the names of its contributors may be used + to endorse or promote products derived from this software without specific + prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#import "SBJsonParser.h" + +@interface SBJsonParser () + +- (BOOL)scanValue:(NSObject **)o; + +- (BOOL)scanRestOfArray:(NSMutableArray **)o; +- (BOOL)scanRestOfDictionary:(NSMutableDictionary **)o; +- (BOOL)scanRestOfNull:(NSNull **)o; +- (BOOL)scanRestOfFalse:(NSNumber **)o; +- (BOOL)scanRestOfTrue:(NSNumber **)o; +- (BOOL)scanRestOfString:(NSMutableString **)o; + +// Cannot manage without looking at the first digit +- (BOOL)scanNumber:(NSNumber **)o; + +- (BOOL)scanHexQuad:(unichar *)x; +- (BOOL)scanUnicodeChar:(unichar *)x; + +- (BOOL)scanIsAtEnd; + +@end + +#define skipWhitespace(c) while (isspace(*c)) c++ +#define skipDigits(c) while (isdigit(*c)) c++ + + +@implementation SBJsonParser + +static char ctrl[0x22]; + + ++ (void)initialize { + ctrl[0] = '\"'; + ctrl[1] = '\\'; + for (int i = 1; i < 0x20; i++) + ctrl[i+1] = i; + ctrl[0x21] = 0; +} + +- (id)objectWithString:(NSString *)repr { + [self clearErrorTrace]; + + if (!repr) { + [self addErrorWithCode:EINPUT description:@"Input was 'nil'"]; + return nil; + } + + depth = 0; + c = [repr UTF8String]; + + id o; + if (![self scanValue:&o]) { + return nil; + } + + // We found some valid JSON. But did it also contain something else? + if (![self scanIsAtEnd]) { + [self addErrorWithCode:ETRAILGARBAGE description:@"Garbage after JSON"]; + return nil; + } + + NSAssert1(o, @"Should have a valid object from %@", repr); + + // Check that the object we've found is a valid JSON container. + if (![o isKindOfClass:[NSDictionary class]] && ![o isKindOfClass:[NSArray class]]) { + [self addErrorWithCode:EFRAGMENT description:@"Valid fragment, but not JSON"]; + return nil; + } + + return o; +} + +- (id)objectWithString:(NSString*)repr error:(NSError**)error { + id tmp = [self objectWithString:repr]; + if (tmp) + return tmp; + + if (error) + *error = [self.errorTrace lastObject]; + return nil; +} + + +/* + In contrast to the public methods, it is an error to omit the error parameter here. + */ +- (BOOL)scanValue:(NSObject **)o +{ + skipWhitespace(c); + + switch (*c++) { + case '{': + return [self scanRestOfDictionary:(NSMutableDictionary **)o]; + break; + case '[': + return [self scanRestOfArray:(NSMutableArray **)o]; + break; + case '"': + return [self scanRestOfString:(NSMutableString **)o]; + break; + case 'f': + return [self scanRestOfFalse:(NSNumber **)o]; + break; + case 't': + return [self scanRestOfTrue:(NSNumber **)o]; + break; + case 'n': + return [self scanRestOfNull:(NSNull **)o]; + break; + case '-': + case '0'...'9': + c--; // cannot verify number correctly without the first character + return [self scanNumber:(NSNumber **)o]; + break; + case '+': + [self addErrorWithCode:EPARSENUM description: @"Leading + disallowed in number"]; + return NO; + break; + case 0x0: + [self addErrorWithCode:EEOF description:@"Unexpected end of string"]; + return NO; + break; + default: + [self addErrorWithCode:EPARSE description: @"Unrecognised leading character"]; + return NO; + break; + } + + NSAssert(0, @"Should never get here"); + return NO; +} + +- (BOOL)scanRestOfTrue:(NSNumber **)o +{ + if (!strncmp(c, "rue", 3)) { + c += 3; + *o = [NSNumber numberWithBool:YES]; + return YES; + } + [self addErrorWithCode:EPARSE description:@"Expected 'true'"]; + return NO; +} + +- (BOOL)scanRestOfFalse:(NSNumber **)o +{ + if (!strncmp(c, "alse", 4)) { + c += 4; + *o = [NSNumber numberWithBool:NO]; + return YES; + } + [self addErrorWithCode:EPARSE description: @"Expected 'false'"]; + return NO; +} + +- (BOOL)scanRestOfNull:(NSNull **)o { + if (!strncmp(c, "ull", 3)) { + c += 3; + *o = [NSNull null]; + return YES; + } + [self addErrorWithCode:EPARSE description: @"Expected 'null'"]; + return NO; +} + +- (BOOL)scanRestOfArray:(NSMutableArray **)o { + if (maxDepth && ++depth > maxDepth) { + [self addErrorWithCode:EDEPTH description: @"Nested too deep"]; + return NO; + } + + *o = [NSMutableArray arrayWithCapacity:8]; + + for (; *c ;) { + id v; + + skipWhitespace(c); + if (*c == ']' && c++) { + depth--; + return YES; + } + + if (![self scanValue:&v]) { + [self addErrorWithCode:EPARSE description:@"Expected value while parsing array"]; + return NO; + } + + [*o addObject:v]; + + skipWhitespace(c); + if (*c == ',' && c++) { + skipWhitespace(c); + if (*c == ']') { + [self addErrorWithCode:ETRAILCOMMA description: @"Trailing comma disallowed in array"]; + return NO; + } + } + } + + [self addErrorWithCode:EEOF description: @"End of input while parsing array"]; + return NO; +} + +- (BOOL)scanRestOfDictionary:(NSMutableDictionary **)o +{ + if (maxDepth && ++depth > maxDepth) { + [self addErrorWithCode:EDEPTH description: @"Nested too deep"]; + return NO; + } + + *o = [NSMutableDictionary dictionaryWithCapacity:7]; + + for (; *c ;) { + id k, v; + + skipWhitespace(c); + if (*c == '}' && c++) { + depth--; + return YES; + } + + if (!(*c == '\"' && c++ && [self scanRestOfString:&k])) { + [self addErrorWithCode:EPARSE description: @"Object key string expected"]; + return NO; + } + + skipWhitespace(c); + if (*c != ':') { + [self addErrorWithCode:EPARSE description: @"Expected ':' separating key and value"]; + return NO; + } + + c++; + if (![self scanValue:&v]) { + NSString *string = [NSString stringWithFormat:@"Object value expected for key: %@", k]; + [self addErrorWithCode:EPARSE description: string]; + return NO; + } + + [*o setObject:v forKey:k]; + + skipWhitespace(c); + if (*c == ',' && c++) { + skipWhitespace(c); + if (*c == '}') { + [self addErrorWithCode:ETRAILCOMMA description: @"Trailing comma disallowed in object"]; + return NO; + } + } + } + + [self addErrorWithCode:EEOF description: @"End of input while parsing object"]; + return NO; +} + +- (BOOL)scanRestOfString:(NSMutableString **)o +{ + // if the string has no control characters in it, return it in one go, without any temporary allocations. + size_t len = strcspn(c, ctrl); + if (len && *(c + len) == '\"') + { + *o = [[[NSMutableString alloc] initWithBytes:(char*)c length:len encoding:NSUTF8StringEncoding] autorelease]; + c += len + 1; + return YES; + } + + *o = [NSMutableString stringWithCapacity:16]; + do { + // First see if there's a portion we can grab in one go. + // Doing this caused a massive speedup on the long string. + len = strcspn(c, ctrl); + if (len) { + // check for + id t = [[NSString alloc] initWithBytesNoCopy:(char*)c + length:len + encoding:NSUTF8StringEncoding + freeWhenDone:NO]; + if (t) { + [*o appendString:t]; + [t release]; + c += len; + } + } + + if (*c == '"') { + c++; + return YES; + + } else if (*c == '\\') { + unichar uc = *++c; + switch (uc) { + case '\\': + case '/': + case '"': + break; + + case 'b': uc = '\b'; break; + case 'n': uc = '\n'; break; + case 'r': uc = '\r'; break; + case 't': uc = '\t'; break; + case 'f': uc = '\f'; break; + + case 'u': + c++; + if (![self scanUnicodeChar:&uc]) { + [self addErrorWithCode:EUNICODE description: @"Broken unicode character"]; + return NO; + } + c--; // hack. + break; + default: + [self addErrorWithCode:EESCAPE description: [NSString stringWithFormat:@"Illegal escape sequence '0x%x'", uc]]; + return NO; + break; + } + CFStringAppendCharacters((CFMutableStringRef)*o, &uc, 1); + c++; + + } else if (*c < 0x20) { + [self addErrorWithCode:ECTRL description: [NSString stringWithFormat:@"Unescaped control character '0x%x'", *c]]; + return NO; + + } else { + NSLog(@"should not be able to get here"); + } + } while (*c); + + [self addErrorWithCode:EEOF description:@"Unexpected EOF while parsing string"]; + return NO; +} + +- (BOOL)scanUnicodeChar:(unichar *)x +{ + unichar hi, lo; + + if (![self scanHexQuad:&hi]) { + [self addErrorWithCode:EUNICODE description: @"Missing hex quad"]; + return NO; + } + + if (hi >= 0xd800) { // high surrogate char? + if (hi < 0xdc00) { // yes - expect a low char + + if (!(*c == '\\' && ++c && *c == 'u' && ++c && [self scanHexQuad:&lo])) { + [self addErrorWithCode:EUNICODE description: @"Missing low character in surrogate pair"]; + return NO; + } + + if (lo < 0xdc00 || lo >= 0xdfff) { + [self addErrorWithCode:EUNICODE description:@"Invalid low surrogate char"]; + return NO; + } + + hi = (hi - 0xd800) * 0x400 + (lo - 0xdc00) + 0x10000; + + } else if (hi < 0xe000) { + [self addErrorWithCode:EUNICODE description:@"Invalid high character in surrogate pair"]; + return NO; + } + } + + *x = hi; + return YES; +} + +- (BOOL)scanHexQuad:(unichar *)x +{ + *x = 0; + for (int i = 0; i < 4; i++) { + unichar uc = *c; + c++; + int d = (uc >= '0' && uc <= '9') + ? uc - '0' : (uc >= 'a' && uc <= 'f') + ? (uc - 'a' + 10) : (uc >= 'A' && uc <= 'F') + ? (uc - 'A' + 10) : -1; + if (d == -1) { + [self addErrorWithCode:EUNICODE description:@"Missing hex digit in quad"]; + return NO; + } + *x *= 16; + *x += d; + } + return YES; +} + +- (BOOL)scanNumber:(NSNumber **)o +{ + BOOL simple = YES; + + const char *ns = c; + + // The logic to test for validity of the number formatting is relicensed + // from JSON::XS with permission from its author Marc Lehmann. + // (Available at the CPAN: http://search.cpan.org/dist/JSON-XS/ .) + + if ('-' == *c) + c++; + + if ('0' == *c && c++) { + if (isdigit(*c)) { + [self addErrorWithCode:EPARSENUM description: @"Leading 0 disallowed in number"]; + return NO; + } + + } else if (!isdigit(*c) && c != ns) { + [self addErrorWithCode:EPARSENUM description: @"No digits after initial minus"]; + return NO; + + } else { + skipDigits(c); + } + + // Fractional part + if ('.' == *c && c++) { + simple = NO; + if (!isdigit(*c)) { + [self addErrorWithCode:EPARSENUM description: @"No digits after decimal point"]; + return NO; + } + skipDigits(c); + } + + // Exponential part + if ('e' == *c || 'E' == *c) { + simple = NO; + c++; + + if ('-' == *c || '+' == *c) + c++; + + if (!isdigit(*c)) { + [self addErrorWithCode:EPARSENUM description: @"No digits after exponent"]; + return NO; + } + skipDigits(c); + } + + // If we are only reading integers, don't go through the expense of creating an NSDecimal. + // This ends up being a very large perf win. + if (simple) { + BOOL negate = NO; + long long val = 0; + const char *d = ns; + + if (*d == '-') { + negate = YES; + d++; + } + + while (isdigit(*d)) { + val *= 10; + if (val < 0) + goto longlong_overflow; + val += *d - '0'; + if (val < 0) + goto longlong_overflow; + d++; + } + + *o = [NSNumber numberWithLongLong:negate ? -val : val]; + return YES; + + } else { + // jumped to by simple branch, if an overflow occured + longlong_overflow:; + + id str = [[NSString alloc] initWithBytesNoCopy:(char*)ns + length:c - ns + encoding:NSUTF8StringEncoding + freeWhenDone:NO]; + [str autorelease]; + if (str && (*o = [NSDecimalNumber decimalNumberWithString:str])) + return YES; + + [self addErrorWithCode:EPARSENUM description: @"Failed creating decimal instance"]; + return NO; + } +} + +- (BOOL)scanIsAtEnd +{ + skipWhitespace(c); + return !*c; +} + + +@end diff --git a/JSON/SBJsonStreamWriter.h b/JSON/SBJsonStreamWriter.h new file mode 100644 index 0000000..675e02e --- /dev/null +++ b/JSON/SBJsonStreamWriter.h @@ -0,0 +1,144 @@ +/* + Copyright (c) 2010, Stig Brautaset. + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + Neither the name of the the author nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#import + +@class SBJsonStreamWriterStateMachine; + +/** + @brief The Stream Writer class. + + SBJsonStreamWriter accepts various messages and writes JSON text to an + NSOutputStream designated at iniatilisation time. + + A range of high-, mid- and low-level methods. You can mix and match calls + to these. For example, you may want to call -writeArrayOpen to start an + array and then repeatedly call -writeObject: with an object. + + In JSON the keys of an object must be strings. NSDictionary keys need + not be, but attempting to convert an NSDictionary with non-string keys + into JSON will result in an error. + + NSNumber instances created with the +initWithBool: method are + converted into the JSON boolean "true" and "false" values, and vice + versa. Any other NSNumber instances are converted to a JSON number the + way you would expect. + + */ + +@interface SBJsonStreamWriter : NSObject { +@private + NSString *error; + SBJsonStreamWriterStateMachine **states; + NSOutputStream *stream; + NSUInteger depth, maxDepth; + BOOL sortKeys, humanReadable; +} + +/** + @brief The maximum recursing depth. + + Defaults to 512. If the input is nested deeper than this the input will be deemed to be + malicious and the parser returns nil, signalling an error. ("Nested too deep".) You can + turn off this security feature by setting the maxDepth value to 0. + */ +@property NSUInteger maxDepth; + +/** + @brief Whether we are generating human-readable (multiline) JSON. + + Set whether or not to generate human-readable JSON. The default is NO, which produces + JSON without any whitespace between tokens. If set to YES, generates human-readable + JSON with linebreaks after each array value and dictionary key/value pair, indented two + spaces per nesting level. + */ +@property BOOL humanReadable; + +/** + @brief Whether or not to sort the dictionary keys in the output. + + If this is set to YES, the dictionary keys in the JSON output will be in sorted order. + (This is useful if you need to compare two structures, for example.) The default is NO. + */ +@property BOOL sortKeys; + +/** + @brief Contains the error description after an error has occured. + */ +@property (copy, readonly) NSString *error; + +/** + @brief Initialise a stream writer. + + You have to create an output stream first. You should not open/close the stream + manually; this class takes care of that. + */ +- (id)initWithStream:(NSOutputStream*)stream; + +/** + @brief Write an NSDictionary to the JSON stream. + */ +- (BOOL)writeObject:(NSDictionary*)dict; + +/** + @brief Write an NSArray to the JSON stream. + */ +- (BOOL)writeArray:(NSArray *)array; + +/// Start writing an Object to the stream +- (BOOL)writeObjectOpen; + +/// Close the current object being written +- (BOOL)writeObjectClose; + +/// Start writing an Array to the stream +- (BOOL)writeArrayOpen; + +/// Close the current Array being written +- (BOOL)writeArrayClose; + +/// Write a null to the stream +- (BOOL)writeNull; + +/// Write a boolean to the stream +- (BOOL)writeBool:(BOOL)x; + +//- (BOOL)writeInteger:(long)l; +//- (BOOL)writeDouble:(double)d; + +/// Write a Number to the stream +- (BOOL)writeNumber:(NSNumber*)n; + +/// Write a String to the stream +- (BOOL)writeString:(NSString*)s; + +@end diff --git a/JSON/SBJsonStreamWriter.m b/JSON/SBJsonStreamWriter.m new file mode 100644 index 0000000..6a327a6 --- /dev/null +++ b/JSON/SBJsonStreamWriter.m @@ -0,0 +1,509 @@ +/* + Copyright (c) 2010, Stig Brautaset. + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + Neither the name of the the author nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#import "SBJsonStreamWriter.h" +#import "SBProxyForJson.h" + +@interface SBJsonStreamWriter () +@property(copy) NSString *error; +@property(readonly) NSObject **states; +@property(readonly) NSUInteger depth; +@property(readonly) NSOutputStream *stream; +- (BOOL)writeValue:(id)v; +- (void)write:(char const *)utf8 len:(NSUInteger)len; +@end + +@interface SBJsonStreamWriterStateMachine : NSObject +- (BOOL)isInvalidState:(SBJsonStreamWriter*)writer; +- (void)appendSeparator:(SBJsonStreamWriter*)writer; +- (BOOL)expectingKey:(SBJsonStreamWriter*)writer; +- (void)transitionState:(SBJsonStreamWriter*)writer; +- (void)appendWhitespace:(SBJsonStreamWriter*)writer; +@end + +@interface ObjectOpenState : SBJsonStreamWriterStateMachine +@end + +@interface ObjectKeyState : ObjectOpenState +@end + +@interface ObjectValueState : SBJsonStreamWriterStateMachine +@end + +@interface ArrayOpenState : SBJsonStreamWriterStateMachine +@end + +@interface ArrayValueState : SBJsonStreamWriterStateMachine +@end + +@interface StartState : SBJsonStreamWriterStateMachine +@end + +@interface CompleteState : SBJsonStreamWriterStateMachine +@end + +@interface ErrorState : SBJsonStreamWriterStateMachine +@end + +static NSMutableDictionary *stringCache; +static NSDecimalNumber *notANumber; + +// States +static StartState *openState; +static CompleteState *closeState; +static ErrorState *errorState; +static ObjectOpenState *objectOpenState; +static ObjectKeyState *objectKeyState; +static ObjectValueState *objectValueState; +static ArrayOpenState *arrayOpenState; +static ArrayValueState *arrayValueState; + + +@implementation SBJsonStreamWriterStateMachine +- (BOOL)isInvalidState:(SBJsonStreamWriter*)writer { return NO; } +- (void)appendSeparator:(SBJsonStreamWriter*)writer {} +- (BOOL)expectingKey:(SBJsonStreamWriter*)writer { return NO; } +- (void)transitionState:(SBJsonStreamWriter *)writer {} +- (void)appendWhitespace:(SBJsonStreamWriter*)writer { + [writer write:"\n" len:1]; + for (int i = 0; i < writer.depth; i++) + [writer write:" " len: 2]; +} +@end + +@implementation ObjectOpenState +- (void)transitionState:(SBJsonStreamWriter *)writer { + writer.states[writer.depth] = objectValueState; +} +- (BOOL)expectingKey:(SBJsonStreamWriter *)writer { + writer.error = @"JSON object key must be string"; + return YES; +} +@end + +@implementation ObjectKeyState +- (void)appendSeparator:(SBJsonStreamWriter *)writer { + [writer write:"," len:1]; +} +@end + +@implementation ObjectValueState +- (void)appendSeparator:(SBJsonStreamWriter *)writer { + [writer write:":" len:1]; +} +- (void)transitionState:(SBJsonStreamWriter *)writer { + writer.states[writer.depth] = objectKeyState; +} +- (void)appendWhitespace:(SBJsonStreamWriter *)writer { + [writer write:" " len:1]; +} +@end + +@implementation ArrayOpenState +- (void)transitionState:(SBJsonStreamWriter *)writer { + writer.states[writer.depth] = arrayValueState; +} +@end + +@implementation ArrayValueState +- (void)appendSeparator:(SBJsonStreamWriter *)writer { + [writer write:"," len:1]; +} +@end + +@implementation StartState +- (void)transitionState:(SBJsonStreamWriter *)writer { + writer.states[writer.depth] = closeState; + [writer.stream close]; +} +- (void)appendSeparator:(SBJsonStreamWriter *)writer { + [writer.stream open]; +} +@end + +@implementation CompleteState +- (BOOL)isInvalidState:(SBJsonStreamWriter*)writer { + writer.error = @"Stream is closed"; + return YES; +} +@end + +@implementation ErrorState +@end + +@implementation SBJsonStreamWriter + +@synthesize error; +@dynamic depth; +@synthesize maxDepth; +@synthesize states; +@synthesize stream; +@synthesize humanReadable; +@synthesize sortKeys; + ++ (void)initialize { + notANumber = [NSDecimalNumber notANumber]; + stringCache = [NSMutableDictionary new]; + + openState = [StartState new]; + closeState = [CompleteState new]; + errorState = [ErrorState new]; + objectOpenState = [ObjectOpenState new]; + objectKeyState = [ObjectKeyState new]; + objectValueState = [ObjectValueState new]; + arrayOpenState = [ArrayOpenState new]; + arrayValueState = [ArrayValueState new]; +} + +#pragma mark Housekeeping + +- (id)initWithStream:(NSOutputStream*)stream_ { + self = [super init]; + if (self) { + stream = [stream_ retain]; + maxDepth = 512; + states = calloc(maxDepth, sizeof(SBJsonStreamWriterStateMachine*)); + NSAssert(states, @"States not initialised"); + states[0] = openState; + } + return self; +} + +- (void)dealloc { + self.error = nil; + free(states); + [stream release]; + [super dealloc]; +} + +#pragma mark Methods + +- (BOOL)writeObject:(NSDictionary *)dict { + if (![self writeObjectOpen]) + return NO; + + NSArray *keys = [dict allKeys]; + if (sortKeys) + keys = [keys sortedArrayUsingSelector:@selector(compare:)]; + + for (id k in keys) { + if (![k isKindOfClass:[NSString class]]) { + self.error = [NSString stringWithFormat:@"JSON object key must be string: %@", k]; + return NO; + } + + if (![self writeString:k]) + return NO; + if (![self writeValue:[dict objectForKey:k]]) + return NO; + } + + return [self writeObjectClose]; +} + +- (BOOL)writeArray:(NSArray*)array { + if (![self writeArrayOpen]) + return NO; + for (id v in array) + if (![self writeValue:v]) + return NO; + return [self writeArrayClose]; +} + + +- (BOOL)writeObjectOpen { + SBJsonStreamWriterStateMachine *s = states[depth]; + if ([s isInvalidState:self]) return NO; + if ([s expectingKey:self]) return NO; + [s appendSeparator:self]; + if (humanReadable && depth) [s appendWhitespace:self]; + + if (maxDepth && ++depth > maxDepth) { + self.error = @"Nested too deep"; + return NO; + } + + states[depth] = objectOpenState; + [self write:"{" len:1]; + return YES; +} + +- (BOOL)writeObjectClose { + SBJsonStreamWriterStateMachine *state = states[depth--]; + if ([state isInvalidState:self]) return NO; + if (humanReadable) [state appendWhitespace:self]; + [self write:"}" len:1]; + [states[depth] transitionState:self]; + return YES; +} + +- (BOOL)writeArrayOpen { + SBJsonStreamWriterStateMachine *s = states[depth]; + if ([s isInvalidState:self]) return NO; + if ([s expectingKey:self]) return NO; + [s appendSeparator:self]; + if (humanReadable && depth) [s appendWhitespace:self]; + + if (maxDepth && ++depth > maxDepth) { + self.error = @"Nested too deep"; + return NO; + } + + states[depth] = arrayOpenState; + [self write:"[" len:1]; + return YES; +} + +- (BOOL)writeArrayClose { + SBJsonStreamWriterStateMachine *state = states[depth--]; + if ([state isInvalidState:self]) return NO; + if ([state expectingKey:self]) return NO; + if (humanReadable) [state appendWhitespace:self]; + + [self write:"]" len:1]; + [states[depth] transitionState:self]; + return YES; +} + +- (BOOL)writeNull { + SBJsonStreamWriterStateMachine *s = states[depth]; + if ([s isInvalidState:self]) return NO; + if ([s expectingKey:self]) return NO; + [s appendSeparator:self]; + if (humanReadable) [s appendWhitespace:self]; + + [self write:"null" len:4]; + [s transitionState:self]; + return YES; +} + +- (BOOL)writeBool:(BOOL)x { + SBJsonStreamWriterStateMachine *s = states[depth]; + if ([s isInvalidState:self]) return NO; + if ([s expectingKey:self]) return NO; + [s appendSeparator:self]; + if (humanReadable) [s appendWhitespace:self]; + + if (x) + [self write:"true" len:4]; + else + [self write:"false" len:5]; + [s transitionState:self]; + return YES; +} + + +- (BOOL)writeValue:(id)o { + if ([o isKindOfClass:[NSDictionary class]]) { + return [self writeObject:o]; + + } else if ([o isKindOfClass:[NSArray class]]) { + return [self writeArray:o]; + + } else if ([o isKindOfClass:[NSString class]]) { + [self writeString:o]; + return YES; + + } else if ([o isKindOfClass:[NSNumber class]]) { + return [self writeNumber:o]; + + } else if ([o isKindOfClass:[NSNull class]]) { + return [self writeNull]; + + } else if ([o respondsToSelector:@selector(proxyForJson)]) { + return [self writeValue:[o proxyForJson]]; + + } + + self.error = [NSString stringWithFormat:@"JSON serialisation not supported for @%", [o class]]; + return NO; +} + +static const char *strForChar(int c) { + switch (c) { + case 0: return "\\u0000"; break; + case 1: return "\\u0001"; break; + case 2: return "\\u0002"; break; + case 3: return "\\u0003"; break; + case 4: return "\\u0004"; break; + case 5: return "\\u0005"; break; + case 6: return "\\u0006"; break; + case 7: return "\\u0007"; break; + case 8: return "\\b"; break; + case 9: return "\\t"; break; + case 10: return "\\n"; break; + case 11: return "\\u000b"; break; + case 12: return "\\f"; break; + case 13: return "\\r"; break; + case 14: return "\\u000e"; break; + case 15: return "\\u000f"; break; + case 16: return "\\u0010"; break; + case 17: return "\\u0011"; break; + case 18: return "\\u0012"; break; + case 19: return "\\u0013"; break; + case 20: return "\\u0014"; break; + case 21: return "\\u0015"; break; + case 22: return "\\u0016"; break; + case 23: return "\\u0017"; break; + case 24: return "\\u0018"; break; + case 25: return "\\u0019"; break; + case 26: return "\\u001a"; break; + case 27: return "\\u001b"; break; + case 28: return "\\u001c"; break; + case 29: return "\\u001d"; break; + case 30: return "\\u001e"; break; + case 31: return "\\u001f"; break; + case 34: return "\\\""; break; + case 92: return "\\\\"; break; + } + NSLog(@"FUTFUTFUT: -->'%c'<---", c); + return "FUTFUTFUT"; +} + +- (BOOL)writeString:(NSString*)string { + SBJsonStreamWriterStateMachine *s = states[depth]; + if ([s isInvalidState:self]) return NO; + [s appendSeparator:self]; + if (humanReadable) [s appendWhitespace:self]; + + NSMutableData *data = [stringCache objectForKey:string]; + if (data) { + [self write:[data bytes] len:[data length]]; + [s transitionState:self]; + return YES; + } + + NSUInteger len = [string lengthOfBytesUsingEncoding:NSUTF8StringEncoding]; + const char *utf8 = [string UTF8String]; + NSUInteger written = 0, i = 0; + + data = [NSMutableData dataWithCapacity:len * 1.1]; + [data appendBytes:"\"" length:1]; + + for (i = 0; i < len; i++) { + int c = utf8[i]; + if (c >= 0 && c < 32 || c == '"' || c == '\\') { + if (i - written) + [data appendBytes:utf8 + written length:i - written]; + written = i + 1; + + const char *t = strForChar(c); + [data appendBytes:t length:strlen(t)]; + } + } + + if (i - written) + [data appendBytes:utf8 + written length:i - written]; + + [data appendBytes:"\"" length:1]; + [self write:[data bytes] len:[data length]]; + [stringCache setObject:data forKey:string]; + [s transitionState:self]; + return YES; +} + +- (BOOL)writeNumber:(NSNumber*)number { + if ((CFBooleanRef)number == kCFBooleanTrue || (CFBooleanRef)number == kCFBooleanFalse) + return [self writeBool:[number boolValue]]; + + SBJsonStreamWriterStateMachine *s = states[depth]; + if ([s isInvalidState:self]) return NO; + if ([s expectingKey:self]) return NO; + [s appendSeparator:self]; + if (humanReadable) [s appendWhitespace:self]; + + if ((CFNumberRef)number == kCFNumberPositiveInfinity) { + self.error = @"+Infinity is not a valid number in JSON"; + return NO; + + } else if ((CFNumberRef)number == kCFNumberNegativeInfinity) { + self.error = @"-Infinity is not a valid number in JSON"; + return NO; + + } else if ((CFNumberRef)number == kCFNumberNaN) { + self.error = @"NaN is not a valid number in JSON"; + return NO; + + } else if (number == notANumber) { + self.error = @"NaN is not a valid number in JSON"; + return NO; + } + + const char *objcType = [number objCType]; + char num[64]; + size_t len; + + switch (objcType[0]) { + case 'c': case 'i': case 's': case 'l': case 'q': + len = sprintf(num, "%lld", [number longLongValue]); + break; + case 'C': case 'I': case 'S': case 'L': case 'Q': + len = sprintf(num, "%llu", [number unsignedLongLongValue]); + break; + case 'f': case 'd': default: + if ([number isKindOfClass:[NSDecimalNumber class]]) { + char const *utf8 = [[number stringValue] UTF8String]; + [self write:utf8 len: strlen(utf8)]; + [s transitionState:self]; + return YES; + } + len = sprintf(num, "%g", [number doubleValue]); + break; + } + [self write:num len: len]; + [s transitionState:self]; + return YES; +} + +#pragma mark Private methods + +- (NSUInteger)depth { + return depth; +} + +- (void)write:(char const *)utf8 len:(NSUInteger)len { + NSUInteger written = 0; + do { + NSInteger w = [stream write:(const uint8_t *)utf8 maxLength:len - written]; + if (w > 0) + written += w; + } while (written < len); +} + +- (void)setMaxDepth:(NSUInteger)x { + NSAssert(x, @"maxDepth must be greater than 0"); + maxDepth = x; + states = realloc(states, x); + NSAssert(states, @"Failed to reallocate more memory for states"); +} + +@end diff --git a/JSON/SBJsonWriter.h b/JSON/SBJsonWriter.h new file mode 100644 index 0000000..043526c --- /dev/null +++ b/JSON/SBJsonWriter.h @@ -0,0 +1,111 @@ +/* + Copyright (C) 2009 Stig Brautaset. All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name of the author nor the names of its contributors may be used + to endorse or promote products derived from this software without specific + prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#import +#import "SBJsonBase.h" + +/** + @brief The JSON writer class. + + Objective-C types are mapped to JSON types in the following way: + + @li NSNull -> Null + @li NSString -> String + @li NSArray -> Array + @li NSDictionary -> Object + @li NSNumber (-initWithBool:) -> Boolean + @li NSNumber -> Number + + In JSON the keys of an object must be strings. NSDictionary keys need + not be, but attempting to convert an NSDictionary with non-string keys + into JSON will throw an exception. + + NSNumber instances created with the +initWithBool: method are + converted into the JSON boolean "true" and "false" values, and vice + versa. Any other NSNumber instances are converted to a JSON number the + way you would expect. + + */ +@interface SBJsonWriter : SBJsonBase { + +@private + BOOL sortKeys, humanReadable; +} + +/** + @brief Whether we are generating human-readable (multiline) JSON. + + Set whether or not to generate human-readable JSON. The default is NO, which produces + JSON without any whitespace. (Except inside strings.) If set to YES, generates human-readable + JSON with linebreaks after each array value and dictionary key/value pair, indented two + spaces per nesting level. + */ +@property BOOL humanReadable; + +/** + @brief Whether or not to sort the dictionary keys in the output. + + If this is set to YES, the dictionary keys in the JSON output will be in sorted order. + (This is useful if you need to compare two structures, for example.) The default is NO. + */ +@property BOOL sortKeys; + +/** + @brief Return JSON representation for the given object. + + Returns a string containing JSON representation of the passed in value, or nil on error. + If nil is returned and @p error is not NULL, @p *error can be interrogated to find the cause of the error. + + @param value any instance that can be represented as JSON text. + */ +- (NSString*)stringWithObject:(id)value; + +/** + @brief Return JSON representation for the given object. + + Returns an NSData object containing JSON represented as UTF8 text, or nil on error. + + @param value any instance that can be represented as JSON text. + */ +- (NSData*)dataWithObject:(id)value; + +/** + @brief Return JSON representation (or fragment) for the given object. + + Returns a string containing JSON representation of the passed in value, or nil on error. + If nil is returned and @p error is not NULL, @p *error can be interrogated to find the cause of the error. + + @param value any instance that can be represented as a JSON fragment + @param error pointer to object to be populated with NSError on failure + + */- (NSString*)stringWithObject:(id)value + error:(NSError**)error; + + +@end diff --git a/JSON/SBJsonWriter.m b/JSON/SBJsonWriter.m new file mode 100644 index 0000000..1058ff0 --- /dev/null +++ b/JSON/SBJsonWriter.m @@ -0,0 +1,96 @@ +/* + Copyright (C) 2009 Stig Brautaset. All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name of the author nor the names of its contributors may be used + to endorse or promote products derived from this software without specific + prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#import "SBJsonWriter.h" +#import "SBJsonStreamWriter.h" +#import "SBProxyForJson.h" + +@interface SBJsonWriter () + +- (NSData*)dataWithObject:(id)value; + +@end + +@implementation SBJsonWriter + +@synthesize sortKeys; +@synthesize humanReadable; + + +- (NSString*)stringWithObject:(id)value { + [self clearErrorTrace]; + + NSData *data = [self dataWithObject:value]; + if (data) + return [[[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding] autorelease]; + return nil; +} + +- (NSString*)stringWithObject:(id)value error:(NSError**)error { + NSString *tmp = [self stringWithObject:value]; + if (tmp) + return tmp; + + if (error) + *error = [self.errorTrace lastObject]; + return nil; +} + +- (NSData*)dataWithObject:(id)object { + NSOutputStream *stream = [[[NSOutputStream alloc] initToMemory] autorelease]; + + SBJsonStreamWriter *streamWriter = [[[SBJsonStreamWriter alloc] initWithStream:stream] autorelease]; + streamWriter.sortKeys = self.sortKeys; + streamWriter.maxDepth = self.maxDepth; + streamWriter.humanReadable = self.humanReadable; + + BOOL ok = NO; + if ([object isKindOfClass:[NSDictionary class]]) + ok = [streamWriter writeObject:object]; + + else if ([object isKindOfClass:[NSArray class]]) + ok = [streamWriter writeArray:object]; + + else if ([object respondsToSelector:@selector(proxyForJson)]) + return [self dataWithObject:[object proxyForJson]]; + else { + [self addErrorWithCode:EUNSUPPORTED description:@"Not valid type for JSON"]; + return nil; + } + + if (ok) + return [stream propertyForKey:NSStreamDataWrittenToMemoryStreamKey]; + + [self addErrorWithCode:EUNSUPPORTED description:streamWriter.error]; + return nil; +} + + + +@end diff --git a/JSON/SBProxyForJson.h b/JSON/SBProxyForJson.h new file mode 100644 index 0000000..ce86a83 --- /dev/null +++ b/JSON/SBProxyForJson.h @@ -0,0 +1,58 @@ +/* + Copyright (c) 2010, Stig Brautaset. + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + Neither the name of the the author nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#import + +/** + @brief Allows generation of JSON for otherwise unsupported classes. + + If you have a custom class that you want to create a JSON representation for you can implement + this method in your class. It should return a representation of your object defined + in terms of objects that can be translated into JSON. For example, a Person + object might implement it like this: + + @code + - (id)proxyForJson { + return [NSDictionary dictionaryWithObjectsAndKeys: + name, @"name", + phone, @"phone", + email, @"email", + nil]; + } + @endcode + + */ +@interface NSObject (SBProxyForJson) + +- (id)proxyForJson; + +@end diff --git a/OUILookupTool/OUILookupTool.h b/OUILookupTool/OUILookupTool.h new file mode 100644 index 0000000..11952f1 --- /dev/null +++ b/OUILookupTool/OUILookupTool.h @@ -0,0 +1,26 @@ +// +// OUILookupTool.h +// OUILookup +// +// Created by Nicolas Seriot on 10/31/10. +// Copyright 2010 IICT. All rights reserved. +// + +#import + +@class OUILookupTool; + +@protocol OUILookupToolDelegate +- (void)OUILookupTool:(OUILookupTool *)ouiLookupTool didLocateAccessPoint:(NSDictionary *)ap; +@end + +@interface OUILookupTool : NSObject { + NSObject *delegate; +} + +@property (nonatomic, retain) NSObject *delegate; + +// ap should have a "bssid" key ++ (OUILookupTool *)locateWifiAccessPoint:(NSDictionary *)ap delegate:(NSObject *)aDelegate; + +@end diff --git a/OUILookupTool/OUILookupTool.m b/OUILookupTool/OUILookupTool.m new file mode 100644 index 0000000..9ba709f --- /dev/null +++ b/OUILookupTool/OUILookupTool.m @@ -0,0 +1,110 @@ +// +// OUILookupTool.m +// OUILookup +// +// Created by Nicolas Seriot on 10/31/10. +// Copyright 2010 IICT. All rights reserved. +// + +#import "OUILookupTool.h" +#import "JSON.h" + +@implementation OUILookupTool + +@synthesize delegate; + +- (void)fetchLocationForAccessPointInNewThread:(NSMutableDictionary *)ap { + + NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; + + NSString *aBSSID = [ap valueForKey:@"BSSID"]; + +// NSMutableDictionary *lookupDict = [NSMutableDictionary dictionaryWithObject:aBSSID forKey:@"bssid"]; + + NSDictionary *d = [NSDictionary dictionaryWithObject:aBSSID forKey:@"mac_address"]; + NSArray *wifiTowers = [NSArray arrayWithObject:d]; + + NSDictionary *postDictionary = [[NSMutableDictionary alloc] initWithCapacity:3]; + [postDictionary setValue:@"1.1.0" forKey:@"version"]; + [postDictionary setValue:@"ouilookup" forKey:@"host"]; + [postDictionary setValue:wifiTowers forKey:@"wifi_towers"]; + + NSString *postJSON = [postDictionary JSONRepresentation]; + + NSData *data = [postJSON dataUsingEncoding:NSUTF8StringEncoding]; + + NSURL *url = [NSURL URLWithString:@"http://66.249.92.104/loc/json"]; + + NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url]; + [request setHTTPBody:data]; + [request setCachePolicy:NSURLRequestUseProtocolCachePolicy]; + [request setHTTPMethod:@"POST"]; + [request setValue:@"application/json" forHTTPHeaderField:@"Content-type"]; + NSString *contentLength = [NSString stringWithFormat:@"%d", [data length]]; + [request setValue:contentLength forHTTPHeaderField:@"Content-Length"]; + [request setValue:@"Jakarta Commons-HttpClient/3.0.1" forHTTPHeaderField:@"User-Agent"]; + [request setValue:@"www.google.com" forHTTPHeaderField:@"Host"]; + + NSError *error = nil; + NSData *responseData = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:&error]; + NSString *responseString = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding]; + + NSDictionary *responseDict = [responseString JSONValue]; + + [ap addEntriesFromDictionary:responseDict]; + + [self performSelectorOnMainThread:@selector(didFinishLookup:) withObject:ap waitUntilDone:YES]; + + [pool release]; +} + +- (void)didFinishLookup:(NSDictionary *)ap { +// NSLog(@"-- %@", ap); + +// NSString *latitude = [d valueForKeyPath:@"location.latitude"]; +// NSString *longitude = [d valueForKeyPath:@"location.longitude"]; +// +// CLLocationCoordinate2D coordinate = CLLocationCoordinate2DMake([latitude doubleValue], [longitude doubleValue]); + + [delegate OUILookupTool:self didLocateAccessPoint:ap]; +} + +- (void)dealloc { + [delegate release]; + [super dealloc]; +} + ++ (NSString *)formattedBSSID:(NSString *)aBSSID { + NSArray *comps = [aBSSID componentsSeparatedByString:@":"]; + + if([comps count] != 6) return nil; + + NSMutableArray *a = [NSMutableArray array]; + + for(NSString *comp in comps) { + NSUInteger length = [comp length]; + if(length == 0 || length > 2) return nil; + + NSString *s = length == 2 ? comp : [@"0" stringByAppendingString:comp]; + [a addObject:s]; + } + + return [a componentsJoinedByString:@":"]; +} + ++ (OUILookupTool *)locateWifiAccessPoint:(NSDictionary *)ap delegate:(NSObject *)aDelegate { + NSString *aBSSID = [ap valueForKey:@"BSSID"]; + NSString *formattedBSSID = [self formattedBSSID:aBSSID]; + if(formattedBSSID == nil) return nil; + + NSMutableDictionary *d = [NSMutableDictionary dictionaryWithDictionary:ap]; + [d setValue:formattedBSSID forKey:@"BSSID"]; + + OUILookupTool *olt = [[OUILookupTool alloc] init]; + olt.delegate = aDelegate; + + [NSThread detachNewThreadSelector:@selector(fetchLocationForAccessPointInNewThread:) toTarget:olt withObject:d]; + return [olt autorelease]; +} + +@end diff --git a/SpyPhone.xcodeproj/nst.pbxuser b/SpyPhone.xcodeproj/nst.pbxuser index b97ba04..ef8b3d6 100644 --- a/SpyPhone.xcodeproj/nst.pbxuser +++ b/SpyPhone.xcodeproj/nst.pbxuser @@ -1,5 +1,221 @@ // !$*UTF8*$! { + 030AFB02127D065B00C9E0C6 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 50"; + rLen = 0; + rLoc = 1304; + rType = 0; + vrLen = 420; + vrLoc = 350; + }; + 030AFB03127D065B00C9E0C6 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 50"; + rLen = 0; + rLoc = 1304; + rType = 0; + vrLen = 1069; + vrLoc = 285; + }; + 030AFB04127D065E00C9E0C6 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 50"; + rLen = 0; + rLoc = 1304; + rType = 0; + vrLen = 1069; + vrLoc = 285; + }; + 030AFB05127D065F00C9E0C6 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 50"; + rLen = 0; + rLoc = 1304; + rType = 0; + vrLen = 1063; + vrLoc = 285; + }; + 030AFB0E127D065F00C9E0C6 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 1909; + vrLoc = 1557; + }; + 030AFB11127D066100C9E0C6 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 50"; + rLen = 0; + rLoc = 1304; + rType = 0; + vrLen = 420; + vrLoc = 350; + }; + 030AFB12127D06A300C9E0C6 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 50"; + rLen = 0; + rLoc = 1304; + rType = 0; + vrLen = 1063; + vrLoc = 285; + }; + 030AFB13127D06A300C9E0C6 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033804D5127CD6FE00EAFE64 /* NSFileManager.h */; + name = "NSFileManager.h: 60"; + rLen = 36; + rLoc = 2619; + rType = 0; + vrLen = 2473; + vrLoc = 1720; + }; + 030AFB14127D06A300C9E0C6 /* XCBuildMessageTextBookmark */ = { + isa = PBXTextBookmark; + comments = "'NSFileManager' may not respond to '-directoryContentsAtPath:error:'"; + fRef = 0364934010B16DDD00C88803 /* SPSourceKeyboardTVC.m */; + fallbackIsa = XCBuildMessageTextBookmark; + rLen = 1; + rLoc = 66; + rType = 1; + }; + 030AFB15127D06A300C9E0C6 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0364934010B16DDD00C88803 /* SPSourceKeyboardTVC.m */; + name = "SPSourceKeyboardTVC.m: 67"; + rLen = 101; + rLoc = 1701; + rType = 0; + vrLen = 826; + vrLoc = 1297; + }; + 030AFB1A127D06AF00C9E0C6 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0364934010B16DDD00C88803 /* SPSourceKeyboardTVC.m */; + name = "SPSourceKeyboardTVC.m: 67"; + rLen = 101; + rLoc = 1701; + rType = 0; + vrLen = 390; + vrLoc = 1530; + }; + 030AFB1B127D06AF00C9E0C6 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + rLen = 0; + rLoc = 46; + rType = 1; + }; + 030AFB1C127D06AF00C9E0C6 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 49"; + rLen = 0; + rLoc = 1300; + rType = 0; + vrLen = 494; + vrLoc = 440; + }; + 030AFB1D127D06B100C9E0C6 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0364934010B16DDD00C88803 /* SPSourceKeyboardTVC.m */; + name = "SPSourceKeyboardTVC.m: 67"; + rLen = 101; + rLoc = 1701; + rType = 0; + vrLen = 926; + vrLoc = 1297; + }; + 030AFB1E127D06B100C9E0C6 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 49"; + rLen = 0; + rLoc = 1300; + rType = 0; + vrLen = 973; + vrLoc = 385; + }; + 030AFB1F127D06B600C9E0C6 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 49"; + rLen = 0; + rLoc = 1300; + rType = 0; + vrLen = 919; + vrLoc = 439; + }; + 030AFB20127D06B600C9E0C6 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 1909; + vrLoc = 1557; + }; + 030AFB23127D070B00C9E0C6 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 49"; + rLen = 0; + rLoc = 1300; + rType = 0; + vrLen = 494; + vrLoc = 440; + }; + 030AFB24127D076B00C9E0C6 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61710B07F360074A5A1 /* SPSourceWifiTVC.h */; + name = "SPSourceWifiTVC.h: 16"; + rLen = 0; + rLoc = 320; + rType = 0; + vrLen = 327; + vrLoc = 0; + }; + 030AFB25127D076B00C9E0C6 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 31"; + rLen = 0; + rLoc = 726; + rType = 0; + vrLen = 959; + vrLoc = 350; + }; + 030AFB26127D076B00C9E0C6 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 47"; + rLen = 0; + rLoc = 1282; + rType = 0; + vrLen = 1026; + vrLoc = 285; + }; + 030AFB27127D076B00C9E0C6 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2068; + vrLoc = 1557; + }; 0310C65410C4BE0800E7ACD2 /* SPImageVC.m */ = { uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1078, 598}}"; @@ -91,13 +307,6 @@ sepNavVisRange = "{0, 732}"; }; }; - 0317DE5110FF954800C5C2D4 /* UIApplication_TVOut.m */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {733, 1612}}"; - sepNavSelRange = "{1530, 0}"; - sepNavVisRange = "{1378, 762}"; - }; - }; 0328F4AB10B05E890074A5A1 /* SpyPhone */ = { isa = PBXExecutable; activeArgIndices = ( @@ -197,23 +406,23 @@ hitCount = 0; ignoreCount = 0; location = libobjc.A.dylib; - modificationTime = 305591634.606102; + modificationTime = 310183607.208611; originalNumberOfMultipleMatches = 1; state = 1; symbolName = objc_exception_throw; }; 0328F61710B07F360074A5A1 /* SPSourceWifiTVC.h */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1078, 499}}"; - sepNavSelRange = "{0, 0}"; - sepNavVisRange = "{0, 278}"; + sepNavIntBoundsRect = "{{0, 0}, {1078, 435}}"; + sepNavSelRange = "{320, 0}"; + sepNavVisRange = "{0, 327}"; }; }; 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1078, 494}}"; - sepNavSelRange = "{733, 6}"; - sepNavVisRange = "{0, 996}"; + sepNavIntBoundsRect = "{{0, 0}, {1078, 663}}"; + sepNavSelRange = "{1282, 0}"; + sepNavVisRange = "{285, 1026}"; }; }; 0328F6BA10B088DD0074A5A1 /* SPSourcePhoneTVC.h */ = { @@ -232,16 +441,16 @@ }; 0328F75010B09AA60074A5A1 /* SPSourceLocationTVC.h */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1078, 716}}"; - sepNavSelRange = "{811, 0}"; - sepNavVisRange = "{0, 811}"; + sepNavIntBoundsRect = "{{0, 0}, {1078, 494}}"; + sepNavSelRange = "{526, 22}"; + sepNavVisRange = "{0, 930}"; }; }; 0328F75110B09AA60074A5A1 /* SPSourceLocationTVC.m */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1097, 1144}}"; - sepNavSelRange = "{399, 0}"; - sepNavVisRange = "{179, 2032}"; + sepNavIntBoundsRect = "{{0, 0}, {1391, 1404}}"; + sepNavSelRange = "{775, 0}"; + sepNavVisRange = "{450, 956}"; }; }; 0328F80710B0A6FB0074A5A1 /* SPSourceSafariTVC.h */ = { @@ -281,9 +490,10 @@ }; 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1391, 1859}}"; - sepNavSelRange = "{2927, 0}"; - sepNavVisRange = "{2124, 920}"; + sepNavIntBoundsRect = "{{0, 0}, {1132, 1950}}"; + sepNavSelRange = "{3431, 0}"; + sepNavVisRange = "{1557, 2068}"; + sepNavWindowFrame = "{{15, 4}, {994, 869}}"; }; }; 0328F8BE10B0B1AE0074A5A1 /* SPWebViewVC.h */ = { @@ -314,172 +524,46 @@ sepNavVisRange = "{0, 881}"; }; }; - 032A7B9110B829DB00E7FB65 /* EXFLogging.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1160, 434}}"; - sepNavSelRange = "{228, 4}"; - sepNavVisRange = "{0, 286}"; - }; - }; - 032A7B9210B829DB00E7FB65 /* EXF.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1160, 767}}"; - sepNavSelRange = "{0, 0}"; - sepNavVisRange = "{0, 572}"; - }; - }; - 032A7B9310B829DB00E7FB65 /* EXFConstants.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1160, 3419}}"; - sepNavSelRange = "{6059, 58}"; - sepNavVisRange = "{4716, 1865}"; - }; - }; - 032A7B9410B829DB00E7FB65 /* EXFGPS.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1078, 806}}"; - sepNavSelRange = "{1119, 0}"; - sepNavVisRange = "{812, 736}"; - }; - }; - 032A7B9510B829DB00E7FB65 /* EXFGPS.m */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1307, 1066}}"; - sepNavSelRange = "{0, 0}"; - sepNavVisRange = "{0, 718}"; - }; - }; - 032A7B9610B829DB00E7FB65 /* EXFHandlers.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1078, 754}}"; - sepNavSelRange = "{660, 0}"; - sepNavVisRange = "{0, 1176}"; - }; - }; - 032A7B9710B829DB00E7FB65 /* EXFHandlers.m */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1078, 5707}}"; - sepNavSelRange = "{237, 0}"; - sepNavVisRange = "{0, 1003}"; - }; - }; - 032A7B9810B829DB00E7FB65 /* EXFJFIF.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1078, 637}}"; - sepNavSelRange = "{0, 0}"; - sepNavVisRange = "{144, 792}"; - }; - }; - 032A7B9910B829DB00E7FB65 /* EXFJFIF.m */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1078, 1742}}"; - sepNavSelRange = "{1401, 6}"; - sepNavVisRange = "{910, 1306}"; - }; - }; - 032A7B9A10B829DB00E7FB65 /* EXFJpeg.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1078, 884}}"; - sepNavSelRange = "{1395, 6}"; - sepNavVisRange = "{623, 792}"; - }; - }; - 032A7B9B10B829DB00E7FB65 /* EXFJpeg.m */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1078, 6890}}"; - sepNavSelRange = "{6632, 5}"; - sepNavVisRange = "{5973, 907}"; - }; - }; - 032A7B9C10B829DB00E7FB65 /* EXFMutableMetaData.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1160, 949}}"; - sepNavSelRange = "{0, 0}"; - sepNavVisRange = "{0, 729}"; - }; - }; - 032A7B9D10B829DB00E7FB65 /* EXFMetaData.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1078, 1625}}"; - sepNavSelRange = "{816, 0}"; - sepNavVisRange = "{475, 1464}"; - }; - }; - 032A7B9E10B829DB00E7FB65 /* EXFMetaData.m */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1391, 23439}}"; - sepNavSelRange = "{43220, 0}"; - sepNavVisRange = "{42870, 565}"; - }; - }; - 032A7B9F10B829DB00E7FB65 /* EXFTagDefinitionHolder.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1160, 434}}"; - sepNavSelRange = "{0, 0}"; - sepNavVisRange = "{0, 411}"; - }; - }; - 032A7BA010B829DB00E7FB65 /* EXFTagDefinitionHolder.m */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1160, 6773}}"; - sepNavSelRange = "{0, 0}"; - sepNavVisRange = "{0, 894}"; - }; - }; - 032A7BA110B829DB00E7FB65 /* EXFUtils.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1078, 533}}"; - sepNavSelRange = "{1168, 20}"; - sepNavVisRange = "{32, 1414}"; - }; - }; - 032A7BA210B829DB00E7FB65 /* EXFUtils.m */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1078, 3497}}"; - sepNavSelRange = "{4048, 20}"; - sepNavVisRange = "{3844, 1236}"; - }; - }; 032A7E0410B84C1800E7FB65 /* UIImage+GPS.h */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1078, 465}}"; - sepNavSelRange = "{293, 0}"; - sepNavVisRange = "{0, 340}"; + sepNavIntBoundsRect = "{{0, 0}, {1078, 467}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRange = "{0, 335}"; }; }; 032A7E0510B84C1800E7FB65 /* UIImage+GPS.m */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1167, 520}}"; - sepNavSelRange = "{356, 69}"; - sepNavVisRange = "{0, 1639}"; + sepNavIntBoundsRect = "{{0, 0}, {1167, 546}}"; + sepNavSelRange = "{548, 0}"; + sepNavVisRange = "{101, 1563}"; }; }; 032A7EAF10B85E9C00E7FB65 /* SPMapVC.h */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1078, 619}}"; - sepNavSelRange = "{439, 53}"; - sepNavVisRange = "{0, 599}"; + sepNavIntBoundsRect = "{{0, 0}, {1391, 377}}"; + sepNavSelRange = "{439, 52}"; + sepNavVisRange = "{164, 435}"; }; }; 032A7EB010B85E9C00E7FB65 /* SPMapVC.m */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1078, 1248}}"; - sepNavSelRange = "{1741, 0}"; - sepNavVisRange = "{164, 1319}"; + sepNavIntBoundsRect = "{{0, 0}, {1391, 1326}}"; + sepNavSelRange = "{211, 24}"; + sepNavVisRange = "{210, 697}"; }; }; 032A7EC910B8617C00E7FB65 /* SPImageAnnotation.h */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1078, 434}}"; - sepNavSelRange = "{604, 0}"; - sepNavVisRange = "{0, 650}"; + sepNavIntBoundsRect = "{{0, 0}, {1391, 377}}"; + sepNavSelRange = "{523, 122}"; + sepNavVisRange = "{107, 580}"; }; }; 032A7ECA10B8617C00E7FB65 /* SPImageAnnotation.m */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1078, 559}}"; - sepNavSelRange = "{554, 0}"; - sepNavVisRange = "{27, 858}"; + sepNavIntBoundsRect = "{{0, 0}, {1391, 559}}"; + sepNavSelRange = "{307, 123}"; + sepNavVisRange = "{529, 361}"; }; }; 032A819510B8E7C600E7FB65 /* SPEmailReportVC.h */ = { @@ -496,204 +580,2773 @@ sepNavVisRange = "{321, 668}"; }; }; - 032E9C1C12369AB400B08386 /* PBXTextBookmark */ = { + 033804BA127CD64300EAFE64 /* PBXTextBookmark */ = { isa = PBXTextBookmark; - fRef = 0364948A10B28BC800C88803 /* SPSourceTVC.h */; - name = "SPSourceTVC.h: 27"; + fRef = 0364934010B16DDD00C88803 /* SPSourceKeyboardTVC.m */; + name = "SPSourceKeyboardTVC.m: 61"; rLen = 0; - rLoc = 490; + rLoc = 1582; rType = 0; - vrLen = 497; - vrLoc = 0; - }; - 0364933F10B16DDD00C88803 /* SPSourceKeyboardTVC.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1078, 452}}"; - sepNavSelRange = "{241, 0}"; - sepNavVisRange = "{0, 241}"; - }; - }; - 0364934010B16DDD00C88803 /* SPSourceKeyboardTVC.m */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1078, 1638}}"; - sepNavSelRange = "{0, 0}"; - sepNavVisRange = "{0, 1049}"; - }; + vrLen = 1069; + vrLoc = 1183; }; - 0364948A10B28BC800C88803 /* SPSourceTVC.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1078, 507}}"; - sepNavSelRange = "{490, 0}"; - sepNavVisRange = "{0, 497}"; - }; - }; - 0364948B10B28BC800C88803 /* SPSourceTVC.m */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1078, 1105}}"; - sepNavSelRange = "{359, 0}"; - sepNavVisRange = "{0, 947}"; - }; + 033804BB127CD64E00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0364934010B16DDD00C88803 /* SPSourceKeyboardTVC.m */; + name = "SPSourceKeyboardTVC.m: 61"; + rLen = 0; + rLoc = 1582; + rType = 0; + vrLen = 1069; + vrLoc = 1183; }; - 037D3A7F10F3D57B003A85B0 /* SPEmailMobileMeAccount.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1078, 540}}"; - sepNavSelRange = "{0, 0}"; - sepNavVisRange = "{0, 274}"; - }; + 033804BF127CD64E00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; }; - 037D3A8010F3D57B003A85B0 /* SPEmailMobileMeAccount.m */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1391, 481}}"; - sepNavSelRange = "{856, 0}"; - sepNavVisRange = "{396, 640}"; - }; + 033804D4127CD6FE00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033804D5127CD6FE00EAFE64 /* NSFileManager.h */; + name = "NSFileManager.h: 164"; + rLen = 91; + rLoc = 11731; + rType = 0; + vrLen = 3171; + vrLoc = 10421; }; - 03B6EFC910BB547600CF9139 /* gpl-2.0.txt */ = { + 033804D5127CD6FE00EAFE64 /* NSFileManager.h */ = { + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.h; + name = NSFileManager.h; + path = /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h; + sourceTree = ""; uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1078, 4420}}"; - sepNavSelRange = "{0, 0}"; - sepNavVisRange = "{0, 1849}"; + sepNavIntBoundsRect = "{{0, 0}, {5304, 5239}}"; + sepNavSelRange = "{2619, 36}"; + sepNavVisRange = "{1720, 2473}"; }; }; - 03F2470F1236E1440017F214 /* FMDatabase.m */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1078, 10023}}"; - sepNavSelRange = "{799, 15}"; - sepNavVisRange = "{508, 765}"; - }; + 033804D6127CD6FE00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + comments = "'directoryContentsAtPath:' is deprecated (declared at /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h:164)"; + fRef = 0364934010B16DDD00C88803 /* SPSourceKeyboardTVC.m */; + rLen = 1; + rLoc = 72; + rType = 1; }; - 03F247131236E1440017F214 /* FMResultSet.m */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1078, 5148}}"; - sepNavSelRange = "{6730, 50}"; - sepNavVisRange = "{6229, 1085}"; - }; + 033804D7127CD6FE00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0364934010B16DDD00C88803 /* SPSourceKeyboardTVC.m */; + name = "SPSourceKeyboardTVC.m: 66"; + rLen = 0; + rLoc = 1701; + rType = 0; + vrLen = 1067; + vrLoc = 1185; }; - 03F247DE1236EABC0017F214 /* PBXTextBookmark */ = { + 033804D8127CD70000EAFE64 /* PBXTextBookmark */ = { isa = PBXTextBookmark; - fRef = 03F247DF1236EABC0017F214 /* NSDictionary.h */; - name = "NSDictionary.h: 12"; - rLen = 94; - rLoc = 241; + fRef = 0364934010B16DDD00C88803 /* SPSourceKeyboardTVC.m */; + name = "SPSourceKeyboardTVC.m: 66"; + rLen = 0; + rLoc = 1701; rType = 0; - vrLen = 969; - vrLoc = 1901; + vrLen = 924; + vrLoc = 1185; }; - 03F247DF1236EABC0017F214 /* NSDictionary.h */ = { - isa = PBXFileReference; - name = NSDictionary.h; - path = /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDictionary.h; - sourceTree = ""; + 033804DE127CD70000EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 1906; + vrLoc = 1561; }; - 03F248041236EC710017F214 /* PBXTextBookmark */ = { + 033804E1127CD7E100EAFE64 /* PBXTextBookmark */ = { isa = PBXTextBookmark; - fRef = 03F248051236EC710017F214 /* NSString.h */; - name = "NSString.h: 88"; - rLen = 71; - rLoc = 4252; + fRef = 033804D5127CD6FE00EAFE64 /* NSFileManager.h */; + name = "NSFileManager.h: 60"; + rLen = 36; + rLoc = 2619; rType = 0; - vrLen = 869; - vrLoc = 3642; + vrLen = 1438; + vrLoc = 2139; }; - 03F248051236EC710017F214 /* NSString.h */ = { - isa = PBXFileReference; - name = NSString.h; - path = /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h; - sourceTree = ""; + 033804E2127CD7E100EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0364934010B16DDD00C88803 /* SPSourceKeyboardTVC.m */; + name = "SPSourceKeyboardTVC.m: 66"; + rLen = 13; + rLoc = 1727; + rType = 0; + vrLen = 723; + vrLoc = 1527; }; - 03F248161236EE3A0017F214 /* PBXTextBookmark */ = { + 033804E3127CD7E100EAFE64 /* PBXTextBookmark */ = { isa = PBXTextBookmark; - fRef = 0328F96010B0CB140074A5A1 /* SPSourceAddressBookTVC.m */; - name = "SPSourceAddressBookTVC.m: 18"; + fRef = 0364934010B16DDD00C88803 /* SPSourceKeyboardTVC.m */; + name = "SPSourceKeyboardTVC.m: 71"; rLen = 0; - rLoc = 349; + rLoc = 1872; rType = 0; - vrLen = 881; - vrLoc = 0; - }; - 03F2481D1236EFAC0017F214 /* NSNumber+SP.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1078, 460}}"; - sepNavSelRange = "{202, 0}"; - sepNavVisRange = "{0, 238}"; - }; + vrLen = 417; + vrLoc = 2786; }; - 03F2481E1236EFAC0017F214 /* NSNumber+SP.m */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1391, 481}}"; - sepNavSelRange = "{483, 0}"; - sepNavVisRange = "{261, 470}"; - }; + 033804E4127CD7E700EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0364934010B16DDD00C88803 /* SPSourceKeyboardTVC.m */; + name = "SPSourceKeyboardTVC.m: 71"; + rLen = 0; + rLoc = 1872; + rType = 0; + vrLen = 898; + vrLoc = 2525; }; - 03F248261236F02C0017F214 /* PBXTextBookmark */ = { + 033804E5127CD7E700EAFE64 /* PBXTextBookmark */ = { isa = PBXTextBookmark; - fRef = 03F2470F1236E1440017F214 /* FMDatabase.m */; - name = "FMDatabase.m: 45"; - rLen = 15; - rLoc = 799; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; rType = 0; - vrLen = 765; - vrLoc = 508; + vrLen = 2118; + vrLoc = 1561; }; - 03F248331236F0DD0017F214 /* PBXTextBookmark */ = { + 033804E7127CD84600EAFE64 /* PBXTextBookmark */ = { isa = PBXTextBookmark; - fRef = 0328F6BB10B088DD0074A5A1 /* SPSourcePhoneTVC.m */; - name = "SPSourcePhoneTVC.m: 133"; + fRef = 0364934010B16DDD00C88803 /* SPSourceKeyboardTVC.m */; + name = "SPSourceKeyboardTVC.m: 71"; rLen = 0; - rLoc = 4446; + rLoc = 1872; rType = 0; - vrLen = 1267; - vrLoc = 3392; + vrLen = 898; + vrLoc = 2525; }; - 03F248341236F0DD0017F214 /* PBXTextBookmark */ = { + 033804E8127CD84A00EAFE64 /* PBXTextBookmark */ = { isa = PBXTextBookmark; - fRef = 03F2481D1236EFAC0017F214 /* NSNumber+SP.h */; - name = "NSNumber+SP.h: 12"; + fRef = 0364934010B16DDD00C88803 /* SPSourceKeyboardTVC.m */; + name = "SPSourceKeyboardTVC.m: 71"; rLen = 0; - rLoc = 202; + rLoc = 1872; rType = 0; - vrLen = 238; - vrLoc = 0; + vrLen = 417; + vrLoc = 2786; }; - 03F2483D1236F3300017F214 /* PBXTextBookmark */ = { + 033804EB127CD86200EAFE64 /* PBXTextBookmark */ = { isa = PBXTextBookmark; - fRef = 03F2481E1236EFAC0017F214 /* NSNumber+SP.m */; - name = "NSNumber+SP.m: 27"; + fRef = 0364934010B16DDD00C88803 /* SPSourceKeyboardTVC.m */; + name = "SPSourceKeyboardTVC.m: 71"; rLen = 0; - rLoc = 483; + rLoc = 1872; rType = 0; - vrLen = 728; - vrLoc = 3; + vrLen = 898; + vrLoc = 2525; }; - 03F248611236F4CE0017F214 /* PBXTextBookmark */ = { + 033804EC127CD86200EAFE64 /* PBXTextBookmark */ = { isa = PBXTextBookmark; - fRef = 032A7E0510B84C1800E7FB65 /* UIImage+GPS.m */; - name = "UIImage+GPS.m: 16"; - rLen = 69; - rLoc = 356; + fRef = 0328F61710B07F360074A5A1 /* SPSourceWifiTVC.h */; + name = "SPSourceWifiTVC.h: 1"; + rLen = 0; + rLoc = 0; rType = 0; - vrLen = 1639; + vrLen = 278; vrLoc = 0; }; - 03F2486C1236F54A0017F214 /* PBXTextBookmark */ = { + 033804ED127CD86200EAFE64 /* PBXBookmark */ = { + isa = PBXBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + }; + 033804EE127CD86200EAFE64 /* PBXTextBookmark */ = { isa = PBXTextBookmark; - fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; - name = "SPSourcePhotosTVC.m: 91"; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 27"; rLen = 0; - rLoc = 2927; + rLoc = 726; rType = 0; - vrLen = 920; - vrLoc = 2124; + vrLen = 990; + vrLoc = 38; + }; + 03380502127CDCC300EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0364934010B16DDD00C88803 /* SPSourceKeyboardTVC.m */; + name = "SPSourceKeyboardTVC.m: 71"; + rLen = 0; + rLoc = 1872; + rType = 0; + vrLen = 417; + vrLoc = 2786; + }; + 03380503127CDCC300EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 27"; + rLen = 0; + rLoc = 726; + rType = 0; + vrLen = 447; + vrLoc = 257; + }; + 03380504127CDCCC00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 27"; + rLen = 0; + rLoc = 726; + rType = 0; + vrLen = 990; + vrLoc = 38; + }; + 03380505127CDCCC00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 033805B6127CEC4200EAFE64 /* OUILookupTool.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1078, 467}}"; + sepNavSelRange = "{166, 0}"; + sepNavVisRange = "{0, 638}"; + }; + }; + 033805B7127CEC4200EAFE64 /* OUILookupTool.m */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1078, 1378}}"; + sepNavSelRange = "{3021, 117}"; + sepNavVisRange = "{2544, 978}"; + }; + }; + 033805B9127CEC5400EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 032A7E0510B84C1800E7FB65 /* UIImage+GPS.m */; + name = "UIImage+GPS.m: 20"; + rLen = 0; + rLoc = 548; + rType = 0; + vrLen = 1563; + vrLoc = 101; + }; + 033805BA127CEC5400EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B6127CEC4200EAFE64 /* OUILookupTool.h */; + name = "OUILookupTool.h: 8"; + rLen = 0; + rLoc = 132; + rType = 0; + vrLen = 754; + vrLoc = 0; + }; + 033805BB127CEC5400EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 032A7E0410B84C1800E7FB65 /* UIImage+GPS.h */; + name = "UIImage+GPS.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 335; + vrLoc = 0; + }; + 033805BC127CEC5400EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 11"; + rLen = 0; + rLoc = 230; + rType = 0; + vrLen = 949; + vrLoc = 84; + }; + 033805BD127CEC5400EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 29"; + rLen = 0; + rLoc = 831; + rType = 0; + vrLen = 992; + vrLoc = 41; + }; + 033805BE127CEC5600EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 29"; + rLen = 0; + rLoc = 831; + rType = 0; + vrLen = 447; + vrLoc = 257; + }; + 033805BF127CECE300EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61710B07F360074A5A1 /* SPSourceWifiTVC.h */; + name = "SPSourceWifiTVC.h: 14"; + rLen = 21; + rLoc = 293; + rType = 0; + vrLen = 327; + vrLoc = 0; + }; + 033805C0127CECE300EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B6127CEC4200EAFE64 /* OUILookupTool.h */; + name = "OUILookupTool.h: 14"; + rLen = 94; + rLoc = 223; + rType = 0; + vrLen = 754; + vrLoc = 0; + }; + 033805C1127CECE300EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 16"; + rLen = 0; + rLoc = 230; + rType = 0; + vrLen = 1006; + vrLoc = 1161; + }; + 033805C2127CECE300EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 18"; + rLen = 0; + rLoc = 283; + rType = 0; + vrLen = 999; + vrLoc = 41; + }; + 033805C3127CECE300EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 53"; + rLen = 0; + rLoc = 1246; + rType = 0; + vrLen = 929; + vrLoc = 425; + }; + 033805C4127CECE300EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 033805C7127CECF300EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 18"; + rLen = 0; + rLoc = 283; + rType = 0; + vrLen = 1012; + vrLoc = 175; + }; + 033805C8127CECF300EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + comments = "JSON.h: No such file or directory"; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + rLen = 1; + rLoc = 9; + rType = 1; + }; + 033805C9127CECF300EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 10"; + rLen = 0; + rLoc = 159; + rType = 0; + vrLen = 668; + vrLoc = 0; + }; + 033805CA127CECF300EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 033805E8127CED0300EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 10"; + rLen = 0; + rLoc = 175; + rType = 0; + vrLen = 668; + vrLoc = 0; + }; + 033805E9127CED2F00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 34"; + rLen = 0; + rLoc = 831; + rType = 0; + vrLen = 401; + vrLoc = 387; + }; + 033805EA127CED2F00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 10"; + rLen = 0; + rLoc = 175; + rType = 0; + vrLen = 227; + vrLoc = 0; + }; + 033805EB127CED6900EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 10"; + rLen = 0; + rLoc = 159; + rType = 0; + vrLen = 665; + vrLoc = 3; + }; + 033805EC127CED6900EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 19"; + rLen = 0; + rLoc = 283; + rType = 0; + vrLen = 987; + vrLoc = 175; + }; + 033805ED127CED6900EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 32"; + rLen = 0; + rLoc = 726; + rType = 0; + vrLen = 1037; + vrLoc = 283; + }; + 033805EE127CED7000EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 10"; + rLen = 0; + rLoc = 175; + rType = 0; + vrLen = 227; + vrLoc = 0; + }; + 033805EF127CED7000EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 34"; + rLen = 0; + rLoc = 831; + rType = 0; + vrLen = 499; + vrLoc = 562; + }; + 033805F2127CED7C00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 34"; + rLen = 0; + rLoc = 831; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 033805F3127CED7C00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + comments = "'NSFileManager' may not respond to '-directoryContentsAtPath:error:'"; + fRef = 0364934010B16DDD00C88803 /* SPSourceKeyboardTVC.m */; + rLen = 1; + rLoc = 66; + rType = 1; + }; + 033805F4127CED7C00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0364934010B16DDD00C88803 /* SPSourceKeyboardTVC.m */; + name = "SPSourceKeyboardTVC.m: 67"; + rLen = 0; + rLoc = 1701; + rType = 0; + vrLen = 1018; + vrLoc = 1318; + }; + 033805F5127CED8D00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0364934010B16DDD00C88803 /* SPSourceKeyboardTVC.m */; + name = "SPSourceKeyboardTVC.m: 67"; + rLen = 0; + rLoc = 1701; + rType = 0; + vrLen = 910; + vrLoc = 1248; + }; + 033805F6127CED8D00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 1906; + vrLoc = 1561; + }; + 033805F8127CED9A00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 34"; + rLen = 0; + rLoc = 831; + rType = 0; + vrLen = 499; + vrLoc = 562; + }; + 033805F9127CED9A00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0364934010B16DDD00C88803 /* SPSourceKeyboardTVC.m */; + name = "SPSourceKeyboardTVC.m: 67"; + rLen = 0; + rLoc = 1757; + rType = 0; + vrLen = 388; + vrLoc = 1530; + }; + 033805FE127CEDA600EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0364934010B16DDD00C88803 /* SPSourceKeyboardTVC.m */; + name = "SPSourceKeyboardTVC.m: 67"; + rLen = 0; + rLoc = 1701; + rType = 0; + vrLen = 931; + vrLoc = 1403; + }; + 033805FF127CEDA600EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 34"; + rLen = 0; + rLoc = 831; + rType = 0; + vrLen = 1055; + vrLoc = 264; + }; + 03380600127CEDA600EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 34"; + rLen = 0; + rLoc = 831; + rType = 0; + vrLen = 1090; + vrLoc = 264; + }; + 03380607127CEDE300EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0364934010B16DDD00C88803 /* SPSourceKeyboardTVC.m */; + name = "SPSourceKeyboardTVC.m: 67"; + rLen = 0; + rLoc = 1757; + rType = 0; + vrLen = 388; + vrLoc = 1530; + }; + 03380608127CEDE300EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 34"; + rLen = 0; + rLoc = 831; + rType = 0; + vrLen = 430; + vrLoc = 204; + }; + 03380609127CEDE300EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 40"; + rLen = 0; + rLoc = 308; + rType = 0; + vrLen = 356; + vrLoc = 1803; + }; + 0338060A127CEDE300EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 40"; + rLen = 0; + rLoc = 308; + rType = 0; + vrLen = 356; + vrLoc = 1803; + }; + 0338060C127CEDE300EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0338060D127CEDE300EAFE64 /* asm -[SPSourceWifiTVC loadData] 0x00003e7c */; + name = "asm -[SPSourceWifiTVC loadData] 0x00003e7c: 11"; + rLen = 0; + rLoc = 475; + rType = 0; + vrLen = 660; + vrLoc = 0; + }; + 0338060D127CEDE300EAFE64 /* asm -[SPSourceWifiTVC loadData] 0x00003e7c */ = { + isa = PBXFileReference; + lastKnownFileType = text; + path = "asm -[SPSourceWifiTVC loadData] 0x00003e7c"; + sourceTree = ""; + }; + 0338060E127CEDE300EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0338060F127CEDE300EAFE64 /* asm +[OUILookupTool fetchLocationForBSSID:delegate:] 0x0001f110 */; + rLen = 0; + rLoc = 9223372036854775808; + rType = 0; + }; + 0338060F127CEDE300EAFE64 /* asm +[OUILookupTool fetchLocationForBSSID:delegate:] 0x0001f110 */ = { + isa = PBXFileReference; + lastKnownFileType = text; + path = "asm +[OUILookupTool fetchLocationForBSSID:delegate:] 0x0001f110"; + sourceTree = ""; + }; + 03380610127CEDE300EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 03380611127CEDE300EAFE64 /* asm +[OUILookupTool fetchLocationForBSSID:delegate:] 0x0001f110 */; + name = "asm +[OUILookupTool fetchLocationForBSSID:delegate:] 0x0001f110: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 684; + vrLoc = 2826; + }; + 03380611127CEDE300EAFE64 /* asm +[OUILookupTool fetchLocationForBSSID:delegate:] 0x0001f110 */ = { + isa = PBXFileReference; + lastKnownFileType = text; + path = "asm +[OUILookupTool fetchLocationForBSSID:delegate:] 0x0001f110"; + sourceTree = ""; + }; + 03380612127CEDFC00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 34"; + rLen = 0; + rLoc = 831; + rType = 0; + vrLen = 1055; + vrLoc = 264; + }; + 03380613127CEDFC00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 03380614127CEDFC00EAFE64 /* NSURLConnection.h */; + name = "NSURLConnection.h: 344"; + rLen = 95; + rLoc = 17517; + rType = 0; + vrLen = 1722; + vrLoc = 16723; + }; + 03380614127CEDFC00EAFE64 /* NSURLConnection.h */ = { + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.h; + name = NSURLConnection.h; + path = /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLConnection.h; + sourceTree = ""; + }; + 03380615127CEDFC00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 69"; + rLen = 0; + rLoc = 2551; + rType = 0; + vrLen = 1233; + vrLoc = 869; + }; + 03380616127CEDFC00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 78"; + rLen = 0; + rLoc = 2551; + rType = 0; + vrLen = 1004; + vrLoc = 1278; + }; + 03380619127CEDFD00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 78"; + rLen = 0; + rLoc = 2551; + rType = 0; + vrLen = 425; + vrLoc = 1408; + }; + 0338061C127CEE0100EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 78"; + rLen = 0; + rLoc = 2551; + rType = 0; + vrLen = 1010; + vrLoc = 1278; + }; + 0338061D127CEE0100EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 78"; + rLen = 0; + rLoc = 2551; + rType = 0; + vrLen = 1010; + vrLoc = 1278; + }; + 0338061E127CEE0200EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 78"; + rLen = 0; + rLoc = 2551; + rType = 0; + vrLen = 1004; + vrLoc = 1278; + }; + 0338061F127CEE0200EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 1906; + vrLoc = 1561; + }; + 03380622127CEE2200EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 78"; + rLen = 0; + rLoc = 2551; + rType = 0; + vrLen = 425; + vrLoc = 1408; + }; + 03380623127CEE2200EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + rLen = 0; + rLoc = 17; + rType = 1; + }; + 03380624127CEE2200EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 18"; + rLen = 0; + rLoc = 283; + rType = 0; + vrLen = 430; + vrLoc = 204; + }; + 03380626127CEE2200EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 03380627127CEE2200EAFE64 /* asm -[SPSourceWifiTVC loadData] 0x00003e3c */; + rLen = 0; + rLoc = 10; + rType = 1; + }; + 03380627127CEE2200EAFE64 /* asm -[SPSourceWifiTVC loadData] 0x00003e3c */ = { + isa = PBXFileReference; + lastKnownFileType = text; + path = "asm -[SPSourceWifiTVC loadData] 0x00003e3c"; + sourceTree = ""; + }; + 03380628127CEE2200EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 03380629127CEE2200EAFE64 /* asm -[SPSourceWifiTVC loadData] 0x00003e3c */; + name = "asm -[SPSourceWifiTVC loadData] 0x00003e3c: 11"; + rLen = 0; + rLoc = 475; + rType = 0; + vrLen = 660; + vrLoc = 0; + }; + 03380629127CEE2200EAFE64 /* asm -[SPSourceWifiTVC loadData] 0x00003e3c */ = { + isa = PBXFileReference; + lastKnownFileType = text; + path = "asm -[SPSourceWifiTVC loadData] 0x00003e3c"; + sourceTree = ""; + }; + 0338063A127CEE4800EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 18"; + rLen = 0; + rLoc = 283; + rType = 0; + vrLen = 862; + vrLoc = 0; + }; + 0338063B127CEE4800EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 03380614127CEDFC00EAFE64 /* NSURLConnection.h */; + name = "NSURLConnection.h: 85"; + rLen = 90; + rLoc = 3402; + rType = 0; + vrLen = 1999; + vrLoc = 2556; + }; + 0338063C127CEE4800EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 63"; + rLen = 0; + rLoc = 2049; + rType = 0; + vrLen = 1186; + vrLoc = 647; + }; + 0338063D127CEE4800EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 63"; + rLen = 0; + rLoc = 2049; + rType = 0; + vrLen = 1225; + vrLoc = 608; + }; + 0338063E127CEE4B00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 63"; + rLen = 0; + rLoc = 2049; + rType = 0; + vrLen = 1321; + vrLoc = 608; + }; + 0338063F127CEE4B00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 03380685127CEF5D00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 18"; + rLen = 0; + rLoc = 283; + rType = 0; + vrLen = 430; + vrLoc = 204; + }; + 03380686127CEF5D00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 63"; + rLen = 0; + rLoc = 2049; + rType = 0; + vrLen = 491; + vrLoc = 1341; + }; + 03380690127CEF7700EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 38"; + rLen = 75; + rLoc = 231; + rType = 0; + vrLen = 1122; + vrLoc = 362; + }; + 03380691127CEF7700EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 18"; + rLen = 0; + rLoc = 283; + rType = 0; + vrLen = 862; + vrLoc = 0; + }; + 03380692127CEF7700EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 03380693127CEF7700EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 033806A5127CEF9300EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 033806A6127CEF9300EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 033806AF127CEFBA00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 033806B0127CEFBA00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 033806C1127CF03000EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 033806C2127CF03000EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 033806CE127CF05300EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 033806CF127CF05300EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 033806E3127CF0A600EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 033806E4127CF0A600EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 033806EB127CF0B500EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 033806EC127CF0B500EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 033806F6127CF0D800EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 033806F7127CF0D800EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 03380705127CF11900EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 03380706127CF11900EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 03380709127CF11F00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 0338070A127CF11F00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 03380720127CF14500EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 03380721127CF14500EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 03380729127CF18700EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 0338072A127CF18700EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 03380732127CF1CA00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 03380733127CF1CA00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 03380736127CF1D100EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 03380737127CF1D100EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 03380740127CF23D00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 03380741127CF23D00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 03380748127CF24A00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 03380749127CF24A00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 03380753127CF28100EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 03380754127CF28100EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 0338075E127CF28E00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 0338075F127CF28E00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 0338076C127CF29C00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 0338076D127CF29C00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 03380780127CF2D900EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 03380781127CF2D900EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 03380790127CF30200EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 03380791127CF30200EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 0338079B127CF35500EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 0338079C127CF35500EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 033807A3127CF36800EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 033807A4127CF36800EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 033807A7127CF38700EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 033807A8127CF38700EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 033807AA127CF39A00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 033807AB127CF39A00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 033807AD127CF3B000EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 033807AE127CF3B000EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 033807B4127CF3BF00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 033807B5127CF3BF00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 033807BC127CF3D500EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 033807BD127CF3D500EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 033807C0127CF3DC00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 033807C1127CF3DC00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 033807C3127CF40500EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 033807C4127CF40500EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 033807C6127CF40A00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 033807C7127CF40A00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 033807CD127CF41700EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 033807CE127CF41700EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 033807D1127CF41E00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 033807D2127CF41E00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 033807D4127CF66100EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 033807D5127CF66100EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 033807DE127CF66F00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 033807DF127CF66F00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 033807E2127CF69E00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 033807E3127CF69E00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 033807F9127CF8A500EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 033807FA127CF8A500EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 03380813127CFB2700EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 03380814127CFB2700EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 0338081D127CFB7100EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 0338081E127CFB7100EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 03380828127CFB7F00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 03380829127CFB7F00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 03380836127CFBAC00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 03380837127CFBAC00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 03380844127CFCDB00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 03380845127CFCDB00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 03380855127CFD4B00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 03380856127CFD4B00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 03380860127CFD7A00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 153; + rLoc = 1155; + rType = 0; + vrLen = 931; + vrLoc = 423; + }; + 03380861127CFD7A00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 0338087D127CFF0A00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 11"; + rLen = 0; + rLoc = 176; + rType = 0; + vrLen = 1146; + vrLoc = 0; + }; + 0338087E127CFF0A00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B6127CEC4200EAFE64 /* OUILookupTool.h */; + name = "OUILookupTool.h: 14"; + rLen = 32; + rLoc = 191; + rType = 0; + vrLen = 674; + vrLoc = 0; + }; + 0338087F127CFF0A00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61710B07F360074A5A1 /* SPSourceWifiTVC.h */; + name = "SPSourceWifiTVC.h: 14"; + rLen = 21; + rLoc = 293; + rType = 0; + vrLen = 327; + vrLoc = 0; + }; + 03380880127CFF0A00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 03380881127CFF0A00EAFE64 /* CLLocation.h */; + name = "CLLocation.h: 63"; + rLen = 26; + rLoc = 1399; + rType = 0; + vrLen = 788; + vrLoc = 906; + }; + 03380881127CFF0A00EAFE64 /* CLLocation.h */ = { + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.h; + name = CLLocation.h; + path = /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.1.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CLLocation.h; + sourceTree = ""; + }; + 03380882127CFF0A00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 46"; + rLen = 0; + rLoc = 1276; + rType = 0; + vrLen = 1091; + vrLoc = 263; + }; + 03380883127CFF0A00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 47"; + rLen = 0; + rLoc = 1304; + rType = 0; + vrLen = 1123; + vrLoc = 231; + }; + 03380884127CFF1000EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 56"; + rLen = 0; + rLoc = 2165; + rType = 0; + vrLen = 642; + vrLoc = 358; + }; + 03380885127CFF1000EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 47"; + rLen = 0; + rLoc = 1304; + rType = 0; + vrLen = 529; + vrLoc = 825; + }; + 03380888127CFF3D00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 31"; + rLen = 0; + rLoc = 763; + rType = 0; + vrLen = 1091; + vrLoc = 263; + }; + 03380889127CFF6500EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 31"; + rLen = 0; + rLoc = 763; + rType = 0; + vrLen = 403; + vrLoc = 777; + }; + 0338088C127CFFAC00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 51"; + rLen = 0; + rLoc = 1310; + rType = 0; + vrLen = 1035; + vrLoc = 319; + }; + 0338088D127CFFAC00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 68"; + rLen = 0; + rLoc = 2547; + rType = 0; + vrLen = 1271; + vrLoc = 1715; + }; + 0338088E127CFFAC00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 15"; + rLen = 0; + rLoc = 230; + rType = 0; + vrLen = 1440; + vrLoc = 132; + }; + 0338088F127CFFD000EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 31"; + rLen = 0; + rLoc = 763; + rType = 0; + vrLen = 403; + vrLoc = 777; + }; + 03380890127CFFD000EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 15"; + rLen = 0; + rLoc = 230; + rType = 0; + vrLen = 414; + vrLoc = 132; + }; + 03380893127D004400EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + rLen = 1; + rLoc = 15; + rType = 1; + }; + 03380894127D004400EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 60"; + rLen = 0; + rLoc = 2233; + rType = 0; + vrLen = 1523; + vrLoc = 1058; + }; + 03380895127D009200EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 60"; + rLen = 0; + rLoc = 2233; + rType = 0; + vrLen = 820; + vrLoc = 1058; + }; + 03380896127D00AB00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B6127CEC4200EAFE64 /* OUILookupTool.h */; + name = "OUILookupTool.h: 15"; + rLen = 94; + rLoc = 223; + rType = 0; + vrLen = 674; + vrLoc = 0; + }; + 03380897127D00AB00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 16"; + rLen = 0; + rLoc = 283; + rType = 0; + vrLen = 990; + vrLoc = 41; + }; + 03380898127D00AB00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 12"; + rLen = 0; + rLoc = 176; + rType = 0; + vrLen = 1110; + vrLoc = 0; + }; + 03380899127D00AB00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 11"; + rLen = 0; + rLoc = 176; + rType = 0; + vrLen = 1129; + vrLoc = 3; + }; + 0338089A127D00AB00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 1906; + vrLoc = 1561; + }; + 0338089E127D00F000EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 69"; + rLen = 0; + rLoc = 2547; + rType = 0; + vrLen = 1201; + vrLoc = 1640; + }; + 0338089F127D00F000EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 16"; + rLen = 0; + rLoc = 283; + rType = 0; + vrLen = 879; + vrLoc = 3; + }; + 033808A0127D00F000EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 0; + rLoc = 1153; + rType = 0; + vrLen = 1035; + vrLoc = 319; + }; + 033808A1127D00F000EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2118; + vrLoc = 1561; + }; + 033808A2127D00FC00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 0; + rLoc = 1153; + rType = 0; + vrLen = 1035; + vrLoc = 319; + }; + 033808A3127D011600EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 0; + rLoc = 1153; + rType = 0; + vrLen = 1035; + vrLoc = 319; + }; + 033808A4127D011600EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 1906; + vrLoc = 1561; + }; + 033808A5127D012B00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 60"; + rLen = 0; + rLoc = 2233; + rType = 0; + vrLen = 820; + vrLoc = 1058; + }; + 033808A6127D012B00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 44"; + rLen = 0; + rLoc = 1153; + rType = 0; + vrLen = 409; + vrLoc = 945; + }; + 033808A9127D013700EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 17"; + rLen = 0; + rLoc = 350; + rType = 0; + vrLen = 1044; + vrLoc = 172; + }; + 033808AA127D013700EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 17"; + rLen = 0; + rLoc = 350; + rType = 0; + vrLen = 926; + vrLoc = 172; + }; + 033808AB127D013700EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 1906; + vrLoc = 1561; + }; + 033808AF127D015100EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 17"; + rLen = 0; + rLoc = 350; + rType = 0; + vrLen = 267; + vrLoc = 172; + }; + 033808B0127D015100EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 17"; + rLen = 0; + rLoc = 350; + rType = 0; + vrLen = 897; + vrLoc = 0; + }; + 033808B1127D015200EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 17"; + rLen = 0; + rLoc = 350; + rType = 0; + vrLen = 849; + vrLoc = 0; + }; + 033808B2127D015200EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 1906; + vrLoc = 1561; + }; + 033808B4127D015D00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 17"; + rLen = 0; + rLoc = 350; + rType = 0; + vrLen = 267; + vrLoc = 172; + }; + 033808B7127D027F00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 17"; + rLen = 11; + rLoc = 303; + rType = 0; + vrLen = 945; + vrLoc = 3; + }; + 033808B8127D027F00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + rLen = 1; + rLoc = 101; + rType = 1; + }; + 033808B9127D027F00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 101"; + rLen = 0; + rLoc = 3537; + rType = 0; + vrLen = 982; + vrLoc = 2581; + }; + 033808BA127D028000EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 101"; + rLen = 0; + rLoc = 3537; + rType = 0; + vrLen = 982; + vrLoc = 2581; + }; + 033808BB127D028000EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 1906; + vrLoc = 1561; + }; + 033808BF127D028C00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 18"; + rLen = 0; + rLoc = 350; + rType = 0; + vrLen = 265; + vrLoc = 172; + }; + 033808C0127D028C00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 101"; + rLen = 0; + rLoc = 3537; + rType = 0; + vrLen = 485; + vrLoc = 3078; + }; + 033808C3127D02A600EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 102"; + rLen = 1; + rLoc = 3649; + rType = 0; + vrLen = 960; + vrLoc = 2563; + }; + 033808C4127D02A600EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B6127CEC4200EAFE64 /* OUILookupTool.h */; + name = "OUILookupTool.h: 27"; + rLen = 0; + rLoc = 638; + rType = 0; + vrLen = 674; + vrLoc = 0; + }; + 033808C5127D02C000EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 101"; + rLen = 0; + rLoc = 3537; + rType = 0; + vrLen = 445; + vrLoc = 3078; + }; + 033808C6127D02C000EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B6127CEC4200EAFE64 /* OUILookupTool.h */; + name = "OUILookupTool.h: 27"; + rLen = 0; + rLoc = 638; + rType = 0; + vrLen = 446; + vrLoc = 228; + }; + 033808C9127D02D300EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B6127CEC4200EAFE64 /* OUILookupTool.h */; + name = "OUILookupTool.h: 15"; + rLen = 94; + rLoc = 223; + rType = 0; + vrLen = 674; + vrLoc = 0; + }; + 033808CA127D02D300EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 64"; + rLen = 0; + rLoc = 2238; + rType = 0; + vrLen = 1050; + vrLoc = 2234; + }; + 033808CB127D02D300EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 33"; + rLen = 0; + rLoc = 726; + rType = 0; + vrLen = 895; + vrLoc = 3; + }; + 033808CC127D02FC00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B6127CEC4200EAFE64 /* OUILookupTool.h */; + name = "OUILookupTool.h: 27"; + rLen = 0; + rLoc = 638; + rType = 0; + vrLen = 446; + vrLoc = 228; + }; + 033808CD127D02FC00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 33"; + rLen = 0; + rLoc = 726; + rType = 0; + vrLen = 374; + vrLoc = 524; + }; + 033808E8127D047800EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61710B07F360074A5A1 /* SPSourceWifiTVC.h */; + name = "SPSourceWifiTVC.h: 14"; + rLen = 21; + rLoc = 293; + rType = 0; + vrLen = 327; + vrLoc = 0; + }; + 033808E9127D047800EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 67"; + rLen = 20; + rLoc = 2524; + rType = 0; + vrLen = 1358; + vrLoc = 1257; + }; + 033808EA127D047800EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B6127CEC4200EAFE64 /* OUILookupTool.h */; + name = "OUILookupTool.h: 9"; + rLen = 0; + rLoc = 166; + rType = 0; + vrLen = 638; + vrLoc = 0; + }; + 033808EB127D047800EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + comments = "'coordinate' undeclared (first use in this function)"; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + rLen = 1; + rLoc = 46; + rType = 1; + }; + 033808EC127D047800EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 49"; + rLen = 0; + rLoc = 1304; + rType = 0; + vrLen = 1004; + vrLoc = 350; + }; + 033808ED127D047E00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 49"; + rLen = 0; + rLoc = 1304; + rType = 0; + vrLen = 1004; + vrLoc = 350; + }; + 033808EE127D047E00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 1906; + vrLoc = 1561; + }; + 033808F1127D049500EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 49"; + rLen = 0; + rLoc = 1304; + rType = 0; + vrLen = 410; + vrLoc = 524; + }; + 033808F6127D04B500EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 33"; + rLen = 21; + rLoc = 741; + rType = 0; + vrLen = 1003; + vrLoc = 351; + }; + 033808F7127D04B500EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 93"; + rLen = 117; + rLoc = 3069; + rType = 0; + vrLen = 978; + vrLoc = 2544; + }; + 033808F8127D04B500EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 93"; + rLen = 117; + rLoc = 3069; + rType = 0; + vrLen = 999; + vrLoc = 2523; + }; + 033808FC127D04D500EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F61810B07F360074A5A1 /* SPSourceWifiTVC.m */; + name = "SPSourceWifiTVC.m: 49"; + rLen = 0; + rLoc = 1304; + rType = 0; + vrLen = 410; + vrLoc = 524; + }; + 033808FD127D04D500EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 94"; + rLen = 0; + rLoc = 3229; + rType = 0; + vrLen = 360; + vrLoc = 2615; + }; + 033808FE127D04D700EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 94"; + rLen = 0; + rLoc = 3229; + rType = 0; + vrLen = 999; + vrLoc = 2523; + }; + 03380901127D04FB00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; + name = "OUILookupTool.m: 94"; + rLen = 0; + rLoc = 3229; + rType = 0; + vrLen = 536; + vrLoc = 2951; + }; + 03380902127D04FB00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 03380903127D04FB00EAFE64 /* asm mach_msg_trap 0x301ffc84 */; + rLen = 0; + rLoc = 9223372036854775808; + rType = 0; + }; + 03380903127D04FB00EAFE64 /* asm mach_msg_trap 0x301ffc84 */ = { + isa = PBXFileReference; + lastKnownFileType = text; + path = "asm mach_msg_trap 0x301ffc84"; + sourceTree = ""; + }; + 03380904127D04FB00EAFE64 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 03380905127D04FB00EAFE64 /* asm mach_msg_trap 0x301ffc84 */; + name = "asm mach_msg_trap 0x301ffc84: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 264; + vrLoc = 0; + }; + 03380905127D04FB00EAFE64 /* asm mach_msg_trap 0x301ffc84 */ = { + isa = PBXFileReference; + lastKnownFileType = text; + path = "asm mach_msg_trap 0x301ffc84"; + sourceTree = ""; + }; + 033EB01512389BC200931EF6 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0364934010B16DDD00C88803 /* SPSourceKeyboardTVC.m */; + name = "SPSourceKeyboardTVC.m: 61"; + rLen = 0; + rLoc = 1582; + rType = 0; + vrLen = 1069; + vrLoc = 1183; + }; + 033EB01612389BC400931EF6 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0364934010B16DDD00C88803 /* SPSourceKeyboardTVC.m */; + name = "SPSourceKeyboardTVC.m: 61"; + rLen = 0; + rLoc = 1582; + rType = 0; + vrLen = 1069; + vrLoc = 1183; + }; + 0364933F10B16DDD00C88803 /* SPSourceKeyboardTVC.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1078, 452}}"; + sepNavSelRange = "{241, 0}"; + sepNavVisRange = "{0, 241}"; + }; + }; + 0364934010B16DDD00C88803 /* SPSourceKeyboardTVC.m */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1078, 1664}}"; + sepNavSelRange = "{1701, 101}"; + sepNavVisRange = "{1297, 926}"; + }; + }; + 0364948A10B28BC800C88803 /* SPSourceTVC.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1078, 479}}"; + sepNavSelRange = "{490, 0}"; + sepNavVisRange = "{0, 497}"; + }; + }; + 0364948B10B28BC800C88803 /* SPSourceTVC.m */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1078, 1196}}"; + sepNavSelRange = "{299, 0}"; + sepNavVisRange = "{0, 911}"; + }; + }; + 037D3A7F10F3D57B003A85B0 /* SPEmailMobileMeAccount.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1078, 540}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRange = "{0, 274}"; + }; + }; + 037D3A8010F3D57B003A85B0 /* SPEmailMobileMeAccount.m */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1391, 481}}"; + sepNavSelRange = "{856, 0}"; + sepNavVisRange = "{396, 640}"; + }; + }; + 03B5149712389A1100B470C9 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 1D3623250D0F684500981E51 /* SpyPhoneAppDelegate.m */; + name = "SpyPhoneAppDelegate.m: 12"; + rLen = 72; + rLoc = 218; + rType = 0; + vrLen = 926; + vrLoc = 0; + }; + 03B514B112389B9F00B470C9 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0364934010B16DDD00C88803 /* SPSourceKeyboardTVC.m */; + name = "SPSourceKeyboardTVC.m: 66"; + rLen = 0; + rLoc = 1701; + rType = 0; + vrLen = 686; + vrLoc = 1318; + }; + 03B514B612389BA900B470C9 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0364934010B16DDD00C88803 /* SPSourceKeyboardTVC.m */; + name = "SPSourceKeyboardTVC.m: 61"; + rLen = 0; + rLoc = 1582; + rType = 0; + vrLen = 1065; + vrLoc = 1185; + }; + 03B514B712389BA900B470C9 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; + name = "SPSourcePhotosTVC.m: 105"; + rLen = 0; + rLoc = 3431; + rType = 0; + vrLen = 2061; + vrLoc = 1564; + }; + 03B6EFC910BB547600CF9139 /* gpl-2.0.txt */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1078, 4420}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRange = "{0, 1849}"; + }; + }; + 03F2481D1236EFAC0017F214 /* NSNumber+SP.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1078, 460}}"; + sepNavSelRange = "{202, 0}"; + sepNavVisRange = "{0, 238}"; + }; + }; + 03F2481E1236EFAC0017F214 /* NSNumber+SP.m */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1391, 481}}"; + sepNavSelRange = "{483, 0}"; + sepNavVisRange = "{261, 470}"; + }; + }; + 03F248611236F4CE0017F214 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 032A7E0510B84C1800E7FB65 /* UIImage+GPS.m */; + name = "UIImage+GPS.m: 16"; + rLen = 69; + rLoc = 356; + rType = 0; + vrLen = 1639; + vrLoc = 0; + }; + 03F2496E123815160017F214 /* MKAnnotation.h */ = { + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.h; + name = MKAnnotation.h; + path = /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.2.sdk/System/Library/Frameworks/MapKit.framework/Headers/MKAnnotation.h; + sourceTree = ""; + }; + 03F24982123815BF0017F214 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 03F2496E123815160017F214 /* MKAnnotation.h */; + name = "MKAnnotation.h: 12"; + rLen = 34; + rLoc = 202; + rType = 0; + vrLen = 469; + vrLoc = 0; + }; + 03F24983123815BF0017F214 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 032A7EC910B8617C00E7FB65 /* SPImageAnnotation.h */; + name = "SPImageAnnotation.h: 24"; + rLen = 122; + rLoc = 523; + rType = 0; + vrLen = 692; + vrLoc = 0; + }; + 03F2498A123832920017F214 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 032A7ECA10B8617C00E7FB65 /* SPImageAnnotation.m */; + name = "SPImageAnnotation.m: 19"; + rLen = 123; + rLoc = 307; + rType = 0; + vrLen = 361; + vrLoc = 529; + }; + 03F2498B123832920017F214 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 032A7EAF10B85E9C00E7FB65 /* SPMapVC.h */; + name = "SPMapVC.h: 24"; + rLen = 52; + rLoc = 439; + rType = 0; + vrLen = 435; + vrLoc = 164; + }; + 03F2498C123832920017F214 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 032A7EB010B85E9C00E7FB65 /* SPMapVC.m */; + name = "SPMapVC.m: 13"; + rLen = 24; + rLoc = 211; + rType = 0; + vrLen = 697; + vrLoc = 210; + }; + 03F249AE123834B00017F214 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 0328F75110B09AA60074A5A1 /* SPSourceLocationTVC.m */; + name = "SPSourceLocationTVC.m: 28"; + rLen = 0; + rLoc = 775; + rType = 0; + vrLen = 1446; + vrLoc = 180; + }; + 03F249BD123835440017F214 /* PlistBookmark */ = { + isa = PlistBookmark; + fRef = 03F249BE123835440017F214 /* Root.plist */; + fallbackIsa = PBXBookmark; + isK = 0; + kPath = ( + ); + name = /Users/nst/Projects/SpyPhone/Settings.bundle/Root.plist; + rLen = 0; + rLoc = 9223372036854775808; + }; + 03F249BE123835440017F214 /* Root.plist */ = { + isa = PBXFileReference; + lastKnownFileType = text.plist.xml; + name = Root.plist; + path = /Users/nst/Projects/SpyPhone/Settings.bundle/Root.plist; + sourceTree = ""; }; - 03F248701236F5A20017F214 /* PBXTextBookmark */ = { + 03F249FF1238377E0017F214 /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 0328F80E10B0A8B70074A5A1 /* SPSourcePhotosTVC.m */; - name = "SPSourcePhotosTVC.m: 91"; + name = "SPSourcePhotosTVC.m: 105"; rLen = 0; - rLoc = 2927; + rLoc = 3431; rType = 0; - vrLen = 1558; - vrLoc = 1852; + vrLen = 2115; + vrLoc = 1564; }; 1D3623240D0F684500981E51 /* SpyPhoneAppDelegate.h */ = { uiCtxt = { @@ -704,9 +3357,9 @@ }; 1D3623250D0F684500981E51 /* SpyPhoneAppDelegate.m */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1078, 728}}"; - sepNavSelRange = "{545, 0}"; - sepNavVisRange = "{272, 655}"; + sepNavIntBoundsRect = "{{0, 0}, {1391, 689}}"; + sepNavSelRange = "{748, 0}"; + sepNavVisRange = "{453, 683}"; }; }; 1D6058900D05DD3D006BFB54 /* SpyPhone */ = { @@ -739,7 +3392,7 @@ 29B97313FDCFA39411CA2CEA /* Project object */ = { activeBuildConfigurationName = Debug; activeExecutable = 0328F4AB10B05E890074A5A1 /* SpyPhone */; - activeSDKPreference = iphoneos3.2; + activeSDKPreference = iphoneos4.1; activeTarget = 1D6058900D05DD3D006BFB54 /* SpyPhone */; addToTargets = ( 1D6058900D05DD3D006BFB54 /* SpyPhone */, @@ -884,21 +3537,296 @@ PBXFileDataSource_Warnings_ColumnID, ); }; - PBXPerProjectTemplateStateSaveDate = 305585841; - PBXWorkspaceStateSaveDate = 305585841; + PBXPerProjectTemplateStateSaveDate = 310183513; + PBXWorkspaceStateSaveDate = 310183513; }; perUserProjectItems = { - 032E9C1C12369AB400B08386 /* PBXTextBookmark */ = 032E9C1C12369AB400B08386 /* PBXTextBookmark */; - 03F247DE1236EABC0017F214 /* PBXTextBookmark */ = 03F247DE1236EABC0017F214 /* PBXTextBookmark */; - 03F248041236EC710017F214 /* PBXTextBookmark */ = 03F248041236EC710017F214 /* PBXTextBookmark */; - 03F248161236EE3A0017F214 /* PBXTextBookmark */ = 03F248161236EE3A0017F214 /* PBXTextBookmark */; - 03F248261236F02C0017F214 /* PBXTextBookmark */ = 03F248261236F02C0017F214 /* PBXTextBookmark */; - 03F248331236F0DD0017F214 /* PBXTextBookmark */ = 03F248331236F0DD0017F214 /* PBXTextBookmark */; - 03F248341236F0DD0017F214 /* PBXTextBookmark */ = 03F248341236F0DD0017F214 /* PBXTextBookmark */; - 03F2483D1236F3300017F214 /* PBXTextBookmark */ = 03F2483D1236F3300017F214 /* PBXTextBookmark */; - 03F248611236F4CE0017F214 /* PBXTextBookmark */ = 03F248611236F4CE0017F214 /* PBXTextBookmark */; - 03F2486C1236F54A0017F214 /* PBXTextBookmark */ = 03F2486C1236F54A0017F214 /* PBXTextBookmark */; - 03F248701236F5A20017F214 /* PBXTextBookmark */ = 03F248701236F5A20017F214 /* PBXTextBookmark */; + 030AFB02127D065B00C9E0C6 /* PBXTextBookmark */ = 030AFB02127D065B00C9E0C6 /* PBXTextBookmark */; + 030AFB03127D065B00C9E0C6 /* PBXTextBookmark */ = 030AFB03127D065B00C9E0C6 /* PBXTextBookmark */; + 030AFB04127D065E00C9E0C6 /* PBXTextBookmark */ = 030AFB04127D065E00C9E0C6 /* PBXTextBookmark */; + 030AFB05127D065F00C9E0C6 /* PBXTextBookmark */ = 030AFB05127D065F00C9E0C6 /* PBXTextBookmark */; + 030AFB0E127D065F00C9E0C6 /* PBXTextBookmark */ = 030AFB0E127D065F00C9E0C6 /* PBXTextBookmark */; + 030AFB11127D066100C9E0C6 /* PBXTextBookmark */ = 030AFB11127D066100C9E0C6 /* PBXTextBookmark */; + 030AFB12127D06A300C9E0C6 /* PBXTextBookmark */ = 030AFB12127D06A300C9E0C6 /* PBXTextBookmark */; + 030AFB13127D06A300C9E0C6 /* PBXTextBookmark */ = 030AFB13127D06A300C9E0C6 /* PBXTextBookmark */; + 030AFB14127D06A300C9E0C6 /* XCBuildMessageTextBookmark */ = 030AFB14127D06A300C9E0C6 /* XCBuildMessageTextBookmark */; + 030AFB15127D06A300C9E0C6 /* PBXTextBookmark */ = 030AFB15127D06A300C9E0C6 /* PBXTextBookmark */; + 030AFB1A127D06AF00C9E0C6 /* PBXTextBookmark */ = 030AFB1A127D06AF00C9E0C6 /* PBXTextBookmark */; + 030AFB1B127D06AF00C9E0C6 /* PBXTextBookmark */ = 030AFB1B127D06AF00C9E0C6 /* PBXTextBookmark */; + 030AFB1C127D06AF00C9E0C6 /* PBXTextBookmark */ = 030AFB1C127D06AF00C9E0C6 /* PBXTextBookmark */; + 030AFB1D127D06B100C9E0C6 /* PBXTextBookmark */ = 030AFB1D127D06B100C9E0C6 /* PBXTextBookmark */; + 030AFB1E127D06B100C9E0C6 /* PBXTextBookmark */ = 030AFB1E127D06B100C9E0C6 /* PBXTextBookmark */; + 030AFB1F127D06B600C9E0C6 /* PBXTextBookmark */ = 030AFB1F127D06B600C9E0C6 /* PBXTextBookmark */; + 030AFB20127D06B600C9E0C6 /* PBXTextBookmark */ = 030AFB20127D06B600C9E0C6 /* PBXTextBookmark */; + 030AFB23127D070B00C9E0C6 /* PBXTextBookmark */ = 030AFB23127D070B00C9E0C6 /* PBXTextBookmark */; + 030AFB24127D076B00C9E0C6 /* PBXTextBookmark */ = 030AFB24127D076B00C9E0C6 /* PBXTextBookmark */; + 030AFB25127D076B00C9E0C6 /* PBXTextBookmark */ = 030AFB25127D076B00C9E0C6 /* PBXTextBookmark */; + 030AFB26127D076B00C9E0C6 /* PBXTextBookmark */ = 030AFB26127D076B00C9E0C6 /* PBXTextBookmark */; + 030AFB27127D076B00C9E0C6 /* PBXTextBookmark */ = 030AFB27127D076B00C9E0C6 /* PBXTextBookmark */; + 033804BA127CD64300EAFE64 = 033804BA127CD64300EAFE64 /* PBXTextBookmark */; + 033804BB127CD64E00EAFE64 = 033804BB127CD64E00EAFE64 /* PBXTextBookmark */; + 033804BF127CD64E00EAFE64 = 033804BF127CD64E00EAFE64 /* PBXTextBookmark */; + 033804D4127CD6FE00EAFE64 = 033804D4127CD6FE00EAFE64 /* PBXTextBookmark */; + 033804D6127CD6FE00EAFE64 = 033804D6127CD6FE00EAFE64 /* PBXTextBookmark */; + 033804D7127CD6FE00EAFE64 = 033804D7127CD6FE00EAFE64 /* PBXTextBookmark */; + 033804D8127CD70000EAFE64 = 033804D8127CD70000EAFE64 /* PBXTextBookmark */; + 033804DE127CD70000EAFE64 = 033804DE127CD70000EAFE64 /* PBXTextBookmark */; + 033804E1127CD7E100EAFE64 = 033804E1127CD7E100EAFE64 /* PBXTextBookmark */; + 033804E2127CD7E100EAFE64 = 033804E2127CD7E100EAFE64 /* PBXTextBookmark */; + 033804E3127CD7E100EAFE64 = 033804E3127CD7E100EAFE64 /* PBXTextBookmark */; + 033804E4127CD7E700EAFE64 = 033804E4127CD7E700EAFE64 /* PBXTextBookmark */; + 033804E5127CD7E700EAFE64 = 033804E5127CD7E700EAFE64 /* PBXTextBookmark */; + 033804E7127CD84600EAFE64 = 033804E7127CD84600EAFE64 /* PBXTextBookmark */; + 033804E8127CD84A00EAFE64 = 033804E8127CD84A00EAFE64 /* PBXTextBookmark */; + 033804EB127CD86200EAFE64 = 033804EB127CD86200EAFE64 /* PBXTextBookmark */; + 033804EC127CD86200EAFE64 = 033804EC127CD86200EAFE64 /* PBXTextBookmark */; + 033804ED127CD86200EAFE64 = 033804ED127CD86200EAFE64 /* PBXBookmark */; + 033804EE127CD86200EAFE64 = 033804EE127CD86200EAFE64 /* PBXTextBookmark */; + 03380502127CDCC300EAFE64 = 03380502127CDCC300EAFE64 /* PBXTextBookmark */; + 03380503127CDCC300EAFE64 = 03380503127CDCC300EAFE64 /* PBXTextBookmark */; + 03380504127CDCCC00EAFE64 = 03380504127CDCCC00EAFE64 /* PBXTextBookmark */; + 03380505127CDCCC00EAFE64 = 03380505127CDCCC00EAFE64 /* PBXTextBookmark */; + 033805B9127CEC5400EAFE64 = 033805B9127CEC5400EAFE64 /* PBXTextBookmark */; + 033805BA127CEC5400EAFE64 = 033805BA127CEC5400EAFE64 /* PBXTextBookmark */; + 033805BB127CEC5400EAFE64 = 033805BB127CEC5400EAFE64 /* PBXTextBookmark */; + 033805BC127CEC5400EAFE64 = 033805BC127CEC5400EAFE64 /* PBXTextBookmark */; + 033805BD127CEC5400EAFE64 = 033805BD127CEC5400EAFE64 /* PBXTextBookmark */; + 033805BE127CEC5600EAFE64 = 033805BE127CEC5600EAFE64 /* PBXTextBookmark */; + 033805BF127CECE300EAFE64 = 033805BF127CECE300EAFE64 /* PBXTextBookmark */; + 033805C0127CECE300EAFE64 = 033805C0127CECE300EAFE64 /* PBXTextBookmark */; + 033805C1127CECE300EAFE64 = 033805C1127CECE300EAFE64 /* PBXTextBookmark */; + 033805C2127CECE300EAFE64 = 033805C2127CECE300EAFE64 /* PBXTextBookmark */; + 033805C3127CECE300EAFE64 = 033805C3127CECE300EAFE64 /* PBXTextBookmark */; + 033805C4127CECE300EAFE64 = 033805C4127CECE300EAFE64 /* PBXTextBookmark */; + 033805C7127CECF300EAFE64 = 033805C7127CECF300EAFE64 /* PBXTextBookmark */; + 033805C8127CECF300EAFE64 = 033805C8127CECF300EAFE64 /* PBXTextBookmark */; + 033805C9127CECF300EAFE64 = 033805C9127CECF300EAFE64 /* PBXTextBookmark */; + 033805CA127CECF300EAFE64 = 033805CA127CECF300EAFE64 /* PBXTextBookmark */; + 033805E8127CED0300EAFE64 = 033805E8127CED0300EAFE64 /* PBXTextBookmark */; + 033805E9127CED2F00EAFE64 = 033805E9127CED2F00EAFE64 /* PBXTextBookmark */; + 033805EA127CED2F00EAFE64 = 033805EA127CED2F00EAFE64 /* PBXTextBookmark */; + 033805EB127CED6900EAFE64 = 033805EB127CED6900EAFE64 /* PBXTextBookmark */; + 033805EC127CED6900EAFE64 = 033805EC127CED6900EAFE64 /* PBXTextBookmark */; + 033805ED127CED6900EAFE64 = 033805ED127CED6900EAFE64 /* PBXTextBookmark */; + 033805EE127CED7000EAFE64 = 033805EE127CED7000EAFE64 /* PBXTextBookmark */; + 033805EF127CED7000EAFE64 = 033805EF127CED7000EAFE64 /* PBXTextBookmark */; + 033805F2127CED7C00EAFE64 = 033805F2127CED7C00EAFE64 /* PBXTextBookmark */; + 033805F3127CED7C00EAFE64 = 033805F3127CED7C00EAFE64 /* PBXTextBookmark */; + 033805F4127CED7C00EAFE64 = 033805F4127CED7C00EAFE64 /* PBXTextBookmark */; + 033805F5127CED8D00EAFE64 = 033805F5127CED8D00EAFE64 /* PBXTextBookmark */; + 033805F6127CED8D00EAFE64 = 033805F6127CED8D00EAFE64 /* PBXTextBookmark */; + 033805F8127CED9A00EAFE64 = 033805F8127CED9A00EAFE64 /* PBXTextBookmark */; + 033805F9127CED9A00EAFE64 = 033805F9127CED9A00EAFE64 /* PBXTextBookmark */; + 033805FE127CEDA600EAFE64 = 033805FE127CEDA600EAFE64 /* PBXTextBookmark */; + 033805FF127CEDA600EAFE64 = 033805FF127CEDA600EAFE64 /* PBXTextBookmark */; + 03380600127CEDA600EAFE64 = 03380600127CEDA600EAFE64 /* PBXTextBookmark */; + 03380607127CEDE300EAFE64 = 03380607127CEDE300EAFE64 /* PBXTextBookmark */; + 03380608127CEDE300EAFE64 = 03380608127CEDE300EAFE64 /* PBXTextBookmark */; + 03380609127CEDE300EAFE64 = 03380609127CEDE300EAFE64 /* PBXTextBookmark */; + 0338060A127CEDE300EAFE64 = 0338060A127CEDE300EAFE64 /* PBXTextBookmark */; + 0338060C127CEDE300EAFE64 = 0338060C127CEDE300EAFE64 /* PBXTextBookmark */; + 0338060E127CEDE300EAFE64 = 0338060E127CEDE300EAFE64 /* PBXTextBookmark */; + 03380610127CEDE300EAFE64 = 03380610127CEDE300EAFE64 /* PBXTextBookmark */; + 03380612127CEDFC00EAFE64 = 03380612127CEDFC00EAFE64 /* PBXTextBookmark */; + 03380613127CEDFC00EAFE64 = 03380613127CEDFC00EAFE64 /* PBXTextBookmark */; + 03380615127CEDFC00EAFE64 = 03380615127CEDFC00EAFE64 /* PBXTextBookmark */; + 03380616127CEDFC00EAFE64 = 03380616127CEDFC00EAFE64 /* PBXTextBookmark */; + 03380619127CEDFD00EAFE64 = 03380619127CEDFD00EAFE64 /* PBXTextBookmark */; + 0338061C127CEE0100EAFE64 = 0338061C127CEE0100EAFE64 /* PBXTextBookmark */; + 0338061D127CEE0100EAFE64 = 0338061D127CEE0100EAFE64 /* PBXTextBookmark */; + 0338061E127CEE0200EAFE64 = 0338061E127CEE0200EAFE64 /* PBXTextBookmark */; + 0338061F127CEE0200EAFE64 = 0338061F127CEE0200EAFE64 /* PBXTextBookmark */; + 03380622127CEE2200EAFE64 = 03380622127CEE2200EAFE64 /* PBXTextBookmark */; + 03380623127CEE2200EAFE64 = 03380623127CEE2200EAFE64 /* PBXTextBookmark */; + 03380624127CEE2200EAFE64 = 03380624127CEE2200EAFE64 /* PBXTextBookmark */; + 03380626127CEE2200EAFE64 = 03380626127CEE2200EAFE64 /* PBXTextBookmark */; + 03380628127CEE2200EAFE64 = 03380628127CEE2200EAFE64 /* PBXTextBookmark */; + 0338063A127CEE4800EAFE64 = 0338063A127CEE4800EAFE64 /* PBXTextBookmark */; + 0338063B127CEE4800EAFE64 = 0338063B127CEE4800EAFE64 /* PBXTextBookmark */; + 0338063C127CEE4800EAFE64 = 0338063C127CEE4800EAFE64 /* PBXTextBookmark */; + 0338063D127CEE4800EAFE64 = 0338063D127CEE4800EAFE64 /* PBXTextBookmark */; + 0338063E127CEE4B00EAFE64 = 0338063E127CEE4B00EAFE64 /* PBXTextBookmark */; + 0338063F127CEE4B00EAFE64 = 0338063F127CEE4B00EAFE64 /* PBXTextBookmark */; + 03380685127CEF5D00EAFE64 = 03380685127CEF5D00EAFE64 /* PBXTextBookmark */; + 03380686127CEF5D00EAFE64 = 03380686127CEF5D00EAFE64 /* PBXTextBookmark */; + 03380690127CEF7700EAFE64 = 03380690127CEF7700EAFE64 /* PBXTextBookmark */; + 03380691127CEF7700EAFE64 = 03380691127CEF7700EAFE64 /* PBXTextBookmark */; + 03380692127CEF7700EAFE64 = 03380692127CEF7700EAFE64 /* PBXTextBookmark */; + 03380693127CEF7700EAFE64 = 03380693127CEF7700EAFE64 /* PBXTextBookmark */; + 033806A5127CEF9300EAFE64 = 033806A5127CEF9300EAFE64 /* PBXTextBookmark */; + 033806A6127CEF9300EAFE64 = 033806A6127CEF9300EAFE64 /* PBXTextBookmark */; + 033806AF127CEFBA00EAFE64 = 033806AF127CEFBA00EAFE64 /* PBXTextBookmark */; + 033806B0127CEFBA00EAFE64 = 033806B0127CEFBA00EAFE64 /* PBXTextBookmark */; + 033806C1127CF03000EAFE64 = 033806C1127CF03000EAFE64 /* PBXTextBookmark */; + 033806C2127CF03000EAFE64 = 033806C2127CF03000EAFE64 /* PBXTextBookmark */; + 033806CE127CF05300EAFE64 = 033806CE127CF05300EAFE64 /* PBXTextBookmark */; + 033806CF127CF05300EAFE64 = 033806CF127CF05300EAFE64 /* PBXTextBookmark */; + 033806E3127CF0A600EAFE64 = 033806E3127CF0A600EAFE64 /* PBXTextBookmark */; + 033806E4127CF0A600EAFE64 = 033806E4127CF0A600EAFE64 /* PBXTextBookmark */; + 033806EB127CF0B500EAFE64 = 033806EB127CF0B500EAFE64 /* PBXTextBookmark */; + 033806EC127CF0B500EAFE64 = 033806EC127CF0B500EAFE64 /* PBXTextBookmark */; + 033806F6127CF0D800EAFE64 = 033806F6127CF0D800EAFE64 /* PBXTextBookmark */; + 033806F7127CF0D800EAFE64 = 033806F7127CF0D800EAFE64 /* PBXTextBookmark */; + 03380705127CF11900EAFE64 = 03380705127CF11900EAFE64 /* PBXTextBookmark */; + 03380706127CF11900EAFE64 = 03380706127CF11900EAFE64 /* PBXTextBookmark */; + 03380709127CF11F00EAFE64 = 03380709127CF11F00EAFE64 /* PBXTextBookmark */; + 0338070A127CF11F00EAFE64 = 0338070A127CF11F00EAFE64 /* PBXTextBookmark */; + 03380720127CF14500EAFE64 = 03380720127CF14500EAFE64 /* PBXTextBookmark */; + 03380721127CF14500EAFE64 = 03380721127CF14500EAFE64 /* PBXTextBookmark */; + 03380729127CF18700EAFE64 = 03380729127CF18700EAFE64 /* PBXTextBookmark */; + 0338072A127CF18700EAFE64 = 0338072A127CF18700EAFE64 /* PBXTextBookmark */; + 03380732127CF1CA00EAFE64 = 03380732127CF1CA00EAFE64 /* PBXTextBookmark */; + 03380733127CF1CA00EAFE64 = 03380733127CF1CA00EAFE64 /* PBXTextBookmark */; + 03380736127CF1D100EAFE64 = 03380736127CF1D100EAFE64 /* PBXTextBookmark */; + 03380737127CF1D100EAFE64 = 03380737127CF1D100EAFE64 /* PBXTextBookmark */; + 03380740127CF23D00EAFE64 = 03380740127CF23D00EAFE64 /* PBXTextBookmark */; + 03380741127CF23D00EAFE64 = 03380741127CF23D00EAFE64 /* PBXTextBookmark */; + 03380748127CF24A00EAFE64 = 03380748127CF24A00EAFE64 /* PBXTextBookmark */; + 03380749127CF24A00EAFE64 = 03380749127CF24A00EAFE64 /* PBXTextBookmark */; + 03380753127CF28100EAFE64 = 03380753127CF28100EAFE64 /* PBXTextBookmark */; + 03380754127CF28100EAFE64 = 03380754127CF28100EAFE64 /* PBXTextBookmark */; + 0338075E127CF28E00EAFE64 = 0338075E127CF28E00EAFE64 /* PBXTextBookmark */; + 0338075F127CF28E00EAFE64 = 0338075F127CF28E00EAFE64 /* PBXTextBookmark */; + 0338076C127CF29C00EAFE64 = 0338076C127CF29C00EAFE64 /* PBXTextBookmark */; + 0338076D127CF29C00EAFE64 = 0338076D127CF29C00EAFE64 /* PBXTextBookmark */; + 03380780127CF2D900EAFE64 = 03380780127CF2D900EAFE64 /* PBXTextBookmark */; + 03380781127CF2D900EAFE64 = 03380781127CF2D900EAFE64 /* PBXTextBookmark */; + 03380790127CF30200EAFE64 = 03380790127CF30200EAFE64 /* PBXTextBookmark */; + 03380791127CF30200EAFE64 = 03380791127CF30200EAFE64 /* PBXTextBookmark */; + 0338079B127CF35500EAFE64 = 0338079B127CF35500EAFE64 /* PBXTextBookmark */; + 0338079C127CF35500EAFE64 = 0338079C127CF35500EAFE64 /* PBXTextBookmark */; + 033807A3127CF36800EAFE64 = 033807A3127CF36800EAFE64 /* PBXTextBookmark */; + 033807A4127CF36800EAFE64 = 033807A4127CF36800EAFE64 /* PBXTextBookmark */; + 033807A7127CF38700EAFE64 = 033807A7127CF38700EAFE64 /* PBXTextBookmark */; + 033807A8127CF38700EAFE64 = 033807A8127CF38700EAFE64 /* PBXTextBookmark */; + 033807AA127CF39A00EAFE64 = 033807AA127CF39A00EAFE64 /* PBXTextBookmark */; + 033807AB127CF39A00EAFE64 = 033807AB127CF39A00EAFE64 /* PBXTextBookmark */; + 033807AD127CF3B000EAFE64 = 033807AD127CF3B000EAFE64 /* PBXTextBookmark */; + 033807AE127CF3B000EAFE64 = 033807AE127CF3B000EAFE64 /* PBXTextBookmark */; + 033807B4127CF3BF00EAFE64 = 033807B4127CF3BF00EAFE64 /* PBXTextBookmark */; + 033807B5127CF3BF00EAFE64 = 033807B5127CF3BF00EAFE64 /* PBXTextBookmark */; + 033807BC127CF3D500EAFE64 = 033807BC127CF3D500EAFE64 /* PBXTextBookmark */; + 033807BD127CF3D500EAFE64 = 033807BD127CF3D500EAFE64 /* PBXTextBookmark */; + 033807C0127CF3DC00EAFE64 = 033807C0127CF3DC00EAFE64 /* PBXTextBookmark */; + 033807C1127CF3DC00EAFE64 = 033807C1127CF3DC00EAFE64 /* PBXTextBookmark */; + 033807C3127CF40500EAFE64 = 033807C3127CF40500EAFE64 /* PBXTextBookmark */; + 033807C4127CF40500EAFE64 = 033807C4127CF40500EAFE64 /* PBXTextBookmark */; + 033807C6127CF40A00EAFE64 = 033807C6127CF40A00EAFE64 /* PBXTextBookmark */; + 033807C7127CF40A00EAFE64 = 033807C7127CF40A00EAFE64 /* PBXTextBookmark */; + 033807CD127CF41700EAFE64 = 033807CD127CF41700EAFE64 /* PBXTextBookmark */; + 033807CE127CF41700EAFE64 = 033807CE127CF41700EAFE64 /* PBXTextBookmark */; + 033807D1127CF41E00EAFE64 = 033807D1127CF41E00EAFE64 /* PBXTextBookmark */; + 033807D2127CF41E00EAFE64 = 033807D2127CF41E00EAFE64 /* PBXTextBookmark */; + 033807D4127CF66100EAFE64 = 033807D4127CF66100EAFE64 /* PBXTextBookmark */; + 033807D5127CF66100EAFE64 = 033807D5127CF66100EAFE64 /* PBXTextBookmark */; + 033807DE127CF66F00EAFE64 = 033807DE127CF66F00EAFE64 /* PBXTextBookmark */; + 033807DF127CF66F00EAFE64 = 033807DF127CF66F00EAFE64 /* PBXTextBookmark */; + 033807E2127CF69E00EAFE64 = 033807E2127CF69E00EAFE64 /* PBXTextBookmark */; + 033807E3127CF69E00EAFE64 = 033807E3127CF69E00EAFE64 /* PBXTextBookmark */; + 033807F9127CF8A500EAFE64 = 033807F9127CF8A500EAFE64 /* PBXTextBookmark */; + 033807FA127CF8A500EAFE64 = 033807FA127CF8A500EAFE64 /* PBXTextBookmark */; + 03380813127CFB2700EAFE64 = 03380813127CFB2700EAFE64 /* PBXTextBookmark */; + 03380814127CFB2700EAFE64 = 03380814127CFB2700EAFE64 /* PBXTextBookmark */; + 0338081D127CFB7100EAFE64 = 0338081D127CFB7100EAFE64 /* PBXTextBookmark */; + 0338081E127CFB7100EAFE64 = 0338081E127CFB7100EAFE64 /* PBXTextBookmark */; + 03380828127CFB7F00EAFE64 = 03380828127CFB7F00EAFE64 /* PBXTextBookmark */; + 03380829127CFB7F00EAFE64 = 03380829127CFB7F00EAFE64 /* PBXTextBookmark */; + 03380836127CFBAC00EAFE64 = 03380836127CFBAC00EAFE64 /* PBXTextBookmark */; + 03380837127CFBAC00EAFE64 = 03380837127CFBAC00EAFE64 /* PBXTextBookmark */; + 03380844127CFCDB00EAFE64 = 03380844127CFCDB00EAFE64 /* PBXTextBookmark */; + 03380845127CFCDB00EAFE64 = 03380845127CFCDB00EAFE64 /* PBXTextBookmark */; + 03380855127CFD4B00EAFE64 = 03380855127CFD4B00EAFE64 /* PBXTextBookmark */; + 03380856127CFD4B00EAFE64 = 03380856127CFD4B00EAFE64 /* PBXTextBookmark */; + 03380860127CFD7A00EAFE64 = 03380860127CFD7A00EAFE64 /* PBXTextBookmark */; + 03380861127CFD7A00EAFE64 = 03380861127CFD7A00EAFE64 /* PBXTextBookmark */; + 0338087D127CFF0A00EAFE64 = 0338087D127CFF0A00EAFE64 /* PBXTextBookmark */; + 0338087E127CFF0A00EAFE64 = 0338087E127CFF0A00EAFE64 /* PBXTextBookmark */; + 0338087F127CFF0A00EAFE64 = 0338087F127CFF0A00EAFE64 /* PBXTextBookmark */; + 03380880127CFF0A00EAFE64 = 03380880127CFF0A00EAFE64 /* PBXTextBookmark */; + 03380882127CFF0A00EAFE64 = 03380882127CFF0A00EAFE64 /* PBXTextBookmark */; + 03380883127CFF0A00EAFE64 = 03380883127CFF0A00EAFE64 /* PBXTextBookmark */; + 03380884127CFF1000EAFE64 = 03380884127CFF1000EAFE64 /* PBXTextBookmark */; + 03380885127CFF1000EAFE64 = 03380885127CFF1000EAFE64 /* PBXTextBookmark */; + 03380888127CFF3D00EAFE64 = 03380888127CFF3D00EAFE64 /* PBXTextBookmark */; + 03380889127CFF6500EAFE64 = 03380889127CFF6500EAFE64 /* PBXTextBookmark */; + 0338088C127CFFAC00EAFE64 = 0338088C127CFFAC00EAFE64 /* PBXTextBookmark */; + 0338088D127CFFAC00EAFE64 = 0338088D127CFFAC00EAFE64 /* PBXTextBookmark */; + 0338088E127CFFAC00EAFE64 = 0338088E127CFFAC00EAFE64 /* PBXTextBookmark */; + 0338088F127CFFD000EAFE64 = 0338088F127CFFD000EAFE64 /* PBXTextBookmark */; + 03380890127CFFD000EAFE64 = 03380890127CFFD000EAFE64 /* PBXTextBookmark */; + 03380893127D004400EAFE64 = 03380893127D004400EAFE64 /* PBXTextBookmark */; + 03380894127D004400EAFE64 = 03380894127D004400EAFE64 /* PBXTextBookmark */; + 03380895127D009200EAFE64 = 03380895127D009200EAFE64 /* PBXTextBookmark */; + 03380896127D00AB00EAFE64 = 03380896127D00AB00EAFE64 /* PBXTextBookmark */; + 03380897127D00AB00EAFE64 = 03380897127D00AB00EAFE64 /* PBXTextBookmark */; + 03380898127D00AB00EAFE64 = 03380898127D00AB00EAFE64 /* PBXTextBookmark */; + 03380899127D00AB00EAFE64 = 03380899127D00AB00EAFE64 /* PBXTextBookmark */; + 0338089A127D00AB00EAFE64 = 0338089A127D00AB00EAFE64 /* PBXTextBookmark */; + 0338089E127D00F000EAFE64 = 0338089E127D00F000EAFE64 /* PBXTextBookmark */; + 0338089F127D00F000EAFE64 = 0338089F127D00F000EAFE64 /* PBXTextBookmark */; + 033808A0127D00F000EAFE64 = 033808A0127D00F000EAFE64 /* PBXTextBookmark */; + 033808A1127D00F000EAFE64 = 033808A1127D00F000EAFE64 /* PBXTextBookmark */; + 033808A2127D00FC00EAFE64 = 033808A2127D00FC00EAFE64 /* PBXTextBookmark */; + 033808A3127D011600EAFE64 = 033808A3127D011600EAFE64 /* PBXTextBookmark */; + 033808A4127D011600EAFE64 = 033808A4127D011600EAFE64 /* PBXTextBookmark */; + 033808A5127D012B00EAFE64 = 033808A5127D012B00EAFE64 /* PBXTextBookmark */; + 033808A6127D012B00EAFE64 = 033808A6127D012B00EAFE64 /* PBXTextBookmark */; + 033808A9127D013700EAFE64 = 033808A9127D013700EAFE64 /* PBXTextBookmark */; + 033808AA127D013700EAFE64 = 033808AA127D013700EAFE64 /* PBXTextBookmark */; + 033808AB127D013700EAFE64 = 033808AB127D013700EAFE64 /* PBXTextBookmark */; + 033808AF127D015100EAFE64 = 033808AF127D015100EAFE64 /* PBXTextBookmark */; + 033808B0127D015100EAFE64 = 033808B0127D015100EAFE64 /* PBXTextBookmark */; + 033808B1127D015200EAFE64 = 033808B1127D015200EAFE64 /* PBXTextBookmark */; + 033808B2127D015200EAFE64 = 033808B2127D015200EAFE64 /* PBXTextBookmark */; + 033808B4127D015D00EAFE64 = 033808B4127D015D00EAFE64 /* PBXTextBookmark */; + 033808B7127D027F00EAFE64 = 033808B7127D027F00EAFE64 /* PBXTextBookmark */; + 033808B8127D027F00EAFE64 = 033808B8127D027F00EAFE64 /* PBXTextBookmark */; + 033808B9127D027F00EAFE64 = 033808B9127D027F00EAFE64 /* PBXTextBookmark */; + 033808BA127D028000EAFE64 = 033808BA127D028000EAFE64 /* PBXTextBookmark */; + 033808BB127D028000EAFE64 = 033808BB127D028000EAFE64 /* PBXTextBookmark */; + 033808BF127D028C00EAFE64 = 033808BF127D028C00EAFE64 /* PBXTextBookmark */; + 033808C0127D028C00EAFE64 = 033808C0127D028C00EAFE64 /* PBXTextBookmark */; + 033808C3127D02A600EAFE64 = 033808C3127D02A600EAFE64 /* PBXTextBookmark */; + 033808C4127D02A600EAFE64 = 033808C4127D02A600EAFE64 /* PBXTextBookmark */; + 033808C5127D02C000EAFE64 = 033808C5127D02C000EAFE64 /* PBXTextBookmark */; + 033808C6127D02C000EAFE64 = 033808C6127D02C000EAFE64 /* PBXTextBookmark */; + 033808C9127D02D300EAFE64 = 033808C9127D02D300EAFE64 /* PBXTextBookmark */; + 033808CA127D02D300EAFE64 = 033808CA127D02D300EAFE64 /* PBXTextBookmark */; + 033808CB127D02D300EAFE64 = 033808CB127D02D300EAFE64 /* PBXTextBookmark */; + 033808CC127D02FC00EAFE64 = 033808CC127D02FC00EAFE64 /* PBXTextBookmark */; + 033808CD127D02FC00EAFE64 = 033808CD127D02FC00EAFE64 /* PBXTextBookmark */; + 033808E8127D047800EAFE64 = 033808E8127D047800EAFE64 /* PBXTextBookmark */; + 033808E9127D047800EAFE64 = 033808E9127D047800EAFE64 /* PBXTextBookmark */; + 033808EA127D047800EAFE64 = 033808EA127D047800EAFE64 /* PBXTextBookmark */; + 033808EB127D047800EAFE64 = 033808EB127D047800EAFE64 /* PBXTextBookmark */; + 033808EC127D047800EAFE64 = 033808EC127D047800EAFE64 /* PBXTextBookmark */; + 033808ED127D047E00EAFE64 = 033808ED127D047E00EAFE64 /* PBXTextBookmark */; + 033808EE127D047E00EAFE64 = 033808EE127D047E00EAFE64 /* PBXTextBookmark */; + 033808F1127D049500EAFE64 = 033808F1127D049500EAFE64 /* PBXTextBookmark */; + 033808F6127D04B500EAFE64 = 033808F6127D04B500EAFE64 /* PBXTextBookmark */; + 033808F7127D04B500EAFE64 = 033808F7127D04B500EAFE64 /* PBXTextBookmark */; + 033808F8127D04B500EAFE64 = 033808F8127D04B500EAFE64 /* PBXTextBookmark */; + 033808FC127D04D500EAFE64 = 033808FC127D04D500EAFE64 /* PBXTextBookmark */; + 033808FD127D04D500EAFE64 = 033808FD127D04D500EAFE64 /* PBXTextBookmark */; + 033808FE127D04D700EAFE64 = 033808FE127D04D700EAFE64 /* PBXTextBookmark */; + 03380901127D04FB00EAFE64 = 03380901127D04FB00EAFE64 /* PBXTextBookmark */; + 03380902127D04FB00EAFE64 = 03380902127D04FB00EAFE64 /* PBXTextBookmark */; + 03380904127D04FB00EAFE64 = 03380904127D04FB00EAFE64 /* PBXTextBookmark */; + 033EB01512389BC200931EF6 = 033EB01512389BC200931EF6 /* PBXTextBookmark */; + 033EB01612389BC400931EF6 = 033EB01612389BC400931EF6 /* PBXTextBookmark */; + 03B5149712389A1100B470C9 = 03B5149712389A1100B470C9 /* PBXTextBookmark */; + 03B514B112389B9F00B470C9 = 03B514B112389B9F00B470C9 /* PBXTextBookmark */; + 03B514B612389BA900B470C9 = 03B514B612389BA900B470C9 /* PBXTextBookmark */; + 03B514B712389BA900B470C9 = 03B514B712389BA900B470C9 /* PBXTextBookmark */; + 03F248611236F4CE0017F214 = 03F248611236F4CE0017F214 /* PBXTextBookmark */; + 03F24982123815BF0017F214 = 03F24982123815BF0017F214 /* PBXTextBookmark */; + 03F24983123815BF0017F214 = 03F24983123815BF0017F214 /* PBXTextBookmark */; + 03F2498A123832920017F214 = 03F2498A123832920017F214 /* PBXTextBookmark */; + 03F2498B123832920017F214 = 03F2498B123832920017F214 /* PBXTextBookmark */; + 03F2498C123832920017F214 = 03F2498C123832920017F214 /* PBXTextBookmark */; + 03F249AE123834B00017F214 = 03F249AE123834B00017F214 /* PBXTextBookmark */; + 03F249BD123835440017F214 = 03F249BD123835440017F214 /* PlistBookmark */; + 03F249FF1238377E0017F214 = 03F249FF1238377E0017F214 /* PBXTextBookmark */; }; sourceControlManager = 0328F4B810B05E8E0074A5A1 /* Source Control */; userBuildSettings = { diff --git a/SpyPhone.xcodeproj/nst.perspectivev3 b/SpyPhone.xcodeproj/nst.perspectivev3 index cf7dfea..54530ef 100644 --- a/SpyPhone.xcodeproj/nst.perspectivev3 +++ b/SpyPhone.xcodeproj/nst.perspectivev3 @@ -3,7 +3,7 @@ ActivePerspectiveName - Debug + Project AllowedModules @@ -216,7 +216,48 @@ OpenEditors - + + + Content + + PBXProjectModuleGUID + 03F248D81237A3EE0017F214 + PBXProjectModuleLabel + SPSourcePhotosTVC.m + PBXSplitModuleInNavigatorKey + + Split0 + + PBXProjectModuleGUID + 03F248D91237A3EE0017F214 + PBXProjectModuleLabel + SPSourcePhotosTVC.m + _historyCapacity + 10 + bookmark + 030AFB27127D076B00C9E0C6 + history + + 033808EE127D047E00EAFE64 + + + SplitCount + 1 + + StatusBarVisibility + + + Geometry + + Frame + {{0, 20}, {994, 772}} + PBXModuleWindowStatusBarHidden2 + + RubberWindowFrame + 15 60 994 813 0 0 1440 878 + + + PerspectiveWidths 1440 @@ -291,9 +332,11 @@ 29B97314FDCFA39411CA2CEA 080E96DDFE201D6D7F000001 + 033805B5127CEC4200EAFE64 031748C210B6E68E00B6116E 29B97315FDCFA39411CA2CEA 29B97317FDCFA39411CA2CEA + 0317DE7B10FF98E900C5C2D4 29B97323FDCFA39411CA2CEA 19C28FACFE9D520D11CA2CBB 1C37FBAC04509CD000000102 @@ -303,14 +346,20 @@ PBXSmartGroupTreeModuleOutlineStateSelectionKey - 22 + 7 + 6 + 2 + 0 + + + 8 6 2 0 PBXSmartGroupTreeModuleOutlineStateVisibleRectKey - {{0, 0}, {291, 713}} + {{0, 211}, {291, 713}} PBXTopSmartGroupGIDs @@ -328,6 +377,8 @@ MainColumn 269 + RubberWindowFrame + 0 106 1440 772 0 0 1440 878 Module PBXSmartGroupTreeModule @@ -338,12 +389,14 @@ Dock + BecomeActive + ContentConfiguration PBXProjectModuleGUID 0328F4B210B05E8E0074A5A1 PBXProjectModuleLabel - SPSourcePhotosTVC.m + SPSourceWifiTVC.m PBXSplitModuleInNavigatorKey Split0 @@ -351,23 +404,23 @@ PBXProjectModuleGUID 0328F4B310B05E8E0074A5A1 PBXProjectModuleLabel - SPSourcePhotosTVC.m + SPSourceWifiTVC.m _historyCapacity 10 bookmark - 03F248701236F5A20017F214 + 030AFB26127D076B00C9E0C6 history - 03F248261236F02C0017F214 - 032E9C1C12369AB400B08386 - 03F247DE1236EABC0017F214 - 03F248041236EC710017F214 - 03F248331236F0DD0017F214 - 03F248341236F0DD0017F214 - 03F2483D1236F3300017F214 - 03F248161236EE3A0017F214 - 03F248611236F4CE0017F214 - 03F2486C1236F54A0017F214 + 033805B9127CEC5400EAFE64 + 033805BB127CEC5400EAFE64 + 0338063B127CEE4800EAFE64 + 03380880127CFF0A00EAFE64 + 033808E9127D047800EAFE64 + 033808EA127D047800EAFE64 + 030AFB13127D06A300C9E0C6 + 030AFB1D127D06B100C9E0C6 + 030AFB24127D076B00C9E0C6 + 030AFB25127D076B00C9E0C6 SplitCount @@ -381,16 +434,18 @@ GeometryConfiguration Frame - {{0, 0}, {1127, 517}} + {{0, 0}, {1127, 492}} + RubberWindowFrame + 0 106 1440 772 0 0 1440 878 Module PBXNavigatorGroup Proportion - 517pt + 492pt Proportion - 209pt + 234pt Tabs @@ -404,7 +459,7 @@ GeometryConfiguration Frame - {{10, 27}, {1127, 182}} + {{10, 27}, {1127, 207}} Module XCDetailModule @@ -458,7 +513,9 @@ GeometryConfiguration Frame - {{10, 27}, {1127, 182}} + {{10, 27}, {1127, 207}} + RubberWindowFrame + 0 106 1440 772 0 0 1440 878 Module PBXBuildResultsModule @@ -486,11 +543,11 @@ TableOfContents - 03F246D61236DED70017F214 + 030AFB06127D065F00C9E0C6 1CA23ED40692098700951B8B - 03F246D71236DED70017F214 + 030AFB07127D065F00C9E0C6 0328F4B210B05E8E0074A5A1 - 03F246D81236DED70017F214 + 030AFB08127D065F00C9E0C6 1CA23EDF0692099D00951B8B 1CA23EE00692099D00951B8B 1CA23EE10692099D00951B8B @@ -531,8 +588,6 @@ Layout - BecomeActive - ContentConfiguration PBXProjectModuleGUID @@ -543,14 +598,12 @@ GeometryConfiguration Frame - {{0, 0}, {1440, 152}} - RubberWindowFrame - 0 106 1440 772 0 0 1440 878 + {{0, 0}, {1440, 315}} Module PBXDebugCLIModule Proportion - 152pt + 315pt ContentConfiguration @@ -569,8 +622,8 @@ yes sizes - {{0, 0}, {703, 277}} - {{703, 0}, {737, 277}} + {{0, 0}, {703, 199}} + {{703, 0}, {737, 199}} VerticalSplitView @@ -585,8 +638,8 @@ yes sizes - {{0, 0}, {1440, 277}} - {{0, 277}, {1440, 297}} + {{0, 0}, {1440, 199}} + {{0, 199}, {1440, 212}} @@ -606,7 +659,7 @@ DebugSTDIOWindowFrame {{200, 200}, {500, 300}} Frame - {{0, 157}, {1440, 574}} + {{0, 320}, {1440, 411}} PBXDebugSessionStackFrameViewKey DebugVariablesTableConfiguration @@ -619,17 +672,13 @@ 507 Frame - {{703, 0}, {737, 277}} - RubberWindowFrame - 0 106 1440 772 0 0 1440 878 + {{703, 0}, {737, 199}} - RubberWindowFrame - 0 106 1440 772 0 0 1440 878 Module PBXDebugSessionModule Proportion - 574pt + 411pt Name @@ -647,13 +696,13 @@ TableOfContents - 03F246D91236DED70017F214 + 030AFB09127D065F00C9E0C6 1CCC7628064C1048000F2A68 1CCC7629064C1048000F2A68 - 03F246DA1236DED70017F214 - 03F246DB1236DED70017F214 - 03F246DC1236DED70017F214 - 03F246DD1236DED70017F214 + 030AFB0A127D065F00C9E0C6 + 030AFB0B127D065F00C9E0C6 + 030AFB0C127D065F00C9E0C6 + 030AFB0D127D065F00C9E0C6 0328F4B210B05E8E0074A5A1 ToolbarConfigUserDefaultsMinorVersion @@ -671,7 +720,7 @@ StatusbarIsVisible TimeStamp - 305591714.41195601 + 310183787.16242701 ToolbarConfigUserDefaultsMinorVersion 2 ToolbarDisplayMode @@ -688,8 +737,9 @@ 5 WindowOrderList - 03F246DE1236DED70017F214 - 03F246E01236DED70017F214 + 030AFB22127D06B600C9E0C6 + 030AFB10127D065F00C9E0C6 + 03F248D81237A3EE0017F214 /Users/nst/Projects/SpyPhone/SpyPhone.xcodeproj WindowString diff --git a/SpyPhone.xcodeproj/project.pbxproj b/SpyPhone.xcodeproj/project.pbxproj index b4116f5..4d28e99 100644 --- a/SpyPhone.xcodeproj/project.pbxproj +++ b/SpyPhone.xcodeproj/project.pbxproj @@ -15,7 +15,6 @@ 0317498610B6F3A300B6116E /* SPEmailGmailAccount.m in Sources */ = {isa = PBXBuildFile; fileRef = 0317498510B6F3A300B6116E /* SPEmailGmailAccount.m */; }; 0317498910B6F49300B6116E /* SPEmailIMAPAccount.m in Sources */ = {isa = PBXBuildFile; fileRef = 0317498810B6F49300B6116E /* SPEmailIMAPAccount.m */; }; 031749AF10B6FB9C00B6116E /* AddressBook.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 031749AE10B6FB9C00B6116E /* AddressBook.framework */; }; - 0317DE5210FF954800C5C2D4 /* UIApplication_TVOut.m in Sources */ = {isa = PBXBuildFile; fileRef = 0317DE5110FF954800C5C2D4 /* UIApplication_TVOut.m */; }; 0317DE6910FF95CC00C5C2D4 /* MediaPlayer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0317DE6810FF95CC00C5C2D4 /* MediaPlayer.framework */; }; 0317DE7C10FF98E900C5C2D4 /* Settings.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 0317DE7B10FF98E900C5C2D4 /* Settings.bundle */; }; 031CD55010BB4A29007C133E /* Email.png in Resources */ = {isa = PBXBuildFile; fileRef = 031CD54810BB4A29007C133E /* Email.png */; }; @@ -41,14 +40,7 @@ 0328F8BC10B0B1780074A5A1 /* SPWebViewVC.xib in Resources */ = {isa = PBXBuildFile; fileRef = 0328F8BB10B0B1780074A5A1 /* SPWebViewVC.xib */; }; 0328F8C010B0B1AE0074A5A1 /* SPWebViewVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 0328F8BF10B0B1AE0074A5A1 /* SPWebViewVC.m */; }; 0328F96110B0CB140074A5A1 /* SPSourceAddressBookTVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 0328F96010B0CB140074A5A1 /* SPSourceAddressBookTVC.m */; }; - 032A7BA310B829DB00E7FB65 /* EXFGPS.m in Sources */ = {isa = PBXBuildFile; fileRef = 032A7B9510B829DB00E7FB65 /* EXFGPS.m */; }; - 032A7BA610B829DB00E7FB65 /* EXFJpeg.m in Sources */ = {isa = PBXBuildFile; fileRef = 032A7B9B10B829DB00E7FB65 /* EXFJpeg.m */; }; 032A7D9010B844EF00E7FB65 /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 032A7D8F10B844EF00E7FB65 /* CoreLocation.framework */; }; - 032A7DB310B8476800E7FB65 /* EXFHandlers.m in Sources */ = {isa = PBXBuildFile; fileRef = 032A7B9710B829DB00E7FB65 /* EXFHandlers.m */; }; - 032A7DB610B8476C00E7FB65 /* EXFJFIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 032A7B9910B829DB00E7FB65 /* EXFJFIF.m */; }; - 032A7DB910B8477000E7FB65 /* EXFMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = 032A7B9E10B829DB00E7FB65 /* EXFMetaData.m */; }; - 032A7DBF10B8477700E7FB65 /* EXFTagDefinitionHolder.m in Sources */ = {isa = PBXBuildFile; fileRef = 032A7BA010B829DB00E7FB65 /* EXFTagDefinitionHolder.m */; }; - 032A7DC210B8477900E7FB65 /* EXFUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 032A7BA210B829DB00E7FB65 /* EXFUtils.m */; }; 032A7E0610B84C1800E7FB65 /* UIImage+GPS.m in Sources */ = {isa = PBXBuildFile; fileRef = 032A7E0510B84C1800E7FB65 /* UIImage+GPS.m */; }; 032A7EAD10B85E7F00E7FB65 /* SPMapVC.xib in Resources */ = {isa = PBXBuildFile; fileRef = 032A7EAC10B85E7F00E7FB65 /* SPMapVC.xib */; }; 032A7EB110B85E9C00E7FB65 /* SPMapVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 032A7EB010B85E9C00E7FB65 /* SPMapVC.m */; }; @@ -60,6 +52,25 @@ 032A819310B8E7BA00E7FB65 /* SPEmailReportVC.xib in Resources */ = {isa = PBXBuildFile; fileRef = 032A819210B8E7BA00E7FB65 /* SPEmailReportVC.xib */; }; 032A819710B8E7C600E7FB65 /* SPEmailReportVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 032A819610B8E7C600E7FB65 /* SPEmailReportVC.m */; }; 032A81CA10B8EB6100E7FB65 /* MessageUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 032A81C910B8EB6100E7FB65 /* MessageUI.framework */; }; + 03380599127CEC2500EAFE64 /* FMDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = 03380594127CEC2500EAFE64 /* FMDatabase.m */; }; + 0338059A127CEC2500EAFE64 /* FMDatabaseAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 03380596127CEC2500EAFE64 /* FMDatabaseAdditions.m */; }; + 0338059B127CEC2500EAFE64 /* FMResultSet.m in Sources */ = {isa = PBXBuildFile; fileRef = 03380598127CEC2500EAFE64 /* FMResultSet.m */; }; + 033805AE127CEC3100EAFE64 /* EXFGPS.m in Sources */ = {isa = PBXBuildFile; fileRef = 0338059F127CEC3100EAFE64 /* EXFGPS.m */; }; + 033805AF127CEC3100EAFE64 /* EXFHandlers.m in Sources */ = {isa = PBXBuildFile; fileRef = 033805A1127CEC3100EAFE64 /* EXFHandlers.m */; }; + 033805B0127CEC3100EAFE64 /* EXFJFIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 033805A3127CEC3100EAFE64 /* EXFJFIF.m */; }; + 033805B1127CEC3100EAFE64 /* EXFJpeg.m in Sources */ = {isa = PBXBuildFile; fileRef = 033805A5127CEC3100EAFE64 /* EXFJpeg.m */; }; + 033805B2127CEC3100EAFE64 /* EXFMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = 033805A8127CEC3100EAFE64 /* EXFMetaData.m */; }; + 033805B3127CEC3100EAFE64 /* EXFTagDefinitionHolder.m in Sources */ = {isa = PBXBuildFile; fileRef = 033805AB127CEC3100EAFE64 /* EXFTagDefinitionHolder.m */; }; + 033805B4127CEC3100EAFE64 /* EXFUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 033805AD127CEC3100EAFE64 /* EXFUtils.m */; }; + 033805B8127CEC4200EAFE64 /* OUILookupTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 033805B7127CEC4200EAFE64 /* OUILookupTool.m */; }; + 033805DC127CECF900EAFE64 /* LICENSE in Resources */ = {isa = PBXBuildFile; fileRef = 033805CD127CECF900EAFE64 /* LICENSE */; }; + 033805DD127CECF900EAFE64 /* NSObject+SBJSON.m in Sources */ = {isa = PBXBuildFile; fileRef = 033805CF127CECF900EAFE64 /* NSObject+SBJSON.m */; }; + 033805DE127CECF900EAFE64 /* NSString+SBJSON.m in Sources */ = {isa = PBXBuildFile; fileRef = 033805D1127CECF900EAFE64 /* NSString+SBJSON.m */; }; + 033805DF127CECF900EAFE64 /* Readme.markdown in Resources */ = {isa = PBXBuildFile; fileRef = 033805D2127CECF900EAFE64 /* Readme.markdown */; }; + 033805E0127CECF900EAFE64 /* SBJsonBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 033805D4127CECF900EAFE64 /* SBJsonBase.m */; }; + 033805E1127CECF900EAFE64 /* SBJsonParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 033805D6127CECF900EAFE64 /* SBJsonParser.m */; }; + 033805E2127CECF900EAFE64 /* SBJsonStreamWriter.m in Sources */ = {isa = PBXBuildFile; fileRef = 033805D8127CECF900EAFE64 /* SBJsonStreamWriter.m */; }; + 033805E3127CECF900EAFE64 /* SBJsonWriter.m in Sources */ = {isa = PBXBuildFile; fileRef = 033805DA127CECF900EAFE64 /* SBJsonWriter.m */; }; 0364934110B16DDD00C88803 /* SPSourceKeyboardTVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 0364934010B16DDD00C88803 /* SPSourceKeyboardTVC.m */; }; 0364948C10B28BC800C88803 /* SPSourceTVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 0364948B10B28BC800C88803 /* SPSourceTVC.m */; }; 037D3A8110F3D57B003A85B0 /* SPEmailMobileMeAccount.m in Sources */ = {isa = PBXBuildFile; fileRef = 037D3A8010F3D57B003A85B0 /* SPEmailMobileMeAccount.m */; }; @@ -69,9 +80,6 @@ 03B6EFCA10BB547600CF9139 /* gpl-2.0.txt in Resources */ = {isa = PBXBuildFile; fileRef = 03B6EFC910BB547600CF9139 /* gpl-2.0.txt */; }; 03B6F00410BB588A00CF9139 /* white_hat_mask.png in Resources */ = {isa = PBXBuildFile; fileRef = 03B6F00310BB588A00CF9139 /* white_hat_mask.png */; }; 03B6F03510BB5F4800CF9139 /* email_mask.png in Resources */ = {isa = PBXBuildFile; fileRef = 03B6F03410BB5F4800CF9139 /* email_mask.png */; }; - 03F247141236E1440017F214 /* FMDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = 03F2470F1236E1440017F214 /* FMDatabase.m */; }; - 03F247151236E1440017F214 /* FMDatabaseAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 03F247111236E1440017F214 /* FMDatabaseAdditions.m */; }; - 03F247161236E1440017F214 /* FMResultSet.m in Sources */ = {isa = PBXBuildFile; fileRef = 03F247131236E1440017F214 /* FMResultSet.m */; }; 03F2472F1236E25E0017F214 /* libsqlite3.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 03F2472E1236E25E0017F214 /* libsqlite3.dylib */; }; 03F2481F1236EFAC0017F214 /* NSNumber+SP.m in Sources */ = {isa = PBXBuildFile; fileRef = 03F2481E1236EFAC0017F214 /* NSNumber+SP.m */; }; 1D3623260D0F684500981E51 /* SpyPhoneAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D3623250D0F684500981E51 /* SpyPhoneAppDelegate.m */; }; @@ -100,7 +108,6 @@ 0317498710B6F49300B6116E /* SPEmailIMAPAccount.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SPEmailIMAPAccount.h; sourceTree = ""; }; 0317498810B6F49300B6116E /* SPEmailIMAPAccount.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SPEmailIMAPAccount.m; sourceTree = ""; }; 031749AE10B6FB9C00B6116E /* AddressBook.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AddressBook.framework; path = System/Library/Frameworks/AddressBook.framework; sourceTree = SDKROOT; }; - 0317DE5110FF954800C5C2D4 /* UIApplication_TVOut.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UIApplication_TVOut.m; sourceTree = ""; }; 0317DE6810FF95CC00C5C2D4 /* MediaPlayer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MediaPlayer.framework; path = System/Library/Frameworks/MediaPlayer.framework; sourceTree = SDKROOT; }; 0317DE7B10FF98E900C5C2D4 /* Settings.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = Settings.bundle; sourceTree = ""; }; 031CD54810BB4A29007C133E /* Email.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Email.png; sourceTree = ""; }; @@ -137,24 +144,6 @@ 0328F8BF10B0B1AE0074A5A1 /* SPWebViewVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SPWebViewVC.m; sourceTree = ""; }; 0328F95F10B0CB140074A5A1 /* SPSourceAddressBookTVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SPSourceAddressBookTVC.h; sourceTree = ""; }; 0328F96010B0CB140074A5A1 /* SPSourceAddressBookTVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SPSourceAddressBookTVC.m; sourceTree = ""; }; - 032A7B9110B829DB00E7FB65 /* EXFLogging.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EXFLogging.h; sourceTree = ""; }; - 032A7B9210B829DB00E7FB65 /* EXF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EXF.h; sourceTree = ""; }; - 032A7B9310B829DB00E7FB65 /* EXFConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EXFConstants.h; sourceTree = ""; }; - 032A7B9410B829DB00E7FB65 /* EXFGPS.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EXFGPS.h; sourceTree = ""; }; - 032A7B9510B829DB00E7FB65 /* EXFGPS.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EXFGPS.m; sourceTree = ""; }; - 032A7B9610B829DB00E7FB65 /* EXFHandlers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EXFHandlers.h; sourceTree = ""; }; - 032A7B9710B829DB00E7FB65 /* EXFHandlers.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EXFHandlers.m; sourceTree = ""; }; - 032A7B9810B829DB00E7FB65 /* EXFJFIF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EXFJFIF.h; sourceTree = ""; }; - 032A7B9910B829DB00E7FB65 /* EXFJFIF.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EXFJFIF.m; sourceTree = ""; }; - 032A7B9A10B829DB00E7FB65 /* EXFJpeg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EXFJpeg.h; sourceTree = ""; }; - 032A7B9B10B829DB00E7FB65 /* EXFJpeg.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EXFJpeg.m; sourceTree = ""; }; - 032A7B9C10B829DB00E7FB65 /* EXFMutableMetaData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EXFMutableMetaData.h; sourceTree = ""; }; - 032A7B9D10B829DB00E7FB65 /* EXFMetaData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EXFMetaData.h; sourceTree = ""; }; - 032A7B9E10B829DB00E7FB65 /* EXFMetaData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EXFMetaData.m; sourceTree = ""; }; - 032A7B9F10B829DB00E7FB65 /* EXFTagDefinitionHolder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EXFTagDefinitionHolder.h; sourceTree = ""; }; - 032A7BA010B829DB00E7FB65 /* EXFTagDefinitionHolder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EXFTagDefinitionHolder.m; sourceTree = ""; }; - 032A7BA110B829DB00E7FB65 /* EXFUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EXFUtils.h; sourceTree = ""; }; - 032A7BA210B829DB00E7FB65 /* EXFUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EXFUtils.m; sourceTree = ""; }; 032A7D8F10B844EF00E7FB65 /* CoreLocation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreLocation.framework; path = System/Library/Frameworks/CoreLocation.framework; sourceTree = SDKROOT; }; 032A7E0410B84C1800E7FB65 /* UIImage+GPS.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+GPS.h"; sourceTree = ""; }; 032A7E0510B84C1800E7FB65 /* UIImage+GPS.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+GPS.m"; sourceTree = ""; }; @@ -171,6 +160,48 @@ 032A819510B8E7C600E7FB65 /* SPEmailReportVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SPEmailReportVC.h; sourceTree = ""; }; 032A819610B8E7C600E7FB65 /* SPEmailReportVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SPEmailReportVC.m; sourceTree = ""; }; 032A81C910B8EB6100E7FB65 /* MessageUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MessageUI.framework; path = System/Library/Frameworks/MessageUI.framework; sourceTree = SDKROOT; }; + 03380593127CEC2500EAFE64 /* FMDatabase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FMDatabase.h; path = FMDB/FMDatabase.h; sourceTree = SOURCE_ROOT; }; + 03380594127CEC2500EAFE64 /* FMDatabase.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FMDatabase.m; path = FMDB/FMDatabase.m; sourceTree = SOURCE_ROOT; }; + 03380595127CEC2500EAFE64 /* FMDatabaseAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FMDatabaseAdditions.h; path = FMDB/FMDatabaseAdditions.h; sourceTree = SOURCE_ROOT; }; + 03380596127CEC2500EAFE64 /* FMDatabaseAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FMDatabaseAdditions.m; path = FMDB/FMDatabaseAdditions.m; sourceTree = SOURCE_ROOT; }; + 03380597127CEC2500EAFE64 /* FMResultSet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FMResultSet.h; path = FMDB/FMResultSet.h; sourceTree = SOURCE_ROOT; }; + 03380598127CEC2500EAFE64 /* FMResultSet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FMResultSet.m; path = FMDB/FMResultSet.m; sourceTree = SOURCE_ROOT; }; + 0338059C127CEC3100EAFE64 /* EXF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EXF.h; path = EXIF/EXF.h; sourceTree = SOURCE_ROOT; }; + 0338059D127CEC3100EAFE64 /* EXFConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EXFConstants.h; path = EXIF/EXFConstants.h; sourceTree = SOURCE_ROOT; }; + 0338059E127CEC3100EAFE64 /* EXFGPS.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EXFGPS.h; path = EXIF/EXFGPS.h; sourceTree = SOURCE_ROOT; }; + 0338059F127CEC3100EAFE64 /* EXFGPS.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EXFGPS.m; path = EXIF/EXFGPS.m; sourceTree = SOURCE_ROOT; }; + 033805A0127CEC3100EAFE64 /* EXFHandlers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EXFHandlers.h; path = EXIF/EXFHandlers.h; sourceTree = SOURCE_ROOT; }; + 033805A1127CEC3100EAFE64 /* EXFHandlers.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EXFHandlers.m; path = EXIF/EXFHandlers.m; sourceTree = SOURCE_ROOT; }; + 033805A2127CEC3100EAFE64 /* EXFJFIF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EXFJFIF.h; path = EXIF/EXFJFIF.h; sourceTree = SOURCE_ROOT; }; + 033805A3127CEC3100EAFE64 /* EXFJFIF.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EXFJFIF.m; path = EXIF/EXFJFIF.m; sourceTree = SOURCE_ROOT; }; + 033805A4127CEC3100EAFE64 /* EXFJpeg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EXFJpeg.h; path = EXIF/EXFJpeg.h; sourceTree = SOURCE_ROOT; }; + 033805A5127CEC3100EAFE64 /* EXFJpeg.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EXFJpeg.m; path = EXIF/EXFJpeg.m; sourceTree = SOURCE_ROOT; }; + 033805A6127CEC3100EAFE64 /* EXFLogging.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EXFLogging.h; path = EXIF/EXFLogging.h; sourceTree = SOURCE_ROOT; }; + 033805A7127CEC3100EAFE64 /* EXFMetaData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EXFMetaData.h; path = EXIF/EXFMetaData.h; sourceTree = SOURCE_ROOT; }; + 033805A8127CEC3100EAFE64 /* EXFMetaData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EXFMetaData.m; path = EXIF/EXFMetaData.m; sourceTree = SOURCE_ROOT; }; + 033805A9127CEC3100EAFE64 /* EXFMutableMetaData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EXFMutableMetaData.h; path = EXIF/EXFMutableMetaData.h; sourceTree = SOURCE_ROOT; }; + 033805AA127CEC3100EAFE64 /* EXFTagDefinitionHolder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EXFTagDefinitionHolder.h; path = EXIF/EXFTagDefinitionHolder.h; sourceTree = SOURCE_ROOT; }; + 033805AB127CEC3100EAFE64 /* EXFTagDefinitionHolder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EXFTagDefinitionHolder.m; path = EXIF/EXFTagDefinitionHolder.m; sourceTree = SOURCE_ROOT; }; + 033805AC127CEC3100EAFE64 /* EXFUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EXFUtils.h; path = EXIF/EXFUtils.h; sourceTree = SOURCE_ROOT; }; + 033805AD127CEC3100EAFE64 /* EXFUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EXFUtils.m; path = EXIF/EXFUtils.m; sourceTree = SOURCE_ROOT; }; + 033805B6127CEC4200EAFE64 /* OUILookupTool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OUILookupTool.h; sourceTree = ""; }; + 033805B7127CEC4200EAFE64 /* OUILookupTool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OUILookupTool.m; sourceTree = ""; }; + 033805CC127CECF900EAFE64 /* JSON.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSON.h; sourceTree = ""; }; + 033805CD127CECF900EAFE64 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; + 033805CE127CECF900EAFE64 /* NSObject+SBJSON.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+SBJSON.h"; sourceTree = ""; }; + 033805CF127CECF900EAFE64 /* NSObject+SBJSON.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+SBJSON.m"; sourceTree = ""; }; + 033805D0127CECF900EAFE64 /* NSString+SBJSON.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+SBJSON.h"; sourceTree = ""; }; + 033805D1127CECF900EAFE64 /* NSString+SBJSON.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+SBJSON.m"; sourceTree = ""; }; + 033805D2127CECF900EAFE64 /* Readme.markdown */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Readme.markdown; sourceTree = ""; }; + 033805D3127CECF900EAFE64 /* SBJsonBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SBJsonBase.h; sourceTree = ""; }; + 033805D4127CECF900EAFE64 /* SBJsonBase.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SBJsonBase.m; sourceTree = ""; }; + 033805D5127CECF900EAFE64 /* SBJsonParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SBJsonParser.h; sourceTree = ""; }; + 033805D6127CECF900EAFE64 /* SBJsonParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SBJsonParser.m; sourceTree = ""; }; + 033805D7127CECF900EAFE64 /* SBJsonStreamWriter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SBJsonStreamWriter.h; sourceTree = ""; }; + 033805D8127CECF900EAFE64 /* SBJsonStreamWriter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SBJsonStreamWriter.m; sourceTree = ""; }; + 033805D9127CECF900EAFE64 /* SBJsonWriter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SBJsonWriter.h; sourceTree = ""; }; + 033805DA127CECF900EAFE64 /* SBJsonWriter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SBJsonWriter.m; sourceTree = ""; }; + 033805DB127CECF900EAFE64 /* SBProxyForJson.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SBProxyForJson.h; sourceTree = ""; }; 0364933F10B16DDD00C88803 /* SPSourceKeyboardTVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SPSourceKeyboardTVC.h; sourceTree = ""; }; 0364934010B16DDD00C88803 /* SPSourceKeyboardTVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SPSourceKeyboardTVC.m; sourceTree = ""; }; 0364948A10B28BC800C88803 /* SPSourceTVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SPSourceTVC.h; sourceTree = ""; }; @@ -183,12 +214,6 @@ 03B6EFC910BB547600CF9139 /* gpl-2.0.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "gpl-2.0.txt"; sourceTree = ""; }; 03B6F00310BB588A00CF9139 /* white_hat_mask.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = white_hat_mask.png; sourceTree = ""; }; 03B6F03410BB5F4800CF9139 /* email_mask.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = email_mask.png; sourceTree = ""; }; - 03F2470E1236E1440017F214 /* FMDatabase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FMDatabase.h; sourceTree = ""; }; - 03F2470F1236E1440017F214 /* FMDatabase.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FMDatabase.m; sourceTree = ""; }; - 03F247101236E1440017F214 /* FMDatabaseAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FMDatabaseAdditions.h; sourceTree = ""; }; - 03F247111236E1440017F214 /* FMDatabaseAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FMDatabaseAdditions.m; sourceTree = ""; }; - 03F247121236E1440017F214 /* FMResultSet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FMResultSet.h; sourceTree = ""; }; - 03F247131236E1440017F214 /* FMResultSet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FMResultSet.m; sourceTree = ""; }; 03F2472E1236E25E0017F214 /* libsqlite3.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libsqlite3.dylib; path = /usr/lib/libsqlite3.dylib; sourceTree = ""; }; 03F2481D1236EFAC0017F214 /* NSNumber+SP.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSNumber+SP.h"; sourceTree = ""; }; 03F2481E1236EFAC0017F214 /* NSNumber+SP.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSNumber+SP.m"; sourceTree = ""; }; @@ -278,30 +303,62 @@ 032A7B9010B829D100E7FB65 /* EXIF */ = { isa = PBXGroup; children = ( + 0338059C127CEC3100EAFE64 /* EXF.h */, + 0338059D127CEC3100EAFE64 /* EXFConstants.h */, + 0338059E127CEC3100EAFE64 /* EXFGPS.h */, + 0338059F127CEC3100EAFE64 /* EXFGPS.m */, + 033805A0127CEC3100EAFE64 /* EXFHandlers.h */, + 033805A1127CEC3100EAFE64 /* EXFHandlers.m */, + 033805A2127CEC3100EAFE64 /* EXFJFIF.h */, + 033805A3127CEC3100EAFE64 /* EXFJFIF.m */, + 033805A4127CEC3100EAFE64 /* EXFJpeg.h */, + 033805A5127CEC3100EAFE64 /* EXFJpeg.m */, + 033805A6127CEC3100EAFE64 /* EXFLogging.h */, + 033805A7127CEC3100EAFE64 /* EXFMetaData.h */, + 033805A8127CEC3100EAFE64 /* EXFMetaData.m */, + 033805A9127CEC3100EAFE64 /* EXFMutableMetaData.h */, + 033805AA127CEC3100EAFE64 /* EXFTagDefinitionHolder.h */, + 033805AB127CEC3100EAFE64 /* EXFTagDefinitionHolder.m */, + 033805AC127CEC3100EAFE64 /* EXFUtils.h */, + 033805AD127CEC3100EAFE64 /* EXFUtils.m */, 032A7E0410B84C1800E7FB65 /* UIImage+GPS.h */, 032A7E0510B84C1800E7FB65 /* UIImage+GPS.m */, - 032A7B9110B829DB00E7FB65 /* EXFLogging.h */, - 032A7B9210B829DB00E7FB65 /* EXF.h */, - 032A7B9310B829DB00E7FB65 /* EXFConstants.h */, - 032A7B9410B829DB00E7FB65 /* EXFGPS.h */, - 032A7B9510B829DB00E7FB65 /* EXFGPS.m */, - 032A7B9610B829DB00E7FB65 /* EXFHandlers.h */, - 032A7B9710B829DB00E7FB65 /* EXFHandlers.m */, - 032A7B9810B829DB00E7FB65 /* EXFJFIF.h */, - 032A7B9910B829DB00E7FB65 /* EXFJFIF.m */, - 032A7B9A10B829DB00E7FB65 /* EXFJpeg.h */, - 032A7B9B10B829DB00E7FB65 /* EXFJpeg.m */, - 032A7B9C10B829DB00E7FB65 /* EXFMutableMetaData.h */, - 032A7B9D10B829DB00E7FB65 /* EXFMetaData.h */, - 032A7B9E10B829DB00E7FB65 /* EXFMetaData.m */, - 032A7B9F10B829DB00E7FB65 /* EXFTagDefinitionHolder.h */, - 032A7BA010B829DB00E7FB65 /* EXFTagDefinitionHolder.m */, - 032A7BA110B829DB00E7FB65 /* EXFUtils.h */, - 032A7BA210B829DB00E7FB65 /* EXFUtils.m */, ); name = EXIF; sourceTree = ""; }; + 033805B5127CEC4200EAFE64 /* OUILookupTool */ = { + isa = PBXGroup; + children = ( + 033805B6127CEC4200EAFE64 /* OUILookupTool.h */, + 033805B7127CEC4200EAFE64 /* OUILookupTool.m */, + ); + path = OUILookupTool; + sourceTree = SOURCE_ROOT; + }; + 033805CB127CECF900EAFE64 /* JSON */ = { + isa = PBXGroup; + children = ( + 033805CC127CECF900EAFE64 /* JSON.h */, + 033805CD127CECF900EAFE64 /* LICENSE */, + 033805CE127CECF900EAFE64 /* NSObject+SBJSON.h */, + 033805CF127CECF900EAFE64 /* NSObject+SBJSON.m */, + 033805D0127CECF900EAFE64 /* NSString+SBJSON.h */, + 033805D1127CECF900EAFE64 /* NSString+SBJSON.m */, + 033805D2127CECF900EAFE64 /* Readme.markdown */, + 033805D3127CECF900EAFE64 /* SBJsonBase.h */, + 033805D4127CECF900EAFE64 /* SBJsonBase.m */, + 033805D5127CECF900EAFE64 /* SBJsonParser.h */, + 033805D6127CECF900EAFE64 /* SBJsonParser.m */, + 033805D7127CECF900EAFE64 /* SBJsonStreamWriter.h */, + 033805D8127CECF900EAFE64 /* SBJsonStreamWriter.m */, + 033805D9127CECF900EAFE64 /* SBJsonWriter.h */, + 033805DA127CECF900EAFE64 /* SBJsonWriter.m */, + 033805DB127CECF900EAFE64 /* SBProxyForJson.h */, + ); + path = JSON; + sourceTree = SOURCE_ROOT; + }; 03B6EFF510BB577A00CF9139 /* SPSourcesIcons */ = { isa = PBXGroup; children = ( @@ -321,12 +378,12 @@ 03F2470B1236E1180017F214 /* FMDB */ = { isa = PBXGroup; children = ( - 03F2470E1236E1440017F214 /* FMDatabase.h */, - 03F2470F1236E1440017F214 /* FMDatabase.m */, - 03F247101236E1440017F214 /* FMDatabaseAdditions.h */, - 03F247111236E1440017F214 /* FMDatabaseAdditions.m */, - 03F247121236E1440017F214 /* FMResultSet.h */, - 03F247131236E1440017F214 /* FMResultSet.m */, + 03380593127CEC2500EAFE64 /* FMDatabase.h */, + 03380594127CEC2500EAFE64 /* FMDatabase.m */, + 03380595127CEC2500EAFE64 /* FMDatabaseAdditions.h */, + 03380596127CEC2500EAFE64 /* FMDatabaseAdditions.m */, + 03380597127CEC2500EAFE64 /* FMResultSet.h */, + 03380598127CEC2500EAFE64 /* FMResultSet.m */, ); name = FMDB; sourceTree = ""; @@ -336,6 +393,8 @@ children = ( 03F2470B1236E1180017F214 /* FMDB */, 032A7B9010B829D100E7FB65 /* EXIF */, + 033805CB127CECF900EAFE64 /* JSON */, + 033805B5127CEC4200EAFE64 /* OUILookupTool */, 031748C110B6E67C00B6116E /* SPEmailAccounts */, 031748C210B6E68E00B6116E /* SPSources */, 0328F50810B065530074A5A1 /* SPCell.h */, @@ -387,7 +446,6 @@ isa = PBXGroup; children = ( 28A0AB4B0D9B1048005BE974 /* SpyPhone_Prefix.pch */, - 0317DE5110FF954800C5C2D4 /* UIApplication_TVOut.m */, 29B97316FDCFA39411CA2CEA /* main.m */, ); name = "Other Sources"; @@ -461,7 +519,14 @@ isa = PBXProject; buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "SpyPhone" */; compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; hasScannedForEncodings = 1; + knownRegions = ( + English, + Japanese, + French, + German, + ); mainGroup = 29B97314FDCFA39411CA2CEA /* MyData */; projectDirPath = ""; projectRoot = ""; @@ -502,6 +567,8 @@ 03B2C06110BB62A300E05ECB /* data.png in Resources */, 03B2C09410BB66DB00E05ECB /* report.png in Resources */, 0317DE7C10FF98E900C5C2D4 /* Settings.bundle in Resources */, + 033805DC127CECF900EAFE64 /* LICENSE in Resources */, + 033805DF127CECF900EAFE64 /* Readme.markdown in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -534,24 +601,30 @@ 031748CA10B6E9A000B6116E /* SPEmailIToolsAccount.m in Sources */, 0317498610B6F3A300B6116E /* SPEmailGmailAccount.m in Sources */, 0317498910B6F49300B6116E /* SPEmailIMAPAccount.m in Sources */, - 032A7BA310B829DB00E7FB65 /* EXFGPS.m in Sources */, - 032A7BA610B829DB00E7FB65 /* EXFJpeg.m in Sources */, - 032A7DB310B8476800E7FB65 /* EXFHandlers.m in Sources */, - 032A7DB610B8476C00E7FB65 /* EXFJFIF.m in Sources */, - 032A7DB910B8477000E7FB65 /* EXFMetaData.m in Sources */, - 032A7DBF10B8477700E7FB65 /* EXFTagDefinitionHolder.m in Sources */, - 032A7DC210B8477900E7FB65 /* EXFUtils.m in Sources */, 032A7E0610B84C1800E7FB65 /* UIImage+GPS.m in Sources */, 032A7EB110B85E9C00E7FB65 /* SPMapVC.m in Sources */, 032A7ECB10B8617C00E7FB65 /* SPImageAnnotation.m in Sources */, 032A819710B8E7C600E7FB65 /* SPEmailReportVC.m in Sources */, 0310C65510C4BE0800E7ACD2 /* SPImageVC.m in Sources */, 037D3A8110F3D57B003A85B0 /* SPEmailMobileMeAccount.m in Sources */, - 0317DE5210FF954800C5C2D4 /* UIApplication_TVOut.m in Sources */, - 03F247141236E1440017F214 /* FMDatabase.m in Sources */, - 03F247151236E1440017F214 /* FMDatabaseAdditions.m in Sources */, - 03F247161236E1440017F214 /* FMResultSet.m in Sources */, 03F2481F1236EFAC0017F214 /* NSNumber+SP.m in Sources */, + 03380599127CEC2500EAFE64 /* FMDatabase.m in Sources */, + 0338059A127CEC2500EAFE64 /* FMDatabaseAdditions.m in Sources */, + 0338059B127CEC2500EAFE64 /* FMResultSet.m in Sources */, + 033805AE127CEC3100EAFE64 /* EXFGPS.m in Sources */, + 033805AF127CEC3100EAFE64 /* EXFHandlers.m in Sources */, + 033805B0127CEC3100EAFE64 /* EXFJFIF.m in Sources */, + 033805B1127CEC3100EAFE64 /* EXFJpeg.m in Sources */, + 033805B2127CEC3100EAFE64 /* EXFMetaData.m in Sources */, + 033805B3127CEC3100EAFE64 /* EXFTagDefinitionHolder.m in Sources */, + 033805B4127CEC3100EAFE64 /* EXFUtils.m in Sources */, + 033805B8127CEC4200EAFE64 /* OUILookupTool.m in Sources */, + 033805DD127CECF900EAFE64 /* NSObject+SBJSON.m in Sources */, + 033805DE127CECF900EAFE64 /* NSString+SBJSON.m in Sources */, + 033805E0127CECF900EAFE64 /* SBJsonBase.m in Sources */, + 033805E1127CECF900EAFE64 /* SBJsonParser.m in Sources */, + 033805E2127CECF900EAFE64 /* SBJsonStreamWriter.m in Sources */, + 033805E3127CECF900EAFE64 /* SBJsonWriter.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -602,7 +675,7 @@ GCC_WARN_UNUSED_VARIABLE = YES; PREBINDING = NO; "PROVISIONING_PROFILE[sdk=iphoneos*]" = ""; - SDKROOT = iphoneos3.2; + SDKROOT = iphoneos4.1; }; name = Debug; }; @@ -616,7 +689,7 @@ GCC_WARN_UNUSED_VARIABLE = YES; PREBINDING = NO; "PROVISIONING_PROFILE[sdk=iphoneos*]" = "32101231-1E4B-460A-8AF0-A5BD41F1D898"; - SDKROOT = iphoneos3.2; + SDKROOT = iphoneos4.1; }; name = Release; }; diff --git a/UIApplication_TVOut.m b/UIApplication_TVOut.m deleted file mode 100644 index 60a2446..0000000 --- a/UIApplication_TVOut.m +++ /dev/null @@ -1,131 +0,0 @@ -// -// UIApplication+TVOut.m -// MediaMotion2 -// -// Created by Rob Terrell on 5/15/09 -// Copyright 2009 Stinkbot LLC. All rights reserved. -// - -// http://gist.github.com/119128 - -#define kFPS 10 -#define kUseBackgroundThread YES - -@interface UIApplication (tvout) -- (void) startTVOut; -- (void) stopTVOut; -- (void) updateTVOut; -@end - -@interface MPTVOutWindow : UIWindow -- (id)initWithVideoView:(id)fp8; -@end - -@interface MPVideoView : UIView -- (id)initWithFrame:(struct CGRect)fp8; -@end - -@implementation MPVideoView (tvout) -- (void) addSubview: (UIView *) aView -{ - [super addSubview:aView]; -} -@end - -CGImageRef UIGetScreenImage(); - -@interface UIImage (tvout) -+ (UIImage *)imageWithScreenContents; -@end - -@implementation UIImage (tvout) -+ (UIImage *)imageWithScreenContents -{ - CGImageRef cgScreen = UIGetScreenImage(); - if (cgScreen) { - UIImage *result = [UIImage imageWithCGImage:cgScreen]; - CGImageRelease(cgScreen); - return result; - } - return nil; -} -@end - -UIWindow* deviceWindow; -MPTVOutWindow* tvoutWindow; -NSTimer *updateTimer; -UIImage *image; -UIImageView *mirrorView; -BOOL done; - -@implementation UIApplication (tvout) - -// if you uncomment this, you won't need to call startTVOut in your app. -// but the home button will no longer work! Other badness may follow! -// -// - (void)reportAppLaunchFinished; -//{ -// [self startTVOut]; -//} - - -- (void) startTVOut; -{ - // you need to have a main window already open when you call start - if (!tvoutWindow) { - deviceWindow = [self keyWindow]; - - MPVideoView *vidView = [[MPVideoView alloc] initWithFrame: CGRectZero]; - tvoutWindow = [[MPTVOutWindow alloc] initWithVideoView:vidView]; - [tvoutWindow makeKeyAndVisible]; - tvoutWindow.userInteractionEnabled = NO; - - mirrorView = [[UIImageView alloc] initWithFrame: [[UIScreen mainScreen] bounds]]; - - if ([UIApplication sharedApplication].statusBarOrientation != UIInterfaceOrientationPortrait) { - mirrorView.transform = CGAffineTransformRotate(mirrorView.transform, M_PI * 1.5); - } - mirrorView.center = vidView.center; - [vidView addSubview: mirrorView]; - - [deviceWindow makeKeyAndVisible]; - - [NSThread detachNewThreadSelector:@selector(updateLoop) toTarget:self withObject:nil]; - } -} - -- (void) stopTVOut; -{ - done = YES; - if (updateTimer) { - [updateTimer invalidate]; - [updateTimer release]; - updateTimer = nil; - } - if (tvoutWindow) { - [tvoutWindow release]; - tvoutWindow = nil; - } -} - -- (void) updateTVOut; -{ - image = [UIImage imageWithScreenContents]; - mirrorView.image = image; -} - - -- (void)updateLoop; -{ - NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; - done = NO; - - while ( ! done ) - { - [self performSelectorOnMainThread:@selector(updateTVOut) withObject:nil waitUntilDone:NO]; - [NSThread sleepForTimeInterval: (1.0/kFPS) ]; - } - [pool release]; -} - -@end