[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677
mjs
mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:39:40 UTC 2009
The following commit has been merged in the debian/unstable branch:
commit 620dcad5e5113b42ae3c936196fba697cea53e17
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Thu May 1 00:27:48 2003 +0000
WebFoundation:
Reviewed by Darin.
Cut over to using the approved API mechanism for sending
challenges between the protocol and protocol
client. NSURLConnection now does the corss-thread dispatch and
NSURLAuthenticationDispatcher is obsoleted.
* AuthenticationManager.subproj/NSHTTPAuthenticator.h:
* AuthenticationManager.subproj/NSHTTPAuthenticator.m:
(-[NSURLAuthenticationChallengeState initWithProtocol:httpRequest:challenge:callback:context:]):
(-[NSURLAuthenticationChallengeState dealloc]):
(-[NSHTTPAuthenticator _tryChallenge:]):
(-[NSHTTPAuthenticator _askDelegateWithURL:realm:forRequest:failureCount:failureResponse:protocol:withCallback:context:]):
(-[NSHTTPAuthenticator _askDelegateWithURL:proxy:forRequest:failureCount:failureResponse:protocol:withCallback:context:]):
(-[NSHTTPAuthenticator addCredentialsToRetryHTTPRequest:afterFailureResponse:nsFailureResponse:failureCount:protocol:withCallback:context:]):
(-[NSHTTPAuthenticator cancelAddCredentialsToRetryHTTPRequest:]):
(-[NSHTTPAuthenticator addCredentialsToInitialHTTPRequest:protocol:]):
(-[NSHTTPAuthenticator checkForAuthenticationFailureInHTTPResponse:withURL:]):
(-[NSHTTPAuthenticator useCredential:forAuthenticationChallenge:]):
(-[NSHTTPAuthenticator continueWithoutCredentialForAuthenticationChallenge:]):
* AuthenticationManager.subproj/NSURLAuthenticationChallenge.h:
* AuthenticationManager.subproj/NSURLAuthenticationChallenge.m:
(-[NSURLAuthenticationChallengeInternal initWithProtectionSpace:proposedCredential:previousFailureCount:failureResponse:error:]):
(-[NSURLAuthenticationChallengeInternal dealloc]):
(-[NSURLAuthenticationChallenge initWithProtectionSpace:proposedCredential:previousFailureCount:failureResponse:error:]):
(-[NSURLAuthenticationChallenge initWithAuthenticationChallenge:]):
(-[NSURLAuthenticationChallenge dealloc]):
(-[NSURLAuthenticationChallenge protectionSpace]):
(-[NSURLAuthenticationChallenge proposedCredential]):
(-[NSURLAuthenticationChallenge previousFailureCount]):
(-[NSURLAuthenticationChallenge error]):
(-[NSURLAuthenticationChallenge failureResponse]):
* AuthenticationManager.subproj/NSURLConnectionAuthenticationChallenge.m:
(-[NSURLConnectionAuthenticationChallenge _initWithProtocolChallenge:connection:]):
* AuthenticationManager.subproj/NSURLConnectionAuthenticationChallengeInternal.h:
* AuthenticationManager.subproj/NSURLCredentialStorage.h:
* AuthenticationManager.subproj/NSURLCredentialStorage.m:
* AuthenticationManager.subproj/WebAuthenticationHandler.h: Removed.
* AuthenticationManager.subproj/WebAuthenticationHandlerDispatcher.h: Removed.
* AuthenticationManager.subproj/WebAuthenticationHandlerDispatcher.m: Removed.
* AuthenticationManager.subproj/WebAuthenticationRequestPrivate.h: Removed.
* CacheLoader.subproj/NSURLConnection.m:
(-[NSURLConnection useCredential:forAuthenticationChallenge:]):
(-[NSURLConnection continueWithoutCredentialForAuthenticationChallenge:]):
(-[NSURLConnection _sendCallbacks]):
(-[NSURLConnection _sendDidReceiveAuthenticationCallback]):
(-[NSURLConnection _sendDidCancelAuthenticationCallback]):
(-[NSURLConnection _performCancel]):
(-[NSURLConnection _performUseCredential]):
(-[NSURLConnection _performContinueWithoutCredential]):
(-[NSURLConnection _didReceiveAuthenticationChallenge:]):
(-[NSURLConnection _didCancelAuthenticationChallenge:]):
(+[NSURLConnection _resourceLoadLoop:]):
(NSURLConnectionInit):
(_authenticationDone):
(-[NSURLConnectionInternal prepareCallbacks]):
(-[NSURLConnectionInternal URLProtocol:didReceiveAuthenticationChallenge:]):
(-[NSURLConnectionInternal URLProtocol:didCancelAuthenticationChallenge:]):
* CacheLoader.subproj/NSURLProtocol.h:
* ChangeLog:
* ProtocolHandlers.subproj/WebCFNetworkHTTPProtocol.m:
(-[WebCFNetworkHTTPProtocol addAuthenticationFieldsToHeader]):
(-[WebCFNetworkHTTPProtocol didAddCredentials:toRequest:context:]):
(-[WebCFNetworkHTTPProtocol useCredential:forAuthenticationChallenge:]):
(-[WebCFNetworkHTTPProtocol continueWithoutCredentialForAuthenticationChallenge:]):
* WebFoundation-base.exp:
* WebFoundation.pbproj/project.pbxproj:
WebKit:
Reviewed by Darin.
Fixed imports and @class directives for WebFoundation changes.
* Panels.subproj/WebAuthenticationPanel.h:
* Panels.subproj/WebAuthenticationPanel.m:
WebBrowser:
Reviewed by John.
* FileLocker.m: (-[FileLocker dealloc]): Add call to [super dealloc].
* AppController.m:
(-[AppController applicationShouldOpenUntitledFile:]): Since page load test is now really
part of the real application, don't FIXME it in some half-assed way.
(-[AppController applicationDidFinishLaunching:]): Remove a FIXME here too.
* Test/PageLoadTestRunner.m: (+[PageLoadTestRunner shouldPerformAutomatedPageLoadTest]):
Replace the load method with this method.
* TitleBarButton.m: (-[TitleBarButton startDragIfNecessaryForEvent:URL:): Removed.
* English.lproj/StringsNotToBeLocalized.txt: Updated for recent changes.
* English.lproj/Localizable.strings: Rolled out Ken's accidental check-in. Regenerating the
file just changed it back to how it was before.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4231 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index f55dc24..032f9df 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,12 @@
+2003-04-30 Maciej Stachowiak <mjs at apple.com>
+
+ Reviewed by Darin.
+
+ Fixed imports and @class directives for WebFoundation changes.
+
+ * Panels.subproj/WebAuthenticationPanel.h:
+ * Panels.subproj/WebAuthenticationPanel.m:
+
2003-04-30 Richard Williamson <rjw at apple.com>
Fixed doc errors.
diff --git a/WebKit/Panels.subproj/WebAuthenticationPanel.h b/WebKit/Panels.subproj/WebAuthenticationPanel.h
index b530d6a..c317777 100644
--- a/WebKit/Panels.subproj/WebAuthenticationPanel.h
+++ b/WebKit/Panels.subproj/WebAuthenticationPanel.h
@@ -7,6 +7,8 @@
#import <Cocoa/Cocoa.h>
#import <WebFoundation/NSURLCredentialStorage.h>
+ at class NSURLAuthenticationChallenge;
+
@interface WebAuthenticationPanel : NSObject
{
IBOutlet id mainLabel;
diff --git a/WebKit/Panels.subproj/WebAuthenticationPanel.m b/WebKit/Panels.subproj/WebAuthenticationPanel.m
index c73ff35..ded0b2f 100644
--- a/WebKit/Panels.subproj/WebAuthenticationPanel.m
+++ b/WebKit/Panels.subproj/WebAuthenticationPanel.m
@@ -7,6 +7,8 @@
#import <WebKit/WebAuthenticationPanel.h>
+#import <WebFoundation/NSURLAuthenticationChallenge.h>
+#import <WebFoundation/NSURLProtectionSpace.h>
#import <WebFoundation/WebAssertions.h>
#import <WebFoundation/WebLocalizableStrings.h>
#import <WebFoundation/WebNSURLExtras.h>
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list