Title: [145458] trunk/Source/WebKit2
Revision
145458
Author
timothy_hor...@apple.com
Date
2013-03-11 18:42:07 -0700 (Mon, 11 Mar 2013)

Log Message

[wk2] WebProcess and WebContentService don't respect system localization
https://bugs.webkit.org/show_bug.cgi?id=112091
<rdar://problem/13233590>

Reviewed by Dan Bernstein.

Allow CFBundle to use localizations that don't exist in the main bundle,
so that, for example, injected bundles can load and use strings from localized frameworks.

* WebProcess/EntryPoint/mac/LegacyProcess/Info.plist:
* WebProcess/EntryPoint/mac/XPCService/WebContentService.Development/Info.plist:
* WebProcess/EntryPoint/mac/XPCService/WebContentService/Info.plist:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (145457 => 145458)


--- trunk/Source/WebKit2/ChangeLog	2013-03-12 01:39:24 UTC (rev 145457)
+++ trunk/Source/WebKit2/ChangeLog	2013-03-12 01:42:07 UTC (rev 145458)
@@ -1,3 +1,18 @@
+2013-03-11  Tim Horton  <timothy_hor...@apple.com>
+
+        [wk2] WebProcess and WebContentService don't respect system localization
+        https://bugs.webkit.org/show_bug.cgi?id=112091
+        <rdar://problem/13233590>
+
+        Reviewed by Dan Bernstein.
+
+        Allow CFBundle to use localizations that don't exist in the main bundle,
+        so that, for example, injected bundles can load and use strings from localized frameworks.
+
+        * WebProcess/EntryPoint/mac/LegacyProcess/Info.plist:
+        * WebProcess/EntryPoint/mac/XPCService/WebContentService.Development/Info.plist:
+        * WebProcess/EntryPoint/mac/XPCService/WebContentService/Info.plist:
+
 2013-03-11  Jochen Eisinger  <joc...@chromium.org>
 
         Rename DefinitelyProcessingUserGesture to DefinitelyProcessingNewUserGesture

Modified: trunk/Source/WebKit2/WebProcess/EntryPoint/mac/LegacyProcess/Info.plist (145457 => 145458)


--- trunk/Source/WebKit2/WebProcess/EntryPoint/mac/LegacyProcess/Info.plist	2013-03-12 01:39:24 UTC (rev 145457)
+++ trunk/Source/WebKit2/WebProcess/EntryPoint/mac/LegacyProcess/Info.plist	2013-03-12 01:42:07 UTC (rev 145458)
@@ -28,6 +28,8 @@
 	<true/>
 	<key>NSPrincipalClass</key>
 	<string>NSApplication</string>
+	<key>CFBundleAllowMixedLocalizations</key>
+	<true/>
 	<key>WebKitEntryPoint</key>
 	<string>WebContentProcessMain</string>
 	<key>NSSupportsAutomaticGraphicsSwitching</key>

Modified: trunk/Source/WebKit2/WebProcess/EntryPoint/mac/XPCService/WebContentService/Info.plist (145457 => 145458)


--- trunk/Source/WebKit2/WebProcess/EntryPoint/mac/XPCService/WebContentService/Info.plist	2013-03-12 01:39:24 UTC (rev 145457)
+++ trunk/Source/WebKit2/WebProcess/EntryPoint/mac/XPCService/WebContentService/Info.plist	2013-03-12 01:42:07 UTC (rev 145458)
@@ -28,6 +28,8 @@
 	<string>NSApplication</string>
 	<key>WebKitEntryPoint</key>
 	<string>WebContentServiceInitializer</string>
+	<key>CFBundleAllowMixedLocalizations</key>
+	<true/>
 	<key>LSUIElement</key>
 	<true/>
 	<key>NSSupportsAutomaticGraphicsSwitching</key>

Modified: trunk/Source/WebKit2/WebProcess/EntryPoint/mac/XPCService/WebContentService.Development/Info.plist (145457 => 145458)


--- trunk/Source/WebKit2/WebProcess/EntryPoint/mac/XPCService/WebContentService.Development/Info.plist	2013-03-12 01:39:24 UTC (rev 145457)
+++ trunk/Source/WebKit2/WebProcess/EntryPoint/mac/XPCService/WebContentService.Development/Info.plist	2013-03-12 01:42:07 UTC (rev 145458)
@@ -22,6 +22,8 @@
 	<string>????</string>
 	<key>CFBundleVersion</key>
 	<string>${BUNDLE_VERSION}</string>
+	<key>CFBundleAllowMixedLocalizations</key>
+	<true/>
 	<key>LSFileQuarantineEnabled</key>
 	<true/>
 	<key>NSPrincipalClass</key>
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to