[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:36 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit c0fce9443446c21f596503aea20a2197b0784bdf
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Apr 30 23:46:21 2003 +0000

    WebFoundation:
    
            Reviewed by Darin.
    
    	Some simple renames:
    
    	sharedURLCredentialStorage --> sharedCredentialStorage
    	URLCredentialWithUser:password:persistence: --> credentialWithUser:password:persistence:
    
            * AuthenticationManager.subproj/NSHTTPAuthenticator.m:
            (-[NSHTTPAuthenticator _usernameForRealm:URL:]):
            (-[NSHTTPAuthenticator _applyHTTPProxyCredentials:]):
            (-[NSHTTPAuthenticator _applyHTTPCredentials:]):
            (-[NSHTTPAuthenticator _proxyUsernameForURL:]):
            (-[NSHTTPAuthenticator _askDelegateWithURL:realm:forRequest:failureCount:failureResponse:connection:withCallback:context:]):
            (-[NSHTTPAuthenticator _askDelegateWithURL:proxy:forRequest:failureCount:failureResponse:connection:withCallback:context:]):
            (-[NSHTTPAuthenticator NSURLAuthenticationChallenge:useCredential:]):
            (-[NSHTTPAuthenticator _setDefaultUserInfoFromURL:]):
            (-[NSHTTPAuthenticator _removePasswordForRealm:URL:]):
            (-[NSHTTPAuthenticator _removeProxyPasswordForURL:]):
            (-[NSHTTPAuthenticator init]):
            * AuthenticationManager.subproj/NSURLCredential.h:
            * AuthenticationManager.subproj/NSURLCredential.m:
            (+[NSURLCredential credentialWithUser:password:persistence:]):
            * AuthenticationManager.subproj/NSURLCredentialStorage.h:
            * AuthenticationManager.subproj/NSURLCredentialStorage.m:
            (-[NSURLCredentialStorage init]):
            (initSharedCredentialStorage):
            (initCredentialStorage):
            (+[NSURLCredentialStorage sharedCredentialStorage]):
    
    WebKit:
    
            Reviewed by Darin.
    
    	Some simple renames:
    
    	sharedURLCredentialStorage --> sharedCredentialStorage
    	URLCredentialWithUser:password:persistence: --> credentialWithUser:password:persistence:
    
            * Panels.subproj/WebAuthenticationPanel.m:
            (-[WebAuthenticationPanel runAsModalDialogWithChallenge:]):
            (-[WebAuthenticationPanel sheetDidEnd:returnCode:contextInfo:]):
    
    WebBrowser:
    
            Reviewed by Darin.
    
    	Some simple renames:
    
    	sharedURLCredentialStorage --> sharedCredentialStorage
    	URLCredentialWithUser:password:persistence: --> credentialWithUser:password:persistence:
    
            * AppController.m:
            (-[AppController removeAllCredentials]):
            * FormCompletionController.m:
            (+[FormCompletionController _frame:willSubmitLoginForm:withValues:formInfo:submissionListener:]):
            (+[FormCompletionController _passwordSheetDismissed:returnCode:contextInfo:]):
            (+[FormCompletionController _credentialMatchesForString:frame:]):
            * Preferences.subproj/PasswordsEditor.m:
            (-[PasswordsEditor resetCredentials]):
            (-[PasswordsEditor startMonitoringCredentials]):
            (-[PasswordsEditor stopMonitoringCredentials]):
            (-[PasswordsEditor removeSelectedItems:]):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4227 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index d760d6a..01c5c05 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -2,6 +2,19 @@
 
         Reviewed by Darin.
 
+	Some simple renames:
+
+	sharedURLCredentialStorage --> sharedCredentialStorage
+	URLCredentialWithUser:password:persistence: --> credentialWithUser:password:persistence:
+
+        * Panels.subproj/WebAuthenticationPanel.m:
+        (-[WebAuthenticationPanel runAsModalDialogWithChallenge:]):
+        (-[WebAuthenticationPanel sheetDidEnd:returnCode:contextInfo:]):
+
+2003-04-30  Maciej Stachowiak  <mjs at apple.com>
+
+        Reviewed by Darin.
+
 	Changed things to use WebAuthenticationChallenge for
 	WebResoureceLoadDelegate auth callbacks.
 
diff --git a/WebKit/Panels.subproj/WebAuthenticationPanel.m b/WebKit/Panels.subproj/WebAuthenticationPanel.m
index 402a4c6..c73ff35 100644
--- a/WebKit/Panels.subproj/WebAuthenticationPanel.m
+++ b/WebKit/Panels.subproj/WebAuthenticationPanel.m
@@ -155,7 +155,7 @@
     NSURLCredential *credential = nil;
 
     if ([[NSApplication sharedApplication] runModalForWindow:panel] == 0) {
-        credential = [NSURLCredential URLCredentialWithUser:[username stringValue] password:[password stringValue] persistence:([remember state] == NSOnState) ? NSURLCredentialPersistencePermanent : NSURLCredentialPersistenceForSession];
+        credential = [NSURLCredential credentialWithUser:[username stringValue] password:[password stringValue] persistence:([remember state] == NSOnState) ? NSURLCredentialPersistencePermanent : NSURLCredentialPersistenceForSession];
     }
 
     [callback performSelector:selector withObject:chall withObject:credential];
@@ -182,7 +182,7 @@
     ASSERT(challenge != nil);
 
     if (returnCode == 0) {
-        credential = [NSURLCredential URLCredentialWithUser:[username stringValue] password:[password stringValue] persistence:([remember state] == NSOnState) ? NSURLCredentialPersistencePermanent : NSURLCredentialPersistenceForSession];
+        credential = [NSURLCredential credentialWithUser:[username stringValue] password:[password stringValue] persistence:([remember state] == NSOnState) ? NSURLCredentialPersistencePermanent : NSURLCredentialPersistenceForSession];
     }
 
     // We take this tricky approach to nilling out and releasing the challenge

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list