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

cblu cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:16:55 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit f6eb459ca45252704a0ce2b6be565f55524afcfb
Author: cblu <cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Jun 4 23:27:16 2002 +0000

    WebBrowser:
    
    	Added the Downloads window!
    
    	* AppController.h:
    	* AppController.m:
    	(-[AppController showReleaseNotes:]): no changes
    	(-[AppController showDownloads:]): added for menu item
    	* DownloadMonitor.h:
    	* DownloadMonitor.m: Removed protocol conforming
    	(-[DownloadMonitor init]):
    	(+[DownloadMonitor sharedDownloadMonitor]):
    	(-[DownloadMonitor windowDidLoad]): added
    	(-[DownloadMonitor updateProgressUI]): added
    	(-[DownloadMonitor _findEntryForDataSource:]): minor clean up
    	(-[DownloadMonitor monitorDownload:withProgress:error:dataSource:]): spawns progress timer
    	(-[DownloadMonitor validateUserInterfaceItem:]): added
    	(-[DownloadMonitor makeSelectedDownloadsPerformSelector:]): added
    	(-[DownloadMonitor openSelectedDownloads:]): added
    	(-[DownloadMonitor alwaysOpenSelectedDownloads:]): added
    	(-[DownloadMonitor stopSelectedDownloads:]): added
    	(-[DownloadMonitor revealSelectedDownloads:]): added
    	(-[DownloadMonitor toolbar:itemForItemIdentifier:willBeInsertedIntoToolbar:]): added
    	(-[DownloadMonitor toolbarAllowedItemIdentifiers:]): added
    	(-[DownloadMonitor toolbarDefaultItemIdentifiers:]): added
    	* DownloadProgressEntry.h:
    	* DownloadProgressEntry.m: Made DownloadProgressEntry own the download entry subview
    	(-[DownloadProgressEntry _initWithResource:progress:error:dataSource:]):
    	(-[DownloadProgressEntry dealloc]):
    	(-[DownloadProgressEntry URLStringResized:]): added
    	(-[DownloadProgressEntry awakeFromNib]): added
    	(-[DownloadProgressEntry updateProgressUI]): added
    	(-[DownloadProgressEntry open]): added
    	(-[DownloadProgressEntry alwaysOpen]): added
    	(-[DownloadProgressEntry stop]): added
    	(-[DownloadProgressEntry reveal]): added
    	(-[DownloadProgressEntry view]): added
    	* English.lproj/DownloadEntry.nib: Added.
    	* English.lproj/Downloads.nib: Added.
    	* English.lproj/MainMenu.nib: added Downloads to menu
    	* ListView.h: Added.
    	* ListView.m: Added. Simple class that appends views to each other. Implements selection.
    	(-[ListView initWithFrame:]):
    	(-[ListView dealloc]):
    	(-[ListView drawRect:]):
    	(-[ListView acceptsFirstResponder]):
    	(-[ListView mouseDown:]):
    	(-[ListView isFlipped]):
    	(-[ListView isOpaque]):
    	(-[ListView validateUserInterfaceItem:]):
    	(-[ListView addViewToList:]):
    	(-[ListView isSelectedView:]):
    	(-[ListView setDelegate:]):
    	* LocationChangeHandler.m:
    	(-[LocationChangeHandler requestContentPolicyForMIMEType:]): Better filename from URL algorithm
    	* ResourceProgressEntry.h: Made error and statusString public
    	* Resources/Images/always_open.tiff: Added.
    	* Resources/Images/open.tiff: Added.
    	* Resources/Images/reveal.tiff: Added.
    	* Resources/Images/stop.tiff: Added.
    	* WebBrowser.pbproj/project.pbxproj:
    
    WebKit:
    
    	* MIME.subproj/IFDownloadHandler.mm: Use public methods
    	* WebView.subproj/IFWebDataSource.h: Made downloadPath public
    	* WebView.subproj/IFWebDataSource.mm:
    	(-[IFWebDataSource downloadPath]):
    	* WebView.subproj/IFWebDataSourcePrivate.h:
    	* WebView.subproj/IFWebDataSourcePrivate.mm:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1274 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index a004acf..e170fa5 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,12 @@
+2002-06-04  Chris Blumenberg  <cblu at apple.com>
+
+	* MIME.subproj/IFDownloadHandler.mm: Use public methods
+	* WebView.subproj/IFWebDataSource.h: Made downloadPath public
+	* WebView.subproj/IFWebDataSource.mm:
+	(-[IFWebDataSource downloadPath]):
+	* WebView.subproj/IFWebDataSourcePrivate.h:
+	* WebView.subproj/IFWebDataSourcePrivate.mm:
+
 2002-06-04  Richard Williamson  <rjw at apple.com>
 
     More exclusion for pre 6C48.
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index a004acf..e170fa5 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,12 @@
+2002-06-04  Chris Blumenberg  <cblu at apple.com>
+
+	* MIME.subproj/IFDownloadHandler.mm: Use public methods
+	* WebView.subproj/IFWebDataSource.h: Made downloadPath public
+	* WebView.subproj/IFWebDataSource.mm:
+	(-[IFWebDataSource downloadPath]):
+	* WebView.subproj/IFWebDataSourcePrivate.h:
+	* WebView.subproj/IFWebDataSourcePrivate.mm:
+
 2002-06-04  Richard Williamson  <rjw at apple.com>
 
     More exclusion for pre 6C48.
diff --git a/WebKit/MIME.subproj/IFDownloadHandler.mm b/WebKit/MIME.subproj/IFDownloadHandler.mm
index 03fd257..4467a95 100644
--- a/WebKit/MIME.subproj/IFDownloadHandler.mm
+++ b/WebKit/MIME.subproj/IFDownloadHandler.mm
@@ -26,7 +26,7 @@
 
 - (void)downloadCompletedWithData:(NSData *)data;
 {
-    NSString *path = [dataSource _downloadPath];
+    NSString *path = [dataSource downloadPath];
     NSFileManager *fileManager;
     NSWorkspace *workspace;
     
diff --git a/WebKit/WebView.subproj/IFWebDataSource.h b/WebKit/WebView.subproj/IFWebDataSource.h
index 5ce23c3..375f8e9 100644
--- a/WebKit/WebView.subproj/IFWebDataSource.h
+++ b/WebKit/WebView.subproj/IFWebDataSource.h
@@ -148,6 +148,8 @@
 
 - (IFContentPolicy)contentPolicy;
 
+- (NSString *)downloadPath;
+
 /*
 */
 - (NSDictionary *)errors;
diff --git a/WebKit/WebView.subproj/IFWebDataSource.mm b/WebKit/WebView.subproj/IFWebDataSource.mm
index 611a193..366e8df 100644
--- a/WebKit/WebView.subproj/IFWebDataSource.mm
+++ b/WebKit/WebView.subproj/IFWebDataSource.mm
@@ -323,6 +323,11 @@ static id IFWebDataSourceMake(void *url, void *attributes, unsigned flags)
     return _private->contentPolicy;
 }
 
+- (NSString *)downloadPath
+{
+    return _private->downloadPath;
+}
+
 - (NSDictionary *)errors
 {
     return _private->errors;
diff --git a/WebKit/WebView.subproj/IFWebDataSourcePrivate.h b/WebKit/WebView.subproj/IFWebDataSourcePrivate.h
index 63eea22..7032112 100644
--- a/WebKit/WebView.subproj/IFWebDataSourcePrivate.h
+++ b/WebKit/WebView.subproj/IFWebDataSourcePrivate.h
@@ -90,7 +90,6 @@ class KHTMLPart;
 
 - (id <IFLocationChangeHandler>)_locationChangeHandler;
 - (void)_setLocationChangeHandler: (id <IFLocationChangeHandler>)l;
-- (NSString *)_downloadPath;
 - (void) _setDownloadPath:(NSString *)path;
 - (void) _setContentPolicy:(IFContentPolicy)policy;
 - (IFWebDataSource *) _recursiveDataSourceForLocationChangeHandler:(id <IFLocationChangeHandler>)handler;
diff --git a/WebKit/WebView.subproj/IFWebDataSourcePrivate.mm b/WebKit/WebView.subproj/IFWebDataSourcePrivate.mm
index a329596..04c3c08 100644
--- a/WebKit/WebView.subproj/IFWebDataSourcePrivate.mm
+++ b/WebKit/WebView.subproj/IFWebDataSourcePrivate.mm
@@ -279,11 +279,6 @@
     _private->locationChangeHandler = l;
 }
 
-- (NSString *)_downloadPath
-{
-    return _private->downloadPath;
-}
-
 - (void) _setDownloadPath:(NSString *)path
 {
     [_private->downloadPath release];
diff --git a/WebKit/WebView.subproj/WebDataSource.h b/WebKit/WebView.subproj/WebDataSource.h
index 5ce23c3..375f8e9 100644
--- a/WebKit/WebView.subproj/WebDataSource.h
+++ b/WebKit/WebView.subproj/WebDataSource.h
@@ -148,6 +148,8 @@
 
 - (IFContentPolicy)contentPolicy;
 
+- (NSString *)downloadPath;
+
 /*
 */
 - (NSDictionary *)errors;
diff --git a/WebKit/WebView.subproj/WebDataSource.m b/WebKit/WebView.subproj/WebDataSource.m
index 611a193..366e8df 100644
--- a/WebKit/WebView.subproj/WebDataSource.m
+++ b/WebKit/WebView.subproj/WebDataSource.m
@@ -323,6 +323,11 @@ static id IFWebDataSourceMake(void *url, void *attributes, unsigned flags)
     return _private->contentPolicy;
 }
 
+- (NSString *)downloadPath
+{
+    return _private->downloadPath;
+}
+
 - (NSDictionary *)errors
 {
     return _private->errors;
diff --git a/WebKit/WebView.subproj/WebDataSourcePrivate.h b/WebKit/WebView.subproj/WebDataSourcePrivate.h
index 63eea22..7032112 100644
--- a/WebKit/WebView.subproj/WebDataSourcePrivate.h
+++ b/WebKit/WebView.subproj/WebDataSourcePrivate.h
@@ -90,7 +90,6 @@ class KHTMLPart;
 
 - (id <IFLocationChangeHandler>)_locationChangeHandler;
 - (void)_setLocationChangeHandler: (id <IFLocationChangeHandler>)l;
-- (NSString *)_downloadPath;
 - (void) _setDownloadPath:(NSString *)path;
 - (void) _setContentPolicy:(IFContentPolicy)policy;
 - (IFWebDataSource *) _recursiveDataSourceForLocationChangeHandler:(id <IFLocationChangeHandler>)handler;
diff --git a/WebKit/WebView.subproj/WebDataSourcePrivate.m b/WebKit/WebView.subproj/WebDataSourcePrivate.m
index a329596..04c3c08 100644
--- a/WebKit/WebView.subproj/WebDataSourcePrivate.m
+++ b/WebKit/WebView.subproj/WebDataSourcePrivate.m
@@ -279,11 +279,6 @@
     _private->locationChangeHandler = l;
 }
 
-- (NSString *)_downloadPath
-{
-    return _private->downloadPath;
-}
-
 - (void) _setDownloadPath:(NSString *)path
 {
     [_private->downloadPath release];

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list