summaryrefslogtreecommitdiff
path: root/UICaboodle
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2009-07-01 13:26:11 +0000
committerJay Freeman (saurik) <saurik@saurik.com>2010-09-30 07:13:58 +0000
commit327624b6106222962bcd56edbce94294362bb4b6 (patch)
treec9f890820ed8103c85734f55ef32f28a355dc513 /UICaboodle
parent8696b988ce2b755ed708a5a84740446bbb7fb7f1 (diff)
Massive fixes for 3.x.
Diffstat (limited to 'UICaboodle')
-rw-r--r--UICaboodle/BrowserView.mm28
-rw-r--r--UICaboodle/ResetView.mm4
2 files changed, 23 insertions, 9 deletions
diff --git a/UICaboodle/BrowserView.mm b/UICaboodle/BrowserView.mm
index e08c291..bd2c236 100644
--- a/UICaboodle/BrowserView.mm
+++ b/UICaboodle/BrowserView.mm
@@ -10,6 +10,9 @@ extern NSString * const kCAFilterNearest;
#include "substrate.h"
+static CFArrayRef (*$GSSystemCopyCapability)(CFStringRef);
+static CFArrayRef (*$GSSystemGetCapability)(CFStringRef);
+
@interface NSString (UIKit)
- (NSString *) stringByAddingPercentEscapes;
@end
@@ -222,7 +225,6 @@ UIActionSheet *mailAlertSheet = [[UIActionSheet alloc] initWithTitle:UCLocalize(
#endif
+ (void) _initialize {
- NSLog(@"INITIALIZING");
[WebView enableWebThread];
WebPreferences *preferences([WebPreferences standardPreferences]);
@@ -230,6 +232,9 @@ UIActionSheet *mailAlertSheet = [[UIActionSheet alloc] initWithTitle:UCLocalize(
[preferences setOfflineWebApplicationCacheEnabled:YES];
[WebPreferences _setInitialDefaultTextEncodingToSystemEncoding];
+
+ $GSSystemCopyCapability = reinterpret_cast<CFArrayRef (*)(CFStringRef)>(dlsym(RTLD_DEFAULT, "GSSystemCopyCapability"));
+ $GSSystemGetCapability = reinterpret_cast<CFArrayRef (*)(CFStringRef)>(dlsym(RTLD_DEFAULT, "GSSystemGetCapability"));
}
- (void) dealloc {
@@ -704,6 +709,7 @@ UIActionSheet *mailAlertSheet = [[UIActionSheet alloc] initWithTitle:UCLocalize(
}
NSURL *url([request URL]);
+ NSString *host([url host]);
if (url == nil) use: {
if (!error_ && [frame parentFrame] == nil) {
@@ -728,16 +734,22 @@ UIActionSheet *mailAlertSheet = [[UIActionSheet alloc] initWithTitle:UCLocalize(
const NSArray *capability;
-#if 0 // XXX:3:GSSystemCopyCapability
- capability = reinterpret_cast<const NSArray *>(GSSystemGetCapability(kGSDisplayIdentifiersCapability));
-#else
- capability = nil;
-#endif
+ if ($GSSystemCopyCapability != NULL) {
+ capability = reinterpret_cast<const NSArray *>((*$GSSystemCopyCapability)(kGSDisplayIdentifiersCapability));
+ capability = [capability autorelease];
+ } else if ($GSSystemGetCapability != NULL) {
+ capability = reinterpret_cast<const NSArray *>((*$GSSystemGetCapability)(kGSDisplayIdentifiersCapability));
+ } else
+ capability = nil;
+
+ NSURL *open(nil);
if (capability != nil && (
- [capability containsObject:@"com.apple.Maps"] && [url mapsURL] ||
- [capability containsObject:@"com.apple.youtube"] && [url youTubeURL]
+ [url isGoogleMapsURL] && [capability containsObject:@"com.apple.Maps"] && (open = [url mapsURL]) != nil||
+ [host hasSuffix:@"youtube.com"] && [capability containsObject:@"com.apple.youtube"] && (open = [url youTubeURL]) != nil ||
+ [url respondsToSelector:@selector(phobosURL)] && (open = [url phobosURL]) != nil
)) {
+ url = open;
open:
[UIApp openURL:url];
goto ignore;
diff --git a/UICaboodle/ResetView.mm b/UICaboodle/ResetView.mm
index 4265be4..bd1c8ee 100644
--- a/UICaboodle/ResetView.mm
+++ b/UICaboodle/ResetView.mm
@@ -37,7 +37,9 @@
@implementation UITableView (RVBook)
- (void) resetViewAnimated:(BOOL)animated {
- [self selectRowAtIndexPath:nil animated:animated scrollPosition:UITableViewScrollPositionNone];
+ //[self selectRowAtIndexPath:nil animated:animated scrollPosition:UITableViewScrollPositionNone];
+ if (NSIndexPath *path = [self indexPathForSelectedRow])
+ [self deselectRowAtIndexPath:path animated:animated];
}
- (void) clearView {