[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677
sullivan
sullivan at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:33:09 UTC 2009
The following commit has been merged in the debian/unstable branch:
commit bac144c6f483e6029b833f08e9977a40081f4fea
Author: sullivan <sullivan at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Tue Aug 20 21:58:50 2002 +0000
Fixed problem with previous checkin that was causing
drag-and-drop for files to fail (at least).
* WebView.subproj/WebFramePrivate.m:
(-[WebFrame _shouldShowURL:]): pass isDirectory, not YES,
to fileURLPolicyForMIMEType:inFrame:isDirectory:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1882 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 4b499c1..b33de66 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,14 @@
2002-08-20 John Sullivan <sullivan at apple.com>
+ Fixed problem with previous checkin that was causing
+ drag-and-drop for files to fail (at least).
+
+ * WebView.subproj/WebFramePrivate.m:
+ (-[WebFrame _shouldShowURL:]): pass isDirectory, not YES,
+ to fileURLPolicyForMIMEType:inFrame:isDirectory:
+
+2002-08-20 John Sullivan <sullivan at apple.com>
+
WebKit part of fixes for:
- 3027491 -- failure loading frame's resource leads to misbehaving panel
- 3027494 -- failure loading frame's resource leads to error message in Alex, silence in IE
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 4b499c1..b33de66 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,5 +1,14 @@
2002-08-20 John Sullivan <sullivan at apple.com>
+ Fixed problem with previous checkin that was causing
+ drag-and-drop for files to fail (at least).
+
+ * WebView.subproj/WebFramePrivate.m:
+ (-[WebFrame _shouldShowURL:]): pass isDirectory, not YES,
+ to fileURLPolicyForMIMEType:inFrame:isDirectory:
+
+2002-08-20 John Sullivan <sullivan at apple.com>
+
WebKit part of fixes for:
- 3027491 -- failure loading frame's resource leads to misbehaving panel
- 3027494 -- failure loading frame's resource leads to error message in Alex, silence in IE
diff --git a/WebKit/WebView.subproj/WebFramePrivate.m b/WebKit/WebView.subproj/WebFramePrivate.m
index f64d711..ec67ad5 100644
--- a/WebKit/WebView.subproj/WebFramePrivate.m
+++ b/WebKit/WebView.subproj/WebFramePrivate.m
@@ -581,7 +581,7 @@ static const char * const stateNames[] = {
BOOL isDirectory;
BOOL fileExists = [fileManager fileExistsAtPath:path isDirectory:&isDirectory];
NSString *type = [WebController _MIMETypeForFile: path];
- WebFileURLPolicy *fileURLPolicy = [policyHandler fileURLPolicyForMIMEType:type inFrame:self isDirectory:YES];
+ WebFileURLPolicy *fileURLPolicy = [policyHandler fileURLPolicyForMIMEType:type inFrame:self isDirectory:isDirectory];
if([fileURLPolicy policyAction] == WebFileURLPolicyIgnore)
return NO;
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list