Added new SPI for dashboard that just calls default delegate
behavior.
Reviewed by Maciej.
* WebView.subproj/WebView.m:
(-[WebView handleAuthenticationForResource:challenge:fromDataSource:]):
* WebView.subproj/WebViewPrivate.h:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@8664
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2005-02-22 Richard Williamson <rjw@apple.com>
+
+ Fixed <rdar://problem/4012463> Dashboard widgets don't work with authenticating proxies
+
+ Added new SPI for dashboard that just calls default delegate
+ behavior.
+
+ Reviewed by Maciej.
+
+ * WebView.subproj/WebView.m:
+ (-[WebView handleAuthenticationForResource:challenge:fromDataSource:]):
+ * WebView.subproj/WebViewPrivate.h:
+
2005-02-22 Chris Blumenberg <cblu@apple.com>
Reviewed by mjs.
return NO;
}
+- (void)handleAuthenticationForResource:(id)identifier challenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource
+{
+ [[WebDefaultResourceLoadDelegate sharedResourceLoadDelegate] webView:self resource:identifier didReceiveAuthenticationChallenge:challenge fromDataSource:dataSource];
+}
+
+ (void)_setShouldUseFontSmoothing:(BOOL)f
{
shouldUseFontSmoothing = f;
- (void)_setDashboardBehavior:(WebDashboardBehavior)behavior to:(BOOL)flag;
- (BOOL)_dashboardBehavior:(WebDashboardBehavior)behavior;
+- (void)handleAuthenticationForResource:(id)identifier challenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource;
+
+ (void)_setShouldUseFontSmoothing:(BOOL)f;
+ (BOOL)_shouldUseFontSmoothing;