1 2007-10-16 John Sullivan <sullivan@apple.com>
5 Cleaned up localizable strings
7 * English.lproj/Localizable.strings:
9 * StringsNotToBeLocalized.txt:
11 * WebKit.xcodeproj/project.pbxproj:
12 StringsNotToBeLocalized.txt recently moved but project file wasn't updated to match; now it is
14 2007-10-15 Kevin Decker <kdecker@apple.com>
16 Reviewed by Darin Adler.
18 Fixed: <rdar://problem/5520541> REGRESSION: Broken image when forwarding certain email on Tiger
20 * WebCoreSupport/WebFrameBridge.mm: The problem was that we were loading Mail's WebKit plug-in
21 too soon, which borked some necessary housekeeping on behalf of Mail. The fix is to add a quirk
22 that treats Tiger Mail's WebKit plug-in like a Netscape plug-in, thus ensuring the plug-in will
23 load during first layout and not attach time. For this plug-in, loading at first layout is
24 expected and is consistent with Safari 2 behavior.
26 2007-10-15 John Sullivan <sullivan@apple.com>
28 Reviewed by Geoff Garen
30 Replaced NS_DURING/NS_HANDLER with @try/@catch throughout WebKit
32 I made the following changes:
33 - replaced NS_DURING with @try, and added opening brace if there wasn't one
34 - replaced NS_HANDLER with @catch (NSException *localException), and added braces if there weren't any
35 - removed NS_ENDHANDLER, and added a closing brace if there wasn't one
36 - in a couple of places, fixed indentation therein
38 * Misc/WebIconDatabase.mm:
39 (objectFromPathForKey):
40 * WebView/WebHTMLView.mm:
41 (-[WebHTMLView drawSingleRect:]):
42 (-[WebHTMLView beginDocument]):
43 (-[WebHTMLView deleteToMark:]):
45 (-[WebView initWithCoder:]):
47 == Rolled over to ChangeLog-2007-10-14 ==