diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-12-01 14:01:36 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-12-01 14:01:36 +0000 |
commit | 40b1a5d57e6445f5a644521018ceb7762b3b59b8 (patch) | |
tree | 69cbb8f8bf46f23b38f8cecbf284ece868e97ece /Source | |
parent | 426b66613cd49497b4e8ad4246031c0e43b2ec27 (diff) | |
download | sequelpro-40b1a5d57e6445f5a644521018ceb7762b3b59b8.tar.gz sequelpro-40b1a5d57e6445f5a644521018ceb7762b3b59b8.tar.bz2 sequelpro-40b1a5d57e6445f5a644521018ceb7762b3b59b8.zip |
• improve error handling for url scheme commands
Diffstat (limited to 'Source')
-rw-r--r-- | Source/SPAppController.m | 13 | ||||
-rw-r--r-- | Source/SPBundleHTMLOutputController.m | 2 |
2 files changed, 14 insertions, 1 deletions
diff --git a/Source/SPAppController.m b/Source/SPAppController.m index 67d0427f..d9fe64bb 100644 --- a/Source/SPAppController.m +++ b/Source/SPAppController.m @@ -684,6 +684,19 @@ return; } + // If command failed notify the file handle hand shake mechanism + NSString *out = @"1"; + [out writeToFile:[NSString stringWithFormat:@"%@%@", SPURLSchemeQueryResultStatusPathHeader, passedProcessID] + atomically:YES + encoding:NSUTF8StringEncoding + error:nil]; + out = @"Scheme Error"; + [out writeToFile:[NSString stringWithFormat:@"%@%@", SPURLSchemeQueryResultPathHeader, passedProcessID] + atomically:YES + encoding:NSUTF8StringEncoding + error:nil]; + + if(processDocument) NSLog(@"process doc ID: %@\n%@", [processDocument processID], [processDocument tabTitleForTooltip]); else diff --git a/Source/SPBundleHTMLOutputController.m b/Source/SPBundleHTMLOutputController.m index 5d3d0ddf..c6129e99 100644 --- a/Source/SPBundleHTMLOutputController.m +++ b/Source/SPBundleHTMLOutputController.m @@ -41,7 +41,7 @@ if (self = [super initWithWindowNibName:@"BundleHTMLOutput"]) { - ; + [[self window] setReleasedWhenClosed:YES]; } |