Changeset 145458 in webkit


Ignore:
Timestamp:
Mar 11, 2013, 6:42:07 PM (12 years ago)
Author:
timothy_horton@apple.com
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:
Location:
trunk/Source/WebKit2
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r145453 r145458  
     12013-03-11  Tim Horton  <timothy_horton@apple.com>
     2
     3        [wk2] WebProcess and WebContentService don't respect system localization
     4        https://bugs.webkit.org/show_bug.cgi?id=112091
     5        <rdar://problem/13233590>
     6
     7        Reviewed by Dan Bernstein.
     8
     9        Allow CFBundle to use localizations that don't exist in the main bundle,
     10        so that, for example, injected bundles can load and use strings from localized frameworks.
     11
     12        * WebProcess/EntryPoint/mac/LegacyProcess/Info.plist:
     13        * WebProcess/EntryPoint/mac/XPCService/WebContentService.Development/Info.plist:
     14        * WebProcess/EntryPoint/mac/XPCService/WebContentService/Info.plist:
     15
    1162013-03-11  Jochen Eisinger  <jochen@chromium.org>
    217
  • trunk/Source/WebKit2/WebProcess/EntryPoint/mac/LegacyProcess/Info.plist

    r144217 r145458  
    2929        <key>NSPrincipalClass</key>
    3030        <string>NSApplication</string>
     31        <key>CFBundleAllowMixedLocalizations</key>
     32        <true/>
    3133        <key>WebKitEntryPoint</key>
    3234        <string>WebContentProcessMain</string>
  • trunk/Source/WebKit2/WebProcess/EntryPoint/mac/XPCService/WebContentService.Development/Info.plist

    r144217 r145458  
    2323        <key>CFBundleVersion</key>
    2424        <string>${BUNDLE_VERSION}</string>
     25        <key>CFBundleAllowMixedLocalizations</key>
     26        <true/>
    2527        <key>LSFileQuarantineEnabled</key>
    2628        <true/>
  • trunk/Source/WebKit2/WebProcess/EntryPoint/mac/XPCService/WebContentService/Info.plist

    r144217 r145458  
    2929        <key>WebKitEntryPoint</key>
    3030        <string>WebContentServiceInitializer</string>
     31        <key>CFBundleAllowMixedLocalizations</key>
     32        <true/>
    3133        <key>LSUIElement</key>
    3234        <true/>
Note: See TracChangeset for help on using the changeset viewer.