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

kocienda kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 05:54:54 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit aa1087070fe4ab539a492807f185b5e8838ebf0d
Author: kocienda <kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Feb 1 00:28:33 2002 +0000

    2002-01-31  Kenneth Kocienda  <kocienda at apple.com>
    
            Removed dependency on WC versions of these files
    
            * History.subproj/WKBackForwardList.h:
            * History.subproj/WKBackForwardList.m:
            * History.subproj/WKURIEntry.h:
            * History.subproj/WKURIEntry.m:
            * WebKit.pbproj/project.pbxproj:
    
    
            A set of in-progress changes. The new code here is not in a current code path,
            but I'm checking in to make sure that some changes I made in WebKit work
            with something I was able to test.
    
            * CacheLoader.subproj/WKURLHandle.m: (-[WKURLHandle notifyClientsDidLoadData]):
            * Misc.subproj/WKMutableData.h:
            * Misc.subproj/WKMutableData.m: (-[WKMutableData copyWithZone:]),
            (-[WKMutableData initWithBytes:length:copy:freeWhenDone:bytesAreVM:]):
            * WebFoundation.pbproj/project.pbxproj:
    
            Removed dependency on WC classes backed by WebKit classes.
    
            * Tests/khtmlview/_KWQOwner.h:
            * Tests/khtmlview/_KWQOwner.m: (-[_KWQOwner changeURL:]), (-[_KWQOwner back:]),
            (-[_KWQOwner forward:]), (-[_KWQOwner newUriDone:]):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@575 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index fb95647..5e3c817 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,13 @@
+2002-01-31  Kenneth Kocienda  <kocienda at apple.com>
+
+        Removed dependency on WC versions of these files
+        
+	* History.subproj/WKBackForwardList.h:
+	* History.subproj/WKBackForwardList.m:
+	* History.subproj/WKURIEntry.h:
+	* History.subproj/WKURIEntry.m:
+	* WebKit.pbproj/project.pbxproj:
+
 2002-01-31  John Sullivan  <sullivan at apple.com>
 
 	* WebKit.pbproj:
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index fb95647..5e3c817 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,13 @@
+2002-01-31  Kenneth Kocienda  <kocienda at apple.com>
+
+        Removed dependency on WC versions of these files
+        
+	* History.subproj/WKBackForwardList.h:
+	* History.subproj/WKBackForwardList.m:
+	* History.subproj/WKURIEntry.h:
+	* History.subproj/WKURIEntry.m:
+	* WebKit.pbproj/project.pbxproj:
+
 2002-01-31  John Sullivan  <sullivan at apple.com>
 
 	* WebKit.pbproj:
diff --git a/WebKit/History.subproj/IFBackForwardList.h b/WebKit/History.subproj/IFBackForwardList.h
index c5c2712..0168490 100644
--- a/WebKit/History.subproj/IFBackForwardList.h
+++ b/WebKit/History.subproj/IFBackForwardList.h
@@ -3,11 +3,10 @@
 */
 
 #import <Foundation/Foundation.h>
-#import "WKURIList.h"
-#import "WKURIEntry.h"
-#import <WCBackForwardList.h>
+#import <WebKit/WKURIList.h>
+#import <WebKit/WKURIEntry.h>
 
- at interface WKBackForwardList : NSObject <WCBackForwardList> {
+ at interface WKBackForwardList : NSObject {
     WKURIList *uriList;
     int index;
     NSLock *mutex;
diff --git a/WebKit/History.subproj/IFBackForwardList.m b/WebKit/History.subproj/IFBackForwardList.m
index 51a166a..f6df3d0 100644
--- a/WebKit/History.subproj/IFBackForwardList.m
+++ b/WebKit/History.subproj/IFBackForwardList.m
@@ -7,15 +7,6 @@
 //
 
 #import "WKBackForwardList.h"
-#import "WCBackForwardList.h"
-
-// *** Function to access WCURICache singleton
-
-id <WCBackForwardList> WCCreateBackForwardList(void)
-{
-    return [[WKBackForwardList alloc] init];
-}
-
 
 @implementation WKBackForwardList
 
diff --git a/WebKit/History.subproj/IFURIEntry.h b/WebKit/History.subproj/IFURIEntry.h
index 6e4d9f6..548504b 100644
--- a/WebKit/History.subproj/IFURIEntry.h
+++ b/WebKit/History.subproj/IFURIEntry.h
@@ -8,9 +8,10 @@
 
 #import <Foundation/Foundation.h>
 #import <AppKit/AppKit.h>
-#import <WCURIEntry.h>
+//#import <WCURIEntry.h>
 
- at interface WKURIEntry : NSObject <WCURIEntry>
+//@interface WKURIEntry : NSObject <WCURIEntry>
+ at interface WKURIEntry : NSObject
 {
     NSURL *_url;
     NSString *_title;
diff --git a/WebKit/History.subproj/IFURIEntry.m b/WebKit/History.subproj/IFURIEntry.m
index 0ad4259..fc3ecb5 100644
--- a/WebKit/History.subproj/IFURIEntry.m
+++ b/WebKit/History.subproj/IFURIEntry.m
@@ -8,6 +8,8 @@
 
 #import "WKURIEntry.h"
 #import "WebKitReallyPrivate.h"
+
+#if 0
 #import "WCURIEntry.h"
 
 // *** Function to access WCURICache singleton
@@ -16,7 +18,7 @@ id <WCURIEntry> WCCreateURIEntry(void)
 {
     return [[WKURIEntry alloc] init];
 }
-
+#endif
 
 @implementation WKURIEntry
 
diff --git a/WebKit/History.subproj/WKBackForwardList.h b/WebKit/History.subproj/WKBackForwardList.h
index c5c2712..0168490 100644
--- a/WebKit/History.subproj/WKBackForwardList.h
+++ b/WebKit/History.subproj/WKBackForwardList.h
@@ -3,11 +3,10 @@
 */
 
 #import <Foundation/Foundation.h>
-#import "WKURIList.h"
-#import "WKURIEntry.h"
-#import <WCBackForwardList.h>
+#import <WebKit/WKURIList.h>
+#import <WebKit/WKURIEntry.h>
 
- at interface WKBackForwardList : NSObject <WCBackForwardList> {
+ at interface WKBackForwardList : NSObject {
     WKURIList *uriList;
     int index;
     NSLock *mutex;
diff --git a/WebKit/History.subproj/WKBackForwardList.m b/WebKit/History.subproj/WKBackForwardList.m
index 51a166a..f6df3d0 100644
--- a/WebKit/History.subproj/WKBackForwardList.m
+++ b/WebKit/History.subproj/WKBackForwardList.m
@@ -7,15 +7,6 @@
 //
 
 #import "WKBackForwardList.h"
-#import "WCBackForwardList.h"
-
-// *** Function to access WCURICache singleton
-
-id <WCBackForwardList> WCCreateBackForwardList(void)
-{
-    return [[WKBackForwardList alloc] init];
-}
-
 
 @implementation WKBackForwardList
 
diff --git a/WebKit/History.subproj/WKURIEntry.h b/WebKit/History.subproj/WKURIEntry.h
index 6e4d9f6..548504b 100644
--- a/WebKit/History.subproj/WKURIEntry.h
+++ b/WebKit/History.subproj/WKURIEntry.h
@@ -8,9 +8,10 @@
 
 #import <Foundation/Foundation.h>
 #import <AppKit/AppKit.h>
-#import <WCURIEntry.h>
+//#import <WCURIEntry.h>
 
- at interface WKURIEntry : NSObject <WCURIEntry>
+//@interface WKURIEntry : NSObject <WCURIEntry>
+ at interface WKURIEntry : NSObject
 {
     NSURL *_url;
     NSString *_title;
diff --git a/WebKit/History.subproj/WKURIEntry.m b/WebKit/History.subproj/WKURIEntry.m
index 0ad4259..fc3ecb5 100644
--- a/WebKit/History.subproj/WKURIEntry.m
+++ b/WebKit/History.subproj/WKURIEntry.m
@@ -8,6 +8,8 @@
 
 #import "WKURIEntry.h"
 #import "WebKitReallyPrivate.h"
+
+#if 0
 #import "WCURIEntry.h"
 
 // *** Function to access WCURICache singleton
@@ -16,7 +18,7 @@ id <WCURIEntry> WCCreateURIEntry(void)
 {
     return [[WKURIEntry alloc] init];
 }
-
+#endif
 
 @implementation WKURIEntry
 
diff --git a/WebKit/History.subproj/WebBackForwardList.h b/WebKit/History.subproj/WebBackForwardList.h
index c5c2712..0168490 100644
--- a/WebKit/History.subproj/WebBackForwardList.h
+++ b/WebKit/History.subproj/WebBackForwardList.h
@@ -3,11 +3,10 @@
 */
 
 #import <Foundation/Foundation.h>
-#import "WKURIList.h"
-#import "WKURIEntry.h"
-#import <WCBackForwardList.h>
+#import <WebKit/WKURIList.h>
+#import <WebKit/WKURIEntry.h>
 
- at interface WKBackForwardList : NSObject <WCBackForwardList> {
+ at interface WKBackForwardList : NSObject {
     WKURIList *uriList;
     int index;
     NSLock *mutex;
diff --git a/WebKit/History.subproj/WebBackForwardList.m b/WebKit/History.subproj/WebBackForwardList.m
index 51a166a..f6df3d0 100644
--- a/WebKit/History.subproj/WebBackForwardList.m
+++ b/WebKit/History.subproj/WebBackForwardList.m
@@ -7,15 +7,6 @@
 //
 
 #import "WKBackForwardList.h"
-#import "WCBackForwardList.h"
-
-// *** Function to access WCURICache singleton
-
-id <WCBackForwardList> WCCreateBackForwardList(void)
-{
-    return [[WKBackForwardList alloc] init];
-}
-
 
 @implementation WKBackForwardList
 
diff --git a/WebKit/History.subproj/WebHistoryItem.h b/WebKit/History.subproj/WebHistoryItem.h
index 6e4d9f6..548504b 100644
--- a/WebKit/History.subproj/WebHistoryItem.h
+++ b/WebKit/History.subproj/WebHistoryItem.h
@@ -8,9 +8,10 @@
 
 #import <Foundation/Foundation.h>
 #import <AppKit/AppKit.h>
-#import <WCURIEntry.h>
+//#import <WCURIEntry.h>
 
- at interface WKURIEntry : NSObject <WCURIEntry>
+//@interface WKURIEntry : NSObject <WCURIEntry>
+ at interface WKURIEntry : NSObject
 {
     NSURL *_url;
     NSString *_title;
diff --git a/WebKit/History.subproj/WebHistoryItem.m b/WebKit/History.subproj/WebHistoryItem.m
index 0ad4259..fc3ecb5 100644
--- a/WebKit/History.subproj/WebHistoryItem.m
+++ b/WebKit/History.subproj/WebHistoryItem.m
@@ -8,6 +8,8 @@
 
 #import "WKURIEntry.h"
 #import "WebKitReallyPrivate.h"
+
+#if 0
 #import "WCURIEntry.h"
 
 // *** Function to access WCURICache singleton
@@ -16,7 +18,7 @@ id <WCURIEntry> WCCreateURIEntry(void)
 {
     return [[WKURIEntry alloc] init];
 }
-
+#endif
 
 @implementation WKURIEntry
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list