├── webarchiver_Prefix.pch ├── .gitignore ├── NSURL+ValidityChecking.h ├── Configs └── Base.xcconfig ├── KBWebArchiver.h ├── NSURL+ValidityChecking.m ├── webarchiver.m ├── README.md ├── webarchiver.xcodeproj ├── project.pbxproj └── paulb.mode1 ├── KBWebArchiver.m └── LICENSE /webarchiver_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'webarchiver' target in the 'webarchiver' project. 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | build/* 3 | *.pbxuser 4 | !default.pbxuser 5 | *.mode1v3 6 | !default.mode1v3 7 | *.mode2v3 8 | !default.mode2v3 9 | *.perspectivev3 10 | !default.perspectivev3 11 | *.xcworkspace 12 | !default.xcworkspace 13 | xcuserdata 14 | profile 15 | *.moved-aside 16 | 17 | ## Ignore incredibly annoying .DS_Store files 18 | .DS_Store 19 | -------------------------------------------------------------------------------- /NSURL+ValidityChecking.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSURL_ValidityChecking.h 3 | // Scrivener 4 | // 5 | // Created by Keith Blount on 19/08/2007. 6 | // 7 | // Category on NSURL to check whether an HTTP URL is valid - thanks to whoever posted it on CocoaDev 8 | // (http://www.cocoadev.com/index.pl?FileExistsAtURL) 9 | 10 | #import 11 | 12 | 13 | @interface NSURL (ValidityChecking) 14 | - (BOOL)httpIsValid; 15 | @end 16 | -------------------------------------------------------------------------------- /Configs/Base.xcconfig: -------------------------------------------------------------------------------- 1 | ARCHS = $(ARCHS_STANDARD_32_64_BIT) 2 | SDKROOT = macosx10.7 3 | GCC_VERSION = com.apple.compilers.llvm.clang.1_0 4 | GCC_C_LANGUAGE_STANDARD = c99 5 | 6 | PREBINDING = NO 7 | GCC_WARN_CHECK_SWITCH_STATEMENTS = YES 8 | GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO 9 | GCC_WARN_SHADOW = YES 10 | GCC_TREAT_WARNINGS_AS_ERRORS = NO // Enable once the current warnings have been eliminated 11 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES 12 | GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS = YES 13 | GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES 14 | GCC_WARN_ABOUT_RETURN_TYPE = YES 15 | GCC_WARN_MISSING_PARENTHESES = YES 16 | GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES 17 | GCC_WARN_ABOUT_MISSING_NEWLINE = YES 18 | GCC_WARN_NON_VIRTUAL_DESTRUCTOR = YES 19 | GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS = YES 20 | GCC_WARN_SIGN_COMPARE = YES 21 | GCC_WARN_TYPECHECK_CALLS_TO_PRINTF = YES 22 | GCC_WARN_UNDECLARED_SELECTOR = YES 23 | GCC_TREAT_IMPLICIT_FUNCTION_DECLARATIONS_AS_ERRORS = YES 24 | GCC_WARN_UNINITIALIZED_AUTOS = YES 25 | GCC_WARN_UNKNOWN_PRAGMAS = YES 26 | GCC_WARN_UNUSED_FUNCTION = YES 27 | GCC_WARN_UNUSED_LABEL = YES 28 | GCC_WARN_UNUSED_PARAMETER = NO 29 | GCC_WARN_UNUSED_VALUE = YES 30 | GCC_WARN_UNUSED_VARIABLE = YES 31 | 32 | -------------------------------------------------------------------------------- /KBWebArchiver.h: -------------------------------------------------------------------------------- 1 | // 2 | // KBWebArchiver.h 3 | // --------------- 4 | // 5 | // (c) Keith Blount 2005 (updated 2008) 6 | // 7 | // Takes a URL string and creates a webarchive. It can also retrieve the page title and the plain text string of the web page. 8 | // 9 | 10 | #import 11 | #import 12 | 13 | extern NSString *const KBWebArchiverErrorDomain; 14 | 15 | typedef NS_ENUM(NSUInteger, KBWebArchiverErrorCode) { 16 | KBWebArchiverErrorCodeUnknown = 0, 17 | KBWebArchiverErrorCodeInvalidURL = 1, 18 | KBWebArchiverErrorCodeLoadFailed = 2, 19 | KBWebArchiverErrorCodeArchiveCreationFailed = 3 20 | }; 21 | 22 | @interface KBWebArchiver : NSObject 23 | { 24 | NSURL *_URL; 25 | NSString *_customJS; 26 | 27 | NSMutableDictionary *_archiveInformation; 28 | BOOL _finishedLoading; 29 | BOOL _loadFailed; 30 | 31 | BOOL _localResourceLoadingOnly; 32 | } 33 | 34 | @property (nonatomic, readwrite, strong) NSURL *URL; 35 | @property (nonatomic, readwrite, strong) NSString *customJS; 36 | @property (nonatomic) BOOL localResourceLoadingOnly; 37 | 38 | - (id)initWithURLString:(NSString *)aURLString isFilePath:(BOOL)isFilePath; 39 | - (id)initWithURLString:(NSString *)aURLString; 40 | - (id)initWithURL:(NSURL *)aURL; 41 | 42 | - (void)setURLString:(NSString *)aURLString isFilePath:(BOOL)isFilePath; 43 | - (NSString *)URLString; 44 | - (BOOL)isFilePath; 45 | 46 | - (WebArchive *)webArchive; 47 | - (NSString *)string; 48 | - (NSString *)title; 49 | - (NSError *)error; 50 | 51 | @end 52 | -------------------------------------------------------------------------------- /NSURL+ValidityChecking.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSURL_ValidityChecking.m 3 | // Scrivener 4 | // 5 | // Created by Keith Blount on 19/08/2007. 6 | // 7 | 8 | #import "NSURL+ValidityChecking.h" 9 | 10 | 11 | @implementation NSURL (ValidityChecking) 12 | 13 | - (BOOL)httpIsValid 14 | { 15 | BOOL isValid = NO; 16 | #if 0 17 | NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[[self copy] autorelease] // Copy the URL here just in case (shouldn't need to) 18 | cachePolicy:NSURLRequestReloadIgnoringCacheData 19 | timeoutInterval:60]; 20 | // NOTE: setting the request type to "HEAD" really messes up the import of some web pages, although 21 | // I have no idea why anything here would mess up code in the web archiver. For intance, this URL: 22 | // http://www.adobeforums.com/cgi-bin/webx/.3bc30294/0 will not be created as a webarchive properly 23 | // if the request type is set to "HEAD" here... 24 | [request setHTTPMethod:@"HEAD"]; 25 | #endif 26 | 27 | NSURLRequestCachePolicy cachePolicy; 28 | #if (MAC_OS_X_VERSION_MIN_REQUIRED < 1050) 29 | cachePolicy = NSURLRequestReloadIgnoringCacheData; 30 | #else 31 | cachePolicy = NSURLRequestReloadIgnoringLocalCacheData; 32 | #endif 33 | 34 | NSURLRequest *request = [NSURLRequest requestWithURL:[self copy] // Don't actually send self, just in case... 35 | cachePolicy:cachePolicy 36 | timeoutInterval:30]; 37 | NSHTTPURLResponse *response = nil; 38 | [NSURLConnection sendSynchronousRequest:request 39 | returningResponse:&response 40 | error:NULL]; 41 | 42 | if ((response != nil) && ([response statusCode] == 200)) 43 | isValid = YES; 44 | 45 | return isValid; 46 | } 47 | 48 | @end 49 | -------------------------------------------------------------------------------- /webarchiver.m: -------------------------------------------------------------------------------- 1 | //If you use this code, please link to my blog: http://www.entropytheblog.com/blog/ . thanks. 2 | 3 | #import 4 | #import 5 | #import 6 | #import "KBWebArchiver.h" 7 | 8 | int main (int argc, const char * argv[]) { 9 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 10 | 11 | NSUserDefaults *args = [NSUserDefaults standardUserDefaults]; 12 | 13 | NSString *url = [args stringForKey:@"url"]; 14 | NSString *localOnlyString = [args stringForKey:@"local"]; 15 | NSString *output = [args stringForKey:@"output"]; 16 | NSString *js = [args stringForKey:@"js"]; 17 | 18 | BOOL localOnly = [localOnlyString isEqualToString:@"YES"]; 19 | 20 | if (url == nil || output == nil) { 21 | fprintf(stderr, "webarchiver 0.13\nUsage: webarchiver -url URL [-js JAVASCRIPT] -output FILE \nExample: webarchiver -url https://www.google.com -output google.webarchive\n-url\thttp:// or path to local file\n-js\tCustom JavaScript to execute after loading the page\n-output\tFile to write webarchive to\n\nUpdates can be found at https://github.com/newzealandpaul/webarchiver/\n"); 22 | exit(1); 23 | } 24 | 25 | BOOL isDirectory; 26 | BOOL diskItemExists = [[NSFileManager defaultManager] fileExistsAtPath:output 27 | isDirectory:&isDirectory]; 28 | 29 | NSString *ext = @"webarchive"; 30 | if (![[output pathExtension] isEqualToString:ext] 31 | && !isDirectory) { 32 | fprintf(stderr, "Warning: Output file does not have the .webarchive file extension\n"); 33 | } 34 | 35 | 36 | WebArchive *webarchive; 37 | KBWebArchiver *archiver = [[KBWebArchiver alloc] initWithURLString:url]; 38 | archiver.localResourceLoadingOnly = localOnly; 39 | if (js != nil) { 40 | archiver.customJS = js; 41 | } 42 | webarchive = [archiver webArchive]; 43 | NSString *title = [archiver title]; 44 | NSData *data = [webarchive data]; 45 | NSError *error = [archiver error]; 46 | [archiver release]; 47 | 48 | if ( webarchive == nil || data == nil ) { 49 | fprintf(stderr, "Error: Unable to create webarchive\n"); 50 | if (error != nil) fprintf(stderr, "%s\n", [[error description] UTF8String]); 51 | 52 | [pool drain]; 53 | return EXIT_FAILURE; 54 | } 55 | 56 | if (diskItemExists && isDirectory) { 57 | NSString *cleanedTitle = [title stringByReplacingOccurrencesOfString:@"/" 58 | withString:@":" 59 | options:NSLiteralSearch 60 | range:NSMakeRange(0, [title length])]; 61 | output = [output stringByAppendingPathComponent:cleanedTitle]; 62 | output = [output stringByAppendingPathExtension:ext]; 63 | } 64 | 65 | BOOL success = [data writeToFile:output atomically:NO]; 66 | if (success == NO) { 67 | fprintf(stderr, "Error: Unable to write webarchive to file %s\n", [output UTF8String]); 68 | 69 | [pool drain]; 70 | return EXIT_FAILURE; 71 | } 72 | 73 | [pool drain]; 74 | return EXIT_SUCCESS; 75 | } 76 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Webarchiver 2 | 3 | Webarchiver allows you to create Safari .webarchive files from the command line. Webarchives are a convenient way to store a webpage and its associated files (images, css, javascript, etc) in a single file. It is very simple to use: 4 | 5 | ./webarchiver -url https://www.google.com -output google.webarchive 6 | 7 | ## Usage 8 | 9 | $./webarchiver 10 | 11 | webarchiver 0.13 12 | Usage: webarchiver -url URL [-js JAVASCRIPT] -output FILE 13 | Example: webarchiver -url https://www.google.com -output google.webarchive 14 | -url http:// or path to local file 15 | -js Custom JavaScript to execute after loading the page 16 | -output File to write the webarchive to. 17 | 18 | Do not forget the ‘http://’ if you want to archive a webpage. If no 19 | ‘http://’ is present then webarchiver attempts to archive a local file. 20 | 21 | ## Download 22 | 23 | The easiest way to install webarchiver is by using HomeBrew or MacPorts. 24 | 25 | $ brew install webarchiver 26 | 27 | $ sudo port install webarchiver 28 | 29 | 30 | ## Release notes 31 | 32 | Version 0.13 : Fixed issue with compiling on case-sensitive filesystems. Thanks [Ryan Carsten Schmidt](https://github.com/ryandesign). 33 | 34 | Version 0.12 : Updated help output 35 | 36 | Version 0.11 : Added LICENSE and clarified license file as required by [homebrew](https://github.com/Homebrew/homebrew-core) 37 | 38 | Version 0.10 : Added the ability to execute custom javascript on page load. Thanks [Viktor Szakats](https://github.com/vszakats) 39 | 40 | Version 0.9 : Removed man page template. Updated Version number in code. Thanks [Kurt Hindenburg][] 41 | 42 | Version 0.8 : [Matias Piipari][] fixed error codes. 43 | 44 | Version 0.7 : 45 | 46 | - Modernized and improved the code. 47 | - Support for loading local HTML files without an extension. 48 | - If the output path is a folder, we now save the webarchive there. 49 | - **Big thanks to [Jan Weiß][] for the work done in this release** 50 | 51 | Version 0.6 : Cleaned up Github release. 52 | 53 | Version 0.5 : More robust KBWebArchiver ([Keith Blount][] and [Jan Weiß][]). 54 | 55 | Version 0.4 : Code maintenance and cleanup ([Jan Weiß][]). 56 | 57 | Version 0.3 : Changed URL and sorted out source for git. 58 | 59 | Version 0.2 : [John Winter][] fixed page loading issue. 60 | 61 | Version 0.1 : Initial release. 62 | 63 | ## License 64 | 65 | GNU GENERAL PUBLIC LICENSE Version 3 66 | 67 | ## Credits 68 | - [Kurt Hindenburg][] for maintenance. 69 | - [Matias Piipari][] for fixing error codes. 70 | - [Jan Weiß][] for his code fixes, clean up, 0.4 and 0.7 release. 71 | - [Keith Blount][] for his very 72 | useful KBWebArchiver class. 73 | - [John Winter][] for testing and bug fixing. Thanks John. 74 | - [Rob Griffiths][] for hosting a copy of the source when my blog was 75 | down. 76 | - Boey Maun Suang for creating a MacPort 77 | - [Viktor Szakats](https://github.com/vszakats) for js option and HomeBrew. 78 | 79 | [Matias Piipari]: https://github.com/mz2 80 | [MacPorts]: https://www.macports.org/ 81 | [Jan Weiß]: https://github.com/JanX2/webarchiver 82 | [John Winter]: http://www.shipsomecode.com/ 83 | [Keith Blount]: https://www.literatureandlatte.com/ 84 | [Rob Griffiths]: https://www.macosxhints.com/ 85 | [Kurt Hindenburg]: https://github.com/kurthindenburg?tab=activity 86 | -------------------------------------------------------------------------------- /webarchiver.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 3D94A3FC14769ED000DDA4AA /* NSURL+ValidityChecking.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D94A3FB14769ED000DDA4AA /* NSURL+ValidityChecking.m */; }; 11 | 8DD76F9A0486AA7600D96B5E /* webarchiver.m in Sources */ = {isa = PBXBuildFile; fileRef = 08FB7796FE84155DC02AAC07 /* webarchiver.m */; settings = {ATTRIBUTES = (); }; }; 12 | 8DD76F9C0486AA7600D96B5E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 08FB779EFE84155DC02AAC07 /* Foundation.framework */; }; 13 | CAA258790B918EC800697B39 /* KBWebArchiver.m in Sources */ = {isa = PBXBuildFile; fileRef = CAA258780B918EC800697B39 /* KBWebArchiver.m */; }; 14 | CAE08E260B8DE560008057C9 /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CAE08E250B8DE560008057C9 /* WebKit.framework */; }; 15 | CAE08E590B8DE5EB008057C9 /* KBWebArchiver.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = CAE08E570B8DE5EB008057C9 /* KBWebArchiver.h */; }; 16 | /* End PBXBuildFile section */ 17 | 18 | /* Begin PBXCopyFilesBuildPhase section */ 19 | 8DD76F9E0486AA7600D96B5E /* CopyFiles */ = { 20 | isa = PBXCopyFilesBuildPhase; 21 | buildActionMask = 8; 22 | dstPath = /usr/share/man/man1/; 23 | dstSubfolderSpec = 0; 24 | files = ( 25 | CAE08E590B8DE5EB008057C9 /* KBWebArchiver.h in CopyFiles */, 26 | ); 27 | runOnlyForDeploymentPostprocessing = 1; 28 | }; 29 | /* End PBXCopyFilesBuildPhase section */ 30 | 31 | /* Begin PBXFileReference section */ 32 | 08FB7796FE84155DC02AAC07 /* webarchiver.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = webarchiver.m; sourceTree = ""; }; 33 | 08FB779EFE84155DC02AAC07 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = ""; }; 34 | 32A70AAB03705E1F00C91783 /* webarchiver_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = webarchiver_Prefix.pch; sourceTree = ""; }; 35 | 3D94A3E81476954F00DDA4AA /* Base.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Base.xcconfig; sourceTree = ""; }; 36 | 3D94A3FA14769ED000DDA4AA /* NSURL+ValidityChecking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = "NSURL+ValidityChecking.h"; sourceTree = ""; }; 37 | 3D94A3FB14769ED000DDA4AA /* NSURL+ValidityChecking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = "NSURL+ValidityChecking.m"; sourceTree = ""; }; 38 | 8DD76FA10486AA7600D96B5E /* webarchiver */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = webarchiver; sourceTree = BUILT_PRODUCTS_DIR; }; 39 | CAA258780B918EC800697B39 /* KBWebArchiver.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = KBWebArchiver.m; sourceTree = ""; }; 40 | CAE08E250B8DE560008057C9 /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = /System/Library/Frameworks/WebKit.framework; sourceTree = ""; }; 41 | CAE08E570B8DE5EB008057C9 /* KBWebArchiver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = KBWebArchiver.h; sourceTree = ""; }; 42 | /* End PBXFileReference section */ 43 | 44 | /* Begin PBXFrameworksBuildPhase section */ 45 | 8DD76F9B0486AA7600D96B5E /* Frameworks */ = { 46 | isa = PBXFrameworksBuildPhase; 47 | buildActionMask = 2147483647; 48 | files = ( 49 | 8DD76F9C0486AA7600D96B5E /* Foundation.framework in Frameworks */, 50 | CAE08E260B8DE560008057C9 /* WebKit.framework in Frameworks */, 51 | ); 52 | runOnlyForDeploymentPostprocessing = 0; 53 | }; 54 | /* End PBXFrameworksBuildPhase section */ 55 | 56 | /* Begin PBXGroup section */ 57 | 08FB7794FE84155DC02AAC07 /* webarchiver */ = { 58 | isa = PBXGroup; 59 | children = ( 60 | 08FB7795FE84155DC02AAC07 /* Source */, 61 | C6859EA2029092E104C91782 /* Documentation */, 62 | 08FB779DFE84155DC02AAC07 /* External Frameworks and Libraries */, 63 | 3D94A3E71476954F00DDA4AA /* Configs */, 64 | 1AB674ADFE9D54B511CA2CBB /* Products */, 65 | ); 66 | name = webarchiver; 67 | sourceTree = ""; 68 | }; 69 | 08FB7795FE84155DC02AAC07 /* Source */ = { 70 | isa = PBXGroup; 71 | children = ( 72 | 3D94A3FA14769ED000DDA4AA /* NSURL+ValidityChecking.h */, 73 | 3D94A3FB14769ED000DDA4AA /* NSURL+ValidityChecking.m */, 74 | CAE08E570B8DE5EB008057C9 /* KBWebArchiver.h */, 75 | CAA258780B918EC800697B39 /* KBWebArchiver.m */, 76 | 32A70AAB03705E1F00C91783 /* webarchiver_Prefix.pch */, 77 | 08FB7796FE84155DC02AAC07 /* webarchiver.m */, 78 | ); 79 | name = Source; 80 | sourceTree = ""; 81 | }; 82 | 08FB779DFE84155DC02AAC07 /* External Frameworks and Libraries */ = { 83 | isa = PBXGroup; 84 | children = ( 85 | CAE08E250B8DE560008057C9 /* WebKit.framework */, 86 | 08FB779EFE84155DC02AAC07 /* Foundation.framework */, 87 | ); 88 | name = "External Frameworks and Libraries"; 89 | sourceTree = ""; 90 | }; 91 | 1AB674ADFE9D54B511CA2CBB /* Products */ = { 92 | isa = PBXGroup; 93 | children = ( 94 | 8DD76FA10486AA7600D96B5E /* webarchiver */, 95 | ); 96 | name = Products; 97 | sourceTree = ""; 98 | }; 99 | 3D94A3E71476954F00DDA4AA /* Configs */ = { 100 | isa = PBXGroup; 101 | children = ( 102 | 3D94A3E81476954F00DDA4AA /* Base.xcconfig */, 103 | ); 104 | path = Configs; 105 | sourceTree = ""; 106 | }; 107 | C6859EA2029092E104C91782 /* Documentation */ = { 108 | isa = PBXGroup; 109 | children = ( 110 | ); 111 | name = Documentation; 112 | sourceTree = ""; 113 | }; 114 | /* End PBXGroup section */ 115 | 116 | /* Begin PBXNativeTarget section */ 117 | 8DD76F960486AA7600D96B5E /* webarchiver */ = { 118 | isa = PBXNativeTarget; 119 | buildConfigurationList = 1DEB927408733DD40010E9CD /* Build configuration list for PBXNativeTarget "webarchiver" */; 120 | buildPhases = ( 121 | 8DD76F990486AA7600D96B5E /* Sources */, 122 | 8DD76F9B0486AA7600D96B5E /* Frameworks */, 123 | 8DD76F9E0486AA7600D96B5E /* CopyFiles */, 124 | ); 125 | buildRules = ( 126 | ); 127 | dependencies = ( 128 | ); 129 | name = webarchiver; 130 | productInstallPath = "$(HOME)/bin"; 131 | productName = webarchiver; 132 | productReference = 8DD76FA10486AA7600D96B5E /* webarchiver */; 133 | productType = "com.apple.product-type.tool"; 134 | }; 135 | /* End PBXNativeTarget section */ 136 | 137 | /* Begin PBXProject section */ 138 | 08FB7793FE84155DC02AAC07 /* Project object */ = { 139 | isa = PBXProject; 140 | attributes = { 141 | LastUpgradeCheck = 0510; 142 | }; 143 | buildConfigurationList = 1DEB927808733DD40010E9CD /* Build configuration list for PBXProject "webarchiver" */; 144 | compatibilityVersion = "Xcode 3.2"; 145 | developmentRegion = English; 146 | hasScannedForEncodings = 1; 147 | knownRegions = ( 148 | English, 149 | Japanese, 150 | French, 151 | German, 152 | ); 153 | mainGroup = 08FB7794FE84155DC02AAC07 /* webarchiver */; 154 | projectDirPath = ""; 155 | projectRoot = ""; 156 | targets = ( 157 | 8DD76F960486AA7600D96B5E /* webarchiver */, 158 | ); 159 | }; 160 | /* End PBXProject section */ 161 | 162 | /* Begin PBXSourcesBuildPhase section */ 163 | 8DD76F990486AA7600D96B5E /* Sources */ = { 164 | isa = PBXSourcesBuildPhase; 165 | buildActionMask = 2147483647; 166 | files = ( 167 | 8DD76F9A0486AA7600D96B5E /* webarchiver.m in Sources */, 168 | CAA258790B918EC800697B39 /* KBWebArchiver.m in Sources */, 169 | 3D94A3FC14769ED000DDA4AA /* NSURL+ValidityChecking.m in Sources */, 170 | ); 171 | runOnlyForDeploymentPostprocessing = 0; 172 | }; 173 | /* End PBXSourcesBuildPhase section */ 174 | 175 | /* Begin XCBuildConfiguration section */ 176 | 1DEB927508733DD40010E9CD /* Debug */ = { 177 | isa = XCBuildConfiguration; 178 | buildSettings = { 179 | COPY_PHASE_STRIP = NO; 180 | GCC_DYNAMIC_NO_PIC = NO; 181 | GCC_MODEL_TUNING = G5; 182 | GCC_OPTIMIZATION_LEVEL = 0; 183 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 184 | GCC_PREFIX_HEADER = webarchiver_Prefix.pch; 185 | INSTALL_PATH = "$(HOME)/bin"; 186 | PRODUCT_NAME = webarchiver; 187 | SDKROOT = macosx; 188 | ZERO_LINK = YES; 189 | }; 190 | name = Debug; 191 | }; 192 | 1DEB927608733DD40010E9CD /* Release */ = { 193 | isa = XCBuildConfiguration; 194 | buildSettings = { 195 | GCC_GENERATE_DEBUGGING_SYMBOLS = NO; 196 | GCC_MODEL_TUNING = G5; 197 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 198 | GCC_PREFIX_HEADER = webarchiver_Prefix.pch; 199 | INSTALL_PATH = "$(HOME)/bin"; 200 | PRODUCT_NAME = webarchiver; 201 | SDKROOT = macosx; 202 | }; 203 | name = Release; 204 | }; 205 | 1DEB927908733DD40010E9CD /* Debug */ = { 206 | isa = XCBuildConfiguration; 207 | baseConfigurationReference = 3D94A3E81476954F00DDA4AA /* Base.xcconfig */; 208 | buildSettings = { 209 | CLANG_WARN_BOOL_CONVERSION = YES; 210 | CLANG_WARN_CONSTANT_CONVERSION = YES; 211 | CLANG_WARN_EMPTY_BODY = YES; 212 | CLANG_WARN_ENUM_CONVERSION = YES; 213 | CLANG_WARN_INT_CONVERSION = YES; 214 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 215 | ONLY_ACTIVE_ARCH = YES; 216 | }; 217 | name = Debug; 218 | }; 219 | 1DEB927A08733DD40010E9CD /* Release */ = { 220 | isa = XCBuildConfiguration; 221 | baseConfigurationReference = 3D94A3E81476954F00DDA4AA /* Base.xcconfig */; 222 | buildSettings = { 223 | CLANG_WARN_BOOL_CONVERSION = YES; 224 | CLANG_WARN_CONSTANT_CONVERSION = YES; 225 | CLANG_WARN_EMPTY_BODY = YES; 226 | CLANG_WARN_ENUM_CONVERSION = YES; 227 | CLANG_WARN_INT_CONVERSION = YES; 228 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 229 | }; 230 | name = Release; 231 | }; 232 | /* End XCBuildConfiguration section */ 233 | 234 | /* Begin XCConfigurationList section */ 235 | 1DEB927408733DD40010E9CD /* Build configuration list for PBXNativeTarget "webarchiver" */ = { 236 | isa = XCConfigurationList; 237 | buildConfigurations = ( 238 | 1DEB927508733DD40010E9CD /* Debug */, 239 | 1DEB927608733DD40010E9CD /* Release */, 240 | ); 241 | defaultConfigurationIsVisible = 0; 242 | defaultConfigurationName = Release; 243 | }; 244 | 1DEB927808733DD40010E9CD /* Build configuration list for PBXProject "webarchiver" */ = { 245 | isa = XCConfigurationList; 246 | buildConfigurations = ( 247 | 1DEB927908733DD40010E9CD /* Debug */, 248 | 1DEB927A08733DD40010E9CD /* Release */, 249 | ); 250 | defaultConfigurationIsVisible = 0; 251 | defaultConfigurationName = Release; 252 | }; 253 | /* End XCConfigurationList section */ 254 | }; 255 | rootObject = 08FB7793FE84155DC02AAC07 /* Project object */; 256 | } 257 | -------------------------------------------------------------------------------- /KBWebArchiver.m: -------------------------------------------------------------------------------- 1 | // 2 | // KBWebArchiver.m (patched by John Winter) 3 | // --------------- 4 | // 5 | // Orginal : Keith Blount 2005 6 | // Page timeout fix: John Winter 2006 7 | // Keith Blount 2008 8 | // Code Cleanup: Jan Weiß 2011 9 | // 10 | 11 | #import "KBWebArchiver.h" 12 | 13 | #import "NSURL+ValidityChecking.h" 14 | 15 | 16 | NSString *const KBWebArchiverErrorDomain = @"KBWebArchiverErrorDomain"; 17 | 18 | @interface KBWebArchiver (Private) 19 | - (void)getWebPage; 20 | @end 21 | 22 | @implementation KBWebArchiver 23 | 24 | @synthesize URL = _URL; 25 | @synthesize localResourceLoadingOnly = _localResourceLoadingOnly; 26 | 27 | - (id)initWithURLString:(NSString *)aURLString isFilePath:(BOOL)flag 28 | { 29 | NSURL *aURL; 30 | 31 | if (aURLString == nil) 32 | { 33 | aURL = nil; 34 | } 35 | else 36 | { 37 | aURL = (flag ? [NSURL fileURLWithPath:aURLString] : [NSURL URLWithString:aURLString]); 38 | } 39 | 40 | return [self initWithURL:aURL]; 41 | } 42 | 43 | - (id)initWithURLString:(NSString *)aURLString 44 | { 45 | NSURL *aURL; 46 | 47 | if (aURLString == nil) 48 | { 49 | aURL = nil; 50 | } 51 | else 52 | { 53 | aURL = [NSURL URLWithString:aURLString]; 54 | } 55 | 56 | if (aURL && aURL.scheme) { 57 | return [self initWithURL:aURL]; 58 | } 59 | else { 60 | return [self initWithURLString:aURLString isFilePath:YES]; 61 | } 62 | } 63 | 64 | - (id)initWithURL:(NSURL *)aURL 65 | { 66 | self = [super init]; 67 | 68 | if (self) 69 | { 70 | _URL = aURL; 71 | _archiveInformation = nil; 72 | _localResourceLoadingOnly = NO; 73 | } 74 | return self; 75 | } 76 | 77 | - (id)init 78 | { 79 | return [self initWithURL:nil]; 80 | } 81 | 82 | 83 | - (void)setURLString:(NSString *)aURLString isFilePath:(BOOL)isFilePath 84 | { 85 | self.URL = (isFilePath ? [[NSURL alloc] initFileURLWithPath:aURLString] : [[NSURL alloc] initWithString:aURLString]); 86 | } 87 | 88 | - (NSString *)URLString 89 | { 90 | return ([_URL isFileURL] ? [_URL path] : [_URL absoluteString]); 91 | } 92 | 93 | - (BOOL)isFilePath 94 | { 95 | return [_URL isFileURL]; 96 | } 97 | 98 | - (WebArchive *)webArchive 99 | { 100 | // If we changed the URL since the last time we checked, then (re)generate the web archive information. 101 | if ([_URL isEqual:_archiveInformation[@"URL"]] == NO) 102 | [self getWebPage]; 103 | 104 | return _archiveInformation[@"WebArchive"]; 105 | } 106 | 107 | - (NSString *)string 108 | { 109 | // If we changed the URL since the last time we checked, then (re)generate the web archive information. 110 | if ([_URL isEqual:_archiveInformation[@"URL"]] == NO) 111 | [self getWebPage]; 112 | 113 | return _archiveInformation[@"String"]; 114 | } 115 | 116 | - (NSString *)title 117 | { 118 | // If we changed the URL since the last time we checked, then (re)generate the web archive information. 119 | if ([_URL isEqual:_archiveInformation[@"URL"]] == NO) 120 | [self getWebPage]; 121 | 122 | return _archiveInformation[@"Title"]; 123 | } 124 | 125 | - (NSError *)error 126 | { 127 | // If we changed the URL since the last time we checked, then we have no error to report. 128 | if ([_URL isEqual:_archiveInformation[@"URL"]] == NO) 129 | return nil; 130 | 131 | return _archiveInformation[@"Error"]; 132 | } 133 | 134 | - (void)getWebPage 135 | { 136 | _archiveInformation = [[NSMutableDictionary alloc] init]; 137 | 138 | if (_URL == nil) 139 | { 140 | //NSBeep(); 141 | NSLog (@"*** KBWebArchiver error: No URL passed in. ***"); 142 | return; 143 | } 144 | 145 | // Add the URL. 146 | _archiveInformation[@"URL"] = _URL; 147 | 148 | // We also set a default title for the web page - if all goes well, this will be changed to something more 149 | // meaningful in -webView:didReceiveTitle:forFrame:. 150 | _archiveInformation[@"Title"] = NSLocalizedString(@"Web Page", nil); 151 | 152 | // Check the URL is valid if it is to be downloaded from the 'net. 153 | if ([_URL isFileURL] == NO && [_URL httpIsValid] == NO) 154 | { 155 | NSMutableDictionary *userInfo = [NSMutableDictionary dictionary]; 156 | userInfo[NSLocalizedDescriptionKey] = NSLocalizedString(@"Invalid URL", @""); 157 | userInfo[NSLocalizedRecoverySuggestionErrorKey] = NSLocalizedString(@"The URL was invalid and so could not be converted to a web archive.",nil); 158 | _archiveInformation[@"Error"] = [NSError errorWithDomain:KBWebArchiverErrorDomain 159 | code:KBWebArchiverErrorCodeInvalidURL 160 | userInfo:userInfo]; 161 | 162 | return; 163 | } 164 | 165 | // We have to create a web view, load the web page into this web view, and then grab the web archive and information from there. 166 | WebView *webView = [[WebView alloc] initWithFrame:NSMakeRect(0, 0, 1024, 768)]; 167 | [webView setFrameLoadDelegate:self]; 168 | [webView setResourceLoadDelegate:self]; 169 | [webView setPolicyDelegate:self]; 170 | 171 | NSError *localLoadingError = nil; 172 | BOOL tryLocalLoad = NO; 173 | 174 | while (1) { 175 | _finishedLoading = NO; 176 | _loadFailed = NO; 177 | 178 | if (!tryLocalLoad) 179 | { 180 | // Set up the load request and try to load the page. 181 | NSURLRequestCachePolicy cachePolicy; 182 | #if (MAC_OS_X_VERSION_MIN_REQUIRED < 1050) 183 | cachePolicy = NSURLRequestReloadIgnoringCacheData; 184 | #else 185 | cachePolicy = NSURLRequestReloadIgnoringLocalCacheData; 186 | #endif 187 | 188 | NSURLRequest *theRequest = [NSURLRequest requestWithURL:_URL 189 | cachePolicy:cachePolicy 190 | timeoutInterval:30]; 191 | 192 | [[webView mainFrame] loadRequest:theRequest]; 193 | } 194 | else 195 | { 196 | // Falling back to loading data from local file 197 | NSData *data = [NSData dataWithContentsOfURL:_URL 198 | options:0 199 | error:&localLoadingError]; 200 | if (data != nil) 201 | { 202 | [[webView mainFrame] loadData:data 203 | MIMEType:@"text/html" // CHANGEME: Assuming html 204 | textEncodingName:@"UTF-8" // CHANGEME: Assuming UTF8 205 | baseURL:_URL]; 206 | } 207 | else 208 | { 209 | _archiveInformation[@"Error"] = localLoadingError; 210 | break; 211 | } 212 | } 213 | 214 | // Wait until the site has finished loading. 215 | NSRunLoop *currentRunLoop = [NSRunLoop currentRunLoop]; 216 | NSTimeInterval resolution = _localResourceLoadingOnly ? 0.1 : 0.01; 217 | BOOL isRunning = YES; 218 | 219 | while (isRunning && _finishedLoading == NO) { 220 | NSDate *next = [NSDate dateWithTimeIntervalSinceNow:resolution]; 221 | isRunning = [currentRunLoop runMode:NSDefaultRunLoopMode beforeDate:next]; 222 | } 223 | 224 | if (_customJS != nil) { 225 | [webView stringByEvaluatingJavaScriptFromString: _customJS]; 226 | } 227 | 228 | [[webView mainFrame] stopLoading]; // Ensure the frame stops loading, otherwise will crash when released! 229 | 230 | if (!tryLocalLoad 231 | && _loadFailed 232 | && [_URL isFileURL] 233 | && ((localLoadingError = _archiveInformation[@"Error"]) != nil) 234 | && ([localLoadingError code] == 102)) // Frame load interrupted 235 | { 236 | // This can occur if the local file we are trying to load is missing its extension (usually “.html”) 237 | tryLocalLoad = YES; 238 | [_archiveInformation removeObjectForKey:@"Error"]; 239 | continue; 240 | } 241 | else 242 | { 243 | break; 244 | } 245 | } 246 | 247 | [webView setFrameLoadDelegate:nil]; 248 | [webView setResourceLoadDelegate:nil]; 249 | [webView setPolicyDelegate:nil]; 250 | 251 | // If the load failed, don't set any more data - just return. 252 | if (_loadFailed) 253 | { 254 | 255 | if (_archiveInformation[@"Error"] == nil) 256 | { 257 | NSMutableDictionary *userInfo = [NSMutableDictionary dictionary]; 258 | userInfo[NSLocalizedDescriptionKey] = NSLocalizedString(@"Web Page Failed to Load", @""); 259 | userInfo[NSLocalizedRecoverySuggestionErrorKey] = NSLocalizedString(@"The web page at the given URL failed to load and so could not be converted to a WebArchive.",nil); 260 | _archiveInformation[@"Error"] = [NSError errorWithDomain:KBWebArchiverErrorDomain 261 | code:KBWebArchiverErrorCodeLoadFailed 262 | userInfo:userInfo]; 263 | } 264 | 265 | return; 266 | } 267 | 268 | // Get the text if the web view has any. 269 | NSString *string = @""; 270 | if ([[[[webView mainFrame] frameView] documentView] conformsToProtocol:@protocol(WebDocumentText)]) 271 | string = [(id )[[[webView mainFrame] frameView] documentView] string]; 272 | 273 | _archiveInformation[@"String"] = string; 274 | 275 | // the -dataSource method was causing some crashes and also some web pages only half-loaded; 276 | // using the -DOMDocument method seems to work much better. 277 | 278 | //WebArchive *webArchive = [[[webView mainFrame] dataSource] webArchive]; 279 | WebArchive *webArchive = [[[webView mainFrame] DOMDocument] webArchive]; 280 | if (webArchive) 281 | { 282 | _archiveInformation[@"WebArchive"] = webArchive; 283 | } 284 | else if (_archiveInformation[@"Error"] == nil) 285 | { 286 | NSMutableDictionary *userInfo = [NSMutableDictionary dictionary]; 287 | userInfo[NSLocalizedDescriptionKey] = NSLocalizedString(@"Web Archive Creation Failed", @""); 288 | userInfo[NSLocalizedRecoverySuggestionErrorKey] = NSLocalizedString(@"A web archive could not be created from the page at the given URL.",nil); 289 | _archiveInformation[@"Error"] = [NSError errorWithDomain:KBWebArchiverErrorDomain 290 | code:KBWebArchiverErrorCodeArchiveCreationFailed 291 | userInfo:userInfo]; 292 | } 293 | 294 | 295 | } 296 | 297 | // Oh dear, this can cause some crashes - eg. importing Yahoo... 298 | 299 | - (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame 300 | { 301 | if (frame == [sender mainFrame]) 302 | _finishedLoading = YES; 303 | } 304 | 305 | // Check for errors loading page 306 | - (void)webView:(WebView *)sender didFailProvisionalLoadWithError:(NSError *)error forFrame:(WebFrame *)frame 307 | { 308 | if (frame == [sender mainFrame]) 309 | { 310 | _loadFailed = YES; 311 | _finishedLoading = YES; 312 | if (error) 313 | _archiveInformation[@"Error"] = error; 314 | } 315 | } 316 | 317 | - (void)webView:(WebView *)sender didFailLoadWithError:(NSError *)error forFrame:(WebFrame *)frame 318 | { 319 | if (frame == [sender mainFrame]) 320 | { 321 | // UPDATE: Some pages automatically report being cancelled and fail even though they load, 322 | // so in this case we don't want to finish loading but we do want store the error. 323 | if ([error code] != NSURLErrorCancelled) 324 | { 325 | _loadFailed = YES; 326 | _finishedLoading = YES; 327 | } 328 | 329 | if (error) 330 | _archiveInformation[@"Error"] = error; 331 | } 332 | } 333 | 334 | // Get the title 335 | - (void)webView:(WebView *)sender didReceiveTitle:(NSString *)title forFrame:(WebFrame *)frame 336 | { 337 | if (frame == [sender mainFrame] && title != nil) 338 | _archiveInformation[@"Title"] = title; 339 | } 340 | 341 | // This method handles loading web archives - without this, a lot of web archives will not load... 342 | - (void)webView:(WebView *)sender decidePolicyForMIMEType:(NSString *)type request:(NSURLRequest *)request frame:(WebFrame *)frame decisionListener:(id)listener 343 | { 344 | if ([WebView canShowMIMEType:type]) 345 | { 346 | [listener use]; 347 | return; 348 | } 349 | 350 | [listener ignore]; 351 | } 352 | 353 | 354 | - (NSURLRequest *)webView:(WebView *)sender resource:(id)identifier willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse fromDataSource:(WebDataSource *)dataSource 355 | { 356 | if (!_localResourceLoadingOnly 357 | || (_localResourceLoadingOnly && [[[request URL] scheme] isEqualToString:@"file"])) 358 | { 359 | return request; 360 | } else { 361 | return nil; 362 | } 363 | } 364 | 365 | @end 366 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /webarchiver.xcodeproj/paulb.mode1: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | ActivePerspectiveName 6 | Project 7 | AllowedModules 8 | 9 | 10 | BundleLoadPath 11 | 12 | MaxInstances 13 | n 14 | Module 15 | PBXSmartGroupTreeModule 16 | Name 17 | Groups and Files Outline View 18 | 19 | 20 | BundleLoadPath 21 | 22 | MaxInstances 23 | n 24 | Module 25 | PBXNavigatorGroup 26 | Name 27 | Editor 28 | 29 | 30 | BundleLoadPath 31 | 32 | MaxInstances 33 | n 34 | Module 35 | XCTaskListModule 36 | Name 37 | Task List 38 | 39 | 40 | BundleLoadPath 41 | 42 | MaxInstances 43 | n 44 | Module 45 | XCDetailModule 46 | Name 47 | File and Smart Group Detail Viewer 48 | 49 | 50 | BundleLoadPath 51 | 52 | MaxInstances 53 | 1 54 | Module 55 | PBXBuildResultsModule 56 | Name 57 | Detailed Build Results Viewer 58 | 59 | 60 | BundleLoadPath 61 | 62 | MaxInstances 63 | 1 64 | Module 65 | PBXProjectFindModule 66 | Name 67 | Project Batch Find Tool 68 | 69 | 70 | BundleLoadPath 71 | 72 | MaxInstances 73 | n 74 | Module 75 | PBXRunSessionModule 76 | Name 77 | Run Log 78 | 79 | 80 | BundleLoadPath 81 | 82 | MaxInstances 83 | n 84 | Module 85 | PBXBookmarksModule 86 | Name 87 | Bookmarks Tool 88 | 89 | 90 | BundleLoadPath 91 | 92 | MaxInstances 93 | n 94 | Module 95 | PBXClassBrowserModule 96 | Name 97 | Class Browser 98 | 99 | 100 | BundleLoadPath 101 | 102 | MaxInstances 103 | n 104 | Module 105 | PBXCVSModule 106 | Name 107 | Source Code Control Tool 108 | 109 | 110 | BundleLoadPath 111 | 112 | MaxInstances 113 | n 114 | Module 115 | PBXDebugBreakpointsModule 116 | Name 117 | Debug Breakpoints Tool 118 | 119 | 120 | BundleLoadPath 121 | 122 | MaxInstances 123 | n 124 | Module 125 | XCDockableInspector 126 | Name 127 | Inspector 128 | 129 | 130 | BundleLoadPath 131 | 132 | MaxInstances 133 | n 134 | Module 135 | PBXOpenQuicklyModule 136 | Name 137 | Open Quickly Tool 138 | 139 | 140 | BundleLoadPath 141 | 142 | MaxInstances 143 | 1 144 | Module 145 | PBXDebugSessionModule 146 | Name 147 | Debugger 148 | 149 | 150 | BundleLoadPath 151 | 152 | MaxInstances 153 | 1 154 | Module 155 | PBXDebugCLIModule 156 | Name 157 | Debug Console 158 | 159 | 160 | Description 161 | DefaultDescriptionKey 162 | DockingSystemVisible 163 | 164 | Extension 165 | mode1 166 | FavBarConfig 167 | 168 | PBXProjectModuleGUID 169 | CAE08E520B8DE5D7008057C9 170 | XCBarModuleItemNames 171 | 172 | XCBarModuleItems 173 | 174 | 175 | FirstTimeWindowDisplayed 176 | 177 | Identifier 178 | com.apple.perspectives.project.mode1 179 | MajorVersion 180 | 31 181 | MinorVersion 182 | 1 183 | Name 184 | Default 185 | Notifications 186 | 187 | OpenEditors 188 | 189 | PerspectiveWidths 190 | 191 | -1 192 | -1 193 | 194 | Perspectives 195 | 196 | 197 | ChosenToolbarItems 198 | 199 | active-target-popup 200 | action 201 | NSToolbarFlexibleSpaceItem 202 | buildOrClean 203 | build-and-runOrDebug 204 | com.apple.ide.PBXToolbarStopButton 205 | get-info 206 | toggle-editor 207 | NSToolbarFlexibleSpaceItem 208 | com.apple.pbx.toolbar.searchfield 209 | 210 | ControllerClassBaseName 211 | 212 | IconName 213 | WindowOfProjectWithEditor 214 | Identifier 215 | perspective.project 216 | IsVertical 217 | 218 | Layout 219 | 220 | 221 | ContentConfiguration 222 | 223 | PBXBottomSmartGroupGIDs 224 | 225 | 1C37FBAC04509CD000000102 226 | 1C37FAAC04509CD000000102 227 | 1C08E77C0454961000C914BD 228 | 1C37FABC05509CD000000102 229 | 1C37FABC05539CD112110102 230 | E2644B35053B69B200211256 231 | 1C37FABC04509CD000100104 232 | 1CC0EA4004350EF90044410B 233 | 1CC0EA4004350EF90041110B 234 | 235 | PBXProjectModuleGUID 236 | 1CE0B1FE06471DED0097A5F4 237 | PBXProjectModuleLabel 238 | Files 239 | PBXProjectStructureProvided 240 | yes 241 | PBXSmartGroupTreeModuleColumnData 242 | 243 | PBXSmartGroupTreeModuleColumnWidthsKey 244 | 245 | 186 246 | 247 | PBXSmartGroupTreeModuleColumnsKey_v4 248 | 249 | MainColumn 250 | 251 | 252 | PBXSmartGroupTreeModuleOutlineStateKey_v7 253 | 254 | PBXSmartGroupTreeModuleOutlineStateExpansionKey 255 | 256 | 08FB7794FE84155DC02AAC07 257 | 08FB7795FE84155DC02AAC07 258 | C6859EA2029092E104C91782 259 | 08FB779DFE84155DC02AAC07 260 | 1AB674ADFE9D54B511CA2CBB 261 | 1C37FBAC04509CD000000102 262 | 1C37FABC05509CD000000102 263 | 264 | PBXSmartGroupTreeModuleOutlineStateSelectionKey 265 | 266 | 267 | 2 268 | 1 269 | 0 270 | 271 | 272 | PBXSmartGroupTreeModuleOutlineStateVisibleRectKey 273 | {{0, 0}, {186, 831}} 274 | 275 | PBXTopSmartGroupGIDs 276 | 277 | XCIncludePerspectivesSwitch 278 | 279 | XCSharingToken 280 | com.apple.Xcode.GFSharingToken 281 | 282 | GeometryConfiguration 283 | 284 | Frame 285 | {{0, 0}, {203, 849}} 286 | GroupTreeTableConfiguration 287 | 288 | MainColumn 289 | 186 290 | 291 | RubberWindowFrame 292 | -1 288 1280 890 0 0 1920 1178 293 | 294 | Module 295 | PBXSmartGroupTreeModule 296 | Proportion 297 | 203pt 298 | 299 | 300 | Dock 301 | 302 | 303 | ContentConfiguration 304 | 305 | PBXProjectModuleGUID 306 | 1CE0B20306471E060097A5F4 307 | PBXProjectModuleLabel 308 | KBWebArchiver.m 309 | PBXSplitModuleInNavigatorKey 310 | 311 | Split0 312 | 313 | PBXProjectModuleGUID 314 | 1CE0B20406471E060097A5F4 315 | PBXProjectModuleLabel 316 | KBWebArchiver.m 317 | _historyCapacity 318 | 0 319 | bookmark 320 | CA1FF4D10C0577D0004C6664 321 | history 322 | 323 | CAA256CD0B8F95C800697B39 324 | CA792E1A0B9FC829003D1770 325 | CA792E1B0B9FC829003D1770 326 | CA1FF4CB0C0575D1004C6664 327 | CA1FF4CC0C0575D1004C6664 328 | 329 | prevStack 330 | 331 | CAE08E6C0B8DE8CB008057C9 332 | CAE08E6F0B8DE8CB008057C9 333 | CAE08EA70B8DF009008057C9 334 | CAA256C50B8EB12600697B39 335 | CAA258A50B918FD300697B39 336 | CA1FF4CD0C0575D1004C6664 337 | 338 | 339 | SplitCount 340 | 1 341 | 342 | StatusBarVisibility 343 | 344 | 345 | GeometryConfiguration 346 | 347 | Frame 348 | {{0, 0}, {1072, 596}} 349 | RubberWindowFrame 350 | -1 288 1280 890 0 0 1920 1178 351 | 352 | Module 353 | PBXNavigatorGroup 354 | Proportion 355 | 596pt 356 | 357 | 358 | BecomeActive 359 | 360 | ContentConfiguration 361 | 362 | PBXProjectModuleGUID 363 | 1CE0B20506471E060097A5F4 364 | PBXProjectModuleLabel 365 | Detail 366 | 367 | GeometryConfiguration 368 | 369 | Frame 370 | {{0, 601}, {1072, 248}} 371 | RubberWindowFrame 372 | -1 288 1280 890 0 0 1920 1178 373 | 374 | Module 375 | XCDetailModule 376 | Proportion 377 | 248pt 378 | 379 | 380 | Proportion 381 | 1072pt 382 | 383 | 384 | Name 385 | Project 386 | ServiceClasses 387 | 388 | XCModuleDock 389 | PBXSmartGroupTreeModule 390 | XCModuleDock 391 | PBXNavigatorGroup 392 | XCDetailModule 393 | 394 | TableOfContents 395 | 396 | CA1FF4CF0C0575D1004C6664 397 | 1CE0B1FE06471DED0097A5F4 398 | CA1FF4D00C0575D1004C6664 399 | 1CE0B20306471E060097A5F4 400 | 1CE0B20506471E060097A5F4 401 | 402 | ToolbarConfiguration 403 | xcode.toolbar.config.default 404 | 405 | 406 | ControllerClassBaseName 407 | 408 | IconName 409 | WindowOfProject 410 | Identifier 411 | perspective.morph 412 | IsVertical 413 | 0 414 | Layout 415 | 416 | 417 | BecomeActive 418 | 1 419 | ContentConfiguration 420 | 421 | PBXBottomSmartGroupGIDs 422 | 423 | 1C37FBAC04509CD000000102 424 | 1C37FAAC04509CD000000102 425 | 1C08E77C0454961000C914BD 426 | 1C37FABC05509CD000000102 427 | 1C37FABC05539CD112110102 428 | E2644B35053B69B200211256 429 | 1C37FABC04509CD000100104 430 | 1CC0EA4004350EF90044410B 431 | 1CC0EA4004350EF90041110B 432 | 433 | PBXProjectModuleGUID 434 | 11E0B1FE06471DED0097A5F4 435 | PBXProjectModuleLabel 436 | Files 437 | PBXProjectStructureProvided 438 | yes 439 | PBXSmartGroupTreeModuleColumnData 440 | 441 | PBXSmartGroupTreeModuleColumnWidthsKey 442 | 443 | 186 444 | 445 | PBXSmartGroupTreeModuleColumnsKey_v4 446 | 447 | MainColumn 448 | 449 | 450 | PBXSmartGroupTreeModuleOutlineStateKey_v7 451 | 452 | PBXSmartGroupTreeModuleOutlineStateExpansionKey 453 | 454 | 29B97314FDCFA39411CA2CEA 455 | 1C37FABC05509CD000000102 456 | 457 | PBXSmartGroupTreeModuleOutlineStateSelectionKey 458 | 459 | 460 | 0 461 | 462 | 463 | PBXSmartGroupTreeModuleOutlineStateVisibleRectKey 464 | {{0, 0}, {186, 337}} 465 | 466 | PBXTopSmartGroupGIDs 467 | 468 | XCIncludePerspectivesSwitch 469 | 1 470 | XCSharingToken 471 | com.apple.Xcode.GFSharingToken 472 | 473 | GeometryConfiguration 474 | 475 | Frame 476 | {{0, 0}, {203, 355}} 477 | GroupTreeTableConfiguration 478 | 479 | MainColumn 480 | 186 481 | 482 | RubberWindowFrame 483 | 373 269 690 397 0 0 1440 878 484 | 485 | Module 486 | PBXSmartGroupTreeModule 487 | Proportion 488 | 100% 489 | 490 | 491 | Name 492 | Morph 493 | PreferredWidth 494 | 300 495 | ServiceClasses 496 | 497 | XCModuleDock 498 | PBXSmartGroupTreeModule 499 | 500 | TableOfContents 501 | 502 | 11E0B1FE06471DED0097A5F4 503 | 504 | ToolbarConfiguration 505 | xcode.toolbar.config.default.short 506 | 507 | 508 | PerspectivesBarVisible 509 | 510 | ShelfIsVisible 511 | 512 | SourceDescription 513 | file at '/System/Library/PrivateFrameworks/DevToolsInterface.framework/Versions/A/Resources/XCPerspectivesSpecificationMode1.xcperspec' 514 | StatusbarIsVisible 515 | 516 | TimeStamp 517 | 0.0 518 | ToolbarDisplayMode 519 | 1 520 | ToolbarIsVisible 521 | 522 | ToolbarSizeMode 523 | 1 524 | Type 525 | Perspectives 526 | UpdateMessage 527 | The Default Workspace in this version of Xcode now includes support to hide and show the detail view (what has been referred to as the "Metro-Morph" feature). You must discard your current Default Workspace settings and update to the latest Default Workspace in order to gain this feature. Do you wish to update to the latest Workspace defaults for project '%@'? 528 | WindowJustification 529 | 5 530 | WindowOrderList 531 | 532 | /Users/paulb/Projects/CocoaProjects/webarchiver/webarchiver.xcodeproj 533 | 534 | WindowString 535 | -1 288 1280 890 0 0 1920 1178 536 | WindowTools 537 | 538 | 539 | FirstTimeWindowDisplayed 540 | 541 | Identifier 542 | windowTool.build 543 | IsVertical 544 | 545 | Layout 546 | 547 | 548 | Dock 549 | 550 | 551 | ContentConfiguration 552 | 553 | PBXProjectModuleGUID 554 | 1CD0528F0623707200166675 555 | PBXProjectModuleLabel 556 | 557 | StatusBarVisibility 558 | 559 | 560 | GeometryConfiguration 561 | 562 | Frame 563 | {{0, 0}, {500, 218}} 564 | RubberWindowFrame 565 | 21 479 500 500 0 0 1280 1002 566 | 567 | Module 568 | PBXNavigatorGroup 569 | Proportion 570 | 218pt 571 | 572 | 573 | ContentConfiguration 574 | 575 | PBXProjectModuleGUID 576 | XCMainBuildResultsModuleGUID 577 | PBXProjectModuleLabel 578 | Build 579 | XCBuildResultsTrigger_Collapse 580 | 1021 581 | XCBuildResultsTrigger_Open 582 | 1011 583 | 584 | GeometryConfiguration 585 | 586 | Frame 587 | {{0, 223}, {500, 236}} 588 | RubberWindowFrame 589 | 21 479 500 500 0 0 1280 1002 590 | 591 | Module 592 | PBXBuildResultsModule 593 | Proportion 594 | 236pt 595 | 596 | 597 | Proportion 598 | 459pt 599 | 600 | 601 | Name 602 | Build Results 603 | ServiceClasses 604 | 605 | PBXBuildResultsModule 606 | 607 | StatusbarIsVisible 608 | 609 | TableOfContents 610 | 611 | CAE08E530B8DE5D8008057C9 612 | CA792CB40B9F1DEC003D1770 613 | 1CD0528F0623707200166675 614 | XCMainBuildResultsModuleGUID 615 | 616 | ToolbarConfiguration 617 | xcode.toolbar.config.build 618 | WindowString 619 | 21 479 500 500 0 0 1280 1002 620 | WindowToolGUID 621 | CAE08E530B8DE5D8008057C9 622 | WindowToolIsVisible 623 | 624 | 625 | 626 | FirstTimeWindowDisplayed 627 | 628 | Identifier 629 | windowTool.debugger 630 | IsVertical 631 | 632 | Layout 633 | 634 | 635 | Dock 636 | 637 | 638 | ContentConfiguration 639 | 640 | Debugger 641 | 642 | HorizontalSplitView 643 | 644 | _collapsingFrameDimension 645 | 0.0 646 | _indexOfCollapsedView 647 | 0 648 | _percentageOfCollapsedView 649 | 0.0 650 | isCollapsed 651 | yes 652 | sizes 653 | 654 | {{0, 0}, {305, 162}} 655 | {{305, 0}, {389, 162}} 656 | 657 | 658 | VerticalSplitView 659 | 660 | _collapsingFrameDimension 661 | 0.0 662 | _indexOfCollapsedView 663 | 0 664 | _percentageOfCollapsedView 665 | 0.0 666 | isCollapsed 667 | yes 668 | sizes 669 | 670 | {{0, 0}, {694, 162}} 671 | {{0, 162}, {694, 219}} 672 | 673 | 674 | 675 | LauncherConfigVersion 676 | 8 677 | PBXProjectModuleGUID 678 | 1C162984064C10D400B95A72 679 | PBXProjectModuleLabel 680 | Debug - GLUTExamples (Underwater) 681 | 682 | GeometryConfiguration 683 | 684 | DebugConsoleDrawerSize 685 | {100, 120} 686 | DebugConsoleVisible 687 | None 688 | DebugConsoleWindowFrame 689 | {{200, 200}, {500, 300}} 690 | DebugSTDIOWindowFrame 691 | {{200, 200}, {500, 300}} 692 | Frame 693 | {{0, 0}, {694, 381}} 694 | RubberWindowFrame 695 | 42 534 694 422 0 0 1280 1002 696 | 697 | Module 698 | PBXDebugSessionModule 699 | Proportion 700 | 381pt 701 | 702 | 703 | Proportion 704 | 381pt 705 | 706 | 707 | Name 708 | Debugger 709 | ServiceClasses 710 | 711 | PBXDebugSessionModule 712 | 713 | StatusbarIsVisible 714 | 715 | TableOfContents 716 | 717 | 1CD10A99069EF8BA00B06720 718 | CAA256F90B8F997400697B39 719 | 1C162984064C10D400B95A72 720 | CAA256FA0B8F997400697B39 721 | CAA256FB0B8F997400697B39 722 | CAA256FC0B8F997400697B39 723 | CAA256FD0B8F997400697B39 724 | CAA256FE0B8F997400697B39 725 | CAA256FF0B8F997400697B39 726 | 727 | ToolbarConfiguration 728 | xcode.toolbar.config.debug 729 | WindowString 730 | 42 534 694 422 0 0 1280 1002 731 | WindowToolGUID 732 | 1CD10A99069EF8BA00B06720 733 | WindowToolIsVisible 734 | 735 | 736 | 737 | Identifier 738 | windowTool.find 739 | Layout 740 | 741 | 742 | Dock 743 | 744 | 745 | Dock 746 | 747 | 748 | ContentConfiguration 749 | 750 | PBXProjectModuleGUID 751 | 1CDD528C0622207200134675 752 | PBXProjectModuleLabel 753 | <No Editor> 754 | PBXSplitModuleInNavigatorKey 755 | 756 | Split0 757 | 758 | PBXProjectModuleGUID 759 | 1CD0528D0623707200166675 760 | 761 | SplitCount 762 | 1 763 | 764 | StatusBarVisibility 765 | 1 766 | 767 | GeometryConfiguration 768 | 769 | Frame 770 | {{0, 0}, {781, 167}} 771 | RubberWindowFrame 772 | 62 385 781 470 0 0 1440 878 773 | 774 | Module 775 | PBXNavigatorGroup 776 | Proportion 777 | 781pt 778 | 779 | 780 | Proportion 781 | 50% 782 | 783 | 784 | BecomeActive 785 | 1 786 | ContentConfiguration 787 | 788 | PBXProjectModuleGUID 789 | 1CD0528E0623707200166675 790 | PBXProjectModuleLabel 791 | Project Find 792 | 793 | GeometryConfiguration 794 | 795 | Frame 796 | {{8, 0}, {773, 254}} 797 | RubberWindowFrame 798 | 62 385 781 470 0 0 1440 878 799 | 800 | Module 801 | PBXProjectFindModule 802 | Proportion 803 | 50% 804 | 805 | 806 | Proportion 807 | 428pt 808 | 809 | 810 | Name 811 | Project Find 812 | ServiceClasses 813 | 814 | PBXProjectFindModule 815 | 816 | StatusbarIsVisible 817 | 1 818 | TableOfContents 819 | 820 | 1C530D57069F1CE1000CFCEE 821 | 1C530D58069F1CE1000CFCEE 822 | 1C530D59069F1CE1000CFCEE 823 | 1CDD528C0622207200134675 824 | 1C530D5A069F1CE1000CFCEE 825 | 1CE0B1FE06471DED0097A5F4 826 | 1CD0528E0623707200166675 827 | 828 | WindowString 829 | 62 385 781 470 0 0 1440 878 830 | WindowToolGUID 831 | 1C530D57069F1CE1000CFCEE 832 | WindowToolIsVisible 833 | 0 834 | 835 | 836 | Identifier 837 | MENUSEPARATOR 838 | 839 | 840 | FirstTimeWindowDisplayed 841 | 842 | Identifier 843 | windowTool.debuggerConsole 844 | IsVertical 845 | 846 | Layout 847 | 848 | 849 | Dock 850 | 851 | 852 | ContentConfiguration 853 | 854 | PBXProjectModuleGUID 855 | 1C78EAAC065D492600B07095 856 | PBXProjectModuleLabel 857 | Debugger Console 858 | 859 | GeometryConfiguration 860 | 861 | Frame 862 | {{0, 0}, {440, 358}} 863 | RubberWindowFrame 864 | 63 533 440 400 0 0 1280 1002 865 | 866 | Module 867 | PBXDebugCLIModule 868 | Proportion 869 | 358pt 870 | 871 | 872 | Proportion 873 | 359pt 874 | 875 | 876 | Name 877 | Debugger Console 878 | ServiceClasses 879 | 880 | PBXDebugCLIModule 881 | 882 | StatusbarIsVisible 883 | 884 | TableOfContents 885 | 886 | CAA257000B8F997400697B39 887 | CAA257010B8F997400697B39 888 | 1C78EAAC065D492600B07095 889 | 890 | WindowString 891 | 63 533 440 400 0 0 1280 1002 892 | WindowToolGUID 893 | CAA257000B8F997400697B39 894 | WindowToolIsVisible 895 | 896 | 897 | 898 | FirstTimeWindowDisplayed 899 | 900 | Identifier 901 | windowTool.run 902 | IsVertical 903 | 904 | Layout 905 | 906 | 907 | Dock 908 | 909 | 910 | ContentConfiguration 911 | 912 | LauncherConfigVersion 913 | 3 914 | PBXProjectModuleGUID 915 | 1CD0528B0623707200166675 916 | PBXProjectModuleLabel 917 | Run 918 | Runner 919 | 920 | HorizontalSplitView 921 | 922 | _collapsingFrameDimension 923 | 0.0 924 | _indexOfCollapsedView 925 | 0 926 | _percentageOfCollapsedView 927 | 0.0 928 | isCollapsed 929 | yes 930 | sizes 931 | 932 | {{0, 0}, {491, 168}} 933 | {{0, 173}, {491, 270}} 934 | 935 | 936 | VerticalSplitView 937 | 938 | _collapsingFrameDimension 939 | 0.0 940 | _indexOfCollapsedView 941 | 0 942 | _percentageOfCollapsedView 943 | 0.0 944 | isCollapsed 945 | yes 946 | sizes 947 | 948 | {{0, 0}, {406, 443}} 949 | {{411, 0}, {517, 443}} 950 | 951 | 952 | 953 | 954 | GeometryConfiguration 955 | 956 | Frame 957 | {{0, 0}, {459, 159}} 958 | RubberWindowFrame 959 | 21 779 459 200 0 0 1280 1002 960 | 961 | Module 962 | PBXRunSessionModule 963 | Proportion 964 | 159pt 965 | 966 | 967 | Proportion 968 | 159pt 969 | 970 | 971 | Name 972 | Run Log 973 | ServiceClasses 974 | 975 | PBXRunSessionModule 976 | 977 | StatusbarIsVisible 978 | 979 | TableOfContents 980 | 981 | 1C0AD2B3069F1EA900FABCE6 982 | CAA257020B8F997400697B39 983 | 1CD0528B0623707200166675 984 | CAA257030B8F997400697B39 985 | 986 | ToolbarConfiguration 987 | xcode.toolbar.config.run 988 | WindowString 989 | 21 779 459 200 0 0 1280 1002 990 | WindowToolGUID 991 | 1C0AD2B3069F1EA900FABCE6 992 | WindowToolIsVisible 993 | 994 | 995 | 996 | Identifier 997 | windowTool.scm 998 | Layout 999 | 1000 | 1001 | Dock 1002 | 1003 | 1004 | ContentConfiguration 1005 | 1006 | PBXProjectModuleGUID 1007 | 1C78EAB2065D492600B07095 1008 | PBXProjectModuleLabel 1009 | <No Editor> 1010 | PBXSplitModuleInNavigatorKey 1011 | 1012 | Split0 1013 | 1014 | PBXProjectModuleGUID 1015 | 1C78EAB3065D492600B07095 1016 | 1017 | SplitCount 1018 | 1 1019 | 1020 | StatusBarVisibility 1021 | 1 1022 | 1023 | GeometryConfiguration 1024 | 1025 | Frame 1026 | {{0, 0}, {452, 0}} 1027 | RubberWindowFrame 1028 | 743 379 452 308 0 0 1280 1002 1029 | 1030 | Module 1031 | PBXNavigatorGroup 1032 | Proportion 1033 | 0pt 1034 | 1035 | 1036 | BecomeActive 1037 | 1 1038 | ContentConfiguration 1039 | 1040 | PBXProjectModuleGUID 1041 | 1CD052920623707200166675 1042 | PBXProjectModuleLabel 1043 | SCM 1044 | 1045 | GeometryConfiguration 1046 | 1047 | ConsoleFrame 1048 | {{0, 259}, {452, 0}} 1049 | Frame 1050 | {{0, 7}, {452, 259}} 1051 | RubberWindowFrame 1052 | 743 379 452 308 0 0 1280 1002 1053 | TableConfiguration 1054 | 1055 | Status 1056 | 30 1057 | FileName 1058 | 199 1059 | Path 1060 | 197.09500122070312 1061 | 1062 | TableFrame 1063 | {{0, 0}, {452, 250}} 1064 | 1065 | Module 1066 | PBXCVSModule 1067 | Proportion 1068 | 262pt 1069 | 1070 | 1071 | Proportion 1072 | 266pt 1073 | 1074 | 1075 | Name 1076 | SCM 1077 | ServiceClasses 1078 | 1079 | PBXCVSModule 1080 | 1081 | StatusbarIsVisible 1082 | 1 1083 | TableOfContents 1084 | 1085 | 1C78EAB4065D492600B07095 1086 | 1C78EAB5065D492600B07095 1087 | 1C78EAB2065D492600B07095 1088 | 1CD052920623707200166675 1089 | 1090 | ToolbarConfiguration 1091 | xcode.toolbar.config.scm 1092 | WindowString 1093 | 743 379 452 308 0 0 1280 1002 1094 | 1095 | 1096 | Identifier 1097 | windowTool.breakpoints 1098 | IsVertical 1099 | 0 1100 | Layout 1101 | 1102 | 1103 | Dock 1104 | 1105 | 1106 | BecomeActive 1107 | 1 1108 | ContentConfiguration 1109 | 1110 | PBXBottomSmartGroupGIDs 1111 | 1112 | 1C77FABC04509CD000000102 1113 | 1114 | PBXProjectModuleGUID 1115 | 1CE0B1FE06471DED0097A5F4 1116 | PBXProjectModuleLabel 1117 | Files 1118 | PBXProjectStructureProvided 1119 | no 1120 | PBXSmartGroupTreeModuleColumnData 1121 | 1122 | PBXSmartGroupTreeModuleColumnWidthsKey 1123 | 1124 | 168 1125 | 1126 | PBXSmartGroupTreeModuleColumnsKey_v4 1127 | 1128 | MainColumn 1129 | 1130 | 1131 | PBXSmartGroupTreeModuleOutlineStateKey_v7 1132 | 1133 | PBXSmartGroupTreeModuleOutlineStateExpansionKey 1134 | 1135 | 1C77FABC04509CD000000102 1136 | 1137 | PBXSmartGroupTreeModuleOutlineStateSelectionKey 1138 | 1139 | 1140 | 0 1141 | 1142 | 1143 | PBXSmartGroupTreeModuleOutlineStateVisibleRectKey 1144 | {{0, 0}, {168, 350}} 1145 | 1146 | PBXTopSmartGroupGIDs 1147 | 1148 | XCIncludePerspectivesSwitch 1149 | 0 1150 | 1151 | GeometryConfiguration 1152 | 1153 | Frame 1154 | {{0, 0}, {185, 368}} 1155 | GroupTreeTableConfiguration 1156 | 1157 | MainColumn 1158 | 168 1159 | 1160 | RubberWindowFrame 1161 | 315 424 744 409 0 0 1440 878 1162 | 1163 | Module 1164 | PBXSmartGroupTreeModule 1165 | Proportion 1166 | 185pt 1167 | 1168 | 1169 | ContentConfiguration 1170 | 1171 | PBXProjectModuleGUID 1172 | 1CA1AED706398EBD00589147 1173 | PBXProjectModuleLabel 1174 | Detail 1175 | 1176 | GeometryConfiguration 1177 | 1178 | Frame 1179 | {{190, 0}, {554, 368}} 1180 | RubberWindowFrame 1181 | 315 424 744 409 0 0 1440 878 1182 | 1183 | Module 1184 | XCDetailModule 1185 | Proportion 1186 | 554pt 1187 | 1188 | 1189 | Proportion 1190 | 368pt 1191 | 1192 | 1193 | MajorVersion 1194 | 2 1195 | MinorVersion 1196 | 0 1197 | Name 1198 | Breakpoints 1199 | ServiceClasses 1200 | 1201 | PBXSmartGroupTreeModule 1202 | XCDetailModule 1203 | 1204 | StatusbarIsVisible 1205 | 1 1206 | TableOfContents 1207 | 1208 | 1CDDB66807F98D9800BB5817 1209 | 1CDDB66907F98D9800BB5817 1210 | 1CE0B1FE06471DED0097A5F4 1211 | 1CA1AED706398EBD00589147 1212 | 1213 | ToolbarConfiguration 1214 | xcode.toolbar.config.breakpoints 1215 | WindowString 1216 | 315 424 744 409 0 0 1440 878 1217 | WindowToolGUID 1218 | 1CDDB66807F98D9800BB5817 1219 | WindowToolIsVisible 1220 | 1 1221 | 1222 | 1223 | Identifier 1224 | windowTool.debugAnimator 1225 | Layout 1226 | 1227 | 1228 | Dock 1229 | 1230 | 1231 | Module 1232 | PBXNavigatorGroup 1233 | Proportion 1234 | 100% 1235 | 1236 | 1237 | Proportion 1238 | 100% 1239 | 1240 | 1241 | Name 1242 | Debug Visualizer 1243 | ServiceClasses 1244 | 1245 | PBXNavigatorGroup 1246 | 1247 | StatusbarIsVisible 1248 | 1 1249 | ToolbarConfiguration 1250 | xcode.toolbar.config.debugAnimator 1251 | WindowString 1252 | 100 100 700 500 0 0 1280 1002 1253 | 1254 | 1255 | Identifier 1256 | windowTool.bookmarks 1257 | Layout 1258 | 1259 | 1260 | Dock 1261 | 1262 | 1263 | Module 1264 | PBXBookmarksModule 1265 | Proportion 1266 | 100% 1267 | 1268 | 1269 | Proportion 1270 | 100% 1271 | 1272 | 1273 | Name 1274 | Bookmarks 1275 | ServiceClasses 1276 | 1277 | PBXBookmarksModule 1278 | 1279 | StatusbarIsVisible 1280 | 0 1281 | WindowString 1282 | 538 42 401 187 0 0 1280 1002 1283 | 1284 | 1285 | Identifier 1286 | windowTool.classBrowser 1287 | Layout 1288 | 1289 | 1290 | Dock 1291 | 1292 | 1293 | BecomeActive 1294 | 1 1295 | ContentConfiguration 1296 | 1297 | OptionsSetName 1298 | Hierarchy, all classes 1299 | PBXProjectModuleGUID 1300 | 1CA6456E063B45B4001379D8 1301 | PBXProjectModuleLabel 1302 | Class Browser - NSObject 1303 | 1304 | GeometryConfiguration 1305 | 1306 | ClassesFrame 1307 | {{0, 0}, {374, 96}} 1308 | ClassesTreeTableConfiguration 1309 | 1310 | PBXClassNameColumnIdentifier 1311 | 208 1312 | PBXClassBookColumnIdentifier 1313 | 22 1314 | 1315 | Frame 1316 | {{0, 0}, {630, 331}} 1317 | MembersFrame 1318 | {{0, 105}, {374, 395}} 1319 | MembersTreeTableConfiguration 1320 | 1321 | PBXMemberTypeIconColumnIdentifier 1322 | 22 1323 | PBXMemberNameColumnIdentifier 1324 | 216 1325 | PBXMemberTypeColumnIdentifier 1326 | 97 1327 | PBXMemberBookColumnIdentifier 1328 | 22 1329 | 1330 | PBXModuleWindowStatusBarHidden2 1331 | 1 1332 | RubberWindowFrame 1333 | 385 179 630 352 0 0 1440 878 1334 | 1335 | Module 1336 | PBXClassBrowserModule 1337 | Proportion 1338 | 332pt 1339 | 1340 | 1341 | Proportion 1342 | 332pt 1343 | 1344 | 1345 | Name 1346 | Class Browser 1347 | ServiceClasses 1348 | 1349 | PBXClassBrowserModule 1350 | 1351 | StatusbarIsVisible 1352 | 0 1353 | TableOfContents 1354 | 1355 | 1C0AD2AF069F1E9B00FABCE6 1356 | 1C0AD2B0069F1E9B00FABCE6 1357 | 1CA6456E063B45B4001379D8 1358 | 1359 | ToolbarConfiguration 1360 | xcode.toolbar.config.classbrowser 1361 | WindowString 1362 | 385 179 630 352 0 0 1440 878 1363 | WindowToolGUID 1364 | 1C0AD2AF069F1E9B00FABCE6 1365 | WindowToolIsVisible 1366 | 0 1367 | 1368 | 1369 | 1370 | 1371 | --------------------------------------------------------------------------------