[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

darin darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:23:14 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 9939062d3f8ade210816c84b336aabe8b639e7a8
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Jul 3 16:06:55 2002 +0000

            * Misc.subproj/IFDownloadHandler.mm:
            (-[IFDownloadHandler finishedLoading]):
            * WebView.subproj/IFWebController.h:
    	A couple places where it still said IFContentPolicyOpenExternally.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1507 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index cd67237..c1d6d63 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,10 @@
+2002-07-03  Darin Adler  <darin at apple.com>
+
+        * Misc.subproj/IFDownloadHandler.mm:
+        (-[IFDownloadHandler finishedLoading]):
+        * WebView.subproj/IFWebController.h:
+	A couple places where it still said IFContentPolicyOpenExternally.
+
 2002-07-03  Maciej Stachowiak  <mjs at apple.com>
 
         WebKit part of fixes for:
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index cd67237..c1d6d63 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,10 @@
+2002-07-03  Darin Adler  <darin at apple.com>
+
+        * Misc.subproj/IFDownloadHandler.mm:
+        (-[IFDownloadHandler finishedLoading]):
+        * WebView.subproj/IFWebController.h:
+	A couple places where it still said IFContentPolicyOpenExternally.
+
 2002-07-03  Maciej Stachowiak  <mjs at apple.com>
 
         WebKit part of fixes for:
diff --git a/WebKit/Misc.subproj/IFDownloadHandler.mm b/WebKit/Misc.subproj/IFDownloadHandler.mm
index fc4217c..85affaf 100644
--- a/WebKit/Misc.subproj/IFDownloadHandler.mm
+++ b/WebKit/Misc.subproj/IFDownloadHandler.mm
@@ -3,7 +3,7 @@
 //  WebKit
 //
 //  Created by Chris Blumenberg on Thu Apr 11 2002.
-//  Copyright (c) 2002 __MyCompanyName__. All rights reserved.
+//  Copyright (c) 2002 Apple Computer, Inc.
 //
 
 #import <WebKit/IFDownloadHandler.h>
@@ -77,7 +77,7 @@
     [fileHandle closeFile];
     WEBKITDEBUGLEVEL(WEBKIT_LOG_DOWNLOAD, "Download complete. Saved to: %s", [path cString]);
     
-    if([dataSource contentPolicy] == IFContentPolicyOpenExternally){
+    if([dataSource contentPolicy] == IFContentPolicySaveAndOpenExternally){
         [workspace openFile:path];
     }
 }
diff --git a/WebKit/Misc.subproj/WebDownloadHandler.m b/WebKit/Misc.subproj/WebDownloadHandler.m
index fc4217c..85affaf 100644
--- a/WebKit/Misc.subproj/WebDownloadHandler.m
+++ b/WebKit/Misc.subproj/WebDownloadHandler.m
@@ -3,7 +3,7 @@
 //  WebKit
 //
 //  Created by Chris Blumenberg on Thu Apr 11 2002.
-//  Copyright (c) 2002 __MyCompanyName__. All rights reserved.
+//  Copyright (c) 2002 Apple Computer, Inc.
 //
 
 #import <WebKit/IFDownloadHandler.h>
@@ -77,7 +77,7 @@
     [fileHandle closeFile];
     WEBKITDEBUGLEVEL(WEBKIT_LOG_DOWNLOAD, "Download complete. Saved to: %s", [path cString]);
     
-    if([dataSource contentPolicy] == IFContentPolicyOpenExternally){
+    if([dataSource contentPolicy] == IFContentPolicySaveAndOpenExternally){
         [workspace openFile:path];
     }
 }
diff --git a/WebKit/WebView.subproj/IFWebController.h b/WebKit/WebView.subproj/IFWebController.h
index 2c5f675..1dca8fe 100644
--- a/WebKit/WebView.subproj/IFWebController.h
+++ b/WebKit/WebView.subproj/IFWebController.h
@@ -1,6 +1,6 @@
 /*	
         IFWebController.h
-	Copyright 2001, Apple, Inc. All rights reserved.
+	Copyright 2001, 2002, Apple Computer, Inc.
 
         Public header file.
 */
@@ -158,7 +158,7 @@
 // locationChangeHander.  The content policy of HTML URLs should always be IFContentPolicyShow.
 // Setting the policy to IFContentPolicyIgnore will cancel the load of the URL if it is still
 // pending.  The path argument is only used when the policy is either IFContentPolicySave or
-// IFContentPolicyOpenExternally.
+// IFContentPolicySaveAndOpenExternally.
 - (void)haveContentPolicy: (IFContentPolicy)policy andPath: (NSString *)path  forDataSource: (IFWebDataSource *)dataSource;
 
 // API to manage animated images.
diff --git a/WebKit/WebView.subproj/WebController.h b/WebKit/WebView.subproj/WebController.h
index 2c5f675..1dca8fe 100644
--- a/WebKit/WebView.subproj/WebController.h
+++ b/WebKit/WebView.subproj/WebController.h
@@ -1,6 +1,6 @@
 /*	
         IFWebController.h
-	Copyright 2001, Apple, Inc. All rights reserved.
+	Copyright 2001, 2002, Apple Computer, Inc.
 
         Public header file.
 */
@@ -158,7 +158,7 @@
 // locationChangeHander.  The content policy of HTML URLs should always be IFContentPolicyShow.
 // Setting the policy to IFContentPolicyIgnore will cancel the load of the URL if it is still
 // pending.  The path argument is only used when the policy is either IFContentPolicySave or
-// IFContentPolicyOpenExternally.
+// IFContentPolicySaveAndOpenExternally.
 - (void)haveContentPolicy: (IFContentPolicy)policy andPath: (NSString *)path  forDataSource: (IFWebDataSource *)dataSource;
 
 // API to manage animated images.
diff --git a/WebKit/WebView.subproj/WebView.h b/WebKit/WebView.subproj/WebView.h
index 2c5f675..1dca8fe 100644
--- a/WebKit/WebView.subproj/WebView.h
+++ b/WebKit/WebView.subproj/WebView.h
@@ -1,6 +1,6 @@
 /*	
         IFWebController.h
-	Copyright 2001, Apple, Inc. All rights reserved.
+	Copyright 2001, 2002, Apple Computer, Inc.
 
         Public header file.
 */
@@ -158,7 +158,7 @@
 // locationChangeHander.  The content policy of HTML URLs should always be IFContentPolicyShow.
 // Setting the policy to IFContentPolicyIgnore will cancel the load of the URL if it is still
 // pending.  The path argument is only used when the policy is either IFContentPolicySave or
-// IFContentPolicyOpenExternally.
+// IFContentPolicySaveAndOpenExternally.
 - (void)haveContentPolicy: (IFContentPolicy)policy andPath: (NSString *)path  forDataSource: (IFWebDataSource *)dataSource;
 
 // API to manage animated images.

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list