[webkit-changes] cvs commit: WebKit/WebView.subproj WebView.m WebViewPrivate.h

John sullivan at opensource.apple.com
Sat Aug 20 09:27:40 PDT 2005


sullivan    05/08/20 09:27:39

  Modified:    .        ChangeLog
               WebView.subproj WebView.m WebViewPrivate.h
  Log:
          Reviewed by Darin Adler.
  
          - WebKit part of fix for
          <rdar://problem/3977607> ER: Safari should check framework versions at launch
  
          * WebView.subproj/WebViewPrivate.h:
          * WebView.subproj/WebView.m:
          (+[WebView _minimumRequiredSafariBuildNumber]):
          new method, returns the minimum build number of Safari that this WebKit is
          willing to work with. (The Safari version has to be new enough to check
          for this value in order for this to have any effect.)
  
  Revision  Changes    Path
  1.3300    +14 -0     WebKit/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebKit/ChangeLog,v
  retrieving revision 1.3299
  retrieving revision 1.3300
  diff -u -r1.3299 -r1.3300
  --- ChangeLog	20 Aug 2005 01:13:46 -0000	1.3299
  +++ ChangeLog	20 Aug 2005 16:27:36 -0000	1.3300
  @@ -1,3 +1,17 @@
  +2005-08-20  John Sullivan  <sullivan at apple.com>
  +
  +        Reviewed by Darin Adler.
  +        
  +        - WebKit part of fix for 
  +        <rdar://problem/3977607> ER: Safari should check framework versions at launch
  +
  +        * WebView.subproj/WebViewPrivate.h:
  +        * WebView.subproj/WebView.m:
  +        (+[WebView _minimumRequiredSafariBuildNumber]):
  +        new method, returns the minimum build number of Safari that this WebKit is
  +        willing to work with. (The Safari version has to be new enough to check
  +        for this value in order for this to have any effect.)
  +
   2005-08-19  Justin Garcia  <justin.garcia at apple.com>
   
           Reviewed by rjw
  
  
  
  1.303     +5 -0      WebKit/WebView.subproj/WebView.m
  
  Index: WebView.m
  ===================================================================
  RCS file: /cvs/root/WebKit/WebView.subproj/WebView.m,v
  retrieving revision 1.302
  retrieving revision 1.303
  diff -u -r1.302 -r1.303
  --- WebView.m	16 Aug 2005 19:03:35 -0000	1.302
  +++ WebView.m	20 Aug 2005 16:27:39 -0000	1.303
  @@ -1408,6 +1408,11 @@
       return shouldUseFontSmoothing;
   }
   
  ++ (NSString *)_minimumRequiredSafariBuildNumber
  +{
  +    return @"420+";
  +}
  +
   @end
   
   
  
  
  
  1.147     +2 -0      WebKit/WebView.subproj/WebViewPrivate.h
  
  Index: WebViewPrivate.h
  ===================================================================
  RCS file: /cvs/root/WebKit/WebView.subproj/WebViewPrivate.h,v
  retrieving revision 1.146
  retrieving revision 1.147
  diff -u -r1.146 -r1.147
  --- WebViewPrivate.h	17 Aug 2005 20:11:00 -0000	1.146
  +++ WebViewPrivate.h	20 Aug 2005 16:27:39 -0000	1.147
  @@ -266,6 +266,8 @@
   + (void)_setShouldUseFontSmoothing:(BOOL)f;
   + (BOOL)_shouldUseFontSmoothing;
   
  ++ (NSString *)_minimumRequiredSafariBuildNumber;
  +
   @end
   
   @interface WebView (WebViewPrintingPrivate)
  
  
  



More information about the webkit-changes mailing list