[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 08:37:04 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit a4209a4bb90baf62d9f4f4e0cc26356be81aad16
Author: cblu <cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Apr 26 18:52:12 2004 +0000

            * WebView.subproj/WebDataSourcePrivate.h: added some header doc comments
            * WebView.subproj/WebFramePrivate.h: fixed header doc typo
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@6485 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 949fef0..9422831 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,8 @@
+2004-04-26  Chris Blumenberg  <cblu at apple.com>
+
+        * WebView.subproj/WebDataSourcePrivate.h: added some header doc comments
+        * WebView.subproj/WebFramePrivate.h: fixed header doc typo
+
 2004-04-24  Darin Adler  <darin at apple.com>
 
         Reviewed by Dave.
diff --git a/WebKit/WebView.subproj/WebDataSourcePrivate.h b/WebKit/WebView.subproj/WebDataSourcePrivate.h
index e963d6b..47f8224 100644
--- a/WebKit/WebView.subproj/WebDataSourcePrivate.h
+++ b/WebKit/WebView.subproj/WebDataSourcePrivate.h
@@ -118,9 +118,31 @@
 @interface WebDataSource (WebPrivate)
 
 // API Considerations:
+
+/*!
+    @method subresources
+    @abstract Returns all the subresources associated with the data source.
+*/
 - (NSArray *)subresources;
+
+/*!
+    method subresourceForURL:
+    @abstract Returns a subresource for a given URL.
+    @param URL The URL of the subresource.
+*/
 - (WebResource *)subresourceForURL:(NSURL *)URL;
+
+/*!
+    @method addSubresource:
+    @abstract Adds a subresource to the data source.
+    @param subresource The subresource to be added.
+    @description addSubresource: adds a subresource to the data source's list of subresources. 
+    From then on, if something causes the data source to load the URL of the subresource, the data source 
+    will load the data from the subresource instead of from the network. NOTE: If the data source already has
+    a subresource with the same URL, addSubresource: will replace it.
+*/
 - (void)addSubresource:(WebResource *)subresource;
+
 - (void)addSubresources:(NSArray *)subresources;
 
 // Other private methods
diff --git a/WebKit/WebView.subproj/WebFramePrivate.h b/WebKit/WebView.subproj/WebFramePrivate.h
index baab2fa..1e0f0f5 100644
--- a/WebKit/WebView.subproj/WebFramePrivate.h
+++ b/WebKit/WebView.subproj/WebFramePrivate.h
@@ -126,7 +126,7 @@ extern NSString *WebPageCacheDocumentViewKey;
 /*!
     @method loadArchive:
     @abstract Causes WebFrame to load a WebArchive.
-    @param The archive to be loaded.
+    @param archive The archive to be loaded.
 */
 - (void)loadArchive:(WebArchive *)archive;
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list