[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 07:39:32 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 31392650667b13c3d825bffc04de966eed05a190
Author: kocienda <kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Apr 30 22:41:35 2003 +0000

    Tests:
    
            Reviewed by Richard
    
    	Changed cookie-related constants and enums to
    	the API-approved names. Also did some text
    	search and replace in comments to catch usages
    	of now-obsolete names.
    
            * CookieManager/wkcookie-test.m:
            (main):
            * CookieManager/wkcookiemanager-test.m:
            (main):
    
    WebFoundation:
    
            Reviewed by Richard
    
            Changed cookie-related constants and enums to
            the API-approved names. Also did some text
            search and replace in comments to catch usages
            of now-obsolete names.
    
            * CookieManager.subproj/NSHTTPCookie.h:
            * CookieManager.subproj/NSHTTPCookie.m:
            (-[NSHTTPCookie initWithDictionary:]):
            (-[NSHTTPCookie init]):
            (-[NSHTTPCookie dictionaryRepresentation]):
            (+[NSHTTPCookie cookieWithV0Spec:forURL:locationHeader:]):
            (-[NSHTTPCookie description]):
            * CookieManager.subproj/NSHTTPCookiePrivate.h:
            * CookieManager.subproj/NSHTTPCookieStorage.h:
            * CookieManager.subproj/NSHTTPCookieStorage.m:
            (-[NSHTTPCookieStorage _readAcceptCookiesPreference]):
            (-[NSHTTPCookieStorage _setCookies:forURL:policyBaseURL:]):
            (-[NSHTTPCookieStorage init]):
            (-[NSHTTPCookieStorage acceptPolicy]):
            (-[NSHTTPCookieStorage setAcceptPolicy:]):
            (-[NSHTTPCookieStorage description]):
            * English.lproj/StringsNotToBeLocalized.txt:
            * WebFoundation-base.exp:
    
    WebKit:
    
            Reviewed by Richard
    
            Changed cookie-related constants and enums to
            the API-approved names. Also did some text
            search and replace in comments to catch usages
            of now-obsolete names.
    
            * WebCoreSupport.subproj/WebCookieAdapter.m:
            (-[WebCookieAdapter cookiesEnabled]):
    
    WebBrowser:
    
            Reviewed by Richard
    
            Changed cookie-related constants and enums to
            the API-approved names. Also did some text
            search and replace in comments to catch usages
            of now-obsolete names.
    
            * English.lproj/Localizable.strings:
            * Preferences.subproj/SecurityPreferences.m:
            (-[SecurityPreferences takeCookiePolicyFrom:]):
            (-[SecurityPreferences updateCookiesViews]):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4224 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index c9ac989..1d816b7 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,15 @@
+2003-04-30  Ken Kocienda  <kocienda at apple.com>
+
+        Reviewed by Richard
+
+        Changed cookie-related constants and enums to 
+        the API-approved names. Also did some text
+        search and replace in comments to catch usages
+        of now-obsolete names.
+
+        * WebCoreSupport.subproj/WebCookieAdapter.m:
+        (-[WebCookieAdapter cookiesEnabled]):
+
 2003-04-30  Chris Blumenberg  <cblu at apple.com>
 
         FIXED: Clients of WebKit should have separate icon DB's
diff --git a/WebKit/WebCoreSupport.subproj/WebCookieAdapter.m b/WebKit/WebCoreSupport.subproj/WebCookieAdapter.m
index 1f8c8bc..e4e4616 100644
--- a/WebKit/WebCoreSupport.subproj/WebCookieAdapter.m
+++ b/WebKit/WebCoreSupport.subproj/WebCookieAdapter.m
@@ -26,8 +26,8 @@
 {
     BOOL result;
 
-    WebCookieAcceptPolicy acceptPolicy = [[NSHTTPCookieStorage sharedCookieManager] acceptPolicy];
-    result = (acceptPolicy == WebCookieAcceptPolicyAlways || acceptPolicy == WebCookieAcceptPolicyOnlyFromMainDocumentDomain);
+    NSHTTPCookieAcceptPolicy acceptPolicy = [[NSHTTPCookieStorage sharedCookieManager] acceptPolicy];
+    result = (acceptPolicy == NSHTTPCookieAcceptPolicyAlways || acceptPolicy == NSHTTPCookieAcceptPolicyOnlyFromMainDocumentDomain);
     
     return result;
 }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list