From: Nico Grunbaum Date: Fri, 30 Apr 2021 21:51:00 +0000 Subject: Bug 1654112 - Add grit dep for building webrtc on android; r=mjf Differential Revision: https://phabricator.services.mozilla.com/D114027 Mercurial Revision: https://hg.mozilla.org/mozilla-central/rev/3cce5e6938f0df87bd9ab12a5f556aceb93dfa1d --- tools/grit/.gitignore | 1 + tools/grit/BUILD.gn | 48 + tools/grit/MANIFEST.in | 3 + tools/grit/OWNERS | 8 + tools/grit/PRESUBMIT.py | 22 + tools/grit/README.md | 19 + tools/grit/grit.py | 31 + tools/grit/grit/__init__.py | 19 + tools/grit/grit/clique.py | 491 +++ tools/grit/grit/clique_unittest.py | 265 ++ tools/grit/grit/constants.py | 23 + tools/grit/grit/exception.py | 139 + tools/grit/grit/extern/BogoFP.py | 22 + tools/grit/grit/extern/FP.py | 72 + tools/grit/grit/extern/__init__.py | 0 tools/grit/grit/extern/tclib.py | 503 +++ tools/grit/grit/format/__init__.py | 8 + tools/grit/grit/format/android_xml.py | 212 ++ .../grit/grit/format/android_xml_unittest.py | 149 + tools/grit/grit/format/c_format.py | 95 + tools/grit/grit/format/c_format_unittest.py | 81 + .../grit/grit/format/chrome_messages_json.py | 59 + .../format/chrome_messages_json_unittest.py | 190 + tools/grit/grit/format/data_pack.py | 321 ++ tools/grit/grit/format/data_pack_unittest.py | 102 + .../grit/grit/format/gen_predetermined_ids.py | 144 + .../format/gen_predetermined_ids_unittest.py | 46 + tools/grit/grit/format/gzip_string.py | 46 + .../grit/grit/format/gzip_string_unittest.py | 65 + tools/grit/grit/format/html_inline.py | 602 ++++ .../grit/grit/format/html_inline_unittest.py | 927 +++++ tools/grit/grit/format/minifier.py | 45 + .../grit/grit/format/policy_templates_json.py | 26 + .../format/policy_templates_json_unittest.py | 207 ++ tools/grit/grit/format/rc.py | 474 +++ tools/grit/grit/format/rc_header.py | 48 + tools/grit/grit/format/rc_header_unittest.py | 138 + tools/grit/grit/format/rc_unittest.py | 415 +++ tools/grit/grit/format/resource_map.py | 159 + .../grit/grit/format/resource_map_unittest.py | 345 ++ tools/grit/grit/gather/__init__.py | 8 + tools/grit/grit/gather/admin_template.py | 62 + .../grit/gather/admin_template_unittest.py | 115 + tools/grit/grit/gather/chrome_html.py | 377 ++ .../grit/grit/gather/chrome_html_unittest.py | 610 ++++ tools/grit/grit/gather/chrome_scaled_image.py | 157 + .../gather/chrome_scaled_image_unittest.py | 209 ++ tools/grit/grit/gather/interface.py | 172 + tools/grit/grit/gather/json_loader.py | 27 + tools/grit/grit/gather/policy_json.py | 325 ++ .../grit/grit/gather/policy_json_unittest.py | 347 ++ tools/grit/grit/gather/rc.py | 343 ++ tools/grit/grit/gather/rc_unittest.py | 372 ++ tools/grit/grit/gather/regexp.py | 82 + tools/grit/grit/gather/skeleton_gatherer.py | 149 + tools/grit/grit/gather/tr_html.py | 743 ++++ tools/grit/grit/gather/tr_html_unittest.py | 524 +++ tools/grit/grit/gather/txt.py | 38 + tools/grit/grit/gather/txt_unittest.py | 35 + tools/grit/grit/grd_reader.py | 238 ++ tools/grit/grit/grd_reader_unittest.py | 346 ++ tools/grit/grit/grit-todo.xml | 62 + tools/grit/grit/grit_runner.py | 334 ++ tools/grit/grit/grit_runner_unittest.py | 42 + tools/grit/grit/lazy_re.py | 46 + tools/grit/grit/lazy_re_unittest.py | 40 + tools/grit/grit/node/__init__.py | 8 + tools/grit/grit/node/base.py | 670 ++++ tools/grit/grit/node/base_unittest.py | 259 ++ tools/grit/grit/node/brotli_util.py | 29 + tools/grit/grit/node/custom/__init__.py | 8 + tools/grit/grit/node/custom/filename.py | 29 + .../grit/node/custom/filename_unittest.py | 34 + tools/grit/grit/node/empty.py | 64 + tools/grit/grit/node/include.py | 170 + tools/grit/grit/node/include_unittest.py | 134 + tools/grit/grit/node/mapping.py | 60 + tools/grit/grit/node/message.py | 362 ++ tools/grit/grit/node/message_unittest.py | 380 ++ tools/grit/grit/node/misc.py | 707 ++++ tools/grit/grit/node/misc_unittest.py | 590 ++++ tools/grit/grit/node/mock_brotli.py | 10 + tools/grit/grit/node/node_io.py | 117 + tools/grit/grit/node/node_io_unittest.py | 182 + tools/grit/grit/node/structure.py | 375 ++ tools/grit/grit/node/structure_unittest.py | 178 + tools/grit/grit/node/variant.py | 41 + tools/grit/grit/pseudo.py | 129 + tools/grit/grit/pseudo_rtl.py | 104 + tools/grit/grit/pseudo_unittest.py | 55 + tools/grit/grit/shortcuts.py | 93 + tools/grit/grit/shortcuts_unittest.py | 79 + tools/grit/grit/tclib.py | 246 ++ tools/grit/grit/tclib_unittest.py | 180 + tools/grit/grit/test_suite_all.py | 34 + tools/grit/grit/testdata/GoogleDesktop.adm | 945 +++++ tools/grit/grit/testdata/README.txt | 87 + tools/grit/grit/testdata/about.html | 45 + tools/grit/grit/testdata/android.xml | 24 + tools/grit/grit/testdata/bad_browser.html | 16 + tools/grit/grit/testdata/browser.html | 42 + tools/grit/grit/testdata/buildinfo.grd | 46 + tools/grit/grit/testdata/cache_prefix.html | 24 + .../grit/grit/testdata/cache_prefix_file.html | 25 + tools/grit/grit/testdata/chat_result.html | 24 + .../chrome/app/generated_resources.grd | 199 ++ tools/grit/grit/testdata/chrome_html.html | 6 + .../grit/testdata/default_100_percent/a.png | Bin 0 -> 159 bytes .../grit/testdata/default_100_percent/b.png | 1 + tools/grit/grit/testdata/del_footer.html | 8 + tools/grit/grit/testdata/del_header.html | 60 + tools/grit/grit/testdata/deleted.html | 21 + tools/grit/grit/testdata/depfile.grd | 18 + tools/grit/grit/testdata/details.html | 10 + .../grit/testdata/duplicate-name-input.xml | 26 + tools/grit/grit/testdata/email_result.html | 34 + tools/grit/grit/testdata/email_thread.html | 10 + tools/grit/grit/testdata/error.html | 8 + tools/grit/grit/testdata/explicit_web.html | 11 + tools/grit/grit/testdata/footer.html | 14 + .../grit/testdata/generated_resources_fr.xtb | 3079 +++++++++++++++++ .../grit/testdata/generated_resources_iw.xtb | 4 + .../grit/testdata/generated_resources_no.xtb | 4 + tools/grit/grit/testdata/grit_part.grdp | 5 + tools/grit/grit/testdata/header.html | 39 + tools/grit/grit/testdata/homepage.html | 37 + tools/grit/grit/testdata/hover.html | 177 + tools/grit/grit/testdata/include_test.html | 31 + tools/grit/grit/testdata/included_sample.html | 1 + tools/grit/grit/testdata/indexing_speed.html | 58 + tools/grit/grit/testdata/install_prefs.html | 92 + tools/grit/grit/testdata/install_prefs2.html | 52 + .../grit/testdata/klonk-alternate-skeleton.rc | Bin 0 -> 1088 bytes tools/grit/grit/testdata/klonk.ico | Bin 0 -> 766 bytes tools/grit/grit/testdata/klonk.rc | Bin 0 -> 9824 bytes .../grit/grit/testdata/ko_oem_enable_bug.html | 1 + .../grit/testdata/ko_oem_non_admin_bug.html | 1 + tools/grit/grit/testdata/mini.html | 36 + tools/grit/grit/testdata/oem_enable.html | 106 + tools/grit/grit/testdata/oem_non_admin.html | 39 + tools/grit/grit/testdata/onebox.html | 21 + tools/grit/grit/testdata/oneclick.html | 34 + tools/grit/grit/testdata/password.html | 37 + tools/grit/grit/testdata/preferences.html | 234 ++ tools/grit/grit/testdata/preprocess_test.html | 7 + tools/grit/grit/testdata/privacy.html | 35 + tools/grit/grit/testdata/quit_apps.html | 49 + tools/grit/grit/testdata/recrawl.html | 30 + tools/grit/grit/testdata/resource_ids | 13 + tools/grit/grit/testdata/script.html | 38 + tools/grit/grit/testdata/searchbox.html | 22 + tools/grit/grit/testdata/sidebar_h.html | 82 + tools/grit/grit/testdata/sidebar_v.html | 267 ++ tools/grit/grit/testdata/simple-input.xml | 52 + tools/grit/grit/testdata/simple.html | 3 + tools/grit/grit/testdata/source.rc | 57 + .../grit/testdata/special_100_percent/a.png | Bin 0 -> 159 bytes tools/grit/grit/testdata/status.html | 44 + .../grit/testdata/structure_variables.html | 4 + tools/grit/grit/testdata/substitute.grd | 31 + tools/grit/grit/testdata/substitute.xmb | 10 + .../grit/grit/testdata/substitute_no_ids.grd | 31 + tools/grit/grit/testdata/substitute_tmpl.grd | 31 + tools/grit/grit/testdata/test_css.css | 1 + tools/grit/grit/testdata/test_html.html | 1 + tools/grit/grit/testdata/test_js.js | 1 + tools/grit/grit/testdata/test_svg.svg | 1 + tools/grit/grit/testdata/test_text.txt | 1 + tools/grit/grit/testdata/time_related.html | 11 + tools/grit/grit/testdata/toolbar_about.html | 138 + .../grit/testdata/tools/grit/resource_ids | 176 + tools/grit/grit/testdata/transl.rc | 56 + tools/grit/grit/testdata/versions.html | 7 + tools/grit/grit/testdata/whitelist.txt | 4 + .../grit/testdata/whitelist_resources.grd | 54 + .../grit/grit/testdata/whitelist_strings.grd | 23 + tools/grit/grit/tool/__init__.py | 8 + tools/grit/grit/tool/android2grd.py | 484 +++ tools/grit/grit/tool/android2grd_unittest.py | 181 + tools/grit/grit/tool/build.py | 556 +++ tools/grit/grit/tool/build_unittest.py | 341 ++ tools/grit/grit/tool/buildinfo.py | 78 + tools/grit/grit/tool/buildinfo_unittest.py | 90 + tools/grit/grit/tool/count.py | 52 + tools/grit/grit/tool/diff_structures.py | 119 + .../grit/tool/diff_structures_unittest.py | 46 + tools/grit/grit/tool/interface.py | 62 + tools/grit/grit/tool/menu_from_parts.py | 79 + tools/grit/grit/tool/newgrd.py | 85 + tools/grit/grit/tool/newgrd_unittest.py | 51 + tools/grit/grit/tool/postprocess_interface.py | 29 + tools/grit/grit/tool/postprocess_unittest.py | 64 + tools/grit/grit/tool/preprocess_interface.py | 25 + tools/grit/grit/tool/preprocess_unittest.py | 50 + tools/grit/grit/tool/rc2grd.py | 418 +++ tools/grit/grit/tool/rc2grd_unittest.py | 163 + tools/grit/grit/tool/resize.py | 295 ++ tools/grit/grit/tool/test.py | 24 + tools/grit/grit/tool/transl2tc.py | 251 ++ tools/grit/grit/tool/transl2tc_unittest.py | 133 + tools/grit/grit/tool/unit.py | 43 + .../grit/tool/update_resource_ids/__init__.py | 305 ++ .../grit/tool/update_resource_ids/assigner.py | 286 ++ .../update_resource_ids/assigner_unittest.py | 154 + .../grit/tool/update_resource_ids/common.py | 101 + .../grit/tool/update_resource_ids/parser.py | 231 ++ .../grit/tool/update_resource_ids/reader.py | 83 + tools/grit/grit/tool/xmb.py | 295 ++ tools/grit/grit/tool/xmb_unittest.py | 132 + tools/grit/grit/util.py | 691 ++++ tools/grit/grit/util_unittest.py | 118 + tools/grit/grit/xtb_reader.py | 140 + tools/grit/grit/xtb_reader_unittest.py | 110 + tools/grit/grit_info.py | 173 + tools/grit/grit_rule.gni | 485 +++ tools/grit/minify_with_uglify.py | 44 + tools/grit/minimize_css.py | 105 + tools/grit/minimize_css_unittest.py | 58 + tools/grit/pak_util.py | 223 ++ tools/grit/repack.gni | 189 + tools/grit/setup.py | 46 + tools/grit/stamp_grit_sources.py | 57 + tools/grit/third_party/six/LICENSE | 18 + tools/grit/third_party/six/README | 16 + tools/grit/third_party/six/README.chromium | 13 + tools/grit/third_party/six/__init__.py | 868 +++++ 226 files changed, 33440 insertions(+) create mode 100644 tools/grit/.gitignore create mode 100644 tools/grit/BUILD.gn create mode 100644 tools/grit/MANIFEST.in create mode 100644 tools/grit/OWNERS create mode 100644 tools/grit/PRESUBMIT.py create mode 100644 tools/grit/README.md create mode 100644 tools/grit/grit.py create mode 100644 tools/grit/grit/__init__.py create mode 100644 tools/grit/grit/clique.py create mode 100644 tools/grit/grit/clique_unittest.py create mode 100644 tools/grit/grit/constants.py create mode 100644 tools/grit/grit/exception.py create mode 100644 tools/grit/grit/extern/BogoFP.py create mode 100644 tools/grit/grit/extern/FP.py create mode 100644 tools/grit/grit/extern/__init__.py create mode 100644 tools/grit/grit/extern/tclib.py create mode 100644 tools/grit/grit/format/__init__.py create mode 100644 tools/grit/grit/format/android_xml.py create mode 100644 tools/grit/grit/format/android_xml_unittest.py create mode 100644 tools/grit/grit/format/c_format.py create mode 100644 tools/grit/grit/format/c_format_unittest.py create mode 100644 tools/grit/grit/format/chrome_messages_json.py create mode 100644 tools/grit/grit/format/chrome_messages_json_unittest.py create mode 100644 tools/grit/grit/format/data_pack.py create mode 100644 tools/grit/grit/format/data_pack_unittest.py create mode 100644 tools/grit/grit/format/gen_predetermined_ids.py create mode 100644 tools/grit/grit/format/gen_predetermined_ids_unittest.py create mode 100644 tools/grit/grit/format/gzip_string.py create mode 100644 tools/grit/grit/format/gzip_string_unittest.py create mode 100644 tools/grit/grit/format/html_inline.py create mode 100644 tools/grit/grit/format/html_inline_unittest.py create mode 100644 tools/grit/grit/format/minifier.py create mode 100644 tools/grit/grit/format/policy_templates_json.py create mode 100644 tools/grit/grit/format/policy_templates_json_unittest.py create mode 100644 tools/grit/grit/format/rc.py create mode 100644 tools/grit/grit/format/rc_header.py create mode 100644 tools/grit/grit/format/rc_header_unittest.py create mode 100644 tools/grit/grit/format/rc_unittest.py create mode 100644 tools/grit/grit/format/resource_map.py create mode 100644 tools/grit/grit/format/resource_map_unittest.py create mode 100644 tools/grit/grit/gather/__init__.py create mode 100644 tools/grit/grit/gather/admin_template.py create mode 100644 tools/grit/grit/gather/admin_template_unittest.py create mode 100644 tools/grit/grit/gather/chrome_html.py create mode 100644 tools/grit/grit/gather/chrome_html_unittest.py create mode 100644 tools/grit/grit/gather/chrome_scaled_image.py create mode 100644 tools/grit/grit/gather/chrome_scaled_image_unittest.py create mode 100644 tools/grit/grit/gather/interface.py create mode 100644 tools/grit/grit/gather/json_loader.py create mode 100644 tools/grit/grit/gather/policy_json.py create mode 100644 tools/grit/grit/gather/policy_json_unittest.py create mode 100644 tools/grit/grit/gather/rc.py create mode 100644 tools/grit/grit/gather/rc_unittest.py create mode 100644 tools/grit/grit/gather/regexp.py create mode 100644 tools/grit/grit/gather/skeleton_gatherer.py create mode 100644 tools/grit/grit/gather/tr_html.py create mode 100644 tools/grit/grit/gather/tr_html_unittest.py create mode 100644 tools/grit/grit/gather/txt.py create mode 100644 tools/grit/grit/gather/txt_unittest.py create mode 100644 tools/grit/grit/grd_reader.py create mode 100644 tools/grit/grit/grd_reader_unittest.py create mode 100644 tools/grit/grit/grit-todo.xml create mode 100644 tools/grit/grit/grit_runner.py create mode 100644 tools/grit/grit/grit_runner_unittest.py create mode 100644 tools/grit/grit/lazy_re.py create mode 100644 tools/grit/grit/lazy_re_unittest.py create mode 100644 tools/grit/grit/node/__init__.py create mode 100644 tools/grit/grit/node/base.py create mode 100644 tools/grit/grit/node/base_unittest.py create mode 100644 tools/grit/grit/node/brotli_util.py create mode 100644 tools/grit/grit/node/custom/__init__.py create mode 100644 tools/grit/grit/node/custom/filename.py create mode 100644 tools/grit/grit/node/custom/filename_unittest.py create mode 100644 tools/grit/grit/node/empty.py create mode 100644 tools/grit/grit/node/include.py create mode 100644 tools/grit/grit/node/include_unittest.py create mode 100644 tools/grit/grit/node/mapping.py create mode 100644 tools/grit/grit/node/message.py create mode 100644 tools/grit/grit/node/message_unittest.py create mode 100644 tools/grit/grit/node/misc.py create mode 100644 tools/grit/grit/node/misc_unittest.py create mode 100644 tools/grit/grit/node/mock_brotli.py create mode 100644 tools/grit/grit/node/node_io.py create mode 100644 tools/grit/grit/node/node_io_unittest.py create mode 100644 tools/grit/grit/node/structure.py create mode 100644 tools/grit/grit/node/structure_unittest.py create mode 100644 tools/grit/grit/node/variant.py create mode 100644 tools/grit/grit/pseudo.py create mode 100644 tools/grit/grit/pseudo_rtl.py create mode 100644 tools/grit/grit/pseudo_unittest.py create mode 100644 tools/grit/grit/shortcuts.py create mode 100644 tools/grit/grit/shortcuts_unittest.py create mode 100644 tools/grit/grit/tclib.py create mode 100644 tools/grit/grit/tclib_unittest.py create mode 100644 tools/grit/grit/test_suite_all.py create mode 100644 tools/grit/grit/testdata/GoogleDesktop.adm create mode 100644 tools/grit/grit/testdata/README.txt create mode 100644 tools/grit/grit/testdata/about.html create mode 100644 tools/grit/grit/testdata/android.xml create mode 100644 tools/grit/grit/testdata/bad_browser.html create mode 100644 tools/grit/grit/testdata/browser.html create mode 100644 tools/grit/grit/testdata/buildinfo.grd create mode 100644 tools/grit/grit/testdata/cache_prefix.html create mode 100644 tools/grit/grit/testdata/cache_prefix_file.html create mode 100644 tools/grit/grit/testdata/chat_result.html create mode 100644 tools/grit/grit/testdata/chrome/app/generated_resources.grd create mode 100644 tools/grit/grit/testdata/chrome_html.html create mode 100644 tools/grit/grit/testdata/default_100_percent/a.png create mode 100644 tools/grit/grit/testdata/default_100_percent/b.png create mode 100644 tools/grit/grit/testdata/del_footer.html create mode 100644 tools/grit/grit/testdata/del_header.html create mode 100644 tools/grit/grit/testdata/deleted.html create mode 100644 tools/grit/grit/testdata/depfile.grd create mode 100644 tools/grit/grit/testdata/details.html create mode 100644 tools/grit/grit/testdata/duplicate-name-input.xml create mode 100644 tools/grit/grit/testdata/email_result.html create mode 100644 tools/grit/grit/testdata/email_thread.html create mode 100644 tools/grit/grit/testdata/error.html create mode 100644 tools/grit/grit/testdata/explicit_web.html create mode 100644 tools/grit/grit/testdata/footer.html create mode 100644 tools/grit/grit/testdata/generated_resources_fr.xtb create mode 100644 tools/grit/grit/testdata/generated_resources_iw.xtb create mode 100644 tools/grit/grit/testdata/generated_resources_no.xtb create mode 100644 tools/grit/grit/testdata/grit_part.grdp create mode 100644 tools/grit/grit/testdata/header.html create mode 100644 tools/grit/grit/testdata/homepage.html create mode 100644 tools/grit/grit/testdata/hover.html create mode 100644 tools/grit/grit/testdata/include_test.html create mode 100644 tools/grit/grit/testdata/included_sample.html create mode 100644 tools/grit/grit/testdata/indexing_speed.html create mode 100644 tools/grit/grit/testdata/install_prefs.html create mode 100644 tools/grit/grit/testdata/install_prefs2.html create mode 100644 tools/grit/grit/testdata/klonk-alternate-skeleton.rc create mode 100644 tools/grit/grit/testdata/klonk.ico create mode 100644 tools/grit/grit/testdata/klonk.rc create mode 100644 tools/grit/grit/testdata/ko_oem_enable_bug.html create mode 100644 tools/grit/grit/testdata/ko_oem_non_admin_bug.html create mode 100644 tools/grit/grit/testdata/mini.html create mode 100644 tools/grit/grit/testdata/oem_enable.html create mode 100644 tools/grit/grit/testdata/oem_non_admin.html create mode 100644 tools/grit/grit/testdata/onebox.html create mode 100644 tools/grit/grit/testdata/oneclick.html create mode 100644 tools/grit/grit/testdata/password.html create mode 100644 tools/grit/grit/testdata/preferences.html create mode 100644 tools/grit/grit/testdata/preprocess_test.html create mode 100644 tools/grit/grit/testdata/privacy.html create mode 100644 tools/grit/grit/testdata/quit_apps.html create mode 100644 tools/grit/grit/testdata/recrawl.html create mode 100644 tools/grit/grit/testdata/resource_ids create mode 100644 tools/grit/grit/testdata/script.html create mode 100644 tools/grit/grit/testdata/searchbox.html create mode 100644 tools/grit/grit/testdata/sidebar_h.html create mode 100644 tools/grit/grit/testdata/sidebar_v.html create mode 100644 tools/grit/grit/testdata/simple-input.xml create mode 100644 tools/grit/grit/testdata/simple.html create mode 100644 tools/grit/grit/testdata/source.rc create mode 100644 tools/grit/grit/testdata/special_100_percent/a.png create mode 100644 tools/grit/grit/testdata/status.html create mode 100644 tools/grit/grit/testdata/structure_variables.html create mode 100644 tools/grit/grit/testdata/substitute.grd create mode 100644 tools/grit/grit/testdata/substitute.xmb create mode 100644 tools/grit/grit/testdata/substitute_no_ids.grd create mode 100644 tools/grit/grit/testdata/substitute_tmpl.grd create mode 100644 tools/grit/grit/testdata/test_css.css create mode 100644 tools/grit/grit/testdata/test_html.html create mode 100644 tools/grit/grit/testdata/test_js.js create mode 100644 tools/grit/grit/testdata/test_svg.svg create mode 100644 tools/grit/grit/testdata/test_text.txt create mode 100644 tools/grit/grit/testdata/time_related.html create mode 100644 tools/grit/grit/testdata/toolbar_about.html create mode 100644 tools/grit/grit/testdata/tools/grit/resource_ids create mode 100644 tools/grit/grit/testdata/transl.rc create mode 100644 tools/grit/grit/testdata/versions.html create mode 100644 tools/grit/grit/testdata/whitelist.txt create mode 100644 tools/grit/grit/testdata/whitelist_resources.grd create mode 100644 tools/grit/grit/testdata/whitelist_strings.grd create mode 100644 tools/grit/grit/tool/__init__.py create mode 100644 tools/grit/grit/tool/android2grd.py create mode 100644 tools/grit/grit/tool/android2grd_unittest.py create mode 100644 tools/grit/grit/tool/build.py create mode 100644 tools/grit/grit/tool/build_unittest.py create mode 100644 tools/grit/grit/tool/buildinfo.py create mode 100644 tools/grit/grit/tool/buildinfo_unittest.py create mode 100644 tools/grit/grit/tool/count.py create mode 100644 tools/grit/grit/tool/diff_structures.py create mode 100644 tools/grit/grit/tool/diff_structures_unittest.py create mode 100644 tools/grit/grit/tool/interface.py create mode 100644 tools/grit/grit/tool/menu_from_parts.py create mode 100644 tools/grit/grit/tool/newgrd.py create mode 100644 tools/grit/grit/tool/newgrd_unittest.py create mode 100644 tools/grit/grit/tool/postprocess_interface.py create mode 100644 tools/grit/grit/tool/postprocess_unittest.py create mode 100644 tools/grit/grit/tool/preprocess_interface.py create mode 100644 tools/grit/grit/tool/preprocess_unittest.py create mode 100644 tools/grit/grit/tool/rc2grd.py create mode 100644 tools/grit/grit/tool/rc2grd_unittest.py create mode 100644 tools/grit/grit/tool/resize.py create mode 100644 tools/grit/grit/tool/test.py create mode 100644 tools/grit/grit/tool/transl2tc.py create mode 100644 tools/grit/grit/tool/transl2tc_unittest.py create mode 100644 tools/grit/grit/tool/unit.py create mode 100644 tools/grit/grit/tool/update_resource_ids/__init__.py create mode 100644 tools/grit/grit/tool/update_resource_ids/assigner.py create mode 100644 tools/grit/grit/tool/update_resource_ids/assigner_unittest.py create mode 100644 tools/grit/grit/tool/update_resource_ids/common.py create mode 100644 tools/grit/grit/tool/update_resource_ids/parser.py create mode 100644 tools/grit/grit/tool/update_resource_ids/reader.py create mode 100644 tools/grit/grit/tool/xmb.py create mode 100644 tools/grit/grit/tool/xmb_unittest.py create mode 100644 tools/grit/grit/util.py create mode 100644 tools/grit/grit/util_unittest.py create mode 100644 tools/grit/grit/xtb_reader.py create mode 100644 tools/grit/grit/xtb_reader_unittest.py create mode 100644 tools/grit/grit_info.py create mode 100644 tools/grit/grit_rule.gni create mode 100644 tools/grit/minify_with_uglify.py create mode 100644 tools/grit/minimize_css.py create mode 100644 tools/grit/minimize_css_unittest.py create mode 100644 tools/grit/pak_util.py create mode 100644 tools/grit/repack.gni create mode 100644 tools/grit/setup.py create mode 100644 tools/grit/stamp_grit_sources.py create mode 100644 tools/grit/third_party/six/LICENSE create mode 100644 tools/grit/third_party/six/README create mode 100644 tools/grit/third_party/six/README.chromium create mode 100644 tools/grit/third_party/six/__init__.py diff --git a/tools/grit/.gitignore b/tools/grit/.gitignore new file mode 100644 index 0000000000..0d20b6487c --- /dev/null +++ b/tools/grit/.gitignore @@ -0,0 +1 @@ +*.pyc diff --git a/tools/grit/BUILD.gn b/tools/grit/BUILD.gn new file mode 100644 index 0000000000..1cd3c75b55 --- /dev/null +++ b/tools/grit/BUILD.gn @@ -0,0 +1,48 @@ +# Copyright 2014 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +# This target creates a stamp file that depends on all the sources in the grit +# directory. By depending on this, a target can force itself to be rebuilt if +# grit itself changes. + +import("//build/config/sanitizers/sanitizers.gni") + +action("grit_sources") { + depfile = "$target_out_dir/grit_sources.d" + script = "stamp_grit_sources.py" + + inputs = [ "grit.py" ] + + # Note that we can't call this "grit_sources.stamp" because that file is + # implicitly created by GN for script actions. + outputs = [ "$target_out_dir/grit_sources.script.stamp" ] + + args = [ + rebase_path("//tools/grit", root_build_dir), + rebase_path(outputs[0], root_build_dir), + rebase_path(depfile, root_build_dir), + ] +} + +group("grit_python_unittests") { + testonly = true + + data = [ + "//testing/scripts/common.py", + "//testing/scripts/run_isolated_script_test.py", + "//testing/xvfb.py", + "//tools/grit/", + "//third_party/catapult/third_party/typ/", + ] +} + +# See https://crbug.com/983200 +if (is_mac && is_asan) { + create_bundle("brotli_mac_asan_workaround") { + bundle_root_dir = "$target_out_dir/$target_name" + bundle_executable_dir = bundle_root_dir + + public_deps = [ "//third_party/brotli:brotli($host_toolchain)" ] + } +} diff --git a/tools/grit/MANIFEST.in b/tools/grit/MANIFEST.in new file mode 100644 index 0000000000..1cbff42400 --- /dev/null +++ b/tools/grit/MANIFEST.in @@ -0,0 +1,3 @@ +exclude grit/test_suite_all.py +exclude grit/tool/test.py +global-exclude *_unittest.py diff --git a/tools/grit/OWNERS b/tools/grit/OWNERS new file mode 100644 index 0000000000..6a8f447b82 --- /dev/null +++ b/tools/grit/OWNERS @@ -0,0 +1,8 @@ +agrieve@chromium.org +flackr@chromium.org +thakis@chromium.org +thestig@chromium.org + +# Admin policy related grit tools. +per-file *policy*=file://components/policy/tools/OWNERS +per-file *admin_template*=file://components/policy/tools/OWNERS diff --git a/tools/grit/PRESUBMIT.py b/tools/grit/PRESUBMIT.py new file mode 100644 index 0000000000..03b7188551 --- /dev/null +++ b/tools/grit/PRESUBMIT.py @@ -0,0 +1,22 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +"""grit unittests presubmit script. + +See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts for +details on the presubmit API built into gcl. +""" + + +def RunUnittests(input_api, output_api): + return input_api.canned_checks.RunUnitTests(input_api, output_api, + [input_api.os_path.join('grit', 'test_suite_all.py')]) + + +def CheckChangeOnUpload(input_api, output_api): + return RunUnittests(input_api, output_api) + + +def CheckChangeOnCommit(input_api, output_api): + return RunUnittests(input_api, output_api) diff --git a/tools/grit/README.md b/tools/grit/README.md new file mode 100644 index 0000000000..b5c3f4b51b --- /dev/null +++ b/tools/grit/README.md @@ -0,0 +1,19 @@ +# GRIT (Google Resource and Internationalization Tool) + +This is a tool for projects to manage resources and simplify the localization +workflow. + +See the user guide for more details on using this project: +https://dev.chromium.org/developers/tools-we-use-in-chromium/grit/grit-users-guide + +## History + +This code previously used to live at +https://code.google.com/p/grit-i18n/source/checkout which still contains the +project's history. https://chromium.googlesource.com/external/grit-i18n/ is +a git mirror of the SVN repository that's identical except for the last two +commits. The project is now developed in the Chromium project directly. + +There is a read-only mirror of just this directory at +https://chromium.googlesource.com/chromium/src/tools/grit/ if you don't want to +check out all of Chromium. diff --git a/tools/grit/grit.py b/tools/grit/grit.py new file mode 100644 index 0000000000..abd1ab6449 --- /dev/null +++ b/tools/grit/grit.py @@ -0,0 +1,31 @@ +#!/usr/bin/env python +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Bootstrapping for GRIT. +''' + +from __future__ import print_function + +import os +import sys + +import grit.grit_runner + +sys.path.append( + os.path.join( + os.path.dirname(os.path.dirname(os.path.abspath(__file__))), + 'diagnosis')) +try: + import crbug_1001171 +except ImportError: + crbug_1001171 = None + + +if __name__ == '__main__': + if crbug_1001171: + with crbug_1001171.DumpStateOnLookupError(): + sys.exit(grit.grit_runner.Main(sys.argv[1:])) + else: + sys.exit(grit.grit_runner.Main(sys.argv[1:])) diff --git a/tools/grit/grit/__init__.py b/tools/grit/grit/__init__.py new file mode 100644 index 0000000000..91ac9ee896 --- /dev/null +++ b/tools/grit/grit/__init__.py @@ -0,0 +1,19 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Package 'grit' +''' + +from __future__ import print_function + +import os +import sys + + +_CUR_DIR = os.path.abspath(os.path.dirname(__file__)) +_GRIT_DIR = os.path.dirname(_CUR_DIR) +_THIRD_PARTY_DIR = os.path.join(_GRIT_DIR, 'third_party') + +if _THIRD_PARTY_DIR not in sys.path: + sys.path.insert(0, _THIRD_PARTY_DIR) diff --git a/tools/grit/grit/clique.py b/tools/grit/grit/clique.py new file mode 100644 index 0000000000..e7be3ec164 --- /dev/null +++ b/tools/grit/grit/clique.py @@ -0,0 +1,491 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Collections of messages and their translations, called cliques. Also +collections of cliques (uber-cliques). +''' + +from __future__ import print_function + +import re + +import six + +from grit import constants +from grit import exception +from grit import lazy_re +from grit import pseudo +from grit import pseudo_rtl +from grit import tclib + + +class UberClique(object): + '''A factory (NOT a singleton factory) for making cliques. It has several + methods for working with the cliques created using the factory. + ''' + + def __init__(self): + # A map from message ID to list of cliques whose source messages have + # that ID. This will contain all cliques created using this factory. + # Different messages can have the same ID because they have the + # same translateable portion and placeholder names, but occur in different + # places in the resource tree. + # + # Each list of cliques is kept sorted by description, to achieve + # stable results from the BestClique method, see below. + self.cliques_ = {} + + # A map of clique IDs to list of languages to indicate translations where we + # fell back to English. + self.fallback_translations_ = {} + + # A map of clique IDs to list of languages to indicate missing translations. + self.missing_translations_ = {} + + def _AddMissingTranslation(self, lang, clique, is_error): + tl = self.fallback_translations_ + if is_error: + tl = self.missing_translations_ + id = clique.GetId() + if id not in tl: + tl[id] = {} + if lang not in tl[id]: + tl[id][lang] = 1 + + def HasMissingTranslations(self): + return len(self.missing_translations_) > 0 + + def MissingTranslationsReport(self): + '''Returns a string suitable for printing to report missing + and fallback translations to the user. + ''' + def ReportTranslation(clique, langs): + text = clique.GetMessage().GetPresentableContent() + # The text 'error' (usually 'Error:' but we are conservative) + # can trigger some build environments (Visual Studio, we're + # looking at you) to consider invocation of grit to have failed, + # so we make sure never to output that word. + extract = re.sub(r'(?i)error', 'REDACTED', text[0:40])[0:40] + ellipsis = '' + if len(text) > 40: + ellipsis = '...' + langs_extract = langs[0:6] + describe_langs = ','.join(langs_extract) + if len(langs) > 6: + describe_langs += " and %d more" % (len(langs) - 6) + return " %s \"%s%s\" %s" % (clique.GetId(), extract, ellipsis, + describe_langs) + lines = [] + if len(self.fallback_translations_): + lines.append( + "WARNING: Fell back to English for the following translations:") + for (id, langs) in self.fallback_translations_.items(): + lines.append( + ReportTranslation(self.cliques_[id][0], list(langs.keys()))) + if len(self.missing_translations_): + lines.append("ERROR: The following translations are MISSING:") + for (id, langs) in self.missing_translations_.items(): + lines.append( + ReportTranslation(self.cliques_[id][0], list(langs.keys()))) + return '\n'.join(lines) + + def MakeClique(self, message, translateable=True): + '''Create a new clique initialized with a message. + + Args: + message: tclib.Message() + translateable: True | False + ''' + clique = MessageClique(self, message, translateable) + + # Enable others to find this clique by its message ID + if message.GetId() in self.cliques_: + presentable_text = clique.GetMessage().GetPresentableContent() + if not message.HasAssignedId(): + for c in self.cliques_[message.GetId()]: + assert c.GetMessage().GetPresentableContent() == presentable_text + self.cliques_[message.GetId()].append(clique) + # We need to keep each list of cliques sorted by description, to + # achieve stable results from the BestClique method, see below. + self.cliques_[message.GetId()].sort( + key=lambda c:c.GetMessage().GetDescription()) + else: + self.cliques_[message.GetId()] = [clique] + + return clique + + def FindCliqueAndAddTranslation(self, translation, language): + '''Adds the specified translation to the clique with the source message + it is a translation of. + + Args: + translation: tclib.Translation() + language: 'en' | 'fr' ... + + Return: + True if the source message was found, otherwise false. + ''' + if translation.GetId() in self.cliques_: + for clique in self.cliques_[translation.GetId()]: + clique.AddTranslation(translation, language) + return True + else: + return False + + def BestClique(self, id): + '''Returns the "best" clique from a list of cliques. All the cliques + must have the same ID. The "best" clique is chosen in the following + order of preference: + - The first clique that has a non-ID-based description. + - If no such clique found, the first clique with an ID-based description. + - Otherwise the first clique. + + This method is stable in terms of always returning a clique with + an identical description (on different runs of GRIT on the same + data) because self.cliques_ is sorted by description. + ''' + clique_list = self.cliques_[id] + clique_with_id = None + clique_default = None + for clique in clique_list: + if not clique_default: + clique_default = clique + + description = clique.GetMessage().GetDescription() + if description and len(description) > 0: + if not description.startswith('ID:'): + # this is the preferred case so we exit right away + return clique + elif not clique_with_id: + clique_with_id = clique + if clique_with_id: + return clique_with_id + else: + return clique_default + + def BestCliquePerId(self): + '''Iterates over the list of all cliques and returns the best clique for + each ID. This will be the first clique with a source message that has a + non-empty description, or an arbitrary clique if none of them has a + description. + ''' + for id in self.cliques_: + yield self.BestClique(id) + + def BestCliqueByOriginalText(self, text, meaning): + '''Finds the "best" (as in BestClique()) clique that has original text + 'text' and meaning 'meaning'. Returns None if there is no such clique. + ''' + # If needed, this can be optimized by maintaining a map of + # fingerprints of original text+meaning to cliques. + for c in self.BestCliquePerId(): + msg = c.GetMessage() + if msg.GetRealContent() == text and msg.GetMeaning() == meaning: + return msg + return None + + def AllMessageIds(self): + '''Returns a list of all defined message IDs. + ''' + return list(self.cliques_.keys()) + + def AllCliques(self): + '''Iterates over all cliques. Note that this can return multiple cliques + with the same ID. + ''' + for cliques in self.cliques_.values(): + for c in cliques: + yield c + + def GenerateXtbParserCallback(self, lang, debug=False): + '''Creates a callback function as required by grit.xtb_reader.Parse(). + This callback will create Translation objects for each message from + the XTB that exists in this uberclique, and add them as translations for + the relevant cliques. The callback will add translations to the language + specified by 'lang' + + Args: + lang: 'fr' + debug: True | False + ''' + def Callback(id, structure): + if id not in self.cliques_: + if debug: + print("Ignoring translation #%s" % id) + return + + if debug: + print("Adding translation #%s" % id) + + # We fetch placeholder information from the original message (the XTB file + # only contains placeholder names). + original_msg = self.BestClique(id).GetMessage() + + translation = tclib.Translation(id=id) + for is_ph,text in structure: + if not is_ph: + translation.AppendText(text) + else: + found_placeholder = False + for ph in original_msg.GetPlaceholders(): + if ph.GetPresentation() == text: + translation.AppendPlaceholder(tclib.Placeholder( + ph.GetPresentation(), ph.GetOriginal(), ph.GetExample())) + found_placeholder = True + break + if not found_placeholder: + raise exception.MismatchingPlaceholders( + 'Translation for message ID %s had , no match\n' + 'in original message' % (id, text)) + self.FindCliqueAndAddTranslation(translation, lang) + return Callback + + +class CustomType(object): + '''A base class you should implement if you wish to specify a custom type + for a message clique (i.e. custom validation and optional modification of + translations).''' + + def Validate(self, message): + '''Returns true if the message (a tclib.Message object) is valid, + otherwise false. + ''' + raise NotImplementedError() + + def ValidateAndModify(self, lang, translation): + '''Returns true if the translation (a tclib.Translation object) is valid, + otherwise false. The language is also passed in. This method may modify + the translation that is passed in, if it so wishes. + ''' + raise NotImplementedError() + + def ModifyTextPart(self, lang, text): + '''If you call ModifyEachTextPart, it will turn around and call this method + for each text part of the translation. You should return the modified + version of the text, or just the original text to not change anything. + ''' + raise NotImplementedError() + + def ModifyEachTextPart(self, lang, translation): + '''Call this to easily modify one or more of the textual parts of a + translation. It will call ModifyTextPart for each part of the + translation. + ''' + contents = translation.GetContent() + for ix in range(len(contents)): + if (isinstance(contents[ix], six.string_types)): + contents[ix] = self.ModifyTextPart(lang, contents[ix]) + + +class OneOffCustomType(CustomType): + '''A very simple custom type that performs the validation expressed by + the input expression on all languages including the source language. + The expression can access the variables 'lang', 'msg' and 'text()' where + 'lang' is the language of 'msg', 'msg' is the message or translation being + validated and 'text()' returns the real contents of 'msg' (for shorthand). + ''' + def __init__(self, expression): + self.expr = expression + def Validate(self, message): + return self.ValidateAndModify(MessageClique.source_language, message) + def ValidateAndModify(self, lang, msg): + def text(): + return msg.GetRealContent() + return eval(self.expr, {}, + {'lang' : lang, + 'text' : text, + 'msg' : msg, + }) + + +class MessageClique(object): + '''A message along with all of its translations. Also code to bring + translations together with their original message.''' + + # change this to the language code of Messages you add to cliques_. + # TODO(joi) Actually change this based on the node's source language + source_language = 'en' + + # A constant translation we use when asked for a translation into the + # special language constants.CONSTANT_LANGUAGE. + CONSTANT_TRANSLATION = tclib.Translation(text='TTTTTT') + + # A pattern to match messages that are empty or whitespace only. + WHITESPACE_MESSAGE = lazy_re.compile(r'^\s*$') + + def __init__(self, uber_clique, message, translateable=True, + custom_type=None): + '''Create a new clique initialized with just a message. + + Note that messages with a body comprised only of whitespace will implicitly + be marked non-translatable. + + Args: + uber_clique: Our uber-clique (collection of cliques) + message: tclib.Message() + translateable: True | False + custom_type: instance of clique.CustomType interface + ''' + # Our parent + self.uber_clique = uber_clique + # If not translateable, we only store the original message. + self.translateable = translateable + + # We implicitly mark messages that have a whitespace-only body as + # non-translateable. + if MessageClique.WHITESPACE_MESSAGE.match(message.GetRealContent()): + self.translateable = False + + # A mapping of language identifiers to tclib.BaseMessage and its + # subclasses (i.e. tclib.Message and tclib.Translation). + self.clique = { MessageClique.source_language : message } + # A list of the "shortcut groups" this clique is + # part of. Within any given shortcut group, no shortcut key (e.g. &J) + # must appear more than once in each language for all cliques that + # belong to the group. + self.shortcut_groups = [] + # An instance of the CustomType interface, or None. If this is set, it will + # be used to validate the original message and translations thereof, and + # will also get a chance to modify translations of the message. + self.SetCustomType(custom_type) + + def GetMessage(self): + '''Retrieves the tclib.Message that is the source for this clique.''' + return self.clique[MessageClique.source_language] + + def GetId(self): + '''Retrieves the message ID of the messages in this clique.''' + return self.GetMessage().GetId() + + def IsTranslateable(self): + return self.translateable + + def AddToShortcutGroup(self, group): + self.shortcut_groups.append(group) + + def SetCustomType(self, custom_type): + '''Makes this clique use custom_type for validating messages and + translations, and optionally modifying translations. + ''' + self.custom_type = custom_type + if custom_type and not custom_type.Validate(self.GetMessage()): + raise exception.InvalidMessage(self.GetMessage().GetRealContent()) + + def MessageForLanguage(self, lang, pseudo_if_no_match=True, + fallback_to_english=False): + '''Returns the message/translation for the specified language, providing + a pseudotranslation if there is no available translation and a pseudo- + translation is requested. + + The translation of any message whatsoever in the special language + 'x_constant' is the message "TTTTTT". + + Args: + lang: 'en' + pseudo_if_no_match: True + fallback_to_english: False + + Return: + tclib.BaseMessage + ''' + if not self.translateable: + return self.GetMessage() + + if lang == constants.CONSTANT_LANGUAGE: + return self.CONSTANT_TRANSLATION + + for msglang in self.clique: + if lang == msglang: + return self.clique[msglang] + + if lang == constants.FAKE_BIDI: + return pseudo_rtl.PseudoRTLMessage(self.GetMessage()) + + if fallback_to_english: + self.uber_clique._AddMissingTranslation(lang, self, is_error=False) + return self.GetMessage() + + # If we're not supposed to generate pseudotranslations, we add an error + # report to a list of errors, then fail at a higher level, so that we + # get a list of all messages that are missing translations. + if not pseudo_if_no_match: + self.uber_clique._AddMissingTranslation(lang, self, is_error=True) + + return pseudo.PseudoMessage(self.GetMessage()) + + def AllMessagesThatMatch(self, lang_re, include_pseudo = True): + '''Returns a map of all messages that match 'lang', including the pseudo + translation if requested. + + Args: + lang_re: re.compile(r'fr|en') + include_pseudo: True + + Return: + { 'en' : tclib.Message, + 'fr' : tclib.Translation, + pseudo.PSEUDO_LANG : tclib.Translation } + ''' + if not self.translateable: + return [self.GetMessage()] + + matches = {} + for msglang in self.clique: + if lang_re.match(msglang): + matches[msglang] = self.clique[msglang] + + if include_pseudo: + matches[pseudo.PSEUDO_LANG] = pseudo.PseudoMessage(self.GetMessage()) + + return matches + + def AddTranslation(self, translation, language): + '''Add a translation to this clique. The translation must have the same + ID as the message that is the source for this clique. + + If this clique is not translateable, the function just returns. + + Args: + translation: tclib.Translation() + language: 'en' + + Throws: + grit.exception.InvalidTranslation if the translation you're trying to add + doesn't have the same message ID as the source message of this clique. + ''' + if not self.translateable: + return + if translation.GetId() != self.GetId(): + raise exception.InvalidTranslation( + 'Msg ID %s, transl ID %s' % (self.GetId(), translation.GetId())) + + assert not language in self.clique + + # Because two messages can differ in the original content of their + # placeholders yet share the same ID (because they are otherwise the + # same), the translation we are getting may have different original + # content for placeholders than our message, yet it is still the right + # translation for our message (because it is for the same ID). We must + # therefore fetch the original content of placeholders from our original + # English message. + # + # See grit.clique_unittest.MessageCliqueUnittest.testSemiIdenticalCliques + # for a concrete explanation of why this is necessary. + + original = self.MessageForLanguage(self.source_language, False) + if len(original.GetPlaceholders()) != len(translation.GetPlaceholders()): + print("ERROR: '%s' translation of message id %s does not match" % + (language, translation.GetId())) + assert False + + transl_msg = tclib.Translation(id=self.GetId(), + text=translation.GetPresentableContent(), + placeholders=original.GetPlaceholders()) + + if (self.custom_type and + not self.custom_type.ValidateAndModify(language, transl_msg)): + print("WARNING: %s translation failed validation: %s" % + (language, transl_msg.GetId())) + + self.clique[language] = transl_msg diff --git a/tools/grit/grit/clique_unittest.py b/tools/grit/grit/clique_unittest.py new file mode 100644 index 0000000000..7d2d7318ba --- /dev/null +++ b/tools/grit/grit/clique_unittest.py @@ -0,0 +1,265 @@ +#!/usr/bin/env python +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Unit tests for grit.clique''' + +from __future__ import print_function + +import os +import sys +if __name__ == '__main__': + sys.path.append(os.path.join(os.path.dirname(__file__), '..')) + +import re +import unittest + +from six import StringIO + +from grit import clique +from grit import exception +from grit import pseudo +from grit import tclib +from grit import grd_reader +from grit import util + +class MessageCliqueUnittest(unittest.TestCase): + def testClique(self): + factory = clique.UberClique() + msg = tclib.Message(text='Hello USERNAME, how are you?', + placeholders=[ + tclib.Placeholder('USERNAME', '%s', 'Joi')]) + c = factory.MakeClique(msg) + + self.failUnless(c.GetMessage() == msg) + self.failUnless(c.GetId() == msg.GetId()) + + msg_fr = tclib.Translation(text='Bonjour USERNAME, comment ca va?', + id=msg.GetId(), placeholders=[ + tclib.Placeholder('USERNAME', '%s', 'Joi')]) + msg_de = tclib.Translation(text='Guten tag USERNAME, wie geht es dir?', + id=msg.GetId(), placeholders=[ + tclib.Placeholder('USERNAME', '%s', 'Joi')]) + + c.AddTranslation(msg_fr, 'fr') + factory.FindCliqueAndAddTranslation(msg_de, 'de') + + # sort() sorts lists in-place and does not return them + for lang in ('en', 'fr', 'de'): + self.failUnless(lang in c.clique) + + self.failUnless(c.MessageForLanguage('fr').GetRealContent() == + msg_fr.GetRealContent()) + + try: + c.MessageForLanguage('zh-CN', False) + self.fail('Should have gotten exception') + except: + pass + + self.failUnless(c.MessageForLanguage('zh-CN', True) != None) + + rex = re.compile('fr|de|bingo') + self.failUnless(len(c.AllMessagesThatMatch(rex, False)) == 2) + self.failUnless( + c.AllMessagesThatMatch(rex, True)[pseudo.PSEUDO_LANG] is not None) + + def testBestClique(self): + factory = clique.UberClique() + factory.MakeClique(tclib.Message(text='Alfur', description='alfaholl')) + factory.MakeClique(tclib.Message(text='Alfur', description='')) + factory.MakeClique(tclib.Message(text='Vaettur', description='')) + factory.MakeClique(tclib.Message(text='Vaettur', description='')) + factory.MakeClique(tclib.Message(text='Troll', description='')) + factory.MakeClique(tclib.Message(text='Gryla', description='ID: IDS_GRYLA')) + factory.MakeClique(tclib.Message(text='Gryla', description='vondakerling')) + factory.MakeClique(tclib.Message(text='Leppaludi', description='ID: IDS_LL')) + factory.MakeClique(tclib.Message(text='Leppaludi', description='')) + + count_best_cliques = 0 + for c in factory.BestCliquePerId(): + count_best_cliques += 1 + msg = c.GetMessage() + text = msg.GetRealContent() + description = msg.GetDescription() + if text == 'Alfur': + self.failUnless(description == 'alfaholl') + elif text == 'Gryla': + self.failUnless(description == 'vondakerling') + elif text == 'Leppaludi': + self.failUnless(description == 'ID: IDS_LL') + self.failUnless(count_best_cliques == 5) + + def testAllInUberClique(self): + resources = grd_reader.Parse( + StringIO(u''' + + + + + Hello %sJoi, how are you doing today? + + + + + + + +'''), util.PathFromRoot('.')) + resources.SetOutputLanguage('en') + resources.RunGatherers() + content_list = [] + for clique_list in resources.UberClique().cliques_.values(): + for clique in clique_list: + content_list.append(clique.GetMessage().GetRealContent()) + self.failUnless('Hello %s, how are you doing today?' in content_list) + self.failUnless('Jack "Black" Daniels' in content_list) + self.failUnless('Hello!' in content_list) + + def testCorrectExceptionIfWrongEncodingOnResourceFile(self): + '''This doesn't really belong in this unittest file, but what the heck.''' + resources = grd_reader.Parse( + StringIO(u''' + + + + + + +'''), util.PathFromRoot('.')) + self.assertRaises(exception.SectionNotFound, resources.RunGatherers) + + def testSemiIdenticalCliques(self): + messages = [ + tclib.Message(text='Hello USERNAME', + placeholders=[tclib.Placeholder('USERNAME', '$1', 'Joi')]), + tclib.Message(text='Hello USERNAME', + placeholders=[tclib.Placeholder('USERNAME', '%s', 'Joi')]), + ] + self.failUnless(messages[0].GetId() == messages[1].GetId()) + + # Both of the above would share a translation. + translation = tclib.Translation(id=messages[0].GetId(), + text='Bonjour USERNAME', + placeholders=[tclib.Placeholder( + 'USERNAME', '$1', 'Joi')]) + + factory = clique.UberClique() + cliques = [factory.MakeClique(msg) for msg in messages] + + for clq in cliques: + clq.AddTranslation(translation, 'fr') + + self.failUnless(cliques[0].MessageForLanguage('fr').GetRealContent() == + 'Bonjour $1') + self.failUnless(cliques[1].MessageForLanguage('fr').GetRealContent() == + 'Bonjour %s') + + def testMissingTranslations(self): + messages = [ tclib.Message(text='Hello'), tclib.Message(text='Goodbye') ] + factory = clique.UberClique() + cliques = [factory.MakeClique(msg) for msg in messages] + + cliques[1].MessageForLanguage('fr', False, True) + + self.failUnless(not factory.HasMissingTranslations()) + + cliques[0].MessageForLanguage('de', False, False) + + self.failUnless(factory.HasMissingTranslations()) + + report = factory.MissingTranslationsReport() + self.failUnless(report.count('WARNING') == 1) + self.failUnless(report.count('8053599568341804890 "Goodbye" fr') == 1) + self.failUnless(report.count('ERROR') == 1) + self.failUnless(report.count('800120468867715734 "Hello" de') == 1) + + def testCustomTypes(self): + factory = clique.UberClique() + message = tclib.Message(text='Bingo bongo') + c = factory.MakeClique(message) + try: + c.SetCustomType(DummyCustomType()) + self.fail() + except: + pass # expected case - 'Bingo bongo' does not start with 'jjj' + + message = tclib.Message(text='jjjBingo bongo') + c = factory.MakeClique(message) + c.SetCustomType(util.NewClassInstance( + 'grit.clique_unittest.DummyCustomType', clique.CustomType)) + translation = tclib.Translation(id=message.GetId(), text='Bilingo bolongo') + c.AddTranslation(translation, 'fr') + self.failUnless(c.MessageForLanguage('fr').GetRealContent().startswith('jjj')) + + def testWhitespaceMessagesAreNontranslateable(self): + factory = clique.UberClique() + + message = tclib.Message(text=' \t') + c = factory.MakeClique(message, translateable=True) + self.failIf(c.IsTranslateable()) + + message = tclib.Message(text='\n \n ') + c = factory.MakeClique(message, translateable=True) + self.failIf(c.IsTranslateable()) + + message = tclib.Message(text='\n hello') + c = factory.MakeClique(message, translateable=True) + self.failUnless(c.IsTranslateable()) + + def testEachCliqueKeptSorted(self): + factory = clique.UberClique() + msg_a = tclib.Message(text='hello', description='a') + msg_b = tclib.Message(text='hello', description='b') + msg_c = tclib.Message(text='hello', description='c') + # Insert out of order + clique_b = factory.MakeClique(msg_b, translateable=True) + clique_a = factory.MakeClique(msg_a, translateable=True) + clique_c = factory.MakeClique(msg_c, translateable=True) + clique_list = factory.cliques_[clique_a.GetId()] + self.failUnless(len(clique_list) == 3) + self.failUnless(clique_list[0] == clique_a) + self.failUnless(clique_list[1] == clique_b) + self.failUnless(clique_list[2] == clique_c) + + def testBestCliqueSortIsStable(self): + factory = clique.UberClique() + text = 'hello' + msg_no_description = tclib.Message(text=text) + msg_id_description_a = tclib.Message(text=text, description='ID: a') + msg_id_description_b = tclib.Message(text=text, description='ID: b') + msg_description_x = tclib.Message(text=text, description='x') + msg_description_y = tclib.Message(text=text, description='y') + clique_id = msg_no_description.GetId() + + # Insert in an order that tests all outcomes. + clique_no_description = factory.MakeClique(msg_no_description, + translateable=True) + self.failUnless(factory.BestClique(clique_id) == clique_no_description) + clique_id_description_b = factory.MakeClique(msg_id_description_b, + translateable=True) + self.failUnless(factory.BestClique(clique_id) == clique_id_description_b) + clique_id_description_a = factory.MakeClique(msg_id_description_a, + translateable=True) + self.failUnless(factory.BestClique(clique_id) == clique_id_description_a) + clique_description_y = factory.MakeClique(msg_description_y, + translateable=True) + self.failUnless(factory.BestClique(clique_id) == clique_description_y) + clique_description_x = factory.MakeClique(msg_description_x, + translateable=True) + self.failUnless(factory.BestClique(clique_id) == clique_description_x) + + +class DummyCustomType(clique.CustomType): + def Validate(self, message): + return message.GetRealContent().startswith('jjj') + def ValidateAndModify(self, lang, translation): + is_ok = self.Validate(translation) + self.ModifyEachTextPart(lang, translation) + def ModifyTextPart(self, lang, text): + return 'jjj%s' % text + + +if __name__ == '__main__': + unittest.main() diff --git a/tools/grit/grit/constants.py b/tools/grit/grit/constants.py new file mode 100644 index 0000000000..8229c94b09 --- /dev/null +++ b/tools/grit/grit/constants.py @@ -0,0 +1,23 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Constant definitions for GRIT. +''' + +from __future__ import print_function + +# This is the Icelandic noun meaning "grit" and is used to check that our +# input files are in the correct encoding. The middle character gets encoded +# as two bytes in UTF-8, so this is sufficient to detect incorrect encoding. +ENCODING_CHECK = u'm\u00f6l' + +# A special language, translations into which are always "TTTTTT". +CONSTANT_LANGUAGE = 'x_constant' + +FAKE_BIDI = 'fake-bidi' + +# Magic number added to the header of resources brotli compressed by grit. Used +# to easily identify resources as being brotli compressed. See +# ui/base/resource/resource_bundle.h for decompression usage. +BROTLI_CONST = b'\x1e\x9b' diff --git a/tools/grit/grit/exception.py b/tools/grit/grit/exception.py new file mode 100644 index 0000000000..2a363fb077 --- /dev/null +++ b/tools/grit/grit/exception.py @@ -0,0 +1,139 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Exception types for GRIT. +''' + +from __future__ import print_function + +class Base(Exception): + '''A base exception that uses the class's docstring in addition to any + user-provided message as the body of the Base. + ''' + def __init__(self, msg=''): + if len(msg): + if self.__doc__: + msg = self.__doc__ + ': ' + msg + else: + msg = self.__doc__ + super(Base, self).__init__(msg) + + +class Parsing(Base): + '''An error occurred parsing a GRD or XTB file.''' + pass + + +class UnknownElement(Parsing): + '''An unknown node type was encountered.''' + pass + + +class MissingElement(Parsing): + '''An expected element was missing.''' + pass + + +class UnexpectedChild(Parsing): + '''An unexpected child element was encountered (on a leaf node).''' + pass + + +class UnexpectedAttribute(Parsing): + '''The attribute was not expected''' + pass + + +class UnexpectedContent(Parsing): + '''This element should not have content''' + pass + +class MissingMandatoryAttribute(Parsing): + '''This element is missing a mandatory attribute''' + pass + + +class MutuallyExclusiveMandatoryAttribute(Parsing): + '''This element has 2 mutually exclusive mandatory attributes''' + pass + + +class DuplicateKey(Parsing): + '''A duplicate key attribute was found.''' + pass + + +class TooManyExamples(Parsing): + '''Only one element is allowed for each element.''' + pass + + +class FileNotFound(Parsing): + '''The resource file was not found.''' + pass + + +class InvalidMessage(Base): + '''The specified message failed validation.''' + pass + + +class InvalidTranslation(Base): + '''Attempt to add an invalid translation to a clique.''' + pass + + +class NoSuchTranslation(Base): + '''Requested translation not available''' + pass + + +class NotReady(Base): + '''Attempt to use an object before it is ready, or attempt to translate \ +an empty document.''' + pass + + +class MismatchingPlaceholders(Base): + '''Placeholders do not match.''' + pass + + +class InvalidPlaceholderName(Base): + '''Placeholder name can only contain A-Z, a-z, 0-9 and underscore.''' + pass + + +class BlockTagInTranslateableChunk(Base): + '''A block tag was encountered where it wasn't expected.''' + pass + + +class SectionNotFound(Base): + '''The section you requested was not found in the RC file. Make \ +sure the section ID is correct (matches the section's ID in the RC file). \ +Also note that you may need to specify the RC file's encoding (using the \ +encoding="" attribute) if it is not in the default Windows-1252 encoding. \ +''' + pass + + +class IdRangeOverlap(Base): + '''ID range overlap.''' + pass + + +class ReservedHeaderCollision(Base): + '''Resource included with first 3 bytes matching reserved header.''' + pass + + +class PlaceholderNotInsidePhNode(Base): + '''Placeholder formatters should be inside element.''' + pass + + +class InvalidCharactersInsidePhNode(Base): + '''Invalid characters found inside element.''' + pass diff --git a/tools/grit/grit/extern/BogoFP.py b/tools/grit/grit/extern/BogoFP.py new file mode 100644 index 0000000000..fc90145833 --- /dev/null +++ b/tools/grit/grit/extern/BogoFP.py @@ -0,0 +1,22 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +"""Bogus fingerprint implementation, do not use for production, +provided only as an example. + +Usage: + grit.py -h grit.extern.BogoFP xmb /tmp/foo +""" + +from __future__ import print_function + +import grit.extern.FP + + +def UnsignedFingerPrint(str, encoding='utf-8'): + """Generate a fingerprint not intended for production from str (it + reduces the precision of the production fingerprint by one bit). + """ + return (0xFFFFF7FFFFFFFFFF & + grit.extern.FP._UnsignedFingerPrintImpl(str, encoding)) diff --git a/tools/grit/grit/extern/FP.py b/tools/grit/grit/extern/FP.py new file mode 100644 index 0000000000..f4ec4d943f --- /dev/null +++ b/tools/grit/grit/extern/FP.py @@ -0,0 +1,72 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +from __future__ import print_function + +try: + import hashlib + _new_md5 = hashlib.md5 +except ImportError: + import md5 + _new_md5 = md5.new + + +"""64-bit fingerprint support for strings. + +Usage: + from extern import FP + print('Fingerprint is %ld' % FP.FingerPrint('Hello world!')) +""" + + +def _UnsignedFingerPrintImpl(str, encoding='utf-8'): + """Generate a 64-bit fingerprint by taking the first half of the md5 + of the string. + """ + hex128 = _new_md5(str.encode(encoding)).hexdigest() + int64 = int(hex128[:16], 16) + return int64 + + +def UnsignedFingerPrint(str, encoding='utf-8'): + """Generate a 64-bit fingerprint. + + The default implementation uses _UnsignedFingerPrintImpl, which + takes the first half of the md5 of the string, but the + implementation may be switched using SetUnsignedFingerPrintImpl. + """ + return _UnsignedFingerPrintImpl(str, encoding) + + +def FingerPrint(str, encoding='utf-8'): + fp = UnsignedFingerPrint(str, encoding=encoding) + # interpret fingerprint as signed longs + if fp & 0x8000000000000000: + fp = -((~fp & 0xFFFFFFFFFFFFFFFF) + 1) + return fp + + +def UseUnsignedFingerPrintFromModule(module_name): + """Imports module_name and replaces UnsignedFingerPrint in the + current module with the function of the same name from the imported + module. + + Returns the function object previously known as + grit.extern.FP.UnsignedFingerPrint. + """ + hash_module = __import__(module_name, fromlist=[module_name]) + return SetUnsignedFingerPrint(hash_module.UnsignedFingerPrint) + + +def SetUnsignedFingerPrint(function_object): + """Sets grit.extern.FP.UnsignedFingerPrint to point to + function_object. + + Returns the function object previously known as + grit.extern.FP.UnsignedFingerPrint. + """ + global UnsignedFingerPrint + original_function_object = UnsignedFingerPrint + UnsignedFingerPrint = function_object + return original_function_object diff --git a/tools/grit/grit/extern/__init__.py b/tools/grit/grit/extern/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tools/grit/grit/extern/tclib.py b/tools/grit/grit/extern/tclib.py new file mode 100644 index 0000000000..9952a87c11 --- /dev/null +++ b/tools/grit/grit/extern/tclib.py @@ -0,0 +1,503 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +# The tclib module contains tools for aggregating, verifying, and storing +# messages destined for the Translation Console, as well as for reading +# translations back and outputting them in some desired format. +# +# This has been stripped down to include only the functionality needed by grit +# for creating Windows .rc and .h files. These are the only parts needed by +# the Chrome build process. + +from __future__ import print_function + +from grit.extern import FP + +# This module assumes that within a bundle no two messages can have the +# same id unless they're identical. + +# The basic classes defined here for external use are Message and Translation, +# where the former is used for English messages and the latter for +# translations. These classes have a lot of common functionality, as expressed +# by the common parent class BaseMessage. Perhaps the most important +# distinction is that translated text is stored in UTF-8, whereas original text +# is stored in whatever encoding the client uses (presumably Latin-1). + +# -------------------- +# The public interface +# -------------------- + +# Generate message id from message text and meaning string (optional), +# both in utf-8 encoding +# +def GenerateMessageId(message, meaning=''): + fp = FP.FingerPrint(message) + if meaning: + # combine the fingerprints of message and meaning + fp2 = FP.FingerPrint(meaning) + if fp < 0: + fp = fp2 + (fp << 1) + 1 + else: + fp = fp2 + (fp << 1) + # To avoid negative ids we strip the high-order bit + return str(fp & 0x7fffffffffffffff) + +# ------------------------------------------------------------------------- +# The MessageTranslationError class is used to signal tclib-specific errors. + + +class MessageTranslationError(Exception): + + def __init__(self, args = ''): + self.args = args + + +# ----------------------------------------------------------- +# The Placeholder class represents a placeholder in a message. + +class Placeholder(object): + # String representation + def __str__(self): + return '%s, "%s", "%s"' % \ + (self.__presentation, self.__original, self.__example) + + # Getters + def GetOriginal(self): + return self.__original + + def GetPresentation(self): + return self.__presentation + + def GetExample(self): + return self.__example + + def __eq__(self, other): + return self.EqualTo(other, strict=1, ignore_trailing_spaces=0) + + # Equality test + # + # ignore_trailing_spaces: TC is using varchar to store the + # phrwr fields, as a result of that, the trailing spaces + # are removed by MySQL when the strings are stored into TC:-( + # ignore_trailing_spaces parameter is used to ignore + # trailing spaces during equivalence comparison. + # + def EqualTo(self, other, strict = 1, ignore_trailing_spaces = 1): + if type(other) is not Placeholder: + return 0 + if StringEquals(self.__presentation, other.__presentation, + ignore_trailing_spaces): + if not strict or (StringEquals(self.__original, other.__original, + ignore_trailing_spaces) and + StringEquals(self.__example, other.__example, + ignore_trailing_spaces)): + return 1 + return 0 + + +# ----------------------------------------------------------------- +# BaseMessage is the common parent class of Message and Translation. +# It is not meant for direct use. + +class BaseMessage(object): + # Three types of message construction is supported. If the message text is a + # simple string with no dynamic content, you can pass it to the constructor + # as the "text" parameter. Otherwise, you can omit "text" and assemble the + # message step by step using AppendText() and AppendPlaceholder(). Or, as an + # alternative, you can give the constructor the "presentable" version of the + # message and a list of placeholders; it will then parse the presentation and + # build the message accordingly. For example: + # Message(text = "There are NUM_BUGS bugs in your code", + # placeholders = [Placeholder("NUM_BUGS", "%d", "33")], + # description = "Bla bla bla") + def __eq__(self, other): + # "source encoding" is nonsense, so ignore it + return _ObjectEquals(self, other, ['_BaseMessage__source_encoding']) + + def GetName(self): + return self.__name + + def GetSourceEncoding(self): + return self.__source_encoding + + # Append a placeholder to the message + def AppendPlaceholder(self, placeholder): + if not isinstance(placeholder, Placeholder): + raise MessageTranslationError("Invalid message placeholder %s in " + "message %s" % (placeholder, self.GetId())) + # Are there other placeholders with the same presentation? + # If so, they need to be the same. + for other in self.GetPlaceholders(): + if placeholder.GetPresentation() == other.GetPresentation(): + if not placeholder.EqualTo(other): + raise MessageTranslationError( + "Conflicting declarations of %s within message" % + placeholder.GetPresentation()) + # update placeholder list + dup = 0 + for item in self.__content: + if isinstance(item, Placeholder) and placeholder.EqualTo(item): + dup = 1 + break + if not dup: + self.__placeholders.append(placeholder) + + # update content + self.__content.append(placeholder) + + # Strips leading and trailing whitespace, and returns a tuple + # containing the leading and trailing space that was removed. + def Strip(self): + leading = trailing = '' + if len(self.__content) > 0: + s0 = self.__content[0] + if not isinstance(s0, Placeholder): + s = s0.lstrip() + leading = s0[:-len(s)] + self.__content[0] = s + + s0 = self.__content[-1] + if not isinstance(s0, Placeholder): + s = s0.rstrip() + trailing = s0[len(s):] + self.__content[-1] = s + return leading, trailing + + # Return the id of this message + def GetId(self): + if self.__id is None: + return self.GenerateId() + return self.__id + + # Set the id of this message + def SetId(self, id): + if id is None: + self.__id = None + else: + self.__id = str(id) # Treat numerical ids as strings + + # Return content of this message as a list (internal use only) + def GetContent(self): + return self.__content + + # Return a human-readable version of this message + def GetPresentableContent(self): + presentable_content = "" + for item in self.__content: + if isinstance(item, Placeholder): + presentable_content += item.GetPresentation() + else: + presentable_content += item + + return presentable_content + + # Return a fragment of a message in escaped format + def EscapeFragment(self, fragment): + return fragment.replace('%', '%%') + + # Return the "original" version of this message, doing %-escaping + # properly. If source_msg is specified, the placeholder original + # information inside source_msg will be used instead. + def GetOriginalContent(self, source_msg = None): + original_content = "" + for item in self.__content: + if isinstance(item, Placeholder): + if source_msg: + ph = source_msg.GetPlaceholder(item.GetPresentation()) + if not ph: + raise MessageTranslationError( + "Placeholder %s doesn't exist in message: %s" % + (item.GetPresentation(), source_msg)) + original_content += ph.GetOriginal() + else: + original_content += item.GetOriginal() + else: + original_content += self.EscapeFragment(item) + return original_content + + # Return the example of this message + def GetExampleContent(self): + example_content = "" + for item in self.__content: + if isinstance(item, Placeholder): + example_content += item.GetExample() + else: + example_content += item + return example_content + + # Return a list of all unique placeholders in this message + def GetPlaceholders(self): + return self.__placeholders + + # Return a placeholder in this message + def GetPlaceholder(self, presentation): + for item in self.__content: + if (isinstance(item, Placeholder) and + item.GetPresentation() == presentation): + return item + return None + + # Return this message's description + def GetDescription(self): + return self.__description + + # Add a message source + def AddSource(self, source): + self.__sources.append(source) + + # Return this message's sources as a list + def GetSources(self): + return self.__sources + + # Return this message's sources as a string + def GetSourcesAsText(self, delimiter = "; "): + return delimiter.join(self.__sources) + + # Set the obsolete flag for a message (internal use only) + def SetObsolete(self): + self.__obsolete = 1 + + # Get the obsolete flag for a message (internal use only) + def IsObsolete(self): + return self.__obsolete + + # Get the sequence number (0 by default) + def GetSequenceNumber(self): + return self.__sequence_number + + # Set the sequence number + def SetSequenceNumber(self, number): + self.__sequence_number = number + + # Increment instance counter + def AddInstance(self): + self.__num_instances += 1 + + # Return instance count + def GetNumInstances(self): + return self.__num_instances + + def GetErrors(self, from_tc=0): + """ + Returns a description of the problem if the message is not + syntactically valid, or None if everything is fine. + + Args: + from_tc: indicates whether this message came from the TC. We let + the TC get away with some things we normally wouldn't allow for + historical reasons. + """ + # check that placeholders are unambiguous + pos = 0 + phs = {} + for item in self.__content: + if isinstance(item, Placeholder): + phs[pos] = item + pos += len(item.GetPresentation()) + else: + pos += len(item) + presentation = self.GetPresentableContent() + for ph in self.GetPlaceholders(): + for pos in FindOverlapping(presentation, ph.GetPresentation()): + # message contains the same text as a placeholder presentation + other_ph = phs.get(pos) + if ((not other_ph + and not IsSubstringInPlaceholder(pos, len(ph.GetPresentation()), phs)) + or + (other_ph and len(other_ph.GetPresentation()) < len(ph.GetPresentation()))): + return "message contains placeholder name '%s':\n%s" % ( + ph.GetPresentation(), presentation) + return None + + + def __CopyTo(self, other): + """ + Returns a copy of this BaseMessage. + """ + assert isinstance(other, self.__class__) or isinstance(self, other.__class__) + other.__source_encoding = self.__source_encoding + other.__content = self.__content[:] + other.__description = self.__description + other.__id = self.__id + other.__num_instances = self.__num_instances + other.__obsolete = self.__obsolete + other.__name = self.__name + other.__placeholders = self.__placeholders[:] + other.__sequence_number = self.__sequence_number + other.__sources = self.__sources[:] + + return other + + def HasText(self): + """Returns true iff this message has anything other than placeholders.""" + for item in self.__content: + if not isinstance(item, Placeholder): + return True + return False + +# -------------------------------------------------------- +# The Message class represents original (English) messages + +class Message(BaseMessage): + # See BaseMessage constructor + def __init__(self, source_encoding, text=None, id=None, + description=None, meaning="", placeholders=None, + source=None, sequence_number=0, clone_from=None, + time_created=0, name=None, is_hidden = 0): + + if clone_from is not None: + BaseMessage.__init__(self, None, clone_from=clone_from) + self.__meaning = clone_from.__meaning + self.__time_created = clone_from.__time_created + self.__is_hidden = clone_from.__is_hidden + return + + BaseMessage.__init__(self, source_encoding, text, id, description, + placeholders, source, sequence_number, + name=name) + self.__meaning = meaning + self.__time_created = time_created + self.SetIsHidden(is_hidden) + + # String representation + def __str__(self): + s = 'source: %s, id: %s, content: "%s", meaning: "%s", ' \ + 'description: "%s"' % \ + (self.GetSourcesAsText(), self.GetId(), self.GetPresentableContent(), + self.__meaning, self.GetDescription()) + if self.GetName() is not None: + s += ', name: "%s"' % self.GetName() + placeholders = self.GetPlaceholders() + for i in range(len(placeholders)): + s += ", placeholder[%d]: %s" % (i, placeholders[i]) + return s + + # Strips leading and trailing whitespace, and returns a tuple + # containing the leading and trailing space that was removed. + def Strip(self): + leading = trailing = '' + content = self.GetContent() + if len(content) > 0: + s0 = content[0] + if not isinstance(s0, Placeholder): + s = s0.lstrip() + leading = s0[:-len(s)] + content[0] = s + + s0 = content[-1] + if not isinstance(s0, Placeholder): + s = s0.rstrip() + trailing = s0[len(s):] + content[-1] = s + return leading, trailing + + # Generate an id by hashing message content + def GenerateId(self): + self.SetId(GenerateMessageId(self.GetPresentableContent(), + self.__meaning)) + return self.GetId() + + def GetMeaning(self): + return self.__meaning + + def GetTimeCreated(self): + return self.__time_created + + # Equality operator + def EqualTo(self, other, strict = 1): + # Check id, meaning, content + if self.GetId() != other.GetId(): + return 0 + if self.__meaning != other.__meaning: + return 0 + if self.GetPresentableContent() != other.GetPresentableContent(): + return 0 + # Check descriptions if comparison is strict + if (strict and + self.GetDescription() is not None and + other.GetDescription() is not None and + self.GetDescription() != other.GetDescription()): + return 0 + # Check placeholders + ph1 = self.GetPlaceholders() + ph2 = other.GetPlaceholders() + if len(ph1) != len(ph2): + return 0 + for i in range(len(ph1)): + if not ph1[i].EqualTo(ph2[i], strict): + return 0 + + return 1 + + def Copy(self): + """ + Returns a copy of this Message. + """ + assert isinstance(self, Message) + return Message(None, clone_from=self) + + def SetIsHidden(self, is_hidden): + """Sets whether this message should be hidden. + + Args: + is_hidden : 0 or 1 - if the message should be hidden, 0 otherwise + """ + if is_hidden not in [0, 1]: + raise MessageTranslationError("is_hidden must be 0 or 1, got %s") + self.__is_hidden = is_hidden + + def IsHidden(self): + """Returns 1 if this message is hidden, and 0 otherwise.""" + return self.__is_hidden + +# ---------------------------------------------------- +# The Translation class represents translated messages + +class Translation(BaseMessage): + # See BaseMessage constructor + def __init__(self, source_encoding, text=None, id=None, + description=None, placeholders=None, source=None, + sequence_number=0, clone_from=None, ignore_ph_errors=0, + name=None): + if clone_from is not None: + BaseMessage.__init__(self, None, clone_from=clone_from) + return + + BaseMessage.__init__(self, source_encoding, text, id, description, + placeholders, source, sequence_number, + ignore_ph_errors=ignore_ph_errors, name=name) + + # String representation + def __str__(self): + s = 'source: %s, id: %s, content: "%s", description: "%s"' % \ + (self.GetSourcesAsText(), self.GetId(), self.GetPresentableContent(), + self.GetDescription()); + placeholders = self.GetPlaceholders() + for i in range(len(placeholders)): + s += ", placeholder[%d]: %s" % (i, placeholders[i]) + return s + + # Equality operator + def EqualTo(self, other, strict=1): + # Check id and content + if self.GetId() != other.GetId(): + return 0 + if self.GetPresentableContent() != other.GetPresentableContent(): + return 0 + # Check placeholders + ph1 = self.GetPlaceholders() + ph2 = other.GetPlaceholders() + if len(ph1) != len(ph2): + return 0 + for i in range(len(ph1)): + if not ph1[i].EqualTo(ph2[i], strict): + return 0 + + return 1 + + def Copy(self): + """ + Returns a copy of this Translation. + """ + return Translation(None, clone_from=self) diff --git a/tools/grit/grit/format/__init__.py b/tools/grit/grit/format/__init__.py new file mode 100644 index 0000000000..55d56b8cfd --- /dev/null +++ b/tools/grit/grit/format/__init__.py @@ -0,0 +1,8 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Module grit.format +''' + +pass diff --git a/tools/grit/grit/format/android_xml.py b/tools/grit/grit/format/android_xml.py new file mode 100644 index 0000000000..7eb288891f --- /dev/null +++ b/tools/grit/grit/format/android_xml.py @@ -0,0 +1,212 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +"""Produces localized strings.xml files for Android. + +In cases where an "android" type output file is requested in a grd, the classes +in android_xml will process the messages and translations to produce a valid +strings.xml that is properly localized with the specified language. + +For example if the following output tag were to be included in a grd file + + ... + + ... + + +for a grd file with the following messages: + + Hello + world + +and there existed an appropriate xtb file containing the Spanish translations, +then the output would be: + + + + "Hola" + "mundo" + + +which would be written to values-es/strings.xml and usable by the Android +resource framework. + +Advanced usage +-------------- + +To process only certain messages in a grd file, tag each desired message by +adding "android_java" to formatter_data. Then set the environmental variable +ANDROID_JAVA_TAGGED_ONLY to "true" when building the grd file. For example: + + Hello + +To generate Android plurals (aka "quantity strings"), use the ICU plural syntax +in the grd file. This will automatically be transformed into a element +in the output xml file. For example: + + + {NUM_CATS, plural, + =1 {1 cat} + other {# cats}} + + + will produce + + + 1 Katze + %d Katzen + +""" + +from __future__ import print_function + +import os +import re +import xml.sax.saxutils + +from grit import lazy_re +from grit.node import message + + +# When this environmental variable has value "true", only tagged messages will +# be outputted. +_TAGGED_ONLY_ENV_VAR = 'ANDROID_JAVA_TAGGED_ONLY' +_TAGGED_ONLY_DEFAULT = False + +# In tagged-only mode, only messages with this tag will be ouputted. +_EMIT_TAG = 'android_java' + +_NAME_PATTERN = lazy_re.compile(r'IDS_(?P[A-Z0-9_]+)\Z') + +# Most strings are output as a element. Note the double quotes +# around the value to preserve whitespace. +_STRING_TEMPLATE = u'"%s"\n' + +# Some strings are output as a element. +_PLURALS_TEMPLATE = '\n%s\n' +_PLURALS_ITEM_TEMPLATE = ' %s\n' + +# Matches e.g. "{HELLO, plural, HOW ARE YOU DOING}", while capturing +# "HOW ARE YOU DOING" in . +_PLURALS_PATTERN = lazy_re.compile(r'\{[A-Z_]+,\s*plural,(?P.*)\}$', + flags=re.S) + +# Repeatedly matched against the capture in _PLURALS_PATTERN, +# to match "{}". +_PLURALS_ITEM_PATTERN = lazy_re.compile(r'(?P\S+?)\s*' + r'\{(?P.*?)\}') +_PLURALS_QUANTITY_MAP = { + '=0': 'zero', + 'zero': 'zero', + '=1': 'one', + 'one': 'one', + '=2': 'two', + 'two': 'two', + 'few': 'few', + 'many': 'many', + 'other': 'other', +} + + +def Format(root, lang='en', output_dir='.'): + yield ('\n' + '\n') + + tagged_only = _TAGGED_ONLY_DEFAULT + if _TAGGED_ONLY_ENV_VAR in os.environ: + tagged_only = os.environ[_TAGGED_ONLY_ENV_VAR].lower() + if tagged_only == 'true': + tagged_only = True + elif tagged_only == 'false': + tagged_only = False + else: + raise Exception('env variable ANDROID_JAVA_TAGGED_ONLY must have value ' + 'true or false. Invalid value: %s' % tagged_only) + + for item in root.ActiveDescendants(): + with item: + if ShouldOutputNode(item, tagged_only): + yield _FormatMessage(item, lang) + + yield '\n' + + +def ShouldOutputNode(node, tagged_only): + """Returns true if node should be outputted. + + Args: + node: a Node from the grd dom + tagged_only: true, if only tagged messages should be outputted + """ + return (isinstance(node, message.MessageNode) and + (not tagged_only or _EMIT_TAG in node.formatter_data)) + + +def _FormatPluralMessage(message): + """Compiles ICU plural syntax to the body of an Android element. + + 1. In a .grd file, we can write a plural string like this: + + + {NUM_THINGS, plural, + =1 {1 thing} + other {# things}} + + + 2. The Android equivalent looks like this: + + + 1 thing + %d things + + + This method takes the body of (1) and converts it to the body of (2). + + If the message is *not* a plural string, this function returns `None`. + If the message includes quantities without an equivalent format in Android, + it raises an exception. + """ + ret = {} + plural_match = _PLURALS_PATTERN.match(message) + if not plural_match: + return None + body_in = plural_match.group('items').strip() + lines = [] + quantities_so_far = set() + for item_match in _PLURALS_ITEM_PATTERN.finditer(body_in): + quantity_in = item_match.group('quantity') + quantity_out = _PLURALS_QUANTITY_MAP.get(quantity_in) + value_in = item_match.group('value') + value_out = '"' + value_in.replace('#', '%d') + '"' + if quantity_out: + # only one line per quantity out (https://crbug.com/787488) + if quantity_out not in quantities_so_far: + quantities_so_far.add(quantity_out) + lines.append(_PLURALS_ITEM_TEMPLATE % (quantity_out, value_out)) + else: + raise Exception('Unsupported plural quantity for android ' + 'strings.xml: %s' % quantity_in) + return ''.join(lines) + + +def _FormatMessage(item, lang): + """Writes out a single string as a element.""" + + mangled_name = item.GetTextualIds()[0] + match = _NAME_PATTERN.match(mangled_name) + if not match: + raise Exception('Unexpected resource name: %s' % mangled_name) + name = match.group('name').lower() + + value = item.ws_at_start + item.Translate(lang) + item.ws_at_end + # Replace < > & with < > & to ensure we generate valid XML and + # replace ' " with \' \" to conform to Android's string formatting rules. + value = xml.sax.saxutils.escape(value, {"'": "\\'", '"': '\\"'}) + + plurals = _FormatPluralMessage(value) + if plurals: + return _PLURALS_TEMPLATE % (name, plurals) + else: + return _STRING_TEMPLATE % (name, value) diff --git a/tools/grit/grit/format/android_xml_unittest.py b/tools/grit/grit/format/android_xml_unittest.py new file mode 100644 index 0000000000..d9f476fddf --- /dev/null +++ b/tools/grit/grit/format/android_xml_unittest.py @@ -0,0 +1,149 @@ +#!/usr/bin/env python +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +"""Unittest for android_xml.py.""" + +from __future__ import print_function + +import os +import sys +import unittest + +if __name__ == '__main__': + sys.path.append(os.path.join(os.path.dirname(__file__), '../..')) + +from six import StringIO + +from grit import util +from grit.format import android_xml +from grit.node import message +from grit.tool import build + + +class AndroidXmlUnittest(unittest.TestCase): + + def testMessages(self): + root = util.ParseGrdForUnittest(r""" + + + Martha + + sat and wondered + + out loud, "Why don't I build a flying car?" + + + She gathered +wood, charcoal, and +a sledge hammer. + + + ''' How old fashioned -- she thought. ''' + + + I'll buy a %d200 nm laser at %sthe grocery store. + + + {NUM_THINGS, plural, + =1 {Maybe I'll get one laser.} + other {Maybe I'll get # lasers.}} + + + {NUM_MISSISSIPPIS, plural, + =1{OneMississippi}other{ManyMississippis}} + + + """) + + buf = StringIO() + build.RcBuilder.ProcessNode(root, DummyOutput('android', 'en'), buf) + output = buf.getvalue() + expected = r""" + + +"Martha" +"sat and wondered" +"out loud, \"Why don\'t I build a flying car?\"" +"She gathered +wood, charcoal, and +a sledge hammer." +" How old fashioned -- she thought. " +"I\'ll buy a %d nm laser at %s." + + "Maybe I\'ll get one laser." + "Maybe I\'ll get %d lasers." + + + "OneMississippi" + "ManyMississippis" + + +""" + self.assertEqual(output.strip(), expected.strip()) + + + def testConflictingPlurals(self): + root = util.ParseGrdForUnittest(r""" + + + {NUM_THINGS, plural, + =1 {Maybe I'll get one laser.} + one {Maybe I'll get one laser.} + other {Maybe I'll get # lasers.}} + + + """) + + buf = StringIO() + build.RcBuilder.ProcessNode(root, DummyOutput('android', 'en'), buf) + output = buf.getvalue() + expected = r""" + + + + "Maybe I\'ll get one laser." + "Maybe I\'ll get %d lasers." + + +""" + self.assertEqual(output.strip(), expected.strip()) + + + def testTaggedOnly(self): + root = util.ParseGrdForUnittest(r""" + + + Hello + + + world + + + """) + + msg_hello, msg_world = root.GetChildrenOfType(message.MessageNode) + self.assertTrue(android_xml.ShouldOutputNode(msg_hello, tagged_only=True)) + self.assertFalse(android_xml.ShouldOutputNode(msg_world, tagged_only=True)) + self.assertTrue(android_xml.ShouldOutputNode(msg_hello, tagged_only=False)) + self.assertTrue(android_xml.ShouldOutputNode(msg_world, tagged_only=False)) + + +class DummyOutput(object): + + def __init__(self, type, language): + self.type = type + self.language = language + + def GetType(self): + return self.type + + def GetLanguage(self): + return self.language + + def GetOutputFilename(self): + return 'hello.gif' + +if __name__ == '__main__': + unittest.main() diff --git a/tools/grit/grit/format/c_format.py b/tools/grit/grit/format/c_format.py new file mode 100644 index 0000000000..16809a9f70 --- /dev/null +++ b/tools/grit/grit/format/c_format.py @@ -0,0 +1,95 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +"""Formats as a .C file for compilation. +""" + +from __future__ import print_function + +import codecs +import os +import re + +import six + +from grit import util + + +def _FormatHeader(root, output_dir): + """Returns the required preamble for C files.""" + # Find the location of the resource header file, so that we can include + # it. + resource_header = 'resource.h' # fall back to this + for output in root.GetOutputFiles(): + if output.attrs['type'] == 'rc_header': + resource_header = os.path.abspath(output.GetOutputFilename()) + resource_header = util.MakeRelativePath(output_dir, resource_header) + return """// This file is automatically generated by GRIT. Do not edit. + +#include "%s" + +// All strings are UTF-8 +""" % (resource_header) +# end _FormatHeader() function + + +def Format(root, lang='en', output_dir='.'): + """Outputs a C switch statement representing the string table.""" + from grit.node import message + assert isinstance(lang, six.string_types) + + yield _FormatHeader(root, output_dir) + + yield 'const char* GetString(int id) {\n switch (id) {' + + for item in root.ActiveDescendants(): + with item: + if isinstance(item, message.MessageNode): + yield _FormatMessage(item, lang) + + yield '\n default:\n return 0;\n }\n}\n' + + +def _HexToOct(match): + "Return the octal form of the hex numbers" + hex = match.group("hex") + result = "" + while len(hex): + next_num = int(hex[2:4], 16) + result += "\\" + '%03o' % next_num + hex = hex[4:] + return match.group("escaped_backslashes") + result + + +def _FormatMessage(item, lang): + """Format a single element.""" + + message = item.ws_at_start + item.Translate(lang) + item.ws_at_end + # Output message with non-ascii chars escaped as octal numbers C's grammar + # allows escaped hexadecimal numbers to be infinite, but octal is always of + # the form \OOO. Python 3 doesn't support string-escape, so we have to jump + # through some hoops here via codecs.escape_encode. + # This basically does: + # - message - the starting string + # - message.encode(...) - convert to bytes + # - codecs.escape_encode(...) - convert non-ASCII bytes to \x## escapes + # - (...).decode() - convert bytes back to a string + message = codecs.escape_encode(message.encode('utf-8'))[0].decode('utf-8') + # an escaped char is (\xHH)+ but only if the initial + # backslash is not escaped. + not_a_backslash = r"(^|[^\\])" # beginning of line or a non-backslash char + escaped_backslashes = not_a_backslash + r"(\\\\)*" + hex_digits = r"((\\x)[0-9a-f]{2})+" + two_digit_hex_num = re.compile( + r"(?P%s)(?P%s)" + % (escaped_backslashes, hex_digits)) + message = two_digit_hex_num.sub(_HexToOct, message) + # unescape \ (convert \\ back to \) + message = message.replace('\\\\', '\\') + message = message.replace('"', '\\"') + message = util.LINEBREAKS.sub(r'\\n', message) + + name_attr = item.GetTextualIds()[0] + + return '\n case %s:\n return "%s";' % (name_attr, message) diff --git a/tools/grit/grit/format/c_format_unittest.py b/tools/grit/grit/format/c_format_unittest.py new file mode 100644 index 0000000000..380120c42f --- /dev/null +++ b/tools/grit/grit/format/c_format_unittest.py @@ -0,0 +1,81 @@ +#!/usr/bin/env python +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +"""Unittest for c_format.py. +""" + +from __future__ import print_function + +import os +import sys +if __name__ == '__main__': + sys.path.append(os.path.join(os.path.dirname(__file__), '../..')) + +import unittest + +from six import StringIO + +from grit import util +from grit.tool import build + + +class CFormatUnittest(unittest.TestCase): + + def testMessages(self): + root = util.ParseGrdForUnittest(u""" + + Do you want to play questions? + + "What's in a name, %sBrandon?" + + + Was that rhetoric? +No. +Statement. Two all. Game point. + + + \u00f5\\xc2\\xa4\\\u00a4\\\\xc3\\xb5\u4924 + + + """) + + buf = StringIO() + build.RcBuilder.ProcessNode(root, DummyOutput('c_format', 'en'), buf) + output = util.StripBlankLinesAndComments(buf.getvalue()) + self.assertEqual(u"""\ +#include "resource.h" +const char* GetString(int id) { + switch (id) { + case IDS_QUESTIONS: + return "Do you want to play questions?"; + case IDS_QUOTES: + return "\\"What\\'s in a name, %s?\\""; + case IDS_LINE_BREAKS: + return "Was that rhetoric?\\nNo.\\nStatement. Two all. Game point."; + case IDS_NON_ASCII: + return "\\303\\265\\xc2\\xa4\\\\302\\244\\\\xc3\\xb5\\344\\244\\244"; + default: + return 0; + } +}""", output) + + +class DummyOutput(object): + + def __init__(self, type, language): + self.type = type + self.language = language + + def GetType(self): + return self.type + + def GetLanguage(self): + return self.language + + def GetOutputFilename(self): + return 'hello.gif' + +if __name__ == '__main__': + unittest.main() diff --git a/tools/grit/grit/format/chrome_messages_json.py b/tools/grit/grit/format/chrome_messages_json.py new file mode 100644 index 0000000000..88ec1d914b --- /dev/null +++ b/tools/grit/grit/format/chrome_messages_json.py @@ -0,0 +1,59 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +"""Formats as a .json file that can be used to localize Google Chrome +extensions.""" + +from __future__ import print_function + +from json import JSONEncoder + +from grit import constants +from grit.node import message + +def Format(root, lang='en', output_dir='.'): + """Format the messages as JSON.""" + yield '{' + + encoder = JSONEncoder(ensure_ascii=False) + format = '"%s":{"message":%s%s}' + placeholder_format = '"%i":{"content":"$%i"}' + first = True + for child in root.ActiveDescendants(): + if isinstance(child, message.MessageNode): + id = child.attrs['name'] + if id.startswith('IDR_') or id.startswith('IDS_'): + id = id[4:] + + translation_missing = child.GetCliques()[0].clique.get(lang) is None; + if (child.ShouldFallbackToEnglish() and translation_missing and + lang != constants.FAKE_BIDI): + # Skip the string if it's not translated. Chrome will fallback + # to English automatically. + continue + + loc_message = encoder.encode(child.ws_at_start + child.Translate(lang) + + child.ws_at_end) + + # Replace $n place-holders with $n$ and add an appropriate "placeholders" + # entry. Note that chrome.i18n.getMessage only supports 9 placeholders: + # https://developer.chrome.com/extensions/i18n#method-getMessage + placeholders = '' + for i in range(1, 10): + if loc_message.find('$%d' % i) == -1: + break + loc_message = loc_message.replace('$%d' % i, '$%d$' % i) + if placeholders: + placeholders += ',' + placeholders += placeholder_format % (i, i) + + if not first: + yield ',' + first = False + + if placeholders: + placeholders = ',"placeholders":{%s}' % placeholders + yield format % (id, loc_message, placeholders) + + yield '}' diff --git a/tools/grit/grit/format/chrome_messages_json_unittest.py b/tools/grit/grit/format/chrome_messages_json_unittest.py new file mode 100644 index 0000000000..a54e6bdc1c --- /dev/null +++ b/tools/grit/grit/format/chrome_messages_json_unittest.py @@ -0,0 +1,190 @@ +#!/usr/bin/env python +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +"""Unittest for chrome_messages_json.py. +""" + +from __future__ import print_function + +import json +import os +import sys +if __name__ == '__main__': + sys.path.append(os.path.join(os.path.dirname(__file__), '../..')) + +import unittest + +from six import StringIO + +from grit import grd_reader +from grit import util +from grit.tool import build + +class ChromeMessagesJsonFormatUnittest(unittest.TestCase): + + # The default unittest diff limit is too low for our unittests. + # Allow the framework to show the full diff output all the time. + maxDiff = None + + def testMessages(self): + root = util.ParseGrdForUnittest(u""" + + + Simple message. + + + element\u2019s \u201c%sname\u201d attribute + + + %1$d1 error, %2$d1 warning + + + $1atest$2b + + + ''' (%d2) + + + (%d2) ''' + + + ''' (%d2) ''' + + + A "double quoted" message. + + + \\ + + + """) + + buf = StringIO() + build.RcBuilder.ProcessNode(root, DummyOutput('chrome_messages_json', 'en'), + buf) + output = buf.getvalue() + test = u""" +{ + "SIMPLE_MESSAGE": { + "message": "Simple message." + }, + "QUOTES": { + "message": "element\u2019s \u201c%s\u201d attribute" + }, + "PLACEHOLDERS": { + "message": "%1$d error, %2$d warning" + }, + "PLACEHOLDERS_SUBSTITUTED_BY_GETMESSAGE": { + "message": "$1$test$2$", + "placeholders": { + "1": { + "content": "$1" + }, + "2": { + "content": "$2" + } + } + }, + "STARTS_WITH_SPACE": { + "message": " (%d)" + }, + "ENDS_WITH_SPACE": { + "message": "(%d) " + }, + "SPACE_AT_BOTH_ENDS": { + "message": " (%d) " + }, + "DOUBLE_QUOTES": { + "message": "A \\"double quoted\\" message." + }, + "BACKSLASH": { + "message": "\\\\" + } +} +""" + self.assertEqual(json.loads(test), json.loads(output)) + + def testTranslations(self): + root = util.ParseGrdForUnittest(""" + + Hello! + Hello %s + Joi + + """) + + buf = StringIO() + build.RcBuilder.ProcessNode(root, DummyOutput('chrome_messages_json', 'fr'), + buf) + output = buf.getvalue() + test = u""" +{ + "ID_HELLO": { + "message": "H\u00e9P\u00e9ll\u00f4P\u00f4!" + }, + "ID_HELLO_USER": { + "message": "H\u00e9P\u00e9ll\u00f4P\u00f4 %s" + } +} +""" + self.assertEqual(json.loads(test), json.loads(output)) + + def testSkipMissingTranslations(self): + grd = """ + + + + + + Hello not translated + + +""" + root = grd_reader.Parse(StringIO(grd), dir=".") + + buf = StringIO() + build.RcBuilder.ProcessNode(root, DummyOutput('chrome_messages_json', 'fr'), + buf) + output = buf.getvalue() + test = u'{}' + self.assertEqual(test, output) + + def testVerifyMinification(self): + root = util.ParseGrdForUnittest(u""" + + + $1atest$2b + + + """) + + buf = StringIO() + build.RcBuilder.ProcessNode(root, DummyOutput('chrome_messages_json', 'en'), + buf) + output = buf.getvalue() + test = (u'{"IDS":{"message":"$1$test$2$","placeholders":' + u'{"1":{"content":"$1"},"2":{"content":"$2"}}}}') + self.assertEqual(test, output) + + +class DummyOutput(object): + + def __init__(self, type, language): + self.type = type + self.language = language + + def GetType(self): + return self.type + + def GetLanguage(self): + return self.language + + def GetOutputFilename(self): + return 'hello.gif' + + +if __name__ == '__main__': + unittest.main() diff --git a/tools/grit/grit/format/data_pack.py b/tools/grit/grit/format/data_pack.py new file mode 100644 index 0000000000..f7128a4725 --- /dev/null +++ b/tools/grit/grit/format/data_pack.py @@ -0,0 +1,321 @@ +#!/usr/bin/env python +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +"""Support for formatting a data pack file used for platform agnostic resource +files. +""" + +from __future__ import print_function + +import collections +import os +import struct +import sys +if __name__ == '__main__': + sys.path.append(os.path.join(os.path.dirname(__file__), '../..')) + +import six + +from grit import util +from grit.node import include +from grit.node import message +from grit.node import structure + + +PACK_FILE_VERSION = 5 +BINARY, UTF8, UTF16 = range(3) + + +GrdInfoItem = collections.namedtuple('GrdInfoItem', + ['textual_id', 'id', 'path']) + + +class WrongFileVersion(Exception): + pass + + +class CorruptDataPack(Exception): + pass + + +class DataPackSizes(object): + def __init__(self, header, id_table, alias_table, data): + self.header = header + self.id_table = id_table + self.alias_table = alias_table + self.data = data + + @property + def total(self): + return sum(v for v in self.__dict__.values()) + + def __iter__(self): + yield ('header', self.header) + yield ('id_table', self.id_table) + yield ('alias_table', self.alias_table) + yield ('data', self.data) + + def __eq__(self, other): + return self.__dict__ == other.__dict__ + + def __repr__(self): + return self.__class__.__name__ + repr(self.__dict__) + + +class DataPackContents(object): + def __init__(self, resources, encoding, version, aliases, sizes): + # Map of resource_id -> str. + self.resources = resources + # Encoding (int). + self.encoding = encoding + # Version (int). + self.version = version + # Map of resource_id->canonical_resource_id + self.aliases = aliases + # DataPackSizes instance. + self.sizes = sizes + + +def Format(root, lang='en', output_dir='.'): + """Writes out the data pack file format (platform agnostic resource file).""" + id_map = root.GetIdMap() + data = {} + root.info = [] + for node in root.ActiveDescendants(): + with node: + if isinstance(node, (include.IncludeNode, message.MessageNode, + structure.StructureNode)): + value = node.GetDataPackValue(lang, util.BINARY) + if value is not None: + resource_id = id_map[node.GetTextualIds()[0]] + data[resource_id] = value + root.info.append('{},{},{}'.format( + node.attrs.get('name'), resource_id, node.source)) + return WriteDataPackToString(data, UTF8) + + +def ReadDataPack(input_file): + return ReadDataPackFromString(util.ReadFile(input_file, util.BINARY)) + + +def ReadDataPackFromString(data): + """Reads a data pack file and returns a dictionary.""" + # Read the header. + version = struct.unpack('data in the data pack format.""" + ret = [] + + # Compute alias map. + resource_ids = sorted(resources) + # Use reversed() so that for duplicates lower IDs clobber higher ones. + id_by_data = {resources[k]: k for k in reversed(resource_ids)} + # Map of resource_id -> resource_id, where value < key. + alias_map = {k: id_by_data[v] for k, v in resources.items() + if id_by_data[v] != k} + + # Write file header. + resource_count = len(resources) - len(alias_map) + # Padding bytes added for alignment. + ret.append(struct.pack('data into output_file as a data pack.""" + content = WriteDataPackToString(resources, encoding) + with open(output_file, 'wb') as file: + file.write(content) + + +def ReadGrdInfo(grd_file): + info_dict = {} + with open(grd_file + '.info', 'rt') as f: + for line in f: + item = GrdInfoItem._make(line.strip().split(',')) + info_dict[int(item.id)] = item + return info_dict + + +def RePack(output_file, input_files, whitelist_file=None, + suppress_removed_key_output=False, + output_info_filepath=None): + """Write a new data pack file by combining input pack files. + + Args: + output_file: path to the new data pack file. + input_files: a list of paths to the data pack files to combine. + whitelist_file: path to the file that contains the list of resource IDs + that should be kept in the output file or None to include + all resources. + suppress_removed_key_output: allows the caller to suppress the output from + RePackFromDataPackStrings. + output_info_file: If not None, specify the output .info filepath. + + Raises: + KeyError: if there are duplicate keys or resource encoding is + inconsistent. + """ + input_data_packs = [ReadDataPack(filename) for filename in input_files] + input_info_files = [filename + '.info' for filename in input_files] + whitelist = None + if whitelist_file: + lines = util.ReadFile(whitelist_file, 'utf-8').strip().splitlines() + if not lines: + raise Exception('Whitelist file should not be empty') + whitelist = set(int(x) for x in lines) + inputs = [(p.resources, p.encoding) for p in input_data_packs] + resources, encoding = RePackFromDataPackStrings( + inputs, whitelist, suppress_removed_key_output) + WriteDataPack(resources, output_file, encoding) + if output_info_filepath is None: + output_info_filepath = output_file + '.info' + with open(output_info_filepath, 'w') as output_info_file: + for filename in input_info_files: + with open(filename, 'r') as info_file: + output_info_file.writelines(info_file.readlines()) + + +def RePackFromDataPackStrings(inputs, whitelist, + suppress_removed_key_output=False): + """Combines all inputs into one. + + Args: + inputs: a list of (resources_by_id, encoding) tuples to be combined. + whitelist: a list of resource IDs that should be kept in the output string + or None to include all resources. + suppress_removed_key_output: Do not print removed keys. + + Returns: + Returns (resources_by_id, encoding). + + Raises: + KeyError: if there are duplicate keys or resource encoding is + inconsistent. + """ + resources = {} + encoding = None + for input_resources, input_encoding in inputs: + # Make sure we have no dups. + duplicate_keys = set(input_resources.keys()) & set(resources.keys()) + if duplicate_keys: + raise KeyError('Duplicate keys: ' + str(list(duplicate_keys))) + + # Make sure encoding is consistent. + if encoding in (None, BINARY): + encoding = input_encoding + elif input_encoding not in (BINARY, encoding): + raise KeyError('Inconsistent encodings: ' + str(encoding) + + ' vs ' + str(input_encoding)) + + if whitelist: + whitelisted_resources = dict([(key, input_resources[key]) + for key in input_resources.keys() + if key in whitelist]) + resources.update(whitelisted_resources) + removed_keys = [key for key in input_resources.keys() + if key not in whitelist] + if not suppress_removed_key_output: + for key in removed_keys: + print('RePackFromDataPackStrings Removed Key:', key) + else: + resources.update(input_resources) + + # Encoding is 0 for BINARY, 1 for UTF8 and 2 for UTF16 + if encoding is None: + encoding = BINARY + return resources, encoding + + +def main(): + # Write a simple file. + data = {1: '', 4: 'this is id 4', 6: 'this is id 6', 10: ''} + WriteDataPack(data, 'datapack1.pak', UTF8) + data2 = {1000: 'test', 5: 'five'} + WriteDataPack(data2, 'datapack2.pak', UTF8) + print('wrote datapack1 and datapack2 to current directory.') + + +if __name__ == '__main__': + main() diff --git a/tools/grit/grit/format/data_pack_unittest.py b/tools/grit/grit/format/data_pack_unittest.py new file mode 100644 index 0000000000..fcd7035473 --- /dev/null +++ b/tools/grit/grit/format/data_pack_unittest.py @@ -0,0 +1,102 @@ +#!/usr/bin/env python +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Unit tests for grit.format.data_pack''' + +from __future__ import print_function + +import os +import sys +if __name__ == '__main__': + sys.path.append(os.path.join(os.path.dirname(__file__), '../..')) + +import unittest + +from grit.format import data_pack + + +class FormatDataPackUnittest(unittest.TestCase): + def testReadDataPackV4(self): + expected_data = ( + b'\x04\x00\x00\x00' # header(version + b'\x04\x00\x00\x00' # no. entries, + b'\x01' # encoding) + b'\x01\x00\x27\x00\x00\x00' # index entry 1 + b'\x04\x00\x27\x00\x00\x00' # index entry 4 + b'\x06\x00\x33\x00\x00\x00' # index entry 6 + b'\x0a\x00\x3f\x00\x00\x00' # index entry 10 + b'\x00\x00\x3f\x00\x00\x00' # extra entry for the size of last + b'this is id 4this is id 6') # data + expected_data_pack = data_pack.DataPackContents( + { + 1: b'', + 4: b'this is id 4', + 6: b'this is id 6', + 10: b'', + }, data_pack.UTF8, 4, {}, data_pack.DataPackSizes(9, 30, 0, 24)) + loaded = data_pack.ReadDataPackFromString(expected_data) + self.assertDictEqual(expected_data_pack.__dict__, loaded.__dict__) + + def testReadWriteDataPackV5(self): + expected_data = ( + b'\x05\x00\x00\x00' # version + b'\x01\x00\x00\x00' # encoding & padding + b'\x03\x00' # resource_count + b'\x01\x00' # alias_count + b'\x01\x00\x28\x00\x00\x00' # index entry 1 + b'\x04\x00\x28\x00\x00\x00' # index entry 4 + b'\x06\x00\x34\x00\x00\x00' # index entry 6 + b'\x00\x00\x40\x00\x00\x00' # extra entry for the size of last + b'\x0a\x00\x01\x00' # alias table + b'this is id 4this is id 6') # data + input_resources = { + 1: b'', + 4: b'this is id 4', + 6: b'this is id 6', + 10: b'this is id 4', + } + data = data_pack.WriteDataPackToString(input_resources, data_pack.UTF8) + self.assertEquals(data, expected_data) + + expected_data_pack = data_pack.DataPackContents({ + 1: b'', + 4: input_resources[4], + 6: input_resources[6], + 10: input_resources[4], + }, data_pack.UTF8, 5, {10: 4}, data_pack.DataPackSizes(12, 24, 4, 24)) + loaded = data_pack.ReadDataPackFromString(expected_data) + self.assertDictEqual(expected_data_pack.__dict__, loaded.__dict__) + + def testRePackUnittest(self): + expected_with_whitelist = { + 1: 'Never gonna', 10: 'give you up', 20: 'Never gonna let', + 30: 'you down', 40: 'Never', 50: 'gonna run around and', + 60: 'desert you'} + expected_without_whitelist = { + 1: 'Never gonna', 10: 'give you up', 20: 'Never gonna let', 65: 'Close', + 30: 'you down', 40: 'Never', 50: 'gonna run around and', 4: 'click', + 60: 'desert you', 6: 'chirr', 32: 'oops, try again', 70: 'Awww, snap!'} + inputs = [{1: 'Never gonna', 4: 'click', 6: 'chirr', 10: 'give you up'}, + {20: 'Never gonna let', 30: 'you down', 32: 'oops, try again'}, + {40: 'Never', 50: 'gonna run around and', 60: 'desert you'}, + {65: 'Close', 70: 'Awww, snap!'}] + whitelist = [1, 10, 20, 30, 40, 50, 60] + inputs = [(i, data_pack.UTF8) for i in inputs] + + # RePack using whitelist + output, _ = data_pack.RePackFromDataPackStrings( + inputs, whitelist, suppress_removed_key_output=True) + self.assertDictEqual(expected_with_whitelist, output, + 'Incorrect resource output') + + # RePack a None whitelist + output, _ = data_pack.RePackFromDataPackStrings( + inputs, None, suppress_removed_key_output=True) + self.assertDictEqual(expected_without_whitelist, output, + 'Incorrect resource output') + + +if __name__ == '__main__': + unittest.main() diff --git a/tools/grit/grit/format/gen_predetermined_ids.py b/tools/grit/grit/format/gen_predetermined_ids.py new file mode 100644 index 0000000000..9b2aa7b1a5 --- /dev/null +++ b/tools/grit/grit/format/gen_predetermined_ids.py @@ -0,0 +1,144 @@ +#!/usr/bin/env python +# Copyright 2017 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +""" +A tool to generate a predetermined resource ids file that can be used as an +input to grit via the -p option. This is meant to be run manually every once in +a while and its output checked in. See tools/gritsettings/README.md for details. +""" + +from __future__ import print_function + +import os +import re +import sys + +# Regular expression for parsing the #define macro format. Matches both the +# version of the macro with whitelist support and the one without. For example, +# Without generate whitelist flag: +# #define IDS_FOO_MESSAGE 1234 +# With generate whitelist flag: +# #define IDS_FOO_MESSAGE (::ui::WhitelistedResource<1234>(), 1234) +RESOURCE_EXTRACT_REGEX = re.compile(r'^#define (\S*).* (\d+)\)?$', re.MULTILINE) + +ORDERED_RESOURCE_IDS_REGEX = re.compile(r'^Resource=(\d*)$', re.MULTILINE) + + +def _GetResourceNameIdPairsIter(string_to_scan): + """Gets an iterator of the resource name and id pairs of the given string. + + Scans the input string for lines of the form "#define NAME ID" and returns + an iterator over all matching (NAME, ID) pairs. + + Args: + string_to_scan: The input string to scan. + + Yields: + A tuple of name and id. + """ + for match in RESOURCE_EXTRACT_REGEX.finditer(string_to_scan): + yield match.group(1, 2) + + +def _ReadOrderedResourceIds(path): + """Reads ordered resource ids from the given file. + + The resources are expected to be of the format produced by running Chrome + with --print-resource-ids command line. + + Args: + path: File path to read resource ids from. + + Returns: + An array of ordered resource ids. + """ + ordered_resource_ids = [] + with open(path, "r") as f: + for match in ORDERED_RESOURCE_IDS_REGEX.finditer(f.read()): + ordered_resource_ids.append(int(match.group(1))) + return ordered_resource_ids + + +def GenerateResourceMapping(original_resources, ordered_resource_ids): + """Generates a resource mapping from the ordered ids and the original mapping. + + The returned dict will assign new ids to ordered_resource_ids numerically + increasing from 101. + + Args: + original_resources: A dict of original resource ids to resource names. + ordered_resource_ids: An array of ordered resource ids. + + Returns: + A dict of resource ids to resource names. + """ + output_resource_map = {} + # 101 is used as the starting value since other parts of GRIT require it to be + # the minimum (e.g. rc_header.py) based on Windows resource numbering. + next_id = 101 + for original_id in ordered_resource_ids: + resource_name = original_resources[original_id] + output_resource_map[next_id] = resource_name + next_id += 1 + return output_resource_map + + +def ReadResourceIdsFromFile(file, original_resources): + """Reads resource ids from a GRIT-produced header file. + + Args: + file: File to a GRIT-produced header file to read from. + original_resources: Dict of resource ids to resource names to add to. + """ + for resource_name, resource_id in _GetResourceNameIdPairsIter(file.read()): + original_resources[int(resource_id)] = resource_name + + +def _ReadOriginalResourceIds(out_dir): + """Reads resource ids from GRIT header files in the specified directory. + + Args: + out_dir: A Chrome build output directory (e.g. out/gn) to scan. + + Returns: + A dict of resource ids to resource names. + """ + original_resources = {} + for root, dirnames, filenames in os.walk(out_dir + '/gen'): + for filename in filenames: + if filename.endswith(('_resources.h', '_settings.h', '_strings.h')): + with open(os.path.join(root, filename), "r") as f: + ReadResourceIdsFromFile(f, original_resources) + return original_resources + + +def _GeneratePredeterminedIdsFile(ordered_resources_file, out_dir): + """Generates a predetermined ids file. + + Args: + ordered_resources_file: File path to read ordered resource ids from. + out_dir: A Chrome build output directory (e.g. out/gn) to scan. + + Returns: + A dict of resource ids to resource names. + """ + original_resources = _ReadOriginalResourceIds(out_dir) + ordered_resource_ids = _ReadOrderedResourceIds(ordered_resources_file) + output_resource_map = GenerateResourceMapping(original_resources, + ordered_resource_ids) + for res_id in sorted(output_resource_map.keys()): + print(output_resource_map[res_id], res_id) + + +def main(argv): + if len(argv) != 2: + print("usage: gen_predetermined_ids.py ") + sys.exit(1) + ordered_resources_file, out_dir = argv[0], argv[1] + _GeneratePredeterminedIdsFile(ordered_resources_file, out_dir) + + +if '__main__' == __name__: + main(sys.argv[1:]) diff --git a/tools/grit/grit/format/gen_predetermined_ids_unittest.py b/tools/grit/grit/format/gen_predetermined_ids_unittest.py new file mode 100644 index 0000000000..bd0331adb4 --- /dev/null +++ b/tools/grit/grit/format/gen_predetermined_ids_unittest.py @@ -0,0 +1,46 @@ +#!/usr/bin/env python +# Copyright 2017 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Unit tests for the gen_predetermined_ids module.''' + +from __future__ import print_function + +import os +import sys +if __name__ == '__main__': + sys.path.append(os.path.join(os.path.dirname(__file__), '../..')) + +import unittest + +from six import StringIO + +from grit.format import gen_predetermined_ids + +class GenPredeterminedIdsUnittest(unittest.TestCase): + def testGenerateResourceMapping(self): + original_resources = {200: 'A', 201: 'B', 300: 'C', 350: 'D', 370: 'E'} + ordered_resource_ids = [300, 201, 370] + mapping = gen_predetermined_ids.GenerateResourceMapping( + original_resources, ordered_resource_ids) + self.assertEqual({101: 'C', 102: 'B', 103: 'E'}, mapping) + + def testReadResourceIdsFromFile(self): + f = StringIO(''' +// This file is automatically generated by GRIT. Do not edit. + +#pragma once + +#define IDS_BOOKMARKS_NO_ITEMS 12500 +#define IDS_BOOKMARK_BAR_IMPORT_LINK (::ui::WhitelistedResource<12501>(), 12501) +#define IDS_BOOKMARK_X (::ui::WhitelistedResource<12502>(), 12502) +''') + resources = {} + gen_predetermined_ids.ReadResourceIdsFromFile(f, resources) + self.assertEqual({12500: 'IDS_BOOKMARKS_OPEN_ALL', + 12501: 'IDS_BOOKMARKS_OPEN_ALL_INCOGNITO', + 12502: 'IDS_BOOKMARK_X'}, resources) + +if __name__ == '__main__': + unittest.main() diff --git a/tools/grit/grit/format/gzip_string.py b/tools/grit/grit/format/gzip_string.py new file mode 100644 index 0000000000..3cd17185c9 --- /dev/null +++ b/tools/grit/grit/format/gzip_string.py @@ -0,0 +1,46 @@ +# Copyright (c) 2016 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. +"""Provides gzip utilities for strings. +""" + +from __future__ import print_function + +import gzip +import io +import subprocess + + +def GzipStringRsyncable(data): + # Make call to host system's gzip to get access to --rsyncable option. This + # option makes updates much smaller - if one line is changed in the resource, + # it won't have to push the entire compressed resource with the update. + # Instead, --rsyncable breaks the file into small chunks, so that one doesn't + # affect the other in compression, and then only that chunk will have to be + # updated. + gzip_proc = subprocess.Popen(['gzip', '--stdout', '--rsyncable', + '--best', '--no-name'], + stdin=subprocess.PIPE, + stdout=subprocess.PIPE, + stderr=subprocess.PIPE) + data, stderr = gzip_proc.communicate(data) + if gzip_proc.returncode != 0: + raise subprocess.CalledProcessError(gzip_proc.returncode, 'gzip', + stderr) + return data + + +def GzipString(data): + # Gzipping using Python's built in gzip: Windows doesn't ship with gzip, and + # OSX's gzip does not have an --rsyncable option built in. Although this is + # not preferable to --rsyncable, it is an option for the systems that do + # not have --rsyncable. If used over GzipStringRsyncable, the primary + # difference of this function's compression will be larger updates every time + # a compressed resource is changed. + gzip_output = io.BytesIO() + with gzip.GzipFile(mode='wb', compresslevel=9, fileobj=gzip_output, + mtime=0) as gzip_file: + gzip_file.write(data) + data = gzip_output.getvalue() + gzip_output.close() + return data diff --git a/tools/grit/grit/format/gzip_string_unittest.py b/tools/grit/grit/format/gzip_string_unittest.py new file mode 100644 index 0000000000..c0cfbe1837 --- /dev/null +++ b/tools/grit/grit/format/gzip_string_unittest.py @@ -0,0 +1,65 @@ +#!/usr/bin/env python +# Copyright (c) 2016 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Unit tests for grit.format.gzip_string''' + +from __future__ import print_function + +import gzip +import io +import os +import sys +if __name__ == '__main__': + sys.path.append(os.path.join(os.path.dirname(__file__), '../..')) + +import unittest + +from grit.format import gzip_string + + +class FormatGzipStringUnittest(unittest.TestCase): + + def testGzipStringRsyncable(self): + # Can only test the rsyncable version on platforms which support rsyncable, + # which at the moment is Linux. + if sys.platform == 'linux2': + header_begin = (b'\x1f\x8b') # gzip first two bytes + input = (b'TEST STRING STARTING NOW' + b'continuing' + b'' + b'') + + compressed = gzip_string.GzipStringRsyncable(input) + self.failUnless(header_begin == compressed[:2]) + + compressed_file = io.BytesIO() + compressed_file.write(compressed) + compressed_file.seek(0) + + with gzip.GzipFile(mode='rb', fileobj=compressed_file) as f: + output = f.read() + self.failUnless(output == input) + + def testGzipString(self): + header_begin = b'\x1f\x8b' # gzip first two bytes + input = (b'TEST STRING STARTING NOW' + b'continuing' + b'' + b'') + + compressed = gzip_string.GzipString(input) + self.failUnless(header_begin == compressed[:2]) + + compressed_file = io.BytesIO() + compressed_file.write(compressed) + compressed_file.seek(0) + + with gzip.GzipFile(mode='rb', fileobj=compressed_file) as f: + output = f.read() + self.failUnless(output == input) + + +if __name__ == '__main__': + unittest.main() diff --git a/tools/grit/grit/format/html_inline.py b/tools/grit/grit/format/html_inline.py new file mode 100644 index 0000000000..da55216ea4 --- /dev/null +++ b/tools/grit/grit/format/html_inline.py @@ -0,0 +1,602 @@ +#!/usr/bin/env python +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +"""Flattens a HTML file by inlining its external resources. + +This is a small script that takes a HTML file, looks for src attributes +and inlines the specified file, producing one HTML file with no external +dependencies. It recursively inlines the included files. +""" + +from __future__ import print_function + +import os +import re +import sys +import base64 +import mimetypes + +from grit import lazy_re +from grit import util +from grit.format import minifier + +# There is a python bug that makes mimetypes crash if the Windows +# registry contains non-Latin keys ( http://bugs.python.org/issue9291 +# ). Initing manually and blocking external mime-type databases will +# prevent that bug and if we add svg manually, it will still give us +# the data we need. +mimetypes.init([]) +mimetypes.add_type('image/svg+xml', '.svg') + +# webm video type is not always available if mimetype package is outdated. +mimetypes.add_type('video/webm', '.webm') + +DIST_DEFAULT = 'chromium' +DIST_ENV_VAR = 'CHROMIUM_BUILD' +DIST_SUBSTR = '%DISTRIBUTION%' + +# Matches beginning of an "if" block. +_BEGIN_IF_BLOCK = lazy_re.compile( + r']*?expr=("(?P[^">]*)"|\'(?P[^\'>]*)\')[^>]*?>') + +# Matches ending of an "if" block. +_END_IF_BLOCK = lazy_re.compile(r'') + +# Used by DoInline to replace various links with inline content. +_STYLESHEET_RE = lazy_re.compile( + r']+?href="(?P[^"]*)".*?>(\s*)?', + re.DOTALL) +_INCLUDE_RE = lazy_re.compile( + r'(?P\/\/ )?]+?' + r'src=("(?P[^">]*)"|\'(?P[^\'>]*)\').*?>(\s*)?', + re.DOTALL) +_SRC_RE = lazy_re.compile( + r'<(?!script)(?:[^>]+?\s)src="(?!\[\[|{{)(?P[^"\']*)"', + re.MULTILINE) +# This re matches ']*?\s)srcset="(?!\[\[|{{|\$i18n{)' + r'(?P[^"\']*)"', + re.MULTILINE) +# This re is for splitting srcset value string into "image candidate strings". +# Notes: +# - HTML 5.2 states that URL cannot start or end with comma. +# - the "descriptor" is either "width descriptor" or "pixel density descriptor". +# The first one consists of "valid non-negative integer + letter 'x'", +# the second one is formed of "positive valid floating-point number + +# letter 'w'". As a reasonable compromise, we match a list of characters +# that form both of them. +# Matches for example "img2.png 2x" or "img9.png 11E-2w". +_SRCSET_ENTRY_RE = lazy_re.compile( + r'\s*(?P[^,\s]\S+[^,\s])' + r'(?:\s+(?P[\deE.-]+[wx]))?\s*' + r'(?P,|$)', + re.MULTILINE) +_ICON_RE = lazy_re.compile( + r']+?\s)?' + r'href=(?P")(?P[^"\']*)\1', + re.MULTILINE) + + +def GetDistribution(): + """Helper function that gets the distribution we are building. + + Returns: + string + """ + distribution = DIST_DEFAULT + if DIST_ENV_VAR in os.environ: + distribution = os.environ[DIST_ENV_VAR] + if len(distribution) > 1 and distribution[0] == '_': + distribution = distribution[1:].lower() + return distribution + +def ConvertFileToDataURL(filename, base_path, distribution, inlined_files, + names_only): + """Convert filename to inlined data URI. + + Takes a filename from ether "src" or "srcset", and attempts to read the file + at 'filename'. Returns data URI as string with given file inlined. + If it finds DIST_SUBSTR string in file name, replaces it with distribution. + If filename contains ':', it is considered URL and not translated. + + Args: + filename: filename string from ether src or srcset attributes. + base_path: path that to look for files in + distribution: string that should replace DIST_SUBSTR + inlined_files: The name of the opened file is appended to this list. + names_only: If true, the function will not read the file but just return "". + It will still add the filename to |inlined_files|. + + Returns: + string + """ + if filename.find(':') != -1: + # filename is probably a URL, which we don't want to bother inlining + return filename + + filename = filename.replace(DIST_SUBSTR , distribution) + filepath = os.path.normpath(os.path.join(base_path, filename)) + inlined_files.add(filepath) + + if names_only: + return "" + + mimetype = mimetypes.guess_type(filename)[0] + if mimetype is None: + raise Exception('%s is of an an unknown type and ' + 'cannot be stored in a data url.' % filename) + inline_data = base64.standard_b64encode(util.ReadFile(filepath, util.BINARY)) + return 'data:%s;base64,%s' % (mimetype, inline_data.decode('utf-8')) + + +def SrcInlineAsDataURL( + src_match, base_path, distribution, inlined_files, names_only=False, + filename_expansion_function=None): + """regex replace function. + + Takes a regex match for src="filename", attempts to read the file + at 'filename' and returns the src attribute with the file inlined + as a data URI. If it finds DIST_SUBSTR string in file name, replaces + it with distribution. + + Args: + src_match: regex match object with 'filename' named capturing group + base_path: path that to look for files in + distribution: string that should replace DIST_SUBSTR + inlined_files: The name of the opened file is appended to this list. + names_only: If true, the function will not read the file but just return "". + It will still add the filename to |inlined_files|. + + Returns: + string + """ + filename = src_match.group('filename') + if filename_expansion_function: + filename = filename_expansion_function(filename) + + data_url = ConvertFileToDataURL(filename, base_path, distribution, + inlined_files, names_only) + + if not data_url: + return data_url + + prefix = src_match.string[src_match.start():src_match.start('filename')] + suffix = src_match.string[src_match.end('filename'):src_match.end()] + return prefix + data_url + suffix + +def SrcsetInlineAsDataURL( + srcset_match, base_path, distribution, inlined_files, names_only=False, + filename_expansion_function=None): + """regex replace function to inline files in srcset="..." attributes + + Takes a regex match for srcset="filename 1x, filename 2x, ...", attempts to + read the files referenced by filenames and returns the srcset attribute with + the files inlined as a data URI. If it finds DIST_SUBSTR string in file name, + replaces it with distribution. + + Args: + srcset_match: regex match object with 'srcset' named capturing group + base_path: path that to look for files in + distribution: string that should replace DIST_SUBSTR + inlined_files: The name of the opened file is appended to this list. + names_only: If true, the function will not read the file but just return "". + It will still add the filename to |inlined_files|. + + Returns: + string + """ + srcset = srcset_match.group('srcset') + + if not srcset: + return srcset_match.group(0) + + # HTML 5.2 defines srcset as a list of "image candidate strings". + # Each of them consists of URL and descriptor. + # _SRCSET_ENTRY_RE splits srcset into a list of URLs, descriptors and + # commas. + # The descriptor part will be None if that optional regex didn't match + parts = _SRCSET_ENTRY_RE.split(srcset) + + if not parts: + return srcset_match.group(0) + + # List of image candidate strings that will form new srcset="..." + new_candidates = [] + + # When iterating over split srcset we fill this parts of a single image + # candidate string: [url, descriptor] + candidate = []; + + # Each entry should consist of some text before the entry, the url, + # the descriptor or None if the entry has no descriptor, a comma separator or + # the end of the line, and finally some text after the entry (which is the + # same as the text before the next entry). + for i in range(0, len(parts) - 1, 4): + before, url, descriptor, separator, after = parts[i:i+5] + + # There must be a comma-separated next entry or this must be the last entry. + assert separator == "," or (separator == "" and i == len(parts) - 5), ( + "Bad srcset format in {}".format(srcset_match.group(0))) + # Both before and after the entry must be empty + assert before == after == "", ( + "Bad srcset format in {}".format(srcset_match.group(0))) + + if filename_expansion_function: + filename = filename_expansion_function(url) + else: + filename = url + + data_url = ConvertFileToDataURL(filename, base_path, distribution, + inlined_files, names_only) + + # This is not "names_only" mode + if data_url: + candidate = [data_url] + if descriptor: + candidate.append(descriptor) + + new_candidates.append(" ".join(candidate)) + + prefix = srcset_match.string[srcset_match.start(): + srcset_match.start('srcset')] + suffix = srcset_match.string[srcset_match.end('srcset'):srcset_match.end()] + return prefix + ','.join(new_candidates) + suffix + +class InlinedData: + """Helper class holding the results from DoInline(). + + Holds the inlined data and the set of filenames of all the inlined + files. + """ + def __init__(self, inlined_data, inlined_files): + self.inlined_data = inlined_data + self.inlined_files = inlined_files + +def DoInline( + input_filename, grd_node, allow_external_script=False, + preprocess_only=False, names_only=False, strip_whitespace=False, + rewrite_function=None, filename_expansion_function=None): + """Helper function that inlines the resources in a specified file. + + Reads input_filename, finds all the src attributes and attempts to + inline the files they are referring to, then returns the result and + the set of inlined files. + + Args: + input_filename: name of file to read in + grd_node: html node from the grd file for this include tag + preprocess_only: Skip all HTML processing, only handle and . + names_only: |nil| will be returned for the inlined contents (faster). + strip_whitespace: remove whitespace and comments in the input files. + rewrite_function: function(filepath, text, distribution) which will be + called to rewrite html content before inlining images. + filename_expansion_function: function(filename) which will be called to + rewrite filenames before attempting to read them. + Returns: + a tuple of the inlined data as a string and the set of filenames + of all the inlined files + """ + if filename_expansion_function: + input_filename = filename_expansion_function(input_filename) + input_filepath = os.path.dirname(input_filename) + distribution = GetDistribution() + + # Keep track of all the files we inline. + inlined_files = set() + + def SrcReplace(src_match, filepath=input_filepath, + inlined_files=inlined_files): + """Helper function to provide SrcInlineAsDataURL with the base file path""" + return SrcInlineAsDataURL( + src_match, filepath, distribution, inlined_files, names_only=names_only, + filename_expansion_function=filename_expansion_function) + + def SrcsetReplace(srcset_match, filepath=input_filepath, + inlined_files=inlined_files): + """Helper function to provide SrcsetInlineAsDataURL with the base file + path. + """ + return SrcsetInlineAsDataURL( + srcset_match, filepath, distribution, inlined_files, + names_only=names_only, + filename_expansion_function=filename_expansion_function) + + def GetFilepath(src_match, base_path = input_filepath): + filename = [v for k, v in src_match.groupdict().items() + if k.startswith('file') and v][0] + + if filename.find(':') != -1: + # filename is probably a URL, which we don't want to bother inlining + return None + + filename = filename.replace('%DISTRIBUTION%', distribution) + if filename_expansion_function: + filename = filename_expansion_function(filename) + return os.path.normpath(os.path.join(base_path, filename)) + + def IsConditionSatisfied(src_match): + expr1 = src_match.group('expr1') or '' + expr2 = src_match.group('expr2') or '' + return grd_node is None or grd_node.EvaluateCondition(expr1 + expr2) + + def CheckConditionalElements(str): + """Helper function to conditionally inline inner elements""" + while True: + begin_if = _BEGIN_IF_BLOCK.search(str) + if begin_if is None: + if _END_IF_BLOCK.search(str) is not None: + raise Exception('Unmatched ') + return str + + condition_satisfied = IsConditionSatisfied(begin_if) + leading = str[0:begin_if.start()] + content_start = begin_if.end() + + # Find matching "if" block end. + count = 1 + pos = begin_if.end() + while True: + end_if = _END_IF_BLOCK.search(str, pos) + if end_if is None: + raise Exception('Unmatched ') + + next_if = _BEGIN_IF_BLOCK.search(str, pos) + if next_if is None or next_if.start() >= end_if.end(): + count = count - 1 + if count == 0: + break + pos = end_if.end() + else: + count = count + 1 + pos = next_if.end() + + content = str[content_start:end_if.start()] + trailing = str[end_if.end():] + + if condition_satisfied: + str = leading + CheckConditionalElements(content) + trailing + else: + str = leading + trailing + + def InlineFileContents(src_match, + pattern, + inlined_files=inlined_files, + strip_whitespace=False): + """Helper function to inline external files of various types""" + filepath = GetFilepath(src_match) + if filepath is None: + return src_match.group(0) + inlined_files.add(filepath) + + if names_only: + inlined_files.update(GetResourceFilenames( + filepath, + grd_node, + allow_external_script, + rewrite_function, + filename_expansion_function=filename_expansion_function)) + return "" + # To recursively save inlined files, we need InlinedData instance returned + # by DoInline. + inlined_data_inst=DoInline(filepath, grd_node, + allow_external_script=allow_external_script, + preprocess_only=preprocess_only, + strip_whitespace=strip_whitespace, + filename_expansion_function=filename_expansion_function) + + inlined_files.update(inlined_data_inst.inlined_files) + + return pattern % inlined_data_inst.inlined_data; + + + def InlineIncludeFiles(src_match): + """Helper function to directly inline generic external files (without + wrapping them with any kind of tags). + """ + return InlineFileContents(src_match, '%s') + + def InlineScript(match): + """Helper function to inline external script files""" + attrs = (match.group('attrs1') + match.group('attrs2')).strip() + if attrs: + attrs = ' ' + attrs + return InlineFileContents(match, '%s', + strip_whitespace=True) + + def InlineCSSText(text, css_filepath): + """Helper function that inlines external resources in CSS text""" + filepath = os.path.dirname(css_filepath) + # Allow custom modifications before inlining images. + if rewrite_function: + text = rewrite_function(filepath, text, distribution) + text = InlineCSSImages(text, filepath) + return InlineCSSImports(text, filepath) + + def InlineCSSFile(src_match, pattern, base_path=input_filepath): + """Helper function to inline external CSS files. + + Args: + src_match: A regular expression match with a named group named "filename". + pattern: The pattern to replace with the contents of the CSS file. + base_path: The base path to use for resolving the CSS file. + + Returns: + The text that should replace the reference to the CSS file. + """ + filepath = GetFilepath(src_match, base_path) + if filepath is None: + return src_match.group(0) + + # Even if names_only is set, the CSS file needs to be opened, because it + # can link to images that need to be added to the file set. + inlined_files.add(filepath) + + # Inline stylesheets included in this css file. + text = _INCLUDE_RE.sub(InlineIncludeFiles, util.ReadFile(filepath, 'utf-8')) + # When resolving CSS files we need to pass in the path so that relative URLs + # can be resolved. + + return pattern % InlineCSSText(text, filepath) + + def GetUrlRegexString(postfix=''): + """Helper function that returns a string for a regex that matches url('') + but not url([[ ]]) or url({{ }}). Appends |postfix| to group names. + """ + url_re = (r'url\((?!\[\[|{{)(?P"|\'|)(?P[^"\'()]*)' + r'(?P=q%s)\)') + return url_re % (postfix, postfix, postfix) + + def InlineCSSImages(text, filepath=input_filepath): + """Helper function that inlines external images in CSS backgrounds.""" + # Replace contents of url() for css attributes: content, background, + # or *-image. + property_re = r'(content|background|[\w-]*-image):[^;]*' + # Replace group names to prevent duplicates when forming value_re. + image_set_value_re = (r'image-set\(([ ]*' + GetUrlRegexString('2') + + r'[ ]*[0-9.]*x[ ]*(,[ ]*)?)+\)') + value_re = '(%s|%s)' % (GetUrlRegexString(), image_set_value_re) + css_re = property_re + value_re + return re.sub(css_re, lambda m: InlineCSSUrls(m, filepath), text) + + def InlineCSSUrls(src_match, filepath=input_filepath): + """Helper function that inlines each url on a CSS image rule match.""" + # Replace contents of url() references in matches. + return re.sub(GetUrlRegexString(), + lambda m: SrcReplace(m, filepath), + src_match.group(0)) + + def InlineCSSImports(text, filepath=input_filepath): + """Helper function that inlines CSS files included via the @import + directive. + """ + return re.sub(r'@import\s+' + GetUrlRegexString() + r';', + lambda m: InlineCSSFile(m, '%s', filepath), + text) + + + flat_text = util.ReadFile(input_filename, 'utf-8') + + # Check conditional elements, remove unsatisfied ones from the file. We do + # this twice. The first pass is so that we don't even bother calling + # InlineScript, InlineCSSFile and InlineIncludeFiles on text we're eventually + # going to throw out anyway. + flat_text = CheckConditionalElements(flat_text) + + flat_text = _INCLUDE_RE.sub(InlineIncludeFiles, flat_text) + + if not preprocess_only: + if strip_whitespace: + flat_text = minifier.Minify(flat_text.encode('utf-8'), + input_filename).decode('utf-8') + + if not allow_external_script: + # We need to inline css and js before we inline images so that image + # references gets inlined in the css and js + flat_text = re.sub(r'', + InlineScript, + flat_text) + + flat_text = _STYLESHEET_RE.sub( + lambda m: InlineCSSFile(m, ''), + flat_text) + + # Check conditional elements, second pass. This catches conditionals in any + # of the text we just inlined. + flat_text = CheckConditionalElements(flat_text) + + # Allow custom modifications before inlining images. + if rewrite_function: + flat_text = rewrite_function(input_filepath, flat_text, distribution) + + if not preprocess_only: + flat_text = _SRC_RE.sub(SrcReplace, flat_text) + flat_text = _SRCSET_RE.sub(SrcsetReplace, flat_text) + + # TODO(arv): Only do this inside + + + ''' + + source_resources = set() + tmp_dir = util.TempDir(files) + for filename in files: + source_resources.add(tmp_dir.GetPath(util.normpath(filename))) + + result = html_inline.DoInline(tmp_dir.GetPath('index.html'), None) + resources = result.inlined_files + resources.add(tmp_dir.GetPath('index.html')) + self.failUnlessEqual(resources, source_resources) + self.failUnlessEqual(expected_inlined, + util.FixLineEnd(result.inlined_data, '\n')) + + tmp_dir.CleanUp() + + def testInlineIgnoresPolymerBindings(self): + '''Tests that polymer bindings are ignored when inlining. + ''' + + files = { + 'index.html': ''' + + + + + + + + +
+
+
+
+ + + ''', + + 'test.css': ''' + .image { + background: url('test.png'); + background-image: url([[ignoreMe]]); + background-image: image-set(url({{alsoMe}}), 1x); + background-image: image-set( + url({{ignore}}) 1x, + url('test.png') 2x); + } + ''', + + 'test.png': 'PNG DATA' + } + + expected_inlined = ''' + + + + + + + + +
+
+
+
+ + + ''' + + source_resources = set() + tmp_dir = util.TempDir(files) + for filename in files: + source_resources.add(tmp_dir.GetPath(util.normpath(filename))) + + result = html_inline.DoInline(tmp_dir.GetPath('index.html'), None) + resources = result.inlined_files + resources.add(tmp_dir.GetPath('index.html')) + self.failUnlessEqual(resources, source_resources) + self.failUnlessEqual(expected_inlined, + util.FixLineEnd(result.inlined_data, '\n')) + + tmp_dir.CleanUp() + + def testInlineCSSWithIncludeDirective(self): + '''Tests that include directive in external css files also inlined''' + + files = { + 'index.html': ''' + + + + + + ''', + + 'foo.css': '''''', + + 'style.css': ''' + + blink { + display: none; + } + ''', + 'style2.css': '''h1 {}''', + } + + expected_inlined = ''' + + + + + + ''' + + source_resources = set() + tmp_dir = util.TempDir(files) + for filename in files: + source_resources.add(tmp_dir.GetPath(filename)) + + result = html_inline.DoInline(tmp_dir.GetPath('index.html'), None) + resources = result.inlined_files + resources.add(tmp_dir.GetPath('index.html')) + self.failUnlessEqual(resources, source_resources) + self.failUnlessEqual(expected_inlined, + util.FixLineEnd(result.inlined_data, '\n')) + tmp_dir.CleanUp() + + def testCssIncludedFileNames(self): + '''Tests that all included files from css are returned''' + + files = { + 'index.html': ''' + + + + + + + + + ''', + + 'test.css': ''' + + ''', + + 'test2.css': ''' + + .image { + background: url('test.png'); + } + ''', + + 'test3.css': '''h1 {}''', + + 'test.png': 'PNG DATA' + } + + source_resources = set() + tmp_dir = util.TempDir(files) + for filename in files: + source_resources.add(tmp_dir.GetPath(filename)) + + resources = html_inline.GetResourceFilenames(tmp_dir.GetPath('index.html'), + None) + resources.add(tmp_dir.GetPath('index.html')) + self.failUnlessEqual(resources, source_resources) + tmp_dir.CleanUp() + + def testInlineCSSLinks(self): + '''Tests that only CSS files referenced via relative URLs are inlined.''' + + files = { + 'index.html': ''' + + + + + + + ''', + + 'foo.css': ''' + @import url(chrome://resources/blurp.css); + blink { + display: none; + } + ''', + } + + expected_inlined = ''' + + + + + + + ''' + + source_resources = set() + tmp_dir = util.TempDir(files) + for filename in files: + source_resources.add(tmp_dir.GetPath(filename)) + + result = html_inline.DoInline(tmp_dir.GetPath('index.html'), None) + resources = result.inlined_files + resources.add(tmp_dir.GetPath('index.html')) + self.failUnlessEqual(resources, source_resources) + self.failUnlessEqual(expected_inlined, + util.FixLineEnd(result.inlined_data, '\n')) + tmp_dir.CleanUp() + + def testFilenameVariableExpansion(self): + '''Tests that variables are expanded in filenames before inlining.''' + + files = { + 'index.html': ''' + + + + + + + + + ''', + 'style1.css': '''h1 {}''', + 'tmpl1.html': '''

''', + 'script1.js': '''console.log('hello');''', + 'img1.png': '''abc''', + } + + expected_inlined = ''' + + + + + +

+ + + ''' + + source_resources = set() + tmp_dir = util.TempDir(files) + for filename in files: + source_resources.add(tmp_dir.GetPath(filename)) + + def replacer(var, repl): + return lambda filename: filename.replace('[%s]' % var, repl) + + # Test normal inlining. + result = html_inline.DoInline( + tmp_dir.GetPath('index.html'), + None, + filename_expansion_function=replacer('WHICH', '1')) + resources = result.inlined_files + resources.add(tmp_dir.GetPath('index.html')) + self.failUnlessEqual(resources, source_resources) + self.failUnlessEqual(expected_inlined, + util.FixLineEnd(result.inlined_data, '\n')) + + # Test names-only inlining. + result = html_inline.DoInline( + tmp_dir.GetPath('index.html'), + None, + names_only=True, + filename_expansion_function=replacer('WHICH', '1')) + resources = result.inlined_files + resources.add(tmp_dir.GetPath('index.html')) + self.failUnlessEqual(resources, source_resources) + tmp_dir.CleanUp() + + def testWithCloseTags(self): + '''Tests that close tags are removed.''' + + files = { + 'index.html': ''' + + + + + + + + + + + + + + + + + + ''', + 'style1.css': '''h1 {}''', + 'style2.css': '''h2 {}''', + 'tmpl1.html': '''

''', + 'tmpl2.html': '''

''', + 'script1.js': '''console.log('hello');''', + 'img1.png': '''abc''', + } + + expected_inlined = ''' + + + + + + + +

+

+

+ + + + ''' + + source_resources = set() + tmp_dir = util.TempDir(files) + for filename in files: + source_resources.add(tmp_dir.GetPath(filename)) + + # Test normal inlining. + result = html_inline.DoInline( + tmp_dir.GetPath('index.html'), + None) + resources = result.inlined_files + resources.add(tmp_dir.GetPath('index.html')) + self.failUnlessEqual(resources, source_resources) + self.failUnlessEqual(expected_inlined, + util.FixLineEnd(result.inlined_data, '\n')) + tmp_dir.CleanUp() + + def testCommentedJsInclude(self): + '''Tests that works inside a comment.''' + + files = { + 'include.js': '// ', + 'other.js': '// Copyright somebody\nalert(1);', + } + + expected_inlined = '// Copyright somebody\nalert(1);' + + source_resources = set() + tmp_dir = util.TempDir(files) + for filename in files: + source_resources.add(tmp_dir.GetPath(filename)) + + result = html_inline.DoInline(tmp_dir.GetPath('include.js'), None) + resources = result.inlined_files + resources.add(tmp_dir.GetPath('include.js')) + self.failUnlessEqual(resources, source_resources) + self.failUnlessEqual(expected_inlined, + util.FixLineEnd(result.inlined_data, '\n')) + tmp_dir.CleanUp() + + def testCommentedJsIf(self): + '''Tests that works inside a comment.''' + + files = { + 'if.js': ''' + // + yep(); + // + + // + nope(); + // + ''', + } + + expected_inlined = ''' + // + yep(); + // + + // + ''' + + source_resources = set() + tmp_dir = util.TempDir(files) + for filename in files: + source_resources.add(tmp_dir.GetPath(filename)) + + class FakeGrdNode(object): + def EvaluateCondition(self, cond): + return eval(cond) + + result = html_inline.DoInline(tmp_dir.GetPath('if.js'), FakeGrdNode()) + resources = result.inlined_files + + resources.add(tmp_dir.GetPath('if.js')) + self.failUnlessEqual(resources, source_resources) + self.failUnlessEqual(expected_inlined, + util.FixLineEnd(result.inlined_data, '\n')) + tmp_dir.CleanUp() + + def testImgSrcset(self): + '''Tests that img srcset="" attributes are converted.''' + + # Note that there is no space before "img10.png" and that + # "img11.png" has no descriptor. + files = { + 'index.html': ''' + + + + + + + + + + ''', + 'img1.png': '''a1''', + 'img2.png': '''a2''', + 'img3.png': '''a3''', + 'img4.png': '''a4''', + 'img5.png': '''a5''', + 'img6.png': '''a6''', + 'img7.png': '''a7''', + 'img8.png': '''a8''', + 'img9.png': '''a9''', + 'img10.png': '''a10''', + 'img11.png': '''a11''', + } + + expected_inlined = ''' + + + + + + + + + + ''' + + source_resources = set() + tmp_dir = util.TempDir(files) + for filename in files: + source_resources.add(tmp_dir.GetPath(filename)) + + # Test normal inlining. + result = html_inline.DoInline( + tmp_dir.GetPath('index.html'), + None) + resources = result.inlined_files + resources.add(tmp_dir.GetPath('index.html')) + self.failUnlessEqual(resources, source_resources) + self.failUnlessEqual(expected_inlined, + util.FixLineEnd(result.inlined_data, '\n')) + tmp_dir.CleanUp() + + def testImgSrcsetIgnoresI18n(self): + '''Tests that $i18n{...} strings are ignored when inlining. + ''' + + src_html = ''' + + + + + + + ''' + + files = { + 'index.html': src_html, + } + + expected_inlined = src_html + + source_resources = set() + tmp_dir = util.TempDir(files) + for filename in files: + source_resources.add(tmp_dir.GetPath(util.normpath(filename))) + + result = html_inline.DoInline(tmp_dir.GetPath('index.html'), None) + resources = result.inlined_files + resources.add(tmp_dir.GetPath('index.html')) + self.failUnlessEqual(resources, source_resources) + self.failUnlessEqual(expected_inlined, + util.FixLineEnd(result.inlined_data, '\n')) + tmp_dir.CleanUp() + + def testSourceSrcset(self): + '''Tests that source srcset="" attributes are converted.''' + + # Note that there is no space before "img10.png" and that + # "img11.png" has no descriptor. + files = { + 'index.html': ''' + + + + + + + + ''', + 'img1.png': '''a1''', + 'img2.png': '''a2''', + 'img3.png': '''a3''', + 'img4.png': '''a4''', + 'img5.png': '''a5''', + 'img6.png': '''a6''', + 'img7.png': '''a7''', + 'img8.png': '''a8''', + 'img9.png': '''a9''', + 'img10.png': '''a10''', + 'img11.png': '''a11''', + } + + expected_inlined = ''' + + + + + + + + ''' + + source_resources = set() + tmp_dir = util.TempDir(files) + for filename in files: + source_resources.add(tmp_dir.GetPath(filename)) + + # Test normal inlining. + result = html_inline.DoInline(tmp_dir.GetPath('index.html'), None) + resources = result.inlined_files + resources.add(tmp_dir.GetPath('index.html')) + self.failUnlessEqual(resources, source_resources) + self.failUnlessEqual(expected_inlined, + util.FixLineEnd(result.inlined_data, '\n')) + tmp_dir.CleanUp() + + def testConditionalInclude(self): + '''Tests that output and dependency generation includes only files not'''\ + ''' blocked by macros.''' + + files = { + 'index.html': ''' + + + + + + + + + + + + + ''', + 'img1.png': '''a1''', + 'img2.png': '''a2''', + 'img3.png': '''a3''', + 'img4.png': '''a4''', + 'img5.png': '''a5''', + 'img6.png': '''a6''', + 'img7.png': '''a7''', + 'img8.png': '''a8''', + 'img9.png': '''a9''', + 'img10.png': '''a10''', + } + + expected_inlined = ''' + + + + + + ''' + + expected_files = [ + 'index.html', + 'img1.png', + 'img2.png', + 'img3.png', + 'img7.png', + 'img8.png', + 'img9.png', + 'img10.png' + ] + + source_resources = set() + tmp_dir = util.TempDir(files) + for filename in expected_files: + source_resources.add(tmp_dir.GetPath(filename)) + + class FakeGrdNode(object): + def EvaluateCondition(self, cond): + return eval(cond) + + # Test normal inlining. + result = html_inline.DoInline( + tmp_dir.GetPath('index.html'), + FakeGrdNode()) + resources = result.inlined_files + resources.add(tmp_dir.GetPath('index.html')) + self.failUnlessEqual(resources, source_resources) + + # ignore whitespace + expected_inlined = re.sub(r'\s+', ' ', expected_inlined) + actually_inlined = re.sub(r'\s+', ' ', + util.FixLineEnd(result.inlined_data, '\n')) + self.failUnlessEqual(expected_inlined, actually_inlined); + tmp_dir.CleanUp() + + def testPreprocessOnlyEvaluatesIncludeAndIf(self): + '''Tests that preprocess_only=true evaluates and only. ''' + + files = { + 'index.html': ''' + + + + + +
+ +
+ +
+ + +
+ +
+    +
+ +
+
+ ''')) + html.Parse() + trans = html.Translate('en') + if (html.GetText() != trans): + self.fail() + + + def testHtmlToMessageWithBlockTags(self): + msg = tr_html.HtmlToMessage( + 'Hello

Howdiebingo', True) + result = msg.GetPresentableContent() + self.failUnless( + result == 'HelloBEGIN_PARAGRAPHHowdieBEGIN_BLOCKbingoEND_BLOCK') + + msg = tr_html.HtmlToMessage( + 'Hello

Howdie', True) + result = msg.GetPresentableContent() + self.failUnless( + result == 'HelloBEGIN_PARAGRAPHHowdieBEGIN_BLOCKbingoEND_BLOCK') + + + def testHtmlToMessageRegressions(self): + msg = tr_html.HtmlToMessage(' - ', True) + result = msg.GetPresentableContent() + self.failUnless(result == ' - ') + + + def testEscapeUnescaped(self): + text = '©  & "<hello>"' + unescaped = util.UnescapeHtml(text) + self.failUnless(unescaped == u'\u00a9\u00a0 & ""') + escaped_unescaped = util.EscapeHtml(unescaped, True) + self.failUnless(escaped_unescaped == + u'\u00a9\u00a0 & "<hello>"') + + def testRegressionCjkHtmlFile(self): + # TODO(joi) Fix this problem where unquoted attributes that + # have a value that is CJK characters causes the regular expression + # match never to return. (culprit is the _ELEMENT regexp( + if False: + html = self.HtmlFromFileWithManualCheck(util.PathFromRoot( + r'grit/testdata/ko_oem_enable_bug.html')) + self.failUnless(True) + + def testRegressionCpuHang(self): + # If this regression occurs, the unit test will never return + html = tr_html.TrHtml(StringIO( + '''''')) + html.Parse() + +if __name__ == '__main__': + unittest.main() diff --git a/tools/grit/grit/gather/txt.py b/tools/grit/grit/gather/txt.py new file mode 100644 index 0000000000..e5c10abc28 --- /dev/null +++ b/tools/grit/grit/gather/txt.py @@ -0,0 +1,38 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Supports making amessage from a text file. +''' + +from __future__ import print_function + +from grit.gather import interface +from grit import tclib + + +class TxtFile(interface.GathererBase): + '''A text file gatherer. Very simple, all text from the file becomes a + single clique. + ''' + + def Parse(self): + self.text_ = self._LoadInputFile() + self.clique_ = self.uberclique.MakeClique(tclib.Message(text=self.text_)) + + def GetText(self): + '''Returns the text of what is being gathered.''' + return self.text_ + + def GetTextualIds(self): + return [self.extkey] + + def GetCliques(self): + '''Returns the MessageClique objects for all translateable portions.''' + return [self.clique_] + + def Translate(self, lang, pseudo_if_not_available=True, + skeleton_gatherer=None, fallback_to_english=False): + return self.clique_.MessageForLanguage(lang, + pseudo_if_not_available, + fallback_to_english).GetRealContent() diff --git a/tools/grit/grit/gather/txt_unittest.py b/tools/grit/grit/gather/txt_unittest.py new file mode 100644 index 0000000000..abb9ed98d7 --- /dev/null +++ b/tools/grit/grit/gather/txt_unittest.py @@ -0,0 +1,35 @@ +#!/usr/bin/env python +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Unit tests for TxtFile gatherer''' + +from __future__ import print_function + +import os +import sys +if __name__ == '__main__': + sys.path.append(os.path.join(os.path.dirname(__file__), '../..')) + + +import unittest + +from six import StringIO + +from grit.gather import txt + + +class TxtUnittest(unittest.TestCase): + def testGather(self): + input = StringIO('Hello there\nHow are you?') + gatherer = txt.TxtFile(input) + gatherer.Parse() + self.failUnless(gatherer.GetText() == input.getvalue()) + self.failUnless(len(gatherer.GetCliques()) == 1) + self.failUnless(gatherer.GetCliques()[0].GetMessage().GetRealContent() == + input.getvalue()) + + +if __name__ == '__main__': + unittest.main() diff --git a/tools/grit/grit/grd_reader.py b/tools/grit/grit/grd_reader.py new file mode 100644 index 0000000000..b7bb782977 --- /dev/null +++ b/tools/grit/grit/grd_reader.py @@ -0,0 +1,238 @@ +#!/usr/bin/env python +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Class for reading GRD files into memory, without processing them. +''' + +from __future__ import print_function + +import os.path +import sys +import xml.sax +import xml.sax.handler + +import six + +from grit import exception +from grit import util +from grit.node import mapping +from grit.node import misc + + +class StopParsingException(Exception): + '''An exception used to stop parsing.''' + pass + + +class GrdContentHandler(xml.sax.handler.ContentHandler): + def __init__(self, stop_after, debug, dir, defines, tags_to_ignore, + target_platform, source): + # Invariant of data: + # 'root' is the root of the parse tree being created, or None if we haven't + # parsed out any elements. + # 'stack' is the a stack of elements that we push new nodes onto and + # pop from when they finish parsing, or [] if we are not currently parsing. + # 'stack[-1]' is the top of the stack. + self.root = None + self.stack = [] + self.stop_after = stop_after + self.debug = debug + self.dir = dir + self.defines = defines + self.tags_to_ignore = tags_to_ignore or set() + self.ignore_depth = 0 + self.target_platform = target_platform + self.source = source + + def startElement(self, name, attrs): + if self.ignore_depth or name in self.tags_to_ignore: + if self.debug and self.ignore_depth == 0: + print("Ignoring element %s and its children" % name) + self.ignore_depth += 1 + return + + if self.debug: + attr_list = ' '.join('%s="%s"' % kv for kv in attrs.items()) + print("Starting parsing of element %s with attributes %r" % + (name, attr_list or '(none)')) + + typeattr = attrs.get('type') + node = mapping.ElementToClass(name, typeattr)() + node.source = self.source + + if self.stack: + self.stack[-1].AddChild(node) + node.StartParsing(name, self.stack[-1]) + else: + assert self.root is None + self.root = node + if isinstance(self.root, misc.GritNode): + if self.target_platform: + self.root.SetTargetPlatform(self.target_platform) + node.StartParsing(name, None) + if self.defines: + node.SetDefines(self.defines) + self.stack.append(node) + + for attr, attrval in attrs.items(): + node.HandleAttribute(attr, attrval) + + def endElement(self, name): + if self.ignore_depth: + self.ignore_depth -= 1 + return + + if name == 'part': + partnode = self.stack[-1] + partnode.started_inclusion = True + # Add the contents of the sub-grd file as children of the node. + partname = os.path.join(self.dir, partnode.GetInputPath()) + # Check the GRDP file exists. + if not os.path.exists(partname): + raise exception.FileNotFound(partname) + # Exceptions propagate to the handler in grd_reader.Parse(). + oldsource = self.source + try: + self.source = partname + xml.sax.parse(partname, GrdPartContentHandler(self)) + finally: + self.source = oldsource + + if self.debug: + print("End parsing of element %s" % name) + self.stack.pop().EndParsing() + + if name == self.stop_after: + raise StopParsingException() + + def characters(self, content): + if self.ignore_depth == 0: + if self.stack[-1]: + self.stack[-1].AppendContent(content) + + def ignorableWhitespace(self, whitespace): + # TODO(joi): This is not supported by expat. Should use a different XML + # parser? + pass + + +class GrdPartContentHandler(xml.sax.handler.ContentHandler): + def __init__(self, parent): + self.parent = parent + self.depth = 0 + + def startElement(self, name, attrs): + if self.depth: + self.parent.startElement(name, attrs) + else: + if name != 'grit-part': + raise exception.MissingElement("root tag must be ") + if attrs: + raise exception.UnexpectedAttribute( + " tag must not have attributes") + self.depth += 1 + + def endElement(self, name): + self.depth -= 1 + if self.depth: + self.parent.endElement(name) + + def characters(self, content): + self.parent.characters(content) + + def ignorableWhitespace(self, whitespace): + self.parent.ignorableWhitespace(whitespace) + + +def Parse(filename_or_stream, dir=None, stop_after=None, first_ids_file=None, + debug=False, defines=None, tags_to_ignore=None, target_platform=None, + predetermined_ids_file=None): + '''Parses a GRD file into a tree of nodes (from grit.node). + + If filename_or_stream is a stream, 'dir' should point to the directory + notionally containing the stream (this feature is only used in unit tests). + + If 'stop_after' is provided, the parsing will stop once the first node + with this name has been fully parsed (including all its contents). + + If 'debug' is true, lots of information about the parsing events will be + printed out during parsing of the file. + + If 'first_ids_file' is non-empty, it is used to override the setting for the + first_ids_file attribute of the root node. Note that the first_ids_file + parameter should be relative to the cwd, even though the first_ids_file + attribute of the node is relative to the grd file. + + If 'target_platform' is set, this is used to determine the target + platform of builds, instead of using |sys.platform|. + + Args: + filename_or_stream: './bla.xml' + dir: None (if filename_or_stream is a filename) or '.' + stop_after: 'inputs' + first_ids_file: 'GRIT_DIR/../gritsettings/resource_ids' + debug: False + defines: dictionary of defines, like {'chromeos': '1'} + target_platform: None or the value that would be returned by sys.platform + on your target platform. + predetermined_ids_file: File path to a file containing a pre-determined + mapping from resource names to resource ids which will be used to assign + resource ids to those resources. + + Return: + Subclass of grit.node.base.Node + + Throws: + grit.exception.Parsing + ''' + + if isinstance(filename_or_stream, six.string_types): + source = filename_or_stream + if dir is None: + dir = util.dirname(filename_or_stream) + else: + source = None + + handler = GrdContentHandler(stop_after=stop_after, debug=debug, dir=dir, + defines=defines, tags_to_ignore=tags_to_ignore, + target_platform=target_platform, source=source) + try: + xml.sax.parse(filename_or_stream, handler) + except StopParsingException: + assert stop_after + pass + except: + if not debug: + print("parse exception: run GRIT with the -x flag to debug .grd problems") + raise + + if handler.root.name != 'grit': + raise exception.MissingElement("root tag must be ") + + if hasattr(handler.root, 'SetOwnDir'): + # Fix up the base_dir so it is relative to the input file. + assert dir is not None + handler.root.SetOwnDir(dir) + + if isinstance(handler.root, misc.GritNode): + handler.root.SetPredeterminedIdsFile(predetermined_ids_file) + if first_ids_file: + # Make the path to the first_ids_file relative to the grd file, + # unless it begins with GRIT_DIR. + GRIT_DIR_PREFIX = 'GRIT_DIR' + if not (first_ids_file.startswith(GRIT_DIR_PREFIX) + and first_ids_file[len(GRIT_DIR_PREFIX)] in ['/', '\\']): + rel_dir = os.path.relpath(os.getcwd(), dir) + first_ids_file = util.normpath(os.path.join(rel_dir, first_ids_file)) + handler.root.attrs['first_ids_file'] = first_ids_file + # Assign first ids to the nodes that don't have them. + handler.root.AssignFirstIds(filename_or_stream, defines) + + return handler.root + + +if __name__ == '__main__': + util.ChangeStdoutEncoding() + print(six.text_type(Parse(sys.argv[1]))) diff --git a/tools/grit/grit/grd_reader_unittest.py b/tools/grit/grit/grd_reader_unittest.py new file mode 100644 index 0000000000..920a92f9c0 --- /dev/null +++ b/tools/grit/grit/grd_reader_unittest.py @@ -0,0 +1,346 @@ +#!/usr/bin/env python +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Unit tests for grd_reader package''' + +from __future__ import print_function + +import os +import sys +if __name__ == '__main__': + sys.path.append(os.path.join(os.path.dirname(__file__), '..')) + +import unittest + +import six +from six import StringIO + +from grit import exception +from grit import grd_reader +from grit import util +from grit.node import empty +from grit.node import message + + +class GrdReaderUnittest(unittest.TestCase): + def testParsingAndXmlOutput(self): + input = u''' + + + + + + + + + Hello %sJoi, how are you doing today? + + + + + + + + + + + + + + + + + +''' + pseudo_file = StringIO(input) + tree = grd_reader.Parse(pseudo_file, '.') + output = six.text_type(tree) + expected_output = input.replace(u' base_dir="."', u'') + self.assertEqual(expected_output, output) + self.failUnless(tree.GetNodeById('IDS_GREETING')) + + + def testStopAfter(self): + input = u''' + + + + + + + + + + +''' + pseudo_file = StringIO(input) + tree = grd_reader.Parse(pseudo_file, '.', stop_after='outputs') + # only an child + self.failUnless(len(tree.children) == 1) + self.failUnless(tree.children[0].name == 'outputs') + + def testLongLinesWithComments(self): + input = u''' + + + + + This is a very long line with no linebreaks yes yes it stretches on and on and on! + + + +''' + pseudo_file = StringIO(input) + tree = grd_reader.Parse(pseudo_file, '.') + + greeting = tree.GetNodeById('IDS_GREETING') + self.failUnless(greeting.GetCliques()[0].GetMessage().GetRealContent() == + 'This is a very long line with no linebreaks yes yes it ' + 'stretches on and on and on!') + + def doTestAssignFirstIds(self, first_ids_path): + input = u''' + + + + + test + + + +''' % first_ids_path + pseudo_file = StringIO(input) + grit_root_dir = os.path.join(os.path.abspath(os.path.dirname(__file__)), + '..') + fake_input_path = os.path.join( + grit_root_dir, "grit/testdata/chrome/app/generated_resources.grd") + root = grd_reader.Parse(pseudo_file, os.path.split(fake_input_path)[0]) + root.AssignFirstIds(fake_input_path, {}) + messages_node = root.children[0].children[0] + self.failUnless(isinstance(messages_node, empty.MessagesNode)) + self.failUnless(messages_node.attrs["first_id"] != + empty.MessagesNode().DefaultAttributes()["first_id"]) + + def testAssignFirstIds(self): + self.doTestAssignFirstIds("../../tools/grit/resource_ids") + + def testAssignFirstIdsUseGritDir(self): + self.doTestAssignFirstIds("GRIT_DIR/grit/testdata/tools/grit/resource_ids") + + def testAssignFirstIdsMultipleMessages(self): + """If there are multiple messages sections, the resource_ids file + needs to list multiple first_id values.""" + input = u''' + + + + + test + + + + + test2 + + + +''' + pseudo_file = StringIO(input) + grit_root_dir = os.path.join(os.path.abspath(os.path.dirname(__file__)), + '..') + fake_input_path = os.path.join(grit_root_dir, "grit/testdata/test.grd") + + root = grd_reader.Parse(pseudo_file, os.path.split(fake_input_path)[0]) + root.AssignFirstIds(fake_input_path, {}) + messages_node = root.children[0].children[0] + self.assertTrue(isinstance(messages_node, empty.MessagesNode)) + self.assertEqual('100', messages_node.attrs["first_id"]) + messages_node = root.children[0].children[1] + self.assertTrue(isinstance(messages_node, empty.MessagesNode)) + self.assertEqual('10000', messages_node.attrs["first_id"]) + + def testUseNameForIdAndPpIfdef(self): + input = u''' + + + + + + Hello! + + + + +''' + pseudo_file = StringIO(input) + root = grd_reader.Parse(pseudo_file, '.', defines={'hello': '1'}) + + # Check if the ID is set to the name. In the past, there was a bug + # that caused the ID to be a generated number. + hello = root.GetNodeById('IDS_HELLO') + self.failUnless(hello.GetCliques()[0].GetId() == 'IDS_HELLO') + + def testUseNameForIdWithIfElse(self): + input = u''' + + + + + + + Hello! + + + + + Yellow! + + + + + +''' + pseudo_file = StringIO(input) + root = grd_reader.Parse(pseudo_file, '.', defines={'hello': '1'}) + + # Check if the ID is set to the name. In the past, there was a bug + # that caused the ID to be a generated number. + hello = root.GetNodeById('IDS_HELLO') + self.failUnless(hello.GetCliques()[0].GetId() == 'IDS_HELLO') + + def testPartInclusionAndCorrectSource(self): + arbitrary_path_grd = u'''\ + + test5 + ''' + tmp_dir = util.TempDir({'arbitrary_path.grp': arbitrary_path_grd}) + arbitrary_path_grd_file = tmp_dir.GetPath('arbitrary_path.grp') + top_grd = u'''\ + + + + + test + + + + + + ''' % arbitrary_path_grd_file + sub_grd = u'''\ + + test2 + + test3 + ''' + subsub_grd = u'''\ + + test4 + ''' + expected_output = u'''\ + + + + + test + + + + test2 + + + + test4 + + + + test3 + + + + + test5 + + + + + ''' % arbitrary_path_grd_file + + with util.TempDir({'sub.grp': sub_grd, + 'subsub.grp': subsub_grd}) as tmp_sub_dir: + output = grd_reader.Parse(StringIO(top_grd), + tmp_sub_dir.GetPath()) + correct_sources = { + 'IDS_TEST': None, + 'IDS_TEST2': tmp_sub_dir.GetPath('sub.grp'), + 'IDS_TEST3': tmp_sub_dir.GetPath('sub.grp'), + 'IDS_TEST4': tmp_sub_dir.GetPath('subsub.grp'), + 'IDS_TEST5': arbitrary_path_grd_file, + } + + for node in output.ActiveDescendants(): + with node: + if isinstance(node, message.MessageNode): + self.assertEqual(correct_sources[node.attrs.get('name')], node.source) + self.assertEqual(expected_output.split(), output.FormatXml().split()) + tmp_dir.CleanUp() + + def testPartInclusionFailure(self): + template = u''' + + + %s + + ''' + + part_failures = [ + (exception.UnexpectedContent, u'fnord'), + (exception.UnexpectedChild, + u''), + (exception.FileNotFound, u''), + ] + for raises, data in part_failures: + data = StringIO(template % data) + self.assertRaises(raises, grd_reader.Parse, data, '.') + + gritpart_failures = [ + (exception.UnexpectedAttribute, u''), + (exception.MissingElement, u''), + ] + for raises, data in gritpart_failures: + top_grd = StringIO(template % u'') + with util.TempDir({'bad.grp': data}) as temp_dir: + self.assertRaises(raises, grd_reader.Parse, top_grd, temp_dir.GetPath()) + + def testEarlyEnoughPlatformSpecification(self): + # This is a regression test for issue + # https://code.google.com/p/grit-i18n/issues/detail?id=23 + grd_text = u''' + + + + + foo + + + + boo + + + + ''' % sys.platform + with util.TempDir({}) as temp_dir: + grd_reader.Parse(StringIO(grd_text), temp_dir.GetPath(), + target_platform='android') + + +if __name__ == '__main__': + unittest.main() diff --git a/tools/grit/grit/grit-todo.xml b/tools/grit/grit/grit-todo.xml new file mode 100644 index 0000000000..b8c20fdfad --- /dev/null +++ b/tools/grit/grit/grit-todo.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tools/grit/grit/grit_runner.py b/tools/grit/grit/grit_runner.py new file mode 100644 index 0000000000..26aa0d58c4 --- /dev/null +++ b/tools/grit/grit/grit_runner.py @@ -0,0 +1,334 @@ +#!/usr/bin/env python +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +"""Command processor for GRIT. This is the script you invoke to run the various +GRIT tools. +""" + +from __future__ import print_function + +import os +import sys +if __name__ == '__main__': + sys.path.append(os.path.join(os.path.dirname(__file__), '..')) + +import getopt + +from grit import util + +import grit.extern.FP + +# Tool info factories; these import only within each factory to avoid +# importing most of the GRIT code until required. +def ToolFactoryBuild(): + import grit.tool.build + return grit.tool.build.RcBuilder() + +def ToolFactoryBuildInfo(): + import grit.tool.buildinfo + return grit.tool.buildinfo.DetermineBuildInfo() + +def ToolFactoryCount(): + import grit.tool.count + return grit.tool.count.CountMessage() + +def ToolFactoryDiffStructures(): + import grit.tool.diff_structures + return grit.tool.diff_structures.DiffStructures() + +def ToolFactoryMenuTranslationsFromParts(): + import grit.tool.menu_from_parts + return grit.tool.menu_from_parts.MenuTranslationsFromParts() + +def ToolFactoryNewGrd(): + import grit.tool.newgrd + return grit.tool.newgrd.NewGrd() + +def ToolFactoryResizeDialog(): + import grit.tool.resize + return grit.tool.resize.ResizeDialog() + +def ToolFactoryRc2Grd(): + import grit.tool.rc2grd + return grit.tool.rc2grd.Rc2Grd() + +def ToolFactoryTest(): + import grit.tool.test + return grit.tool.test.TestTool() + +def ToolFactoryTranslationToTc(): + import grit.tool.transl2tc + return grit.tool.transl2tc.TranslationToTc() + +def ToolFactoryUnit(): + import grit.tool.unit + return grit.tool.unit.UnitTestTool() + + +def ToolFactoryUpdateResourceIds(): + import grit.tool.update_resource_ids + return grit.tool.update_resource_ids.UpdateResourceIds() + + +def ToolFactoryXmb(): + import grit.tool.xmb + return grit.tool.xmb.OutputXmb() + +def ToolAndroid2Grd(): + import grit.tool.android2grd + return grit.tool.android2grd.Android2Grd() + +# Keys for the following map +_FACTORY = 1 +_REQUIRES_INPUT = 2 +_HIDDEN = 3 # optional key - presence indicates tool is hidden + +# Maps tool names to the tool's module. Done as a list of (key, value) tuples +# instead of a map to preserve ordering. +_TOOLS = [ + ['android2grd', { + _FACTORY: ToolAndroid2Grd, + _REQUIRES_INPUT: False + }], + ['build', { + _FACTORY: ToolFactoryBuild, + _REQUIRES_INPUT: True + }], + ['buildinfo', { + _FACTORY: ToolFactoryBuildInfo, + _REQUIRES_INPUT: True + }], + ['count', { + _FACTORY: ToolFactoryCount, + _REQUIRES_INPUT: True + }], + [ + 'menufromparts', + { + _FACTORY: ToolFactoryMenuTranslationsFromParts, + _REQUIRES_INPUT: True, + _HIDDEN: True + } + ], + ['newgrd', { + _FACTORY: ToolFactoryNewGrd, + _REQUIRES_INPUT: False + }], + ['rc2grd', { + _FACTORY: ToolFactoryRc2Grd, + _REQUIRES_INPUT: False + }], + ['resize', { + _FACTORY: ToolFactoryResizeDialog, + _REQUIRES_INPUT: True + }], + ['sdiff', { + _FACTORY: ToolFactoryDiffStructures, + _REQUIRES_INPUT: False + }], + ['test', { + _FACTORY: ToolFactoryTest, + _REQUIRES_INPUT: True, + _HIDDEN: True + }], + [ + 'transl2tc', + { + _FACTORY: ToolFactoryTranslationToTc, + _REQUIRES_INPUT: False + } + ], + ['unit', { + _FACTORY: ToolFactoryUnit, + _REQUIRES_INPUT: False + }], + [ + 'update_resource_ids', + { + _FACTORY: ToolFactoryUpdateResourceIds, + _REQUIRES_INPUT: False + } + ], + ['xmb', { + _FACTORY: ToolFactoryXmb, + _REQUIRES_INPUT: True + }], +] + + +def PrintUsage(): + tool_list = '' + for (tool, info) in _TOOLS: + if not _HIDDEN in info: + tool_list += ' %-12s %s\n' % ( + tool, info[_FACTORY]().ShortDescription()) + + print("""GRIT - the Google Resource and Internationalization Tool + +Usage: grit [GLOBALOPTIONS] TOOL [args to tool] + +Global options: + + -i INPUT Specifies the INPUT file to use (a .grd file). If this is not + specified, GRIT will look for the environment variable GRIT_INPUT. + If it is not present either, GRIT will try to find an input file + named 'resource.grd' in the current working directory. + + -h MODULE Causes GRIT to use MODULE.UnsignedFingerPrint instead of + grit.extern.FP.UnsignedFingerprint. MODULE must be + available somewhere in the PYTHONPATH search path. + + -v Print more verbose runtime information. + + -x Print extremely verbose runtime information. Implies -v + + -p FNAME Specifies that GRIT should profile its execution and output the + results to the file FNAME. + +Tools: + + TOOL can be one of the following: +%s + For more information on how to use a particular tool, and the specific + arguments you can send to that tool, execute 'grit help TOOL' +""" % (tool_list)) + + +class Options(object): + """Option storage and parsing.""" + + def __init__(self): + self.hash = None + self.input = None + self.verbose = False + self.extra_verbose = False + self.output_stream = sys.stdout + self.profile_dest = None + + def ReadOptions(self, args): + """Reads options from the start of args and returns the remainder.""" + (opts, args) = getopt.getopt(args, 'vxi:p:h:', ('help',)) + for (key, val) in opts: + if key == '-h': self.hash = val + elif key == '-i': self.input = val + elif key == '-v': + self.verbose = True + util.verbose = True + elif key == '-x': + self.verbose = True + util.verbose = True + self.extra_verbose = True + util.extra_verbose = True + elif key == '-p': self.profile_dest = val + elif key == '--help': + PrintUsage() + sys.exit(0) + + if not self.input: + if 'GRIT_INPUT' in os.environ: + self.input = os.environ['GRIT_INPUT'] + else: + self.input = 'resource.grd' + + return args + + def __repr__(self): + return '(verbose: %d, input: %s)' % ( + self.verbose, self.input) + + +def _GetToolInfo(tool): + """Returns the info map for the tool named 'tool' or None if there is no + such tool.""" + matches = [t for t in _TOOLS if t[0] == tool] + if not matches: + return None + else: + return matches[0][1] + + +def Main(args=None): + """Parses arguments and does the appropriate thing.""" + util.ChangeStdoutEncoding() + + # Support for setuptools console wrappers. + if args is None: + args = sys.argv[1:] + + options = Options() + try: + args = options.ReadOptions(args) # args may be shorter after this + except getopt.GetoptError as e: + print("grit:", str(e)) + print("Try running 'grit help' for valid options.") + return 1 + if not args: + print("No tool provided. Try running 'grit help' for a list of tools.") + return 2 + + tool = args[0] + if tool == 'help': + if len(args) == 1: + PrintUsage() + return 0 + else: + tool = args[1] + if not _GetToolInfo(tool): + print("No such tool. Try running 'grit help' for a list of tools.") + return 2 + + print("Help for 'grit %s' (for general help, run 'grit help'):\n" % + (tool,)) + _GetToolInfo(tool)[_FACTORY]().ShowUsage() + return 0 + if not _GetToolInfo(tool): + print("No such tool. Try running 'grit help' for a list of tools.") + return 2 + + try: + if _GetToolInfo(tool)[_REQUIRES_INPUT]: + os.stat(options.input) + except OSError: + print('Input file %s not found.\n' + 'To specify a different input file:\n' + ' 1. Use the GRIT_INPUT environment variable.\n' + ' 2. Use the -i command-line option. This overrides ' + 'GRIT_INPUT.\n' + ' 3. Specify neither GRIT_INPUT or -i and GRIT will try to load ' + "'resource.grd'\n" + ' from the current directory.' % options.input) + return 2 + + if options.hash: + grit.extern.FP.UseUnsignedFingerPrintFromModule(options.hash) + + try: + toolobject = _GetToolInfo(tool)[_FACTORY]() + if options.profile_dest: + import hotshot + prof = hotshot.Profile(options.profile_dest) + return prof.runcall(toolobject.Run, options, args[1:]) + else: + return toolobject.Run(options, args[1:]) + except getopt.GetoptError as e: + print("grit: %s: %s" % (tool, str(e))) + print("Try running 'grit help %s' for valid options." % (tool,)) + return 1 + + +if __name__ == '__main__': + sys.path.append( + os.path.join( + os.path.dirname( + os.path.dirname(os.path.dirname(os.path.abspath(__file__)))), + 'diagnosis')) + try: + import crbug_1001171 + with crbug_1001171.DumpStateOnLookupError(): + sys.exit(Main(sys.argv[1:])) + except ImportError: + pass + + sys.exit(Main(sys.argv[1:])) diff --git a/tools/grit/grit/grit_runner_unittest.py b/tools/grit/grit/grit_runner_unittest.py new file mode 100644 index 0000000000..1487001d81 --- /dev/null +++ b/tools/grit/grit/grit_runner_unittest.py @@ -0,0 +1,42 @@ +#!/usr/bin/env python +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Unit tests for grit.py''' + +from __future__ import print_function + +import os +import sys +if __name__ == '__main__': + sys.path.append(os.path.join(os.path.dirname(__file__), '..')) + +import unittest + +from six import StringIO + +from grit import util +import grit.grit_runner + +class OptionArgsUnittest(unittest.TestCase): + def setUp(self): + self.buf = StringIO() + self.old_stdout = sys.stdout + sys.stdout = self.buf + + def tearDown(self): + sys.stdout = self.old_stdout + + def testSimple(self): + grit.grit_runner.Main(['-i', + util.PathFromRoot('grit/testdata/simple-input.xml'), + 'test', 'bla', 'voff', 'ga']) + output = self.buf.getvalue() + self.failUnless(output.count("'test'") == 0) # tool name doesn't occur + self.failUnless(output.count('bla')) + self.failUnless(output.count('simple-input.xml')) + + +if __name__ == '__main__': + unittest.main() diff --git a/tools/grit/grit/lazy_re.py b/tools/grit/grit/lazy_re.py new file mode 100644 index 0000000000..5c461e87e7 --- /dev/null +++ b/tools/grit/grit/lazy_re.py @@ -0,0 +1,46 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''In GRIT, we used to compile a lot of regular expressions at parse +time. Since many of them never get used, we use lazy_re to compile +them on demand the first time they are used, thus speeding up startup +time in some cases. +''' + +from __future__ import print_function + +import re + + +class LazyRegexObject(object): + '''This object creates a RegexObject with the arguments passed in + its constructor, the first time any attribute except the several on + the class itself is accessed. This accomplishes lazy compilation of + the regular expression while maintaining a nearly-identical + interface. + ''' + + def __init__(self, *args, **kwargs): + self._stash_args = args + self._stash_kwargs = kwargs + self._lazy_re = None + + def _LazyInit(self): + if not self._lazy_re: + self._lazy_re = re.compile(*self._stash_args, **self._stash_kwargs) + + def __getattribute__(self, name): + if name in ('_LazyInit', '_lazy_re', '_stash_args', '_stash_kwargs'): + return object.__getattribute__(self, name) + else: + self._LazyInit() + return getattr(self._lazy_re, name) + + +def compile(*args, **kwargs): + '''Creates a LazyRegexObject that, when invoked on, will compile a + re.RegexObject (via re.compile) with the same arguments passed to + this function, and delegate almost all of its methods to it. + ''' + return LazyRegexObject(*args, **kwargs) diff --git a/tools/grit/grit/lazy_re_unittest.py b/tools/grit/grit/lazy_re_unittest.py new file mode 100644 index 0000000000..8488b454ee --- /dev/null +++ b/tools/grit/grit/lazy_re_unittest.py @@ -0,0 +1,40 @@ +#!/usr/bin/env python +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Unit test for lazy_re. +''' + +from __future__ import print_function + +import os +import sys +if __name__ == '__main__': + sys.path.append(os.path.join(os.path.dirname(__file__), '..')) + +import re +import unittest + +from grit import lazy_re + + +class LazyReUnittest(unittest.TestCase): + + def testCreatedOnlyOnDemand(self): + rex = lazy_re.compile('bingo') + self.assertEqual(None, rex._lazy_re) + self.assertTrue(rex.match('bingo')) + self.assertNotEqual(None, rex._lazy_re) + + def testJustKwargsWork(self): + rex = lazy_re.compile(flags=re.I, pattern='BiNgO') + self.assertTrue(rex.match('bingo')) + + def testPositionalAndKwargsWork(self): + rex = lazy_re.compile('BiNgO', flags=re.I) + self.assertTrue(rex.match('bingo')) + + +if __name__ == '__main__': + unittest.main() diff --git a/tools/grit/grit/node/__init__.py b/tools/grit/grit/node/__init__.py new file mode 100644 index 0000000000..2fc0d3360c --- /dev/null +++ b/tools/grit/grit/node/__init__.py @@ -0,0 +1,8 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Package 'grit.node' +''' + +pass diff --git a/tools/grit/grit/node/base.py b/tools/grit/grit/node/base.py new file mode 100644 index 0000000000..40859d301d --- /dev/null +++ b/tools/grit/grit/node/base.py @@ -0,0 +1,670 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Base types for nodes in a GRIT resource tree. +''' + +from __future__ import print_function + +import ast +import os +import struct +import sys +from xml.sax import saxutils + +import six + +from grit import constants +from grit import clique +from grit import exception +from grit import util +from grit.node import brotli_util +import grit.format.gzip_string + + +class Node(object): + '''An item in the tree that has children.''' + + # Valid content types that can be returned by _ContentType() + _CONTENT_TYPE_NONE = 0 # No CDATA content but may have children + _CONTENT_TYPE_CDATA = 1 # Only CDATA, no children. + _CONTENT_TYPE_MIXED = 2 # CDATA and children, possibly intermingled + + # Types of files to be compressed by default. + _COMPRESS_BY_DEFAULT_EXTENSIONS = ('.js', '.html', '.css', '.svg') + + # Default nodes to not whitelist skipped + _whitelist_marked_as_skip = False + + # A class-static cache to speed up EvaluateExpression(). + # Keys are expressions (e.g. 'is_ios and lang == "fr"'). Values are tuples + # (code, variables_in_expr) where code is the compiled expression and can be + # directly eval'd, and variables_in_expr is the list of variable and method + # names used in the expression (e.g. ['is_ios', 'lang']). + eval_expr_cache = {} + + def __init__(self): + self.children = [] # A list of child elements + self.mixed_content = [] # A list of u'' and/or child elements (this + # duplicates 'children' but + # is needed to preserve markup-type content). + self.name = u'' # The name of this element + self.attrs = {} # The set of attributes (keys to values) + self.parent = None # Our parent unless we are the root element. + self.uberclique = None # Allows overriding uberclique for parts of tree + self.source = None # File that this node was parsed from + + # This context handler allows you to write "with node:" and get a + # line identifying the offending node if an exception escapes from the body + # of the with statement. + def __enter__(self): + return self + + def __exit__(self, exc_type, exc_value, traceback): + if exc_type is not None: + print(u'Error processing node %s: %s' % (six.text_type(self), exc_value)) + + def __iter__(self): + '''A preorder iteration through the tree that this node is the root of.''' + return self.Preorder() + + def Preorder(self): + '''Generator that generates first this node, then the same generator for + any child nodes.''' + yield self + for child in self.children: + for iterchild in child.Preorder(): + yield iterchild + + def ActiveChildren(self): + '''Returns the children of this node that should be included in the current + configuration. Overridden by .''' + return [node for node in self.children if not node.WhitelistMarkedAsSkip()] + + def ActiveDescendants(self): + '''Yields the current node and all descendants that should be included in + the current configuration, in preorder.''' + yield self + for child in self.ActiveChildren(): + for descendant in child.ActiveDescendants(): + yield descendant + + def GetRoot(self): + '''Returns the root Node in the tree this Node belongs to.''' + curr = self + while curr.parent: + curr = curr.parent + return curr + + # TODO(joi) Use this (currently untested) optimization?: + #if hasattr(self, '_root'): + # return self._root + #curr = self + #while curr.parent and not hasattr(curr, '_root'): + # curr = curr.parent + #if curr.parent: + # self._root = curr._root + #else: + # self._root = curr + #return self._root + + def StartParsing(self, name, parent): + '''Called at the start of parsing. + + Args: + name: u'elementname' + parent: grit.node.base.Node or subclass or None + ''' + assert isinstance(name, six.string_types) + assert not parent or isinstance(parent, Node) + self.name = name + self.parent = parent + + def AddChild(self, child): + '''Adds a child to the list of children of this node, if it is a valid + child for the node.''' + assert isinstance(child, Node) + if (not self._IsValidChild(child) or + self._ContentType() == self._CONTENT_TYPE_CDATA): + explanation = 'invalid child %s for parent %s' % (str(child), self.name) + raise exception.UnexpectedChild(explanation) + self.children.append(child) + self.mixed_content.append(child) + + def RemoveChild(self, child_id): + '''Removes the first node that has a "name" attribute which + matches "child_id" in the list of immediate children of + this node. + + Args: + child_id: String identifying the child to be removed + ''' + index = 0 + # Safe not to copy since we only remove the first element found + for child in self.children: + name_attr = child.attrs['name'] + if name_attr == child_id: + self.children.pop(index) + self.mixed_content.pop(index) + break + index += 1 + + def AppendContent(self, content): + '''Appends a chunk of text as content of this node. + + Args: + content: u'hello' + + Return: + None + ''' + assert isinstance(content, six.string_types) + if self._ContentType() != self._CONTENT_TYPE_NONE: + self.mixed_content.append(content) + elif content.strip() != '': + raise exception.UnexpectedContent() + + def HandleAttribute(self, attrib, value): + '''Informs the node of an attribute that was parsed out of the GRD file + for it. + + Args: + attrib: 'name' + value: 'fooblat' + + Return: + None + ''' + assert isinstance(attrib, six.string_types) + assert isinstance(value, six.string_types) + if self._IsValidAttribute(attrib, value): + self.attrs[attrib] = value + else: + raise exception.UnexpectedAttribute(attrib) + + def EndParsing(self): + '''Called at the end of parsing.''' + + # TODO(joi) Rewrite this, it's extremely ugly! + if len(self.mixed_content): + if isinstance(self.mixed_content[0], six.string_types): + # Remove leading and trailing chunks of pure whitespace. + while (len(self.mixed_content) and + isinstance(self.mixed_content[0], six.string_types) and + self.mixed_content[0].strip() == ''): + self.mixed_content = self.mixed_content[1:] + # Strip leading and trailing whitespace from mixed content chunks + # at front and back. + if (len(self.mixed_content) and + isinstance(self.mixed_content[0], six.string_types)): + self.mixed_content[0] = self.mixed_content[0].lstrip() + # Remove leading and trailing ''' (used to demarcate whitespace) + if (len(self.mixed_content) and + isinstance(self.mixed_content[0], six.string_types)): + if self.mixed_content[0].startswith("'''"): + self.mixed_content[0] = self.mixed_content[0][3:] + if len(self.mixed_content): + if isinstance(self.mixed_content[-1], six.string_types): + # Same stuff all over again for the tail end. + while (len(self.mixed_content) and + isinstance(self.mixed_content[-1], six.string_types) and + self.mixed_content[-1].strip() == ''): + self.mixed_content = self.mixed_content[:-1] + if (len(self.mixed_content) and + isinstance(self.mixed_content[-1], six.string_types)): + self.mixed_content[-1] = self.mixed_content[-1].rstrip() + if (len(self.mixed_content) and + isinstance(self.mixed_content[-1], six.string_types)): + if self.mixed_content[-1].endswith("'''"): + self.mixed_content[-1] = self.mixed_content[-1][:-3] + + # Check that all mandatory attributes are there. + for node_mandatt in self.MandatoryAttributes(): + mandatt_list = [] + if node_mandatt.find('|') >= 0: + mandatt_list = node_mandatt.split('|') + else: + mandatt_list.append(node_mandatt) + + mandatt_option_found = False + for mandatt in mandatt_list: + assert mandatt not in self.DefaultAttributes() + if mandatt in self.attrs: + if not mandatt_option_found: + mandatt_option_found = True + else: + raise exception.MutuallyExclusiveMandatoryAttribute(mandatt) + + if not mandatt_option_found: + raise exception.MissingMandatoryAttribute(mandatt) + + # Add default attributes if not specified in input file. + for defattr in self.DefaultAttributes(): + if not defattr in self.attrs: + self.attrs[defattr] = self.DefaultAttributes()[defattr] + + def GetCdata(self): + '''Returns all CDATA of this element, concatenated into a single + string. Note that this ignores any elements embedded in CDATA.''' + return ''.join([c for c in self.mixed_content + if isinstance(c, six.string_types)]) + + def __str__(self): + '''Returns this node and all nodes below it as an XML document in a Unicode + string.''' + header = u'\n' + return header + self.FormatXml() + + # Some Python 2 glue. + __unicode__ = __str__ + + def FormatXml(self, indent = u'', one_line = False): + '''Returns this node and all nodes below it as an XML + element in a Unicode string. This differs from __unicode__ in that it does + not include the stuff at the top of the string. If one_line is true, + children and CDATA are layed out in a way that preserves internal + whitespace. + ''' + assert isinstance(indent, six.string_types) + + content_one_line = (one_line or + self._ContentType() == self._CONTENT_TYPE_MIXED) + inside_content = self.ContentsAsXml(indent, content_one_line) + + # Then the attributes for this node. + attribs = u'' + default_attribs = self.DefaultAttributes() + for attrib, value in sorted(self.attrs.items()): + # Only print an attribute if it is other than the default value. + if attrib not in default_attribs or value != default_attribs[attrib]: + attribs += u' %s=%s' % (attrib, saxutils.quoteattr(value)) + + # Finally build the XML for our node and return it + if len(inside_content) > 0: + if one_line: + return u'<%s%s>%s' % (self.name, attribs, inside_content, + self.name) + elif content_one_line: + return u'%s<%s%s>\n%s %s\n%s' % ( + indent, self.name, attribs, + indent, inside_content, + indent, self.name) + else: + return u'%s<%s%s>\n%s\n%s' % ( + indent, self.name, attribs, + inside_content, + indent, self.name) + else: + return u'%s<%s%s />' % (indent, self.name, attribs) + + def ContentsAsXml(self, indent, one_line): + '''Returns the contents of this node (CDATA and child elements) in XML + format. If 'one_line' is true, the content will be laid out on one line.''' + assert isinstance(indent, six.string_types) + + # Build the contents of the element. + inside_parts = [] + last_item = None + for mixed_item in self.mixed_content: + if isinstance(mixed_item, Node): + inside_parts.append(mixed_item.FormatXml(indent + u' ', one_line)) + if not one_line: + inside_parts.append(u'\n') + else: + message = mixed_item + # If this is the first item and it starts with whitespace, we add + # the ''' delimiter. + if not last_item and message.lstrip() != message: + message = u"'''" + message + inside_parts.append(util.EncodeCdata(message)) + last_item = mixed_item + + # If there are only child nodes and no cdata, there will be a spurious + # trailing \n + if len(inside_parts) and inside_parts[-1] == '\n': + inside_parts = inside_parts[:-1] + + # If the last item is a string (not a node) and ends with whitespace, + # we need to add the ''' delimiter. + if (isinstance(last_item, six.string_types) and + last_item.rstrip() != last_item): + inside_parts[-1] = inside_parts[-1] + u"'''" + + return u''.join(inside_parts) + + def SubstituteMessages(self, substituter): + '''Applies substitutions to all messages in the tree. + + Called as a final step of RunGatherers. + + Args: + substituter: a grit.util.Substituter object. + ''' + for child in self.children: + child.SubstituteMessages(substituter) + + def _IsValidChild(self, child): + '''Returns true if 'child' is a valid child of this node. + Overridden by subclasses.''' + return False + + def _IsValidAttribute(self, name, value): + '''Returns true if 'name' is the name of a valid attribute of this element + and 'value' is a valid value for that attribute. Overriden by + subclasses unless they have only mandatory attributes.''' + return (name in self.MandatoryAttributes() or + name in self.DefaultAttributes()) + + def _ContentType(self): + '''Returns the type of content this element can have. Overridden by + subclasses. The content type can be one of the _CONTENT_TYPE_XXX constants + above.''' + return self._CONTENT_TYPE_NONE + + def MandatoryAttributes(self): + '''Returns a list of attribute names that are mandatory (non-optional) + on the current element. One can specify a list of + "mutually exclusive mandatory" attributes by specifying them as one + element in the list, separated by a "|" character. + ''' + return [] + + def DefaultAttributes(self): + '''Returns a dictionary of attribute names that have defaults, mapped to + the default value. Overridden by subclasses.''' + return {} + + def GetCliques(self): + '''Returns all MessageClique objects belonging to this node. Overridden + by subclasses. + + Return: + [clique1, clique2] or [] + ''' + return [] + + def ToRealPath(self, path_from_basedir): + '''Returns a real path (which can be absolute or relative to the current + working directory), given a path that is relative to the base directory + set for the GRIT input file. + + Args: + path_from_basedir: '..' + + Return: + 'resource' + ''' + return util.normpath(os.path.join(self.GetRoot().GetBaseDir(), + os.path.expandvars(path_from_basedir))) + + def GetInputPath(self): + '''Returns a path, relative to the base directory set for the grd file, + that points to the file the node refers to. + ''' + # This implementation works for most nodes that have an input file. + return self.attrs['file'] + + def UberClique(self): + '''Returns the uberclique that should be used for messages originating in + a given node. If the node itself has its uberclique set, that is what we + use, otherwise we search upwards until we find one. If we do not find one + even at the root node, we set the root node's uberclique to a new + uberclique instance. + ''' + node = self + while not node.uberclique and node.parent: + node = node.parent + if not node.uberclique: + node.uberclique = clique.UberClique() + return node.uberclique + + def IsTranslateable(self): + '''Returns false if the node has contents that should not be translated, + otherwise returns false (even if the node has no contents). + ''' + if not 'translateable' in self.attrs: + return True + else: + return self.attrs['translateable'] == 'true' + + def IsAccessibilityWithNoUI(self): + '''Returns true if the node is marked as an accessibility label and the + message isn't shown in the UI. Otherwise returns false. This label is + used to determine if the text requires screenshots.''' + if not 'is_accessibility_with_no_ui' in self.attrs: + return False + else: + return self.attrs['is_accessibility_with_no_ui'] == 'true' + + def GetNodeById(self, id): + '''Returns the node in the subtree parented by this node that has a 'name' + attribute matching 'id'. Returns None if no such node is found. + ''' + for node in self: + if 'name' in node.attrs and node.attrs['name'] == id: + return node + return None + + def GetChildrenOfType(self, type): + '''Returns a list of all subnodes (recursing to all leaves) of this node + that are of the indicated type (or tuple of types). + + Args: + type: A type you could use with isinstance(). + + Return: + A list, possibly empty. + ''' + return [child for child in self if isinstance(child, type)] + + def GetTextualIds(self): + '''Returns a list of the textual ids of this node. + ''' + if 'name' in self.attrs: + return [self.attrs['name']] + return [] + + @classmethod + def EvaluateExpression(cls, expr, defs, target_platform, extra_variables={}): + '''Worker for EvaluateCondition (below) and conditions in XTB files.''' + if expr in cls.eval_expr_cache: + code, variables_in_expr = cls.eval_expr_cache[expr] + else: + # Get a list of all variable and method names used in the expression. + syntax_tree = ast.parse(expr, mode='eval') + variables_in_expr = [node.id for node in ast.walk(syntax_tree) if + isinstance(node, ast.Name) and node.id not in ('True', 'False')] + code = compile(syntax_tree, filename='', mode='eval') + cls.eval_expr_cache[expr] = code, variables_in_expr + + # Set values only for variables that are needed to eval the expression. + variable_map = {} + for name in variables_in_expr: + if name == 'os': + value = target_platform + elif name == 'defs': + value = defs + + elif name == 'is_linux': + value = target_platform.startswith('linux') + elif name == 'is_macosx': + value = target_platform == 'darwin' + elif name == 'is_win': + value = target_platform in ('cygwin', 'win32') + elif name == 'is_android': + value = target_platform == 'android' + elif name == 'is_ios': + value = target_platform == 'ios' + elif name == 'is_bsd': + value = 'bsd' in target_platform + elif name == 'is_posix': + value = (target_platform in ('darwin', 'linux2', 'linux3', 'sunos5', + 'android', 'ios') + or 'bsd' in target_platform) + + elif name == 'pp_ifdef': + def pp_ifdef(symbol): + return symbol in defs + value = pp_ifdef + elif name == 'pp_if': + def pp_if(symbol): + return defs.get(symbol, False) + value = pp_if + + elif name in defs: + value = defs[name] + elif name in extra_variables: + value = extra_variables[name] + else: + # Undefined variables default to False. + value = False + + variable_map[name] = value + + eval_result = eval(code, {}, variable_map) + assert isinstance(eval_result, bool) + return eval_result + + def EvaluateCondition(self, expr): + '''Returns true if and only if the Python expression 'expr' evaluates + to true. + + The expression is given a few local variables: + - 'lang' is the language currently being output + (the 'lang' attribute of the element). + - 'context' is the current output context + (the 'context' attribute of the element). + - 'defs' is a map of C preprocessor-style symbol names to their values. + - 'os' is the current platform (likely 'linux2', 'win32' or 'darwin'). + - 'pp_ifdef(symbol)' is a shorthand for "symbol in defs". + - 'pp_if(symbol)' is a shorthand for "symbol in defs and defs[symbol]". + - 'is_linux', 'is_macosx', 'is_win', 'is_posix' are true if 'os' + matches the given platform. + ''' + root = self.GetRoot() + lang = getattr(root, 'output_language', '') + context = getattr(root, 'output_context', '') + defs = getattr(root, 'defines', {}) + target_platform = getattr(root, 'target_platform', '') + extra_variables = { + 'lang': lang, + 'context': context, + } + return Node.EvaluateExpression( + expr, defs, target_platform, extra_variables) + + def OnlyTheseTranslations(self, languages): + '''Turns off loading of translations for languages not in the provided list. + + Attrs: + languages: ['fr', 'zh_cn'] + ''' + for node in self: + if (hasattr(node, 'IsTranslation') and + node.IsTranslation() and + node.GetLang() not in languages): + node.DisableLoading() + + def FindBooleanAttribute(self, attr, default, skip_self): + '''Searches all ancestors of the current node for the nearest enclosing + definition of the given boolean attribute. + + Args: + attr: 'fallback_to_english' + default: What to return if no node defines the attribute. + skip_self: Don't check the current node, only its parents. + ''' + p = self.parent if skip_self else self + while p: + value = p.attrs.get(attr, 'default').lower() + if value != 'default': + return (value == 'true') + p = p.parent + return default + + def PseudoIsAllowed(self): + '''Returns true if this node is allowed to use pseudo-translations. This + is true by default, unless this node is within a node that has + the allow_pseudo attribute set to false. + ''' + return self.FindBooleanAttribute('allow_pseudo', + default=True, skip_self=True) + + def ShouldFallbackToEnglish(self): + '''Returns true iff this node should fall back to English when + pseudotranslations are disabled and no translation is available for a + given message. + ''' + return self.FindBooleanAttribute('fallback_to_english', + default=False, skip_self=True) + + def WhitelistMarkedAsSkip(self): + '''Returns true if the node is marked to be skipped in the output by a + whitelist. + ''' + return self._whitelist_marked_as_skip + + def SetWhitelistMarkedAsSkip(self, mark_skipped): + '''Sets WhitelistMarkedAsSkip. + ''' + self._whitelist_marked_as_skip = mark_skipped + + def ExpandVariables(self): + '''Whether we need to expand variables on a given node.''' + return False + + def IsResourceMapSource(self): + '''Whether this node is a resource map source.''' + return False + + def CompressDataIfNeeded(self, data): + '''Compress data using the format specified in the compress attribute. + + Args: + data: The data to compressed. + Returns: + The data in gzipped or brotli compressed format. If the format is + unspecified then this returns the data uncompressed. + ''' + + compress = self.attrs.get('compress') + + # Compress JS, HTML, CSS and SVG files by default (gzip), unless |compress| + # is explicitly specified. + compress_by_default = (compress == 'default' + and self.attrs.get('file').endswith( + self._COMPRESS_BY_DEFAULT_EXTENSIONS)) + + if compress == 'gzip' or compress_by_default: + # We only use rsyncable compression on Linux. + # We exclude ChromeOS since ChromeOS bots are Linux based but do not have + # the --rsyncable option built in for gzip. See crbug.com/617950. + if sys.platform == 'linux2' and 'chromeos' not in self.GetRoot().defines: + return grit.format.gzip_string.GzipStringRsyncable(data) + return grit.format.gzip_string.GzipString(data) + + if compress == 'brotli': + # The length of the uncompressed data as 8 bytes little-endian. + size_bytes = struct.pack(" ') + + ph = message.PhNode() + ph.StartParsing(u'ph', None) + ph.HandleAttribute(u'name', u'USERNAME') + ph.AppendContent(u'$1') + ex = message.ExNode() + ex.StartParsing(u'ex', None) + ex.AppendContent(u'Joi') + ex.EndParsing() + ph.AddChild(ex) + ph.EndParsing() + + node.AddChild(ph) + node.EndParsing() + + non_indented_xml = node.FormatXml() + self.failUnless(non_indented_xml == u'\n Hello ' + u'<young> $1Joi' + u'\n') + + indented_xml = node.FormatXml(u' ') + self.failUnless(indented_xml == u' \n Hello ' + u'<young> $1Joi' + u'\n ') + + def testXmlFormatMixedContentWithLeadingWhitespace(self): + # Again test using the Message node type, because it is the only mixed + # content node. + node = message.MessageNode() + node.StartParsing(u'message', None) + node.HandleAttribute(u'name', u'name') + node.AppendContent(u"''' Hello ") + + ph = message.PhNode() + ph.StartParsing(u'ph', None) + ph.HandleAttribute(u'name', u'USERNAME') + ph.AppendContent(u'$1') + ex = message.ExNode() + ex.StartParsing(u'ex', None) + ex.AppendContent(u'Joi') + ex.EndParsing() + ph.AddChild(ex) + ph.EndParsing() + + node.AddChild(ph) + node.AppendContent(u" yessiree '''") + node.EndParsing() + + non_indented_xml = node.FormatXml() + self.failUnless(non_indented_xml == + u"\n ''' Hello" + u' <young> $1Joi' + u" yessiree '''\n") + + indented_xml = node.FormatXml(u' ') + self.failUnless(indented_xml == + u" \n ''' Hello" + u' <young> $1Joi' + u" yessiree '''\n ") + + self.failUnless(node.GetNodeById('name')) + + def testXmlFormatContentWithEntities(self): + '''Tests a bug where   would not be escaped correctly.''' + from grit import tclib + msg_node = message.MessageNode.Construct(None, tclib.Message( + text = 'BEGIN_BOLDHelloWHITESPACEthere!END_BOLD Bingo!', + placeholders = [ + tclib.Placeholder('BEGIN_BOLD', '', 'bla'), + tclib.Placeholder('WHITESPACE', ' ', 'bla'), + tclib.Placeholder('END_BOLD', '', 'bla')]), + 'BINGOBONGO') + xml = msg_node.FormatXml() + self.failUnless(xml.find(' ') == -1, 'should have no entities') + + def testIter(self): + # First build a little tree of message and ph nodes. + node = message.MessageNode() + node.StartParsing(u'message', None) + node.HandleAttribute(u'name', u'bla') + node.AppendContent(u" ''' two spaces ") + node.AppendContent(u' space before and after ') + ph = message.PhNode() + ph.StartParsing(u'ph', None) + ph.AddChild(message.ExNode()) + ph.HandleAttribute(u'name', u'BINGO') + ph.AppendContent(u'bongo') + node.AddChild(ph) + node.AddChild(message.PhNode()) + node.AppendContent(u" space before two after '''") + + order = [message.MessageNode, message.PhNode, message.ExNode, message.PhNode] + for n in node: + self.failUnless(type(n) == order[0]) + order = order[1:] + self.failUnless(len(order) == 0) + + def testGetChildrenOfType(self): + xml = ''' + + + + + + + + + + + Hello! + + + ''' + grd = grd_reader.Parse(StringIO(xml), + util.PathFromRoot('grit/test/data')) + from grit.node import node_io + output_nodes = grd.GetChildrenOfType(node_io.OutputNode) + self.failUnlessEqual(len(output_nodes), 3) + self.failUnlessEqual(output_nodes[2].attrs['filename'], + 'de/generated_resources.rc') + + def testEvaluateExpression(self): + def AssertExpr(expected_value, expr, defs, target_platform, + extra_variables): + self.failUnlessEqual(expected_value, base.Node.EvaluateExpression( + expr, defs, target_platform, extra_variables)) + + AssertExpr(True, "True", {}, 'linux', {}) + AssertExpr(False, "False", {}, 'linux', {}) + AssertExpr(True, "True or False", {}, 'linux', {}) + AssertExpr(False, "True and False", {}, 'linux', {}) + AssertExpr(True, "os == 'linux'", {}, 'linux', {}) + AssertExpr(False, "os == 'linux'", {}, 'ios', {}) + AssertExpr(True, "'foo' in defs", {'foo': 'bar'}, 'ios', {}) + AssertExpr(False, "'foo' in defs", {'baz': 'bar'}, 'ios', {}) + AssertExpr(False, "'foo' in defs", {}, 'ios', {}) + AssertExpr(True, "is_linux", {}, 'linux2', {}) + AssertExpr(False, "is_linux", {}, 'win32', {}) + AssertExpr(True, "is_macosx", {}, 'darwin', {}) + AssertExpr(False, "is_macosx", {}, 'ios', {}) + AssertExpr(True, "is_win", {}, 'win32', {}) + AssertExpr(False, "is_win", {}, 'darwin', {}) + AssertExpr(True, "is_android", {}, 'android', {}) + AssertExpr(False, "is_android", {}, 'linux3', {}) + AssertExpr(True, "is_ios", {}, 'ios', {}) + AssertExpr(False, "is_ios", {}, 'darwin', {}) + AssertExpr(True, "is_posix", {}, 'linux2', {}) + AssertExpr(True, "is_posix", {}, 'darwin', {}) + AssertExpr(True, "is_posix", {}, 'android', {}) + AssertExpr(True, "is_posix", {}, 'ios', {}) + AssertExpr(True, "is_posix", {}, 'freebsd7', {}) + AssertExpr(False, "is_posix", {}, 'win32', {}) + AssertExpr(True, "pp_ifdef('foo')", {'foo': True}, 'win32', {}) + AssertExpr(True, "pp_ifdef('foo')", {'foo': False}, 'win32', {}) + AssertExpr(False, "pp_ifdef('foo')", {'bar': True}, 'win32', {}) + AssertExpr(True, "pp_if('foo')", {'foo': True}, 'win32', {}) + AssertExpr(False, "pp_if('foo')", {'foo': False}, 'win32', {}) + AssertExpr(False, "pp_if('foo')", {'bar': True}, 'win32', {}) + AssertExpr(True, "foo", {'foo': True}, 'win32', {}) + AssertExpr(False, "foo", {'foo': False}, 'win32', {}) + AssertExpr(False, "foo", {'bar': True}, 'win32', {}) + AssertExpr(True, "foo == 'baz'", {'foo': 'baz'}, 'win32', {}) + AssertExpr(False, "foo == 'baz'", {'foo': True}, 'win32', {}) + AssertExpr(False, "foo == 'baz'", {}, 'win32', {}) + AssertExpr(True, "lang == 'de'", {}, 'win32', {'lang': 'de'}) + AssertExpr(False, "lang == 'de'", {}, 'win32', {'lang': 'fr'}) + AssertExpr(False, "lang == 'de'", {}, 'win32', {}) + + # Test a couple more complex expressions for good measure. + AssertExpr(True, "is_ios and (lang in ['de', 'fr'] or foo)", + {'foo': 'bar'}, 'ios', {'lang': 'fr', 'context': 'today'}) + AssertExpr(False, "is_ios and (lang in ['de', 'fr'] or foo)", + {'foo': False}, 'linux2', {'lang': 'fr', 'context': 'today'}) + AssertExpr(False, "is_ios and (lang in ['de', 'fr'] or foo)", + {'baz': 'bar'}, 'ios', {'lang': 'he', 'context': 'today'}) + AssertExpr(True, "foo == 'bar' or not baz", + {'foo': 'bar', 'fun': True}, 'ios', {'lang': 'en'}) + AssertExpr(True, "foo == 'bar' or not baz", + {}, 'ios', {'lang': 'en', 'context': 'java'}) + AssertExpr(False, "foo == 'bar' or not baz", + {'foo': 'ruz', 'baz': True}, 'ios', {'lang': 'en'}) + +if __name__ == '__main__': + unittest.main() diff --git a/tools/grit/grit/node/brotli_util.py b/tools/grit/grit/node/brotli_util.py new file mode 100644 index 0000000000..77f70e49d5 --- /dev/null +++ b/tools/grit/grit/node/brotli_util.py @@ -0,0 +1,29 @@ +# Copyright 2019 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +"""Framework for compressing resources using Brotli.""" + +import subprocess + +__brotli_executable = None + + +def SetBrotliCommand(brotli): + # brotli is a list. In production it contains the path to the Brotli executable. + # During testing it contains [python, mock_brotli.py] for testing on Windows. + global __brotli_executable + __brotli_executable = brotli + + +def BrotliCompress(data): + if not __brotli_executable: + raise Exception('Add "use_brotli = true" to you GN grit(...) target ' + + 'if you want to use brotli.') + compress = subprocess.Popen(__brotli_executable + ['-', '-f'], + stdin=subprocess.PIPE, stdout=subprocess.PIPE) + return compress.communicate(data)[0] + +def IsInitialized(): + global __brotli_executable + return __brotli_executable is not None diff --git a/tools/grit/grit/node/custom/__init__.py b/tools/grit/grit/node/custom/__init__.py new file mode 100644 index 0000000000..e179cf7730 --- /dev/null +++ b/tools/grit/grit/node/custom/__init__.py @@ -0,0 +1,8 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Package 'grit.node.custom' +''' + +pass diff --git a/tools/grit/grit/node/custom/filename.py b/tools/grit/grit/node/custom/filename.py new file mode 100644 index 0000000000..55a27e58c1 --- /dev/null +++ b/tools/grit/grit/node/custom/filename.py @@ -0,0 +1,29 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''A CustomType for filenames.''' + +from __future__ import print_function + +from grit import clique +from grit import lazy_re + + +class WindowsFilename(clique.CustomType): + '''Validates that messages can be used as Windows filenames, and strips + illegal characters out of translations. + ''' + + BANNED = lazy_re.compile(r'\+|:|\/|\\\\|\*|\?|\"|\<|\>|\|') + + def Validate(self, message): + return not self.BANNED.search(message.GetPresentableContent()) + + def ValidateAndModify(self, lang, translation): + is_ok = self.Validate(translation) + self.ModifyEachTextPart(lang, translation) + return is_ok + + def ModifyTextPart(self, lang, text): + return self.BANNED.sub(' ', text) diff --git a/tools/grit/grit/node/custom/filename_unittest.py b/tools/grit/grit/node/custom/filename_unittest.py new file mode 100644 index 0000000000..8e2a6dd64a --- /dev/null +++ b/tools/grit/grit/node/custom/filename_unittest.py @@ -0,0 +1,34 @@ +#!/usr/bin/env python +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Unit tests for grit.node.custom.filename''' + +from __future__ import print_function + +import os +import sys +if __name__ == '__main__': + sys.path.append(os.path.join(os.path.dirname(__file__), '../../..')) + +import unittest +from grit.node.custom import filename +from grit import clique +from grit import tclib + + +class WindowsFilenameUnittest(unittest.TestCase): + + def testValidate(self): + factory = clique.UberClique() + msg = tclib.Message(text='Bingo bongo') + c = factory.MakeClique(msg) + c.SetCustomType(filename.WindowsFilename()) + translation = tclib.Translation(id=msg.GetId(), text='Bilingo bolongo:') + c.AddTranslation(translation, 'fr') + self.failUnless(c.MessageForLanguage('fr').GetRealContent() == 'Bilingo bolongo ') + + +if __name__ == '__main__': + unittest.main() diff --git a/tools/grit/grit/node/empty.py b/tools/grit/grit/node/empty.py new file mode 100644 index 0000000000..e19d2c4ddb --- /dev/null +++ b/tools/grit/grit/node/empty.py @@ -0,0 +1,64 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Container nodes that don't have any logic. +''' + +from __future__ import print_function + +from grit.node import base +from grit.node import include +from grit.node import message +from grit.node import misc +from grit.node import node_io +from grit.node import structure + + +class GroupingNode(base.Node): + '''Base class for all the grouping elements (, , + and ).''' + def DefaultAttributes(self): + return { + 'first_id' : '', + 'comment' : '', + 'fallback_to_english' : 'false', + 'fallback_to_low_resolution' : 'false', + } + + +class IncludesNode(GroupingNode): + '''The element.''' + def _IsValidChild(self, child): + return isinstance(child, (include.IncludeNode, misc.IfNode, misc.PartNode)) + + +class MessagesNode(GroupingNode): + '''The element.''' + def _IsValidChild(self, child): + return isinstance(child, (message.MessageNode, misc.IfNode, misc.PartNode)) + + +class StructuresNode(GroupingNode): + '''The element.''' + def _IsValidChild(self, child): + return isinstance(child, (structure.StructureNode, + misc.IfNode, misc.PartNode)) + + +class TranslationsNode(base.Node): + '''The element.''' + def _IsValidChild(self, child): + return isinstance(child, (node_io.FileNode, misc.IfNode, misc.PartNode)) + + +class OutputsNode(base.Node): + '''The element.''' + def _IsValidChild(self, child): + return isinstance(child, (node_io.OutputNode, misc.IfNode, misc.PartNode)) + + +class IdentifiersNode(GroupingNode): + '''The element.''' + def _IsValidChild(self, child): + return isinstance(child, misc.IdentifierNode) diff --git a/tools/grit/grit/node/include.py b/tools/grit/grit/node/include.py new file mode 100644 index 0000000000..b06b9889bb --- /dev/null +++ b/tools/grit/grit/node/include.py @@ -0,0 +1,170 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +"""Handling of the element. +""" + +from __future__ import print_function + +import os + +from grit import util +import grit.format.html_inline +import grit.format.rc +from grit.format import minifier +from grit.node import base + +class IncludeNode(base.Node): + """An element.""" + + def __init__(self): + super(IncludeNode, self).__init__() + + # Cache flattened data so that we don't flatten the same file + # multiple times. + self._flattened_data = None + # Also keep track of the last filename we flattened to, so we can + # avoid doing it more than once. + self._last_flat_filename = None + + def _IsValidChild(self, child): + return False + + def _GetFlattenedData( + self, allow_external_script=False, preprocess_only=False): + if not self._flattened_data: + filename = self.ToRealPath(self.GetInputPath()) + self._flattened_data = ( + grit.format.html_inline.InlineToString(filename, self, + preprocess_only=preprocess_only, + allow_external_script=allow_external_script)) + return self._flattened_data.encode('utf-8') + + def MandatoryAttributes(self): + return ['name', 'type', 'file'] + + def DefaultAttributes(self): + """Attributes: + translateable: False if the node has contents that should not be + translated. + preprocess: Takes the same code path as flattenhtml, but it + disables any processing/inlining outside of + and . + compress: The format to compress the data with, e.g. 'gzip' + or 'false' if data should not be compressed. + skip_minify: If true, skips minifying the node's contents. + skip_in_resource_map: If true, do not add to the resource map. + """ + return { + 'translateable': 'true', + 'generateid': 'true', + 'filenameonly': 'false', + 'mkoutput': 'false', + 'preprocess': 'false', + 'flattenhtml': 'false', + 'compress': 'default', + 'allowexternalscript': 'false', + 'relativepath': 'false', + 'use_base_dir': 'true', + 'skip_minify': 'false', + 'skip_in_resource_map': 'false', + } + + def GetInputPath(self): + # Do not mess with absolute paths, that would make them invalid. + if os.path.isabs(os.path.expandvars(self.attrs['file'])): + return self.attrs['file'] + + # We have no control over code that calls ToRealPath later, so convert + # the path to be relative against our basedir. + if self.attrs.get('use_base_dir', 'true') != 'true': + # Normalize the directory path to use the appropriate OS separator. + # GetBaseDir() may return paths\like\this or paths/like/this, since it is + # read from the base_dir attribute in the grd file. + norm_base_dir = util.normpath(self.GetRoot().GetBaseDir()) + return os.path.relpath(self.attrs['file'], norm_base_dir) + + return self.attrs['file'] + + def FileForLanguage(self, lang, output_dir): + """Returns the file for the specified language. This allows us to return + different files for different language variants of the include file. + """ + input_path = self.GetInputPath() + if input_path is None: + return None + + return self.ToRealPath(input_path) + + def GetDataPackValue(self, lang, encoding): + '''Returns bytes or a str represenation for a data_pack entry.''' + filename = self.ToRealPath(self.GetInputPath()) + if self.attrs['flattenhtml'] == 'true': + allow_external_script = self.attrs['allowexternalscript'] == 'true' + data = self._GetFlattenedData(allow_external_script=allow_external_script) + elif self.attrs['preprocess'] == 'true': + data = self._GetFlattenedData(preprocess_only=True) + else: + data = util.ReadFile(filename, util.BINARY) + + if self.attrs['skip_minify'] != 'true': + # Note that the minifier will only do anything if a minifier command + # has been set in the command line. + data = minifier.Minify(data, filename) + + # Include does not care about the encoding, because it only returns binary + # data. + return self.CompressDataIfNeeded(data) + + def Process(self, output_dir): + """Rewrite file references to be base64 encoded data URLs. The new file + will be written to output_dir and the name of the new file is returned.""" + filename = self.ToRealPath(self.GetInputPath()) + flat_filename = os.path.join(output_dir, + self.attrs['name'] + '_' + os.path.basename(filename)) + + if self._last_flat_filename == flat_filename: + return + + with open(flat_filename, 'wb') as outfile: + outfile.write(self._GetFlattenedData()) + + self._last_flat_filename = flat_filename + return os.path.basename(flat_filename) + + def GetHtmlResourceFilenames(self): + """Returns a set of all filenames inlined by this file.""" + allow_external_script = self.attrs['allowexternalscript'] == 'true' + return grit.format.html_inline.GetResourceFilenames( + self.ToRealPath(self.GetInputPath()), + self, + allow_external_script=allow_external_script) + + def IsResourceMapSource(self): + skip = self.attrs.get('skip_in_resource_map', 'false') == 'true' + return not skip + + @staticmethod + def Construct(parent, name, type, file, translateable=True, + filenameonly=False, mkoutput=False, relativepath=False): + """Creates a new node which is a child of 'parent', with attributes set + by parameters of the same name. + """ + # Convert types to appropriate strings + translateable = util.BoolToString(translateable) + filenameonly = util.BoolToString(filenameonly) + mkoutput = util.BoolToString(mkoutput) + relativepath = util.BoolToString(relativepath) + + node = IncludeNode() + node.StartParsing('include', parent) + node.HandleAttribute('name', name) + node.HandleAttribute('type', type) + node.HandleAttribute('file', file) + node.HandleAttribute('translateable', translateable) + node.HandleAttribute('filenameonly', filenameonly) + node.HandleAttribute('mkoutput', mkoutput) + node.HandleAttribute('relativepath', relativepath) + node.EndParsing() + return node diff --git a/tools/grit/grit/node/include_unittest.py b/tools/grit/grit/node/include_unittest.py new file mode 100644 index 0000000000..4c658f1ffe --- /dev/null +++ b/tools/grit/grit/node/include_unittest.py @@ -0,0 +1,134 @@ +#!/usr/bin/env python +# Copyright (c) 2013 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Unit tests for include.IncludeNode''' + +from __future__ import print_function + +import os +import sys +import unittest +import zlib + +if __name__ == '__main__': + sys.path.append(os.path.join(os.path.dirname(__file__), '../..')) + +from grit.node import misc +from grit.node import include +from grit.node import empty +from grit import util + + +def checkIsGzipped(filename, compress_attr): + test_data_root = util.PathFromRoot('grit/testdata') + root = util.ParseGrdForUnittest( + ''' + + + ''' % (filename, compress_attr), + base_dir=test_data_root) + node, = root.GetChildrenOfType(include.IncludeNode) + compressed = node.GetDataPackValue(lang='en', encoding=util.BINARY) + + decompressed_data = zlib.decompress(compressed, 16 + zlib.MAX_WBITS) + expected = util.ReadFile(os.path.join(test_data_root, filename), util.BINARY) + return expected == decompressed_data + + +class IncludeNodeUnittest(unittest.TestCase): + def testGetPath(self): + root = misc.GritNode() + root.StartParsing(u'grit', None) + root.HandleAttribute(u'latest_public_release', u'0') + root.HandleAttribute(u'current_release', u'1') + root.HandleAttribute(u'base_dir', r'..\resource') + release = misc.ReleaseNode() + release.StartParsing(u'release', root) + release.HandleAttribute(u'seq', u'1') + root.AddChild(release) + includes = empty.IncludesNode() + includes.StartParsing(u'includes', release) + release.AddChild(includes) + include_node = include.IncludeNode() + include_node.StartParsing(u'include', includes) + include_node.HandleAttribute(u'file', r'flugel\kugel.pdf') + includes.AddChild(include_node) + root.EndParsing() + + self.assertEqual(root.ToRealPath(include_node.GetInputPath()), + util.normpath( + os.path.join(r'../resource', r'flugel/kugel.pdf'))) + + def testGetPathNoBasedir(self): + root = misc.GritNode() + root.StartParsing(u'grit', None) + root.HandleAttribute(u'latest_public_release', u'0') + root.HandleAttribute(u'current_release', u'1') + root.HandleAttribute(u'base_dir', r'..\resource') + release = misc.ReleaseNode() + release.StartParsing(u'release', root) + release.HandleAttribute(u'seq', u'1') + root.AddChild(release) + includes = empty.IncludesNode() + includes.StartParsing(u'includes', release) + release.AddChild(includes) + include_node = include.IncludeNode() + include_node.StartParsing(u'include', includes) + include_node.HandleAttribute(u'file', r'flugel\kugel.pdf') + include_node.HandleAttribute(u'use_base_dir', u'false') + includes.AddChild(include_node) + root.EndParsing() + + last_dir = os.path.basename(os.getcwd()) + expected_path = util.normpath(os.path.join( + u'..', last_dir, u'flugel/kugel.pdf')) + self.assertEqual(root.ToRealPath(include_node.GetInputPath()), + expected_path) + + def testCompressGzip(self): + self.assertTrue(checkIsGzipped('test_text.txt', 'compress="gzip"')) + + def testCompressGzipByDefault(self): + self.assertTrue(checkIsGzipped('test_html.html', '')) + self.assertTrue(checkIsGzipped('test_js.js', '')) + self.assertTrue(checkIsGzipped('test_css.css', '')) + self.assertTrue(checkIsGzipped('test_svg.svg', '')) + + self.assertTrue(checkIsGzipped('test_html.html', 'compress="default"')) + self.assertTrue(checkIsGzipped('test_js.js', 'compress="default"')) + self.assertTrue(checkIsGzipped('test_css.css', 'compress="default"')) + self.assertTrue(checkIsGzipped('test_svg.svg', 'compress="default"')) + + def testSkipInResourceMap(self): + root = util.ParseGrdForUnittest(''' + + + + + ''', base_dir = util.PathFromRoot('grit/testdata')) + inc = root.GetChildrenOfType(include.IncludeNode) + self.assertTrue(inc[0].IsResourceMapSource()) + self.assertFalse(inc[1].IsResourceMapSource()) + self.assertTrue(inc[2].IsResourceMapSource()) + + def testAcceptsPreprocess(self): + root = util.ParseGrdForUnittest( + ''' + + + ''', + base_dir=util.PathFromRoot('grit/testdata')) + inc, = root.GetChildrenOfType(include.IncludeNode) + result = inc.GetDataPackValue(lang='en', encoding=util.BINARY) + self.assertIn(b'should be kept', result) + self.assertIn(b'in the middle...', result) + self.assertNotIn(b'should be removed', result) + + +if __name__ == '__main__': + unittest.main() diff --git a/tools/grit/grit/node/mapping.py b/tools/grit/grit/node/mapping.py new file mode 100644 index 0000000000..6297f0b666 --- /dev/null +++ b/tools/grit/grit/node/mapping.py @@ -0,0 +1,60 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Maps each node type to an implementation class. +When adding a new node type, you add to this mapping. +''' + +from __future__ import print_function + +from grit import exception + +from grit.node import empty +from grit.node import include +from grit.node import message +from grit.node import misc +from grit.node import node_io +from grit.node import structure +from grit.node import variant + + +_ELEMENT_TO_CLASS = { + 'identifiers' : empty.IdentifiersNode, + 'includes' : empty.IncludesNode, + 'messages' : empty.MessagesNode, + 'outputs' : empty.OutputsNode, + 'structures' : empty.StructuresNode, + 'translations' : empty.TranslationsNode, + 'include' : include.IncludeNode, + 'emit' : node_io.EmitNode, + 'file' : node_io.FileNode, + 'output' : node_io.OutputNode, + 'ex' : message.ExNode, + 'message' : message.MessageNode, + 'ph' : message.PhNode, + 'else' : misc.ElseNode, + 'grit' : misc.GritNode, + 'identifier' : misc.IdentifierNode, + 'if' : misc.IfNode, + 'part' : misc.PartNode, + 'release' : misc.ReleaseNode, + 'then' : misc.ThenNode, + 'structure' : structure.StructureNode, + 'skeleton' : variant.SkeletonNode, +} + + +def ElementToClass(name, typeattr): + '''Maps an element to a class that handles the element. + + Args: + name: 'element' (the name of the element) + typeattr: 'type' (the value of the type attribute, if present, else None) + + Return: + type + ''' + if name not in _ELEMENT_TO_CLASS: + raise exception.UnknownElement() + return _ELEMENT_TO_CLASS[name] diff --git a/tools/grit/grit/node/message.py b/tools/grit/grit/node/message.py new file mode 100644 index 0000000000..4fa83cf26b --- /dev/null +++ b/tools/grit/grit/node/message.py @@ -0,0 +1,362 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Handling of the element. +''' + +from __future__ import print_function + +import re + +import six + +from grit.node import base + +from grit import clique +from grit import exception +from grit import lazy_re +from grit import tclib +from grit import util + + +# Matches exactly three dots ending a line or followed by whitespace. +_ELLIPSIS_PATTERN = lazy_re.compile(r'(?\s*)(?P.+?)(?P\s*)\Z', + re.DOTALL | re.MULTILINE) + +# placeholder elements should contain the special character formatters +# used to format element content. +# Android format. +_ANDROID_FORMAT = (r'%[1-9]+\$' + r'([-#+ 0,(]*)([0-9]+)?(\.[0-9]+)?' + r'([bBhHsScCdoxXeEfgGaAtT%n])') +# Chrome l10n format. +_CHROME_FORMAT = r'\$+\d' +# Windows EWT numeric and GRIT %s %d formats. +_OTHER_FORMAT = r'%[0-9sd]' + +# Finds formatters that must be in a placeholder () element. +_FORMATTERS = lazy_re.compile( + '(%s)|(%s)|(%s)' % (_ANDROID_FORMAT, _CHROME_FORMAT, _OTHER_FORMAT)) +_BAD_PLACEHOLDER_MSG = ('ERROR: Placeholder formatter found outside of ' + 'tag in message "%s" in %s.') +_INVALID_PH_CHAR_MSG = ('ERROR: Invalid format characters found in message ' + '"%s" tag in %s.') + +# Finds HTML tag tokens. +_HTMLTOKEN = lazy_re.compile(r'<[/]?[a-z][a-z0-9]*[^>]*>', re.I) + +# Finds HTML entities. +_HTMLENTITY = lazy_re.compile(r'&[^\s]*;') + + +class MessageNode(base.ContentNode): + '''A element.''' + + # For splitting a list of things that can be separated by commas or + # whitespace + _SPLIT_RE = lazy_re.compile(r'\s*,\s*|\s+') + + def __init__(self): + super(MessageNode, self).__init__() + # Valid after EndParsing, this is the MessageClique that contains the + # source message and any translations of it that have been loaded. + self.clique = None + + # We don't send leading and trailing whitespace into the translation + # console, but rather tack it onto the source message and any + # translations when formatting them into RC files or what have you. + self.ws_at_start = '' # Any whitespace characters at the start of the text + self.ws_at_end = '' # --"-- at the end of the text + + # A list of "shortcut groups" this message is in. We check to make sure + # that shortcut keys (e.g. &J) within each shortcut group are unique. + self.shortcut_groups_ = [] + + # Formatter-specific data used to control the output of individual strings. + # formatter_data is a space separated list of C preprocessor-style + # definitions. Names without values are given the empty string value. + # Example: "foo=5 bar baz=100" + self.formatter_data = {} + + # Whether or not to convert ... -> U+2026 within Translate(). + self._replace_ellipsis = False + + def _IsValidChild(self, child): + return isinstance(child, (PhNode)) + + def _IsValidAttribute(self, name, value): + if name not in [ + 'name', 'offset', 'translateable', 'desc', 'meaning', + 'internal_comment', 'shortcut_groups', 'custom_type', 'validation_expr', + 'use_name_for_id', 'sub_variable', 'formatter_data', + 'is_accessibility_with_no_ui' + ]: + return False + if (name in ('translateable', 'sub_variable') and + value not in ['true', 'false']): + return False + return True + + def SetReplaceEllipsis(self, value): + r'''Sets whether to replace ... with \u2026. + ''' + self._replace_ellipsis = value + + def MandatoryAttributes(self): + return ['name|offset'] + + def DefaultAttributes(self): + return { + 'custom_type': '', + 'desc': '', + 'formatter_data': '', + 'internal_comment': '', + 'is_accessibility_with_no_ui': 'false', + 'meaning': '', + 'shortcut_groups': '', + 'sub_variable': 'false', + 'translateable': 'true', + 'use_name_for_id': 'false', + 'validation_expr': '', + } + + def HandleAttribute(self, attrib, value): + base.ContentNode.HandleAttribute(self, attrib, value) + if attrib != 'formatter_data': + return + + # Parse value, a space-separated list of defines, into a dict. + # Example: "foo=5 bar" -> {'foo':'5', 'bar':''} + for item in value.split(): + name, _, val = item.partition('=') + self.formatter_data[name] = val + + def GetTextualIds(self): + ''' + Returns the concatenation of the parent's node first_id and + this node's offset if it has one, otherwise just call the + superclass' implementation + ''' + if 'offset' not in self.attrs: + return super(MessageNode, self).GetTextualIds() + + # we search for the first grouping node in the parents' list + # to take care of the case where the first parent is an node + grouping_parent = self.parent + import grit.node.empty + while grouping_parent and not isinstance(grouping_parent, + grit.node.empty.GroupingNode): + grouping_parent = grouping_parent.parent + + assert 'first_id' in grouping_parent.attrs + return [grouping_parent.attrs['first_id'] + '_' + self.attrs['offset']] + + def IsTranslateable(self): + return self.attrs['translateable'] == 'true' + + def EndParsing(self): + super(MessageNode, self).EndParsing() + + # Make the text (including placeholder references) and list of placeholders, + # verify placeholder formats, then strip and store leading and trailing + # whitespace and create the tclib.Message() and a clique to contain it. + + text = '' + placeholders = [] + + for item in self.mixed_content: + if isinstance(item, six.string_types): + # Not a element: fail if any formatters are detected. + if _FORMATTERS.search(item): + print(_BAD_PLACEHOLDER_MSG % (item, self.source)) + raise exception.PlaceholderNotInsidePhNode + text += item + else: + # Extract the element components. + presentation = item.attrs['name'].upper() + text += presentation + ex = ' ' # example element cdata if present. + if len(item.children): + ex = item.children[0].GetCdata() + original = item.GetCdata() + + # Sanity check the element content. + cdata = original + # Replace all HTML tag tokens in cdata. + match = _HTMLTOKEN.search(cdata) + while match: + cdata = cdata.replace(match.group(0), '_') + match = _HTMLTOKEN.search(cdata) + # Replace all HTML entities in cdata. + match = _HTMLENTITY.search(cdata) + while match: + cdata = cdata.replace(match.group(0), '_') + match = _HTMLENTITY.search(cdata) + # Remove first matching formatter from cdata. + match = _FORMATTERS.search(cdata) + if match: + cdata = cdata.replace(match.group(0), '') + # Fail if special chars remain in cdata. + if re.search(r'[%\$]', cdata): + message_id = self.attrs['name'] + ' ' + original; + print(_INVALID_PH_CHAR_MSG % (message_id, self.source)) + raise exception.InvalidCharactersInsidePhNode + + # Otherwise, accept this placeholder. + placeholders.append(tclib.Placeholder(presentation, original, ex)) + + m = _WHITESPACE.match(text) + if m: + self.ws_at_start = m.group('start') + self.ws_at_end = m.group('end') + text = m.group('body') + + self.shortcut_groups_ = self._SPLIT_RE.split(self.attrs['shortcut_groups']) + self.shortcut_groups_ = [i for i in self.shortcut_groups_ if i != ''] + + description_or_id = self.attrs['desc'] + if description_or_id == '' and 'name' in self.attrs: + description_or_id = 'ID: %s' % self.attrs['name'] + + assigned_id = None + if self.attrs['use_name_for_id'] == 'true': + assigned_id = self.attrs['name'] + message = tclib.Message(text=text, placeholders=placeholders, + description=description_or_id, + meaning=self.attrs['meaning'], + assigned_id=assigned_id) + self.InstallMessage(message) + + def InstallMessage(self, message): + '''Sets this node's clique from a tclib.Message instance. + + Args: + message: A tclib.Message. + ''' + self.clique = self.UberClique().MakeClique(message, self.IsTranslateable()) + for group in self.shortcut_groups_: + self.clique.AddToShortcutGroup(group) + if self.attrs['custom_type'] != '': + self.clique.SetCustomType(util.NewClassInstance(self.attrs['custom_type'], + clique.CustomType)) + elif self.attrs['validation_expr'] != '': + self.clique.SetCustomType( + clique.OneOffCustomType(self.attrs['validation_expr'])) + + def SubstituteMessages(self, substituter): + '''Applies substitution to this message. + + Args: + substituter: a grit.util.Substituter object. + ''' + message = substituter.SubstituteMessage(self.clique.GetMessage()) + if message is not self.clique.GetMessage(): + self.InstallMessage(message) + + def GetCliques(self): + return [self.clique] if self.clique else [] + + def Translate(self, lang): + '''Returns a translated version of this message. + ''' + assert self.clique + msg = self.clique.MessageForLanguage(lang, + self.PseudoIsAllowed(), + self.ShouldFallbackToEnglish() + ).GetRealContent() + if self._replace_ellipsis: + msg = _ELLIPSIS_PATTERN.sub(_ELLIPSIS_SYMBOL, msg) + # Always remove all byte order marks (\uFEFF) https://crbug.com/1033305 + msg = msg.replace(u'\uFEFF','') + return msg.replace('[GRITLANGCODE]', lang) + + def NameOrOffset(self): + key = 'name' if 'name' in self.attrs else 'offset' + return self.attrs[key] + + def ExpandVariables(self): + '''We always expand variables on Messages.''' + return True + + def GetDataPackValue(self, lang, encoding): + '''Returns a str represenation for a data_pack entry.''' + message = self.ws_at_start + self.Translate(lang) + self.ws_at_end + return util.Encode(message, encoding) + + def IsResourceMapSource(self): + return True + + @staticmethod + def Construct(parent, message, name, desc='', meaning='', translateable=True): + '''Constructs a new message node that is a child of 'parent', with the + name, desc, meaning and translateable attributes set using the same-named + parameters and the text of the message and any placeholders taken from + 'message', which must be a tclib.Message() object.''' + # Convert type to appropriate string + translateable = 'true' if translateable else 'false' + + node = MessageNode() + node.StartParsing('message', parent) + node.HandleAttribute('name', name) + node.HandleAttribute('desc', desc) + node.HandleAttribute('meaning', meaning) + node.HandleAttribute('translateable', translateable) + + items = message.GetContent() + for ix, item in enumerate(items): + if isinstance(item, six.string_types): + # Ensure whitespace at front and back of message is correctly handled. + if ix == 0: + item = "'''" + item + if ix == len(items) - 1: + item = item + "'''" + + node.AppendContent(item) + else: + phnode = PhNode() + phnode.StartParsing('ph', node) + phnode.HandleAttribute('name', item.GetPresentation()) + phnode.AppendContent(item.GetOriginal()) + + if len(item.GetExample()) and item.GetExample() != ' ': + exnode = ExNode() + exnode.StartParsing('ex', phnode) + exnode.AppendContent(item.GetExample()) + exnode.EndParsing() + phnode.AddChild(exnode) + + phnode.EndParsing() + node.AddChild(phnode) + + node.EndParsing() + return node + + +class PhNode(base.ContentNode): + '''A element.''' + + def _IsValidChild(self, child): + return isinstance(child, ExNode) + + def MandatoryAttributes(self): + return ['name'] + + def EndParsing(self): + super(PhNode, self).EndParsing() + # We only allow a single example for each placeholder + if len(self.children) > 1: + raise exception.TooManyExamples() + + def GetTextualIds(self): + # The 'name' attribute is not an ID. + return [] + + +class ExNode(base.ContentNode): + '''An element.''' + pass diff --git a/tools/grit/grit/node/message_unittest.py b/tools/grit/grit/node/message_unittest.py new file mode 100644 index 0000000000..7a4cbbedc2 --- /dev/null +++ b/tools/grit/grit/node/message_unittest.py @@ -0,0 +1,380 @@ +#!/usr/bin/env python +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Unit tests for grit.node.message''' + +from __future__ import print_function + +import os +import sys +import unittest + +if __name__ == '__main__': + sys.path.append(os.path.join(os.path.dirname(__file__), '../..')) + +from grit import exception +from grit import tclib +from grit import util +from grit.node import message + +class MessageUnittest(unittest.TestCase): + def testMessage(self): + root = util.ParseGrdForUnittest(''' + + + Hello %sJoi, how are you doing today? + + ''') + msg, = root.GetChildrenOfType(message.MessageNode) + cliques = msg.GetCliques() + content = cliques[0].GetMessage().GetPresentableContent() + self.failUnless(content == 'Hello USERNAME, how are you doing today?') + + def testMessageWithWhitespace(self): + root = util.ParseGrdForUnittest("""\ + + + ''' Hello there %s ''' + + """) + msg, = root.GetChildrenOfType(message.MessageNode) + content = msg.GetCliques()[0].GetMessage().GetPresentableContent() + self.failUnless(content == 'Hello there USERNAME') + self.failUnless(msg.ws_at_start == ' ') + self.failUnless(msg.ws_at_end == ' ') + + def testConstruct(self): + msg = tclib.Message(text=" Hello USERNAME, how are you? BINGO\t\t", + placeholders=[tclib.Placeholder('USERNAME', '%s', 'Joi'), + tclib.Placeholder('BINGO', '%d', '11')]) + msg_node = message.MessageNode.Construct(None, msg, 'BINGOBONGO') + self.failUnless(msg_node.children[0].name == 'ph') + self.failUnless(msg_node.children[0].children[0].name == 'ex') + self.failUnless(msg_node.children[0].children[0].GetCdata() == 'Joi') + self.failUnless(msg_node.children[1].children[0].GetCdata() == '11') + self.failUnless(msg_node.ws_at_start == ' ') + self.failUnless(msg_node.ws_at_end == '\t\t') + + def testUnicodeConstruct(self): + text = u'Howdie \u00fe' + msg = tclib.Message(text=text) + msg_node = message.MessageNode.Construct(None, msg, 'BINGOBONGO') + msg_from_node = msg_node.GetCdata() + self.failUnless(msg_from_node == text) + + def testFormatterData(self): + root = util.ParseGrdForUnittest("""\ + + + Text + + """) + msg, = root.GetChildrenOfType(message.MessageNode) + expected_formatter_data = { + 'foo': '123', + 'bar': '', + 'qux': 'low'} + + # Can't use assertDictEqual, not available in Python 2.6, so do it + # by hand. + self.failUnlessEqual(len(expected_formatter_data), + len(msg.formatter_data)) + for key in expected_formatter_data: + self.failUnlessEqual(expected_formatter_data[key], + msg.formatter_data[key]) + + def testReplaceEllipsis(self): + root = util.ParseGrdForUnittest(''' + + + A...B.... %sA... B... C... + + ''') + msg, = root.GetChildrenOfType(message.MessageNode) + msg.SetReplaceEllipsis(True) + content = msg.Translate('en') + self.failUnlessEqual(u'A...B.... %s\u2026 B\u2026 C\u2026', content) + + def testRemoveByteOrderMark(self): + root = util.ParseGrdForUnittest(u''' + + + \uFEFFThis\uFEFF i\uFEFFs OK\uFEFF + + ''') + msg, = root.GetChildrenOfType(message.MessageNode) + content = msg.Translate('en') + self.failUnlessEqual(u'This is OK', content) + + def testPlaceholderHasTooManyExamples(self): + try: + util.ParseGrdForUnittest("""\ + + + Hi $1JoiJoy + + """) + except exception.TooManyExamples: + return + self.fail('Should have gotten exception') + + def testPlaceholderHasInvalidName(self): + try: + util.ParseGrdForUnittest("""\ + + + Hi $1 + + """) + except exception.InvalidPlaceholderName: + return + self.fail('Should have gotten exception') + + def testChromeLocalizedFormatIsInsidePhNode(self): + try: + util.ParseGrdForUnittest("""\ + + + This message is missing the ph node: $1 + + """) + except exception.PlaceholderNotInsidePhNode: + return + self.fail('Should have gotten exception') + + def testAndroidStringFormatIsInsidePhNode(self): + try: + util.ParseGrdForUnittest("""\ + + + This message is missing a ph node: %1$s + + """) + except exception.PlaceholderNotInsidePhNode: + return + self.fail('Should have gotten exception') + + def testAndroidIntegerFormatIsInsidePhNode(self): + try: + util.ParseGrdForUnittest("""\ + + + This message is missing a ph node: %2$d + + """) + except exception.PlaceholderNotInsidePhNode: + return + self.fail('Should have gotten exception') + + def testAndroidIntegerWidthFormatIsInsidePhNode(self): + try: + util.ParseGrdForUnittest("""\ + + + This message is missing a ph node: %2$3d + + """) + except exception.PlaceholderNotInsidePhNode: + return + self.fail('Should have gotten exception') + + def testValidAndroidIntegerWidthFormatInPhNode(self): + try: + util.ParseGrdForUnittest("""\ + + + %2$3d042 + + """) + except: + self.fail('Should not have gotten exception') + + def testAndroidFloatFormatIsInsidePhNode(self): + try: + util.ParseGrdForUnittest("""\ + + + This message is missing a ph node: %3$4.5f + + """) + except exception.PlaceholderNotInsidePhNode: + return + self.fail('Should have gotten exception') + + def testGritStringFormatIsInsidePhNode(self): + try: + util.ParseGrdForUnittest("""\ + + + This message is missing the ph node: %s + + """) + except exception.PlaceholderNotInsidePhNode: + return + self.fail('Should have gotten exception') + + def testGritIntegerFormatIsInsidePhNode(self): + try: + util.ParseGrdForUnittest("""\ + + + This message is missing the ph node: %d + + """) + except exception.PlaceholderNotInsidePhNode: + return + self.fail('Should have gotten exception') + + def testWindowsETWIntegerFormatIsInsidePhNode(self): + try: + util.ParseGrdForUnittest("""\ + + + This message is missing the ph node: %1 + + """) + except exception.PlaceholderNotInsidePhNode: + return + self.fail('Should have gotten exception') + + def testValidMultipleFormattersInsidePhNodes(self): + root = util.ParseGrdForUnittest("""\ + + + %1$d1 error, %2$d1 warning + + """) + msg, = root.GetChildrenOfType(message.MessageNode) + cliques = msg.GetCliques() + content = cliques[0].GetMessage().GetPresentableContent() + self.failUnless(content == 'ERROR_COUNT error, WARNING_COUNT warning') + + def testMultipleFormattersAreInsidePhNodes(self): + failed = True + try: + util.ParseGrdForUnittest("""\ + + + %1$d error, %2$d warning + + """) + except exception.PlaceholderNotInsidePhNode: + failed = False + if failed: + self.fail('Should have gotten exception') + return + + failed = True + try: + util.ParseGrdForUnittest("""\ + + + %1$d1 error, %2$d warning + + """) + except exception.PlaceholderNotInsidePhNode: + failed = False + if failed: + self.fail('Should have gotten exception') + return + + failed = True + try: + util.ParseGrdForUnittest("""\ + + + %1$d %2$d + + """) + except exception.InvalidCharactersInsidePhNode: + failed = False + if failed: + self.fail('Should have gotten exception') + return + + def testValidHTMLFormatInsidePhNode(self): + try: + util.ParseGrdForUnittest("""\ + + + <span>$1</span>1 + + """) + except: + self.fail('Should not have gotten exception') + + def testValidHTMLWithAttributesFormatInsidePhNode(self): + try: + util.ParseGrdForUnittest("""\ + + + <span attribute="js:$this %">$2</span>2 + + """) + except: + self.fail('Should not have gotten exception') + + def testValidHTMLEntityFormatInsidePhNode(self): + try: + util.ParseGrdForUnittest("""\ + + + >%1$d<1 + + """) + except: + self.fail('Should not have gotten exception') + + def testValidMultipleDollarFormatInsidePhNode(self): + try: + util.ParseGrdForUnittest("""\ + + + $$1 + + """) + except: + self.fail('Should not have gotten exception') + + def testInvalidDollarCharacterInsidePhNode(self): + try: + util.ParseGrdForUnittest("""\ + + + %1$d $ + + """) + except exception.InvalidCharactersInsidePhNode: + return + self.fail('Should have gotten exception') + + def testInvalidPercentCharacterInsidePhNode(self): + try: + util.ParseGrdForUnittest("""\ + + + %1$d % + + """) + except exception.InvalidCharactersInsidePhNode: + return + self.fail('Should have gotten exception') + + def testInvalidMixedFormatCharactersInsidePhNode(self): + try: + util.ParseGrdForUnittest("""\ + + + %1$2 + + """) + except exception.InvalidCharactersInsidePhNode: + return + self.fail('Should have gotten exception') + + +if __name__ == '__main__': + unittest.main() diff --git a/tools/grit/grit/node/misc.py b/tools/grit/grit/node/misc.py new file mode 100644 index 0000000000..2d8b06d6a5 --- /dev/null +++ b/tools/grit/grit/node/misc.py @@ -0,0 +1,707 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +"""Miscellaneous node types. +""" + +from __future__ import print_function + +import os.path +import re +import sys + +import six + +from grit import constants +from grit import exception +from grit import util +from grit.extern import FP +from grit.node import base +from grit.node import message +from grit.node import node_io + + +# Python 3 doesn't have long() as int() works everywhere. But we really do need +# the long() behavior on Python 2 as our ids are much too large for int(). +try: + long +except NameError: + long = int + + +# RTL languages +# TODO(jennyz): remove this fixed set of RTL language array +# now that generic expand_variable code exists. +_RTL_LANGS = ( + 'ar', # Arabic + 'fa', # Farsi + 'iw', # Hebrew + 'ks', # Kashmiri + 'ku', # Kurdish + 'ps', # Pashto + 'ur', # Urdu + 'yi', # Yiddish +) + + +def _ReadFirstIdsFromFile(filename, defines): + """Read the starting resource id values from |filename|. We also + expand variables of the form <(FOO) based on defines passed in on + the command line. + + Returns a tuple, the absolute path of SRCDIR followed by the + first_ids dictionary. + """ + first_ids_dict = eval(util.ReadFile(filename, 'utf-8')) + src_root_dir = os.path.abspath(os.path.join(os.path.dirname(filename), + first_ids_dict['SRCDIR'])) + + def ReplaceVariable(matchobj): + for key, value in defines.items(): + if matchobj.group(1) == key: + return value + return '' + + renames = [] + for grd_filename in first_ids_dict: + new_grd_filename = re.sub(r'<\(([A-Za-z_]+)\)', ReplaceVariable, + grd_filename) + if new_grd_filename != grd_filename: + abs_grd_filename = os.path.abspath(new_grd_filename) + if abs_grd_filename[:len(src_root_dir)] != src_root_dir: + new_grd_filename = os.path.basename(abs_grd_filename) + else: + new_grd_filename = abs_grd_filename[len(src_root_dir) + 1:] + new_grd_filename = new_grd_filename.replace('\\', '/') + renames.append((grd_filename, new_grd_filename)) + + for grd_filename, new_grd_filename in renames: + first_ids_dict[new_grd_filename] = first_ids_dict[grd_filename] + del(first_ids_dict[grd_filename]) + + return (src_root_dir, first_ids_dict) + + +def _ComputeIds(root, predetermined_tids): + """Returns a dict of textual id -> numeric id for all nodes in root. + + IDs are mostly assigned sequentially, but will vary based on: + * first_id node attribute (from first_ids_file) + * hash of textual id (if not first_id is defined) + * offset node attribute + * whether the textual id matches a system id + * whether the node generates its own ID via GetId() + + Args: + predetermined_tids: Dict of textual id -> numeric id to use in return dict. + """ + from grit.node import empty, include, misc, structure + + ids = {} # Maps numeric id to textual id + tids = {} # Maps textual id to numeric id + id_reasons = {} # Maps numeric id to text id and a human-readable explanation + group = None + last_id = None + predetermined_ids = {value: key + for key, value in predetermined_tids.items()} + + for item in root: + if isinstance(item, empty.GroupingNode): + # Note: this won't work if any GroupingNode can be contained inside + # another. + group = item + last_id = None + continue + + assert not item.GetTextualIds() or isinstance(item, + (include.IncludeNode, message.MessageNode, + misc.IdentifierNode, structure.StructureNode)) + + # Resources that use the RES protocol don't need + # any numerical ids generated, so we skip them altogether. + # This is accomplished by setting the flag 'generateid' to false + # in the GRD file. + if item.attrs.get('generateid', 'true') == 'false': + continue + + for tid in item.GetTextualIds(): + if util.SYSTEM_IDENTIFIERS.match(tid): + # Don't emit a new ID for predefined IDs + continue + + if tid in tids: + continue + + if predetermined_tids and tid in predetermined_tids: + id = predetermined_tids[tid] + reason = "from predetermined_tids map" + + # Some identifier nodes can provide their own id, + # and we use that id in the generated header in that case. + elif hasattr(item, 'GetId') and item.GetId(): + id = long(item.GetId()) + reason = 'returned by GetId() method' + + elif ('offset' in item.attrs and group and + group.attrs.get('first_id', '') != ''): + offset_text = item.attrs['offset'] + parent_text = group.attrs['first_id'] + + try: + offset_id = long(offset_text) + except ValueError: + offset_id = tids[offset_text] + + try: + parent_id = long(parent_text) + except ValueError: + parent_id = tids[parent_text] + + id = parent_id + offset_id + reason = 'first_id %d + offset %d' % (parent_id, offset_id) + + # We try to allocate IDs sequentially for blocks of items that might + # be related, for instance strings in a stringtable (as their IDs might be + # used e.g. as IDs for some radio buttons, in which case the IDs must + # be sequential). + # + # We do this by having the first item in a section store its computed ID + # (computed from a fingerprint) in its parent object. Subsequent children + # of the same parent will then try to get IDs that sequentially follow + # the currently stored ID (on the parent) and increment it. + elif last_id is None: + # First check if the starting ID is explicitly specified by the parent. + if group and group.attrs.get('first_id', '') != '': + id = long(group.attrs['first_id']) + reason = "from parent's first_id attribute" + else: + # Automatically generate the ID based on the first clique from the + # first child of the first child node of our parent (i.e. when we + # first get to this location in the code). + + # According to + # http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx + # the safe usable range for resource IDs in Windows is from decimal + # 101 to 0x7FFF. + + id = FP.UnsignedFingerPrint(tid) + id = id % (0x7FFF - 101) + 101 + reason = 'chosen by random fingerprint -- use first_id to override' + + last_id = id + else: + id = last_id = last_id + 1 + reason = 'sequentially assigned' + + reason = "%s (%s)" % (tid, reason) + # Don't fail when 'offset' is specified, as the base and the 0th + # offset will have the same ID. + if id in id_reasons and not 'offset' in item.attrs: + raise exception.IdRangeOverlap('ID %d was assigned to both %s and %s.' + % (id, id_reasons[id], reason)) + + if id < 101: + print('WARNING: Numeric resource IDs should be greater than 100 to\n' + 'avoid conflicts with system-defined resource IDs.') + + if tid not in predetermined_tids and id in predetermined_ids: + raise exception.IdRangeOverlap('ID %d overlaps between %s and %s' + % (id, tid, predetermined_ids[tid])) + + ids[id] = tid + tids[tid] = id + id_reasons[id] = reason + + return tids + +class SplicingNode(base.Node): + """A node whose children should be considered to be at the same level as + its siblings for most purposes. This includes and nodes. + """ + + def _IsValidChild(self, child): + assert self.parent, '<%s> node should never be root.' % self.name + if isinstance(child, SplicingNode): + return True # avoid O(n^2) behavior + return self.parent._IsValidChild(child) + + +class IfNode(SplicingNode): + """A node for conditional inclusion of resources. + """ + + def MandatoryAttributes(self): + return ['expr'] + + def _IsValidChild(self, child): + return (isinstance(child, (ThenNode, ElseNode)) or + super(IfNode, self)._IsValidChild(child)) + + def EndParsing(self): + children = self.children + self.if_then_else = False + if any(isinstance(node, (ThenNode, ElseNode)) for node in children): + if (len(children) != 2 or not isinstance(children[0], ThenNode) or + not isinstance(children[1], ElseNode)): + raise exception.UnexpectedChild( + ' element must be ......') + self.if_then_else = True + + def ActiveChildren(self): + cond = self.EvaluateCondition(self.attrs['expr']) + if self.if_then_else: + return self.children[0 if cond else 1].ActiveChildren() + else: + # Equivalent to having all children inside with an empty + return super(IfNode, self).ActiveChildren() if cond else [] + + +class ThenNode(SplicingNode): + """A node. Can only appear directly inside an node.""" + pass + + +class ElseNode(SplicingNode): + """An node. Can only appear directly inside an node.""" + pass + + +class PartNode(SplicingNode): + """A node for inclusion of sub-grd (*.grp) files. + """ + + def __init__(self): + super(PartNode, self).__init__() + self.started_inclusion = False + + def MandatoryAttributes(self): + return ['file'] + + def _IsValidChild(self, child): + return self.started_inclusion and super(PartNode, self)._IsValidChild(child) + + +class ReleaseNode(base.Node): + """The element.""" + + def _IsValidChild(self, child): + from grit.node import empty + return isinstance(child, (empty.IncludesNode, empty.MessagesNode, + empty.StructuresNode, empty.IdentifiersNode)) + + def _IsValidAttribute(self, name, value): + return ( + (name == 'seq' and int(value) <= self.GetRoot().GetCurrentRelease()) or + name == 'allow_pseudo' + ) + + def MandatoryAttributes(self): + return ['seq'] + + def DefaultAttributes(self): + return { 'allow_pseudo' : 'true' } + + +class GritNode(base.Node): + """The root element.""" + + def __init__(self): + super(GritNode, self).__init__() + self.output_language = '' + self.defines = {} + self.substituter = None + self.target_platform = sys.platform + self.whitelist_support = False + self._predetermined_ids_file = None + self._id_map = None # Dict of textual_id -> numeric_id. + + def _IsValidChild(self, child): + from grit.node import empty + return isinstance(child, (ReleaseNode, empty.TranslationsNode, + empty.OutputsNode)) + + def _IsValidAttribute(self, name, value): + if name not in ['base_dir', 'first_ids_file', 'source_lang_id', + 'latest_public_release', 'current_release', + 'enc_check', 'tc_project', 'grit_version', + 'output_all_resource_defines']: + return False + if name in ['latest_public_release', 'current_release'] and value.strip( + '0123456789') != '': + return False + return True + + def MandatoryAttributes(self): + return ['latest_public_release', 'current_release'] + + def DefaultAttributes(self): + return { + 'base_dir' : '.', + 'first_ids_file': '', + 'grit_version': 1, + 'source_lang_id' : 'en', + 'enc_check' : constants.ENCODING_CHECK, + 'tc_project' : 'NEED_TO_SET_tc_project_ATTRIBUTE', + } + + def EndParsing(self): + super(GritNode, self).EndParsing() + if (int(self.attrs['latest_public_release']) + > int(self.attrs['current_release'])): + raise exception.Parsing('latest_public_release cannot have a greater ' + 'value than current_release') + + self.ValidateUniqueIds() + + # Add the encoding check if it's not present (should ensure that it's always + # present in all .grd files generated by GRIT). If it's present, assert if + # it's not correct. + if 'enc_check' not in self.attrs or self.attrs['enc_check'] == '': + self.attrs['enc_check'] = constants.ENCODING_CHECK + else: + assert self.attrs['enc_check'] == constants.ENCODING_CHECK, ( + 'Are you sure your .grd file is in the correct encoding (UTF-8)?') + + def ValidateUniqueIds(self): + """Validate that 'name' attribute is unique in all nodes in this tree + except for nodes that are children of nodes. + """ + unique_names = {} + duplicate_names = [] + # To avoid false positives from mutually exclusive clauses, check + # against whatever the output condition happens to be right now. + # TODO(benrg): do something better. + for node in self.ActiveDescendants(): + if node.attrs.get('generateid', 'true') == 'false': + continue # Duplication not relevant in that case + + for node_id in node.GetTextualIds(): + if util.SYSTEM_IDENTIFIERS.match(node_id): + continue # predefined IDs are sometimes used more than once + + if node_id in unique_names and node_id not in duplicate_names: + duplicate_names.append(node_id) + unique_names[node_id] = 1 + + if len(duplicate_names): + raise exception.DuplicateKey(', '.join(duplicate_names)) + + + def GetCurrentRelease(self): + """Returns the current release number.""" + return int(self.attrs['current_release']) + + def GetLatestPublicRelease(self): + """Returns the latest public release number.""" + return int(self.attrs['latest_public_release']) + + def GetSourceLanguage(self): + """Returns the language code of the source language.""" + return self.attrs['source_lang_id'] + + def GetTcProject(self): + """Returns the name of this project in the TranslationConsole, or + 'NEED_TO_SET_tc_project_ATTRIBUTE' if it is not defined.""" + return self.attrs['tc_project'] + + def SetOwnDir(self, dir): + """Informs the 'grit' element of the directory the file it is in resides. + This allows it to calculate relative paths from the input file, which is + what we desire (rather than from the current path). + + Args: + dir: r'c:\bla' + + Return: + None + """ + assert dir + self.base_dir = os.path.normpath(os.path.join(dir, self.attrs['base_dir'])) + + def GetBaseDir(self): + """Returns the base directory, relative to the working directory. To get + the base directory as set in the .grd file, use GetOriginalBaseDir() + """ + if hasattr(self, 'base_dir'): + return self.base_dir + else: + return self.GetOriginalBaseDir() + + def GetOriginalBaseDir(self): + """Returns the base directory, as set in the .grd file. + """ + return self.attrs['base_dir'] + + def IsWhitelistSupportEnabled(self): + return self.whitelist_support + + def SetWhitelistSupportEnabled(self, whitelist_support): + self.whitelist_support = whitelist_support + + def GetInputFiles(self): + """Returns the list of files that are read to produce the output.""" + + # Importing this here avoids a circular dependency in the imports. + # pylint: disable-msg=C6204 + from grit.node import include + from grit.node import misc + from grit.node import structure + from grit.node import variant + + # Check if the input is required for any output configuration. + input_files = set() + # Collect even inactive PartNodes since they affect ID assignments. + for node in self: + if isinstance(node, misc.PartNode): + input_files.add(self.ToRealPath(node.GetInputPath())) + + old_output_language = self.output_language + for lang, ctx, fallback in self.GetConfigurations(): + self.SetOutputLanguage(lang or self.GetSourceLanguage()) + self.SetOutputContext(ctx) + self.SetFallbackToDefaultLayout(fallback) + + for node in self.ActiveDescendants(): + if isinstance(node, (node_io.FileNode, include.IncludeNode, + structure.StructureNode, variant.SkeletonNode)): + input_path = node.GetInputPath() + if input_path is not None: + input_files.add(self.ToRealPath(input_path)) + + # If it's a flattened node, grab inlined resources too. + if ((node.name == 'structure' or node.name == 'include') + and node.attrs['flattenhtml'] == 'true'): + if node.name == 'structure': + node.RunPreSubstitutionGatherer() + input_files.update(node.GetHtmlResourceFilenames()) + + self.SetOutputLanguage(old_output_language) + return sorted(input_files) + + def GetFirstIdsFile(self): + """Returns a usable path to the first_ids file, if set, otherwise + returns None. + + The first_ids_file attribute is by default relative to the + base_dir of the .grd file, but may be prefixed by GRIT_DIR/, + which makes it relative to the directory of grit.py + (e.g. GRIT_DIR/../gritsettings/resource_ids). + """ + if not self.attrs['first_ids_file']: + return None + + path = self.attrs['first_ids_file'] + GRIT_DIR_PREFIX = 'GRIT_DIR' + if (path.startswith(GRIT_DIR_PREFIX) + and path[len(GRIT_DIR_PREFIX)] in ['/', '\\']): + return util.PathFromRoot(path[len(GRIT_DIR_PREFIX) + 1:]) + else: + return self.ToRealPath(path) + + def GetOutputFiles(self): + """Returns the list of nodes that are descendants of this node's + child and are not enclosed by unsatisfied conditionals. + """ + for child in self.children: + if child.name == 'outputs': + return [node for node in child.ActiveDescendants() + if node.name == 'output'] + raise exception.MissingElement() + + def GetConfigurations(self): + """Returns the distinct (language, context, fallback_to_default_layout) + triples from the output nodes. + """ + return set((n.GetLanguage(), n.GetContext(), n.GetFallbackToDefaultLayout()) + for n in self.GetOutputFiles()) + + def GetSubstitutionMessages(self): + """Returns the list of nodes.""" + return [n for n in self.ActiveDescendants() + if isinstance(n, message.MessageNode) + and n.attrs['sub_variable'] == 'true'] + + def SetOutputLanguage(self, output_language): + """Set the output language. Prepares substitutions. + + The substitutions are reset every time the language is changed. + They include messages designated as variables, and language codes for html + and rc files. + + Args: + output_language: a two-letter language code (eg: 'en', 'ar'...) or '' + """ + if not output_language: + # We do not specify the output language for .grh files, + # so we get an empty string as the default. + # The value should match grit.clique.MessageClique.source_language. + output_language = self.GetSourceLanguage() + if output_language != self.output_language: + self.output_language = output_language + self.substituter = None # force recalculate + + def SetOutputContext(self, output_context): + self.output_context = output_context + self.substituter = None # force recalculate + + def SetFallbackToDefaultLayout(self, fallback_to_default_layout): + self.fallback_to_default_layout = fallback_to_default_layout + self.substituter = None # force recalculate + + def SetDefines(self, defines): + self.defines = defines + self.substituter = None # force recalculate + + def SetTargetPlatform(self, target_platform): + self.target_platform = target_platform + + def GetSubstituter(self): + if self.substituter is None: + self.substituter = util.Substituter() + self.substituter.AddMessages(self.GetSubstitutionMessages(), + self.output_language) + if self.output_language in _RTL_LANGS: + direction = 'dir="RTL"' + else: + direction = 'dir="LTR"' + self.substituter.AddSubstitutions({ + 'GRITLANGCODE': self.output_language, + 'GRITDIR': direction, + }) + from grit.format import rc # avoid circular dep + rc.RcSubstitutions(self.substituter, self.output_language) + return self.substituter + + def AssignFirstIds(self, filename_or_stream, defines): + """Assign first ids to each grouping node based on values from the + first_ids file (if specified on the node). + """ + assert self._id_map is None, 'AssignFirstIds() after InitializeIds()' + # If the input is a stream, then we're probably in a unit test and + # should skip this step. + if not isinstance(filename_or_stream, six.string_types): + return + + # Nothing to do if the first_ids_filename attribute isn't set. + first_ids_filename = self.GetFirstIdsFile() + if not first_ids_filename: + return + + src_root_dir, first_ids = _ReadFirstIdsFromFile(first_ids_filename, + defines) + from grit.node import empty + for node in self.Preorder(): + if isinstance(node, empty.GroupingNode): + abs_filename = os.path.abspath(filename_or_stream) + if abs_filename[:len(src_root_dir)] != src_root_dir: + filename = os.path.basename(filename_or_stream) + else: + filename = abs_filename[len(src_root_dir) + 1:] + filename = filename.replace('\\', '/') + + if node.attrs['first_id'] != '': + raise Exception( + "Don't set the first_id attribute when using the first_ids_file " + "attribute on the node, update %s instead." % + first_ids_filename) + + try: + id_list = first_ids[filename][node.name] + except KeyError as e: + print('-' * 78) + print('Resource id not set for %s (%s)!' % (filename, node.name)) + print('Please update %s to include an entry for %s. See the ' + 'comments in resource_ids for information on why you need to ' + 'update that file.' % (first_ids_filename, filename)) + print('-' * 78) + raise e + + try: + node.attrs['first_id'] = str(id_list.pop(0)) + except IndexError as e: + raise Exception('Please update %s and add a first id for %s (%s).' + % (first_ids_filename, filename, node.name)) + + def GetIdMap(self): + '''Return a dictionary mapping textual ids to numeric ids.''' + return self._id_map + + def SetPredeterminedIdsFile(self, predetermined_ids_file): + assert self._id_map is None, ( + 'SetPredeterminedIdsFile() after InitializeIds()') + self._predetermined_ids_file = predetermined_ids_file + + def InitializeIds(self): + '''Initializes the text ID -> numeric ID mapping.''' + predetermined_id_map = {} + if self._predetermined_ids_file: + with open(self._predetermined_ids_file) as f: + for line in f: + tid, nid = line.split() + predetermined_id_map[tid] = int(nid) + self._id_map = _ComputeIds(self, predetermined_id_map) + + def RunGatherers(self, debug=False): + '''Call RunPreSubstitutionGatherer() on every node of the tree, then apply + substitutions, then call RunPostSubstitutionGatherer() on every node. + + The substitutions step requires that the output language has been set. + Locally, get the Substitution messages and add them to the substituter. + Also add substitutions for language codes in the Rc. + + Args: + debug: will print information while running gatherers. + ''' + for node in self.ActiveDescendants(): + if hasattr(node, 'RunPreSubstitutionGatherer'): + with node: + node.RunPreSubstitutionGatherer(debug=debug) + + assert self.output_language + self.SubstituteMessages(self.GetSubstituter()) + + for node in self.ActiveDescendants(): + if hasattr(node, 'RunPostSubstitutionGatherer'): + with node: + node.RunPostSubstitutionGatherer(debug=debug) + + +class IdentifierNode(base.Node): + """A node for specifying identifiers that should appear in the resource + header file, and be unique amongst all other resource identifiers, but don't + have any other attributes or reference any resources. + """ + + def MandatoryAttributes(self): + return ['name'] + + def DefaultAttributes(self): + return { 'comment' : '', 'id' : '', 'systemid': 'false' } + + def GetId(self): + """Returns the id of this identifier if it has one, None otherwise + """ + if 'id' in self.attrs: + return self.attrs['id'] + return None + + def EndParsing(self): + """Handles system identifiers.""" + super(IdentifierNode, self).EndParsing() + if self.attrs['systemid'] == 'true': + util.SetupSystemIdentifiers((self.attrs['name'],)) + + @staticmethod + def Construct(parent, name, id, comment, systemid='false'): + """Creates a new node which is a child of 'parent', with attributes set + by parameters of the same name. + """ + node = IdentifierNode() + node.StartParsing('identifier', parent) + node.HandleAttribute('name', name) + node.HandleAttribute('id', id) + node.HandleAttribute('comment', comment) + node.HandleAttribute('systemid', systemid) + node.EndParsing() + return node diff --git a/tools/grit/grit/node/misc_unittest.py b/tools/grit/grit/node/misc_unittest.py new file mode 100644 index 0000000000..c192b096f4 --- /dev/null +++ b/tools/grit/grit/node/misc_unittest.py @@ -0,0 +1,590 @@ +#!/usr/bin/env python +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Unit tests for misc.GritNode''' + +from __future__ import print_function + +import contextlib +import os +import sys +import tempfile +import unittest + +if __name__ == '__main__': + sys.path.append(os.path.join(os.path.dirname(__file__), '../..')) + +from six import StringIO + +from grit import grd_reader +import grit.exception +from grit import util +from grit.format import rc +from grit.format import rc_header +from grit.node import misc + + +@contextlib.contextmanager +def _MakeTempPredeterminedIdsFile(content): + """Write the |content| string to a temporary file. + + The temporary file must be deleted by the caller. + + Example: + with _MakeTempPredeterminedIdsFile('foo') as path: + ... + os.remove(path) + + Args: + content: The string to write. + + Yields: + The name of the temporary file. + """ + with tempfile.NamedTemporaryFile(mode='w', delete=False) as f: + f.write(content) + f.flush() + f.close() + yield f.name + + +class GritNodeUnittest(unittest.TestCase): + def testUniqueNameAttribute(self): + try: + restree = grd_reader.Parse( + util.PathFromRoot('grit/testdata/duplicate-name-input.xml')) + self.fail('Expected parsing exception because of duplicate names.') + except grit.exception.Parsing: + pass # Expected case + + def testReadFirstIdsFromFile(self): + test_resource_ids = os.path.join(os.path.dirname(__file__), '..', + 'testdata', 'resource_ids') + base_dir = os.path.dirname(test_resource_ids) + + src_dir, id_dict = misc._ReadFirstIdsFromFile( + test_resource_ids, + { + 'FOO': os.path.join(base_dir, 'bar'), + 'SHARED_INTERMEDIATE_DIR': os.path.join(base_dir, + 'out/Release/obj/gen'), + }) + self.assertEqual({}, id_dict.get('bar/file.grd', None)) + self.assertEqual({}, + id_dict.get('out/Release/obj/gen/devtools/devtools.grd', None)) + + src_dir, id_dict = misc._ReadFirstIdsFromFile( + test_resource_ids, + { + 'SHARED_INTERMEDIATE_DIR': '/outside/src_dir', + }) + self.assertEqual({}, id_dict.get('devtools.grd', None)) + + # Verifies that GetInputFiles() returns the correct list of files + # corresponding to ChromeScaledImage nodes when assets are missing. + def testGetInputFilesChromeScaledImage(self): + chrome_html_path = util.PathFromRoot('grit/testdata/chrome_html.html') + xml = ''' + + + + + + + + + + + + + ''' % chrome_html_path + + grd = grd_reader.Parse(StringIO(xml), + util.PathFromRoot('grit/testdata')) + expected = ['chrome_html.html', 'default_100_percent/a.png', + 'default_100_percent/b.png', 'included_sample.html', + 'special_100_percent/a.png'] + actual = [os.path.relpath(path, util.PathFromRoot('grit/testdata')) for + path in grd.GetInputFiles()] + # Convert path separator for Windows paths. + actual = [path.replace('\\', '/') for path in actual] + self.assertEquals(expected, actual) + + # Verifies that GetInputFiles() returns the correct list of files + # when files include other files. + def testGetInputFilesFromIncludes(self): + chrome_html_path = util.PathFromRoot('grit/testdata/chrome_html.html') + xml = ''' + + + + + + + + + + + ''' % chrome_html_path + + grd = grd_reader.Parse(StringIO(xml), util.PathFromRoot('grit/testdata')) + expected = ['chrome_html.html', 'included_sample.html'] + actual = [os.path.relpath(path, util.PathFromRoot('grit/testdata')) for + path in grd.GetInputFiles()] + # Convert path separator for Windows paths. + actual = [path.replace('\\', '/') for path in actual] + self.assertEquals(expected, actual) + + def testNonDefaultEntry(self): + grd = util.ParseGrdForUnittest(''' + + bar + + bar + + ''') + grd.SetOutputLanguage('fr') + output = ''.join(rc_header.Format(grd, 'fr', '.')) + self.assertIn('#define IDS_A 2378\n#define IDS_B 2379', output) + + def testExplicitFirstIdOverlaps(self): + # second first_id will overlap preexisting range + self.assertRaises(grit.exception.IdRangeOverlap, + util.ParseGrdForUnittest, ''' + + + + + + + Hello %sJoi, how are you doing today? + + Frubegfrums + ''') + + def testImplicitOverlapsPreexisting(self): + # second message in will overlap preexisting range + self.assertRaises(grit.exception.IdRangeOverlap, + util.ParseGrdForUnittest, ''' + + + + + + + Hello %sJoi, how are you doing today? + + Frubegfrums + ''') + + def testPredeterminedIds(self): + with _MakeTempPredeterminedIdsFile('IDS_A 101\nIDS_B 102') as ids_file: + grd = util.ParseGrdForUnittest(''' + + + + + + Hello %sJoi, how are you doing today? + + + Bongo! + + ''', predetermined_ids_file=ids_file) + output = rc_header.FormatDefines(grd) + self.assertEqual(('#define IDS_B 102\n' + '#define IDS_GREETING 10000\n' + '#define IDS_A 101\n'), ''.join(output)) + os.remove(ids_file) + + def testPredeterminedIdsOverlap(self): + with _MakeTempPredeterminedIdsFile('ID_LOGO 10000') as ids_file: + self.assertRaises(grit.exception.IdRangeOverlap, + util.ParseGrdForUnittest, ''' + + + + + + Hello %sJoi, how are you doing today? + + + Bongo! + + ''', predetermined_ids_file=ids_file) + os.remove(ids_file) + + +class IfNodeUnittest(unittest.TestCase): + def testIffyness(self): + grd = grd_reader.Parse(StringIO(''' + + + + + + Bingo! + + + + + Hello! + + + + + Good morning + + + + is_win + + + + '''), dir='.') + + messages_node = grd.children[0].children[0] + bingo_message = messages_node.children[0].children[0] + hello_message = messages_node.children[1].children[0] + french_message = messages_node.children[2].children[0] + is_win_message = messages_node.children[3].children[0] + + self.assertTrue(bingo_message.name == 'message') + self.assertTrue(hello_message.name == 'message') + self.assertTrue(french_message.name == 'message') + + grd.SetOutputLanguage('fr') + grd.SetDefines({'hello': '1'}) + active = set(grd.ActiveDescendants()) + self.failUnless(bingo_message not in active) + self.failUnless(hello_message in active) + self.failUnless(french_message in active) + + grd.SetOutputLanguage('en') + grd.SetDefines({'bingo': 1}) + active = set(grd.ActiveDescendants()) + self.failUnless(bingo_message in active) + self.failUnless(hello_message not in active) + self.failUnless(french_message not in active) + + grd.SetOutputLanguage('en') + grd.SetDefines({'FORCE_FRENCH': '1', 'bingo': '1'}) + active = set(grd.ActiveDescendants()) + self.failUnless(bingo_message in active) + self.failUnless(hello_message not in active) + self.failUnless(french_message in active) + + grd.SetOutputLanguage('en') + grd.SetDefines({}) + self.failUnless(grd.target_platform == sys.platform) + grd.SetTargetPlatform('darwin') + active = set(grd.ActiveDescendants()) + self.failUnless(is_win_message not in active) + grd.SetTargetPlatform('win32') + active = set(grd.ActiveDescendants()) + self.failUnless(is_win_message in active) + + def testElsiness(self): + grd = util.ParseGrdForUnittest(''' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ''') + included = [msg.attrs['name'] for msg in grd.ActiveDescendants() + if msg.name == 'message'] + self.assertEqual(['IDS_YES1', 'IDS_YES2', 'IDS_YES3', 'IDS_YES4'], included) + + def testIffynessWithOutputNodes(self): + grd = grd_reader.Parse(StringIO(''' + + + + + + + + + + + + + + + + '''), dir='.') + + outputs_node = grd.children[0] + uncond1_output = outputs_node.children[0] + only_fr_adm_output = outputs_node.children[1].children[0] + only_fr_plist_output = outputs_node.children[1].children[1] + doc_output = outputs_node.children[2].children[0] + uncond2_output = outputs_node.children[0] + self.assertTrue(uncond1_output.name == 'output') + self.assertTrue(only_fr_adm_output.name == 'output') + self.assertTrue(only_fr_plist_output.name == 'output') + self.assertTrue(doc_output.name == 'output') + self.assertTrue(uncond2_output.name == 'output') + + grd.SetOutputLanguage('ru') + grd.SetDefines({'hello': '1'}) + outputs = [output.GetFilename() for output in grd.GetOutputFiles()] + self.assertEquals( + outputs, + ['uncond1.rc', 'only_fr.adm', 'only_fr.plist', 'doc.html', + 'uncond2.adm', 'iftest.h']) + + grd.SetOutputLanguage('ru') + grd.SetDefines({'bingo': '2'}) + outputs = [output.GetFilename() for output in grd.GetOutputFiles()] + self.assertEquals( + outputs, + ['uncond1.rc', 'doc.html', 'uncond2.adm', 'iftest.h']) + + grd.SetOutputLanguage('fr') + grd.SetDefines({'hello': '1'}) + outputs = [output.GetFilename() for output in grd.GetOutputFiles()] + self.assertEquals( + outputs, + ['uncond1.rc', 'only_fr.adm', 'only_fr.plist', 'uncond2.adm', + 'iftest.h']) + + grd.SetOutputLanguage('en') + grd.SetDefines({'bingo': '1'}) + outputs = [output.GetFilename() for output in grd.GetOutputFiles()] + self.assertEquals(outputs, ['uncond1.rc', 'uncond2.adm', 'iftest.h']) + + grd.SetOutputLanguage('fr') + grd.SetDefines({'bingo': '1'}) + outputs = [output.GetFilename() for output in grd.GetOutputFiles()] + self.assertNotEquals(outputs, ['uncond1.rc', 'uncond2.adm', 'iftest.h']) + + def testChildrenAccepted(self): + grd_reader.Parse(StringIO(r''' + + + + + + + + + + + + + + + + + + + + + + + + + Bingo! + + + + Bingo! + + + + + + + + + + + + + + + '''), dir='.') + + def testIfBadChildrenNesting(self): + # includes + xml = StringIO(r''' + + + + + + + + + ''') + self.assertRaises(grit.exception.UnexpectedChild, grd_reader.Parse, xml) + # messages + xml = StringIO(r''' + + + + + + + + + ''') + self.assertRaises(grit.exception.UnexpectedChild, grd_reader.Parse, xml) + # structures + xml = StringIO(''' + + + + + Bingo! + + + + ''') + # translations + self.assertRaises(grit.exception.UnexpectedChild, grd_reader.Parse, xml) + xml = StringIO(''' + + + + Bingo! + + + ''') + self.assertRaises(grit.exception.UnexpectedChild, grd_reader.Parse, xml) + # same with nesting + xml = StringIO(r''' + + + + + + + + + + + ''') + self.assertRaises(grit.exception.UnexpectedChild, grd_reader.Parse, xml) + xml = StringIO(r''' + + + + + + + + + + + ''') + self.assertRaises(grit.exception.UnexpectedChild, grd_reader.Parse, xml) + xml = StringIO(''' + + + + + + Bingo! + + + + + ''') + self.assertRaises(grit.exception.UnexpectedChild, grd_reader.Parse, xml) + xml = StringIO(''' + + + + + Bingo! + + + + ''') + self.assertRaises(grit.exception.UnexpectedChild, grd_reader.Parse, xml) + + +class ReleaseNodeUnittest(unittest.TestCase): + def testPseudoControl(self): + grd = grd_reader.Parse(StringIO(''' + + + + + Hello + + + + + + + + + + Bingo + + + + + + + '''), util.PathFromRoot('grit/testdata')) + grd.SetOutputLanguage('en') + grd.RunGatherers() + + hello = grd.GetNodeById('IDS_HELLO') + aboutbox = grd.GetNodeById('IDD_ABOUTBOX') + bingo = grd.GetNodeById('IDS_BINGO') + menu = grd.GetNodeById('IDC_KLONKMENU') + + for node in [hello, aboutbox]: + self.failUnless(not node.PseudoIsAllowed()) + + for node in [bingo, menu]: + self.failUnless(node.PseudoIsAllowed()) + + # TODO(benrg): There was a test here that formatting hello and aboutbox with + # a pseudo language should fail, but they do not fail and the test was + # broken and failed to catch it. Fix this. + + # Should not raise an exception since pseudo is allowed + rc.FormatMessage(bingo, 'xyz-pseudo') + rc.FormatStructure(menu, 'xyz-pseudo', '.') + + +if __name__ == '__main__': + unittest.main() diff --git a/tools/grit/grit/node/mock_brotli.py b/tools/grit/grit/node/mock_brotli.py new file mode 100644 index 0000000000..14237aab20 --- /dev/null +++ b/tools/grit/grit/node/mock_brotli.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python +# Copyright 2019 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +"""Mock Brotli Executable for testing purposes.""" + +import sys + +sys.stdout.write('This has been mock compressed!') diff --git a/tools/grit/grit/node/node_io.py b/tools/grit/grit/node/node_io.py new file mode 100644 index 0000000000..ccbc2c0647 --- /dev/null +++ b/tools/grit/grit/node/node_io.py @@ -0,0 +1,117 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''The and elements. +''' + +from __future__ import print_function + +import os + +from grit import xtb_reader +from grit.node import base + + +class FileNode(base.Node): + '''A element.''' + + def __init__(self): + super(FileNode, self).__init__() + self.re = None + self.should_load_ = True + + def IsTranslation(self): + return True + + def GetLang(self): + return self.attrs['lang'] + + def DisableLoading(self): + self.should_load_ = False + + def MandatoryAttributes(self): + return ['path', 'lang'] + + def RunPostSubstitutionGatherer(self, debug=False): + if not self.should_load_: + return + + root = self.GetRoot() + defs = getattr(root, 'defines', {}) + target_platform = getattr(root, 'target_platform', '') + + xtb_file = open(self.ToRealPath(self.GetInputPath()), 'rb') + try: + lang = xtb_reader.Parse(xtb_file, + self.UberClique().GenerateXtbParserCallback( + self.attrs['lang'], debug=debug), + defs=defs, + target_platform=target_platform) + except: + print("Exception during parsing of %s" % self.GetInputPath()) + raise + # Translation console uses non-standard language codes 'iw' and 'no' for + # Hebrew and Norwegian Bokmal instead of 'he' and 'nb' used in Chrome. + # Note that some Chrome's .grd still use 'no' instead of 'nb', but 'nb' is + # always used for generated .pak files. + ALTERNATIVE_LANG_CODE_MAP = { 'he': 'iw', 'nb': 'no' } + assert (lang == self.attrs['lang'] or + lang == ALTERNATIVE_LANG_CODE_MAP[self.attrs['lang']]), ( + 'The XTB file you reference must contain messages in the language ' + 'specified\nby the \'lang\' attribute.') + + def GetInputPath(self): + return os.path.expandvars(self.attrs['path']) + + +class OutputNode(base.Node): + '''An element.''' + + def MandatoryAttributes(self): + return ['filename', 'type'] + + def DefaultAttributes(self): + return { + 'lang' : '', # empty lang indicates all languages + 'language_section' : 'neutral', # defines a language neutral section + 'context' : '', + 'fallback_to_default_layout' : 'true', + } + + def GetType(self): + return self.attrs['type'] + + def GetLanguage(self): + '''Returns the language ID, default 'en'.''' + return self.attrs['lang'] + + def GetContext(self): + return self.attrs['context'] + + def GetFilename(self): + return self.attrs['filename'] + + def GetOutputFilename(self): + path = None + if hasattr(self, 'output_filename'): + path = self.output_filename + else: + path = self.attrs['filename'] + return os.path.expandvars(path) + + def GetFallbackToDefaultLayout(self): + return self.attrs['fallback_to_default_layout'].lower() == 'true' + + def _IsValidChild(self, child): + return isinstance(child, EmitNode) + +class EmitNode(base.ContentNode): + ''' An element.''' + + def DefaultAttributes(self): + return { 'emit_type' : 'prepend'} + + def GetEmitType(self): + '''Returns the emit_type for this node. Default is 'append'.''' + return self.attrs['emit_type'] diff --git a/tools/grit/grit/node/node_io_unittest.py b/tools/grit/grit/node/node_io_unittest.py new file mode 100644 index 0000000000..1f45e51af8 --- /dev/null +++ b/tools/grit/grit/node/node_io_unittest.py @@ -0,0 +1,182 @@ +#!/usr/bin/env python +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Unit tests for node_io.FileNode''' + +from __future__ import print_function + +import os +import sys +import unittest + +if __name__ == '__main__': + sys.path.append(os.path.join(os.path.dirname(__file__), '../..')) + +from six import StringIO + +from grit.node import misc +from grit.node import node_io +from grit.node import empty +from grit import grd_reader +from grit import util + + +def _GetAllCliques(root_node): + """Return all cliques in the |root_node| tree.""" + ret = [] + for node in root_node: + ret.extend(node.GetCliques()) + return ret + + +class FileNodeUnittest(unittest.TestCase): + def testGetPath(self): + root = misc.GritNode() + root.StartParsing(u'grit', None) + root.HandleAttribute(u'latest_public_release', u'0') + root.HandleAttribute(u'current_release', u'1') + root.HandleAttribute(u'base_dir', r'..\resource') + translations = empty.TranslationsNode() + translations.StartParsing(u'translations', root) + root.AddChild(translations) + file_node = node_io.FileNode() + file_node.StartParsing(u'file', translations) + file_node.HandleAttribute(u'path', r'flugel\kugel.pdf') + translations.AddChild(file_node) + root.EndParsing() + + self.failUnless(root.ToRealPath(file_node.GetInputPath()) == + util.normpath( + os.path.join(r'../resource', r'flugel/kugel.pdf'))) + + def VerifyCliquesContainEnglishAndFrenchAndNothingElse(self, cliques): + self.assertEqual(2, len(cliques)) + for clique in cliques: + self.assertEqual({'en', 'fr'}, set(clique.clique.keys())) + + def testLoadTranslations(self): + xml = ''' + + + + + + + Hello! + Hello %sJoi + + + ''' + grd = grd_reader.Parse(StringIO(xml), + util.PathFromRoot('grit/testdata')) + grd.SetOutputLanguage('en') + grd.RunGatherers() + self.VerifyCliquesContainEnglishAndFrenchAndNothingElse(_GetAllCliques(grd)) + + def testIffyness(self): + grd = grd_reader.Parse(StringIO(''' + + + + + + + + + Hello! + Hello %sJoi + + + '''), util.PathFromRoot('grit/testdata')) + grd.SetOutputLanguage('en') + grd.RunGatherers() + cliques = _GetAllCliques(grd) + self.assertEqual(2, len(cliques)) + for clique in cliques: + self.assertEqual({'en'}, set(clique.clique.keys())) + + grd.SetOutputLanguage('fr') + grd.RunGatherers() + self.VerifyCliquesContainEnglishAndFrenchAndNothingElse(_GetAllCliques(grd)) + + def testConditionalLoadTranslations(self): + xml = ''' + + + + + + + + + + + + Hello! + Hello %s + Joi + + + ''' + grd = grd_reader.Parse(StringIO(xml), + util.PathFromRoot('grit/testdata')) + grd.SetOutputLanguage('en') + grd.RunGatherers() + self.VerifyCliquesContainEnglishAndFrenchAndNothingElse(_GetAllCliques(grd)) + + def testConditionalOutput(self): + xml = ''' + + + + + + + + + + + Hello! + + + ''' + grd = grd_reader.Parse(StringIO(xml), + util.PathFromRoot('grit/test/data'), + defines={}) + grd.SetOutputLanguage('en') + grd.RunGatherers() + outputs = grd.GetChildrenOfType(node_io.OutputNode) + active = set(grd.ActiveDescendants()) + self.failUnless(outputs[0] in active) + self.failUnless(outputs[0].GetType() == 'rc_header') + self.failUnless(outputs[1] in active) + self.failUnless(outputs[1].GetType() == 'rc_all') + self.failUnless(outputs[2] not in active) + self.failUnless(outputs[2].GetType() == 'rc_all') + + # Verify that 'iw' and 'no' language codes in xtb files are mapped to 'he' and + # 'nb'. + def testLangCodeMapping(self): + grd = grd_reader.Parse(StringIO(''' + + + + + + + + + '''), util.PathFromRoot('grit/testdata')) + grd.SetOutputLanguage('en') + grd.RunGatherers() + self.assertEqual([], _GetAllCliques(grd)) + + +if __name__ == '__main__': + unittest.main() diff --git a/tools/grit/grit/node/structure.py b/tools/grit/grit/node/structure.py new file mode 100644 index 0000000000..ec170faebb --- /dev/null +++ b/tools/grit/grit/node/structure.py @@ -0,0 +1,375 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''The element. +''' + +from __future__ import print_function + +import os +import platform +import re + +from grit import exception +from grit import util +from grit.node import base +from grit.node import variant + +import grit.gather.admin_template +import grit.gather.chrome_html +import grit.gather.chrome_scaled_image +import grit.gather.policy_json +import grit.gather.rc +import grit.gather.tr_html +import grit.gather.txt + +import grit.format.rc + +# Type of the gatherer to use for each type attribute +_GATHERERS = { + 'accelerators' : grit.gather.rc.Accelerators, + 'admin_template' : grit.gather.admin_template.AdmGatherer, + 'chrome_html' : grit.gather.chrome_html.ChromeHtml, + 'chrome_scaled_image' : grit.gather.chrome_scaled_image.ChromeScaledImage, + 'dialog' : grit.gather.rc.Dialog, + 'menu' : grit.gather.rc.Menu, + 'rcdata' : grit.gather.rc.RCData, + 'tr_html' : grit.gather.tr_html.TrHtml, + 'txt' : grit.gather.txt.TxtFile, + 'version' : grit.gather.rc.Version, + 'policy_template_metafile' : grit.gather.policy_json.PolicyJson, +} + + +# TODO(joi) Print a warning if the 'variant_of_revision' attribute indicates +# that a skeleton variant is older than the original file. + + +class StructureNode(base.Node): + '''A element.''' + + # Regular expression for a local variable definition. Each definition + # is of the form NAME=VALUE, where NAME cannot contain '=' or ',' and + # VALUE must escape all commas: ',' -> ',,'. Each variable definition + # should be separated by a comma with no extra whitespace. + # Example: THING1=foo,THING2=bar + variable_pattern = re.compile(r'([^,=\s]+)=((?:,,|[^,])*)') + + def __init__(self): + super(StructureNode, self).__init__() + + # Keep track of the last filename we flattened to, so we can + # avoid doing it more than once. + self._last_flat_filename = None + + # See _Substitute; this substituter is used for local variables and + # the root substituter is used for global variables. + self.substituter = None + + def _IsValidChild(self, child): + return isinstance(child, variant.SkeletonNode) + + def _ParseVariables(self, variables): + '''Parse a variable string into a dictionary.''' + matches = StructureNode.variable_pattern.findall(variables) + return dict((name, value.replace(',,', ',')) for name, value in matches) + + def EndParsing(self): + super(StructureNode, self).EndParsing() + + # Now that we have attributes and children, instantiate the gatherers. + gathertype = _GATHERERS[self.attrs['type']] + + self.gatherer = gathertype(self.attrs['file'], + self.attrs['name'], + self.attrs['encoding']) + self.gatherer.SetGrdNode(self) + self.gatherer.SetUberClique(self.UberClique()) + if hasattr(self.GetRoot(), 'defines'): + self.gatherer.SetDefines(self.GetRoot().defines) + self.gatherer.SetAttributes(self.attrs) + if self.ExpandVariables(): + self.gatherer.SetFilenameExpansionFunction(self._Substitute) + + # Parse local variables and instantiate the substituter. + if self.attrs['variables']: + variables = self.attrs['variables'] + self.substituter = util.Substituter() + self.substituter.AddSubstitutions(self._ParseVariables(variables)) + + self.skeletons = {} # Maps expressions to skeleton gatherers + for child in self.children: + assert isinstance(child, variant.SkeletonNode) + skel = gathertype(child.attrs['file'], + self.attrs['name'], + child.GetEncodingToUse(), + is_skeleton=True) + skel.SetGrdNode(self) # TODO(benrg): Or child? Only used for ToRealPath + skel.SetUberClique(self.UberClique()) + if hasattr(self.GetRoot(), 'defines'): + skel.SetDefines(self.GetRoot().defines) + if self.ExpandVariables(): + skel.SetFilenameExpansionFunction(self._Substitute) + self.skeletons[child.attrs['expr']] = skel + + def MandatoryAttributes(self): + return ['type', 'name', 'file'] + + def DefaultAttributes(self): + return { + 'encoding': 'cp1252', + 'exclude_from_rc': 'false', + 'line_end': 'unix', + 'output_encoding': 'utf-8', + 'generateid': 'true', + 'expand_variables': 'false', + 'output_filename': '', + 'fold_whitespace': 'false', + # Run an arbitrary command after translation is complete + # so that it doesn't interfere with what's in translation + # console. + 'run_command': '', + # Leave empty to run on all platforms, comma-separated + # for one or more specific platforms. Values must match + # output of platform.system(). + 'run_command_on_platforms': '', + 'allowexternalscript': 'false', + # preprocess takes the same code path as flattenhtml, but it + # disables any processing/inlining outside of and . + 'preprocess': 'false', + 'flattenhtml': 'false', + 'fallback_to_low_resolution': 'default', + 'variables': '', + 'compress': 'default', + 'use_base_dir': 'true', + } + + def IsExcludedFromRc(self): + return self.attrs['exclude_from_rc'] == 'true' + + def Process(self, output_dir): + """Writes the processed data to output_dir. In the case of a chrome_html + structure this will add references to other scale factors. If flattening + this will also write file references to be base64 encoded data URLs. The + name of the new file is returned.""" + filename = self.ToRealPath(self.GetInputPath()) + flat_filename = os.path.join(output_dir, + self.attrs['name'] + '_' + os.path.basename(filename)) + + if self._last_flat_filename == flat_filename: + return + + with open(flat_filename, 'wb') as outfile: + if self.ExpandVariables(): + text = self.gatherer.GetText() + file_contents = self._Substitute(text) + else: + file_contents = self.gatherer.GetData('', 'utf-8') + outfile.write(file_contents.encode('utf-8')) + + self._last_flat_filename = flat_filename + return os.path.basename(flat_filename) + + def GetLineEnd(self): + '''Returns the end-of-line character or characters for files output because + of this node ('\r\n', '\n', or '\r' depending on the 'line_end' attribute). + ''' + if self.attrs['line_end'] == 'unix': + return '\n' + elif self.attrs['line_end'] == 'windows': + return '\r\n' + elif self.attrs['line_end'] == 'mac': + return '\r' + else: + raise exception.UnexpectedAttribute( + "Attribute 'line_end' must be one of 'unix' (default), 'windows' or " + "'mac'") + + def GetCliques(self): + return self.gatherer.GetCliques() + + def GetDataPackValue(self, lang, encoding): + """Returns a bytes representation for a data_pack entry.""" + if self.ExpandVariables(): + text = self.gatherer.GetText() + data = util.Encode(self._Substitute(text), encoding) + else: + data = self.gatherer.GetData(lang, encoding) + if encoding != util.BINARY: + data = data.encode(encoding) + return self.CompressDataIfNeeded(data) + + def GetHtmlResourceFilenames(self): + """Returns a set of all filenames inlined by this node.""" + return self.gatherer.GetHtmlResourceFilenames() + + def GetInputPath(self): + path = self.gatherer.GetInputPath() + if path is None: + return path + + # Do not mess with absolute paths, that would make them invalid. + if os.path.isabs(os.path.expandvars(path)): + return path + + # We have no control over code that calls ToRealPath later, so convert + # the path to be relative against our basedir. + if self.attrs.get('use_base_dir', 'true') != 'true': + # Normalize the directory path to use the appropriate OS separator. + # GetBaseDir() may return paths\like\this or paths/like/this, since it is + # read from the base_dir attribute in the grd file. + norm_base_dir = util.normpath(self.GetRoot().GetBaseDir()) + return os.path.relpath(path, norm_base_dir) + + return path + + def GetTextualIds(self): + if not hasattr(self, 'gatherer'): + # This case is needed because this method is called by + # GritNode.ValidateUniqueIds before RunGatherers has been called. + # TODO(benrg): Fix this? + return [self.attrs['name']] + return self.gatherer.GetTextualIds() + + def RunPreSubstitutionGatherer(self, debug=False): + if debug: + print('Running gatherer %s for file %s' % + (type(self.gatherer), self.GetInputPath())) + + # Note: Parse() is idempotent, therefore this method is also. + self.gatherer.Parse() + for skel in self.skeletons.values(): + skel.Parse() + + def GetSkeletonGatherer(self): + '''Returns the gatherer for the alternate skeleton that should be used, + based on the expressions for selecting skeletons, or None if the skeleton + from the English version of the structure should be used. + ''' + for expr in self.skeletons: + if self.EvaluateCondition(expr): + return self.skeletons[expr] + return None + + def HasFileForLanguage(self): + return self.attrs['type'] in ['tr_html', 'admin_template', 'txt', + 'chrome_scaled_image', + 'chrome_html'] + + def ExpandVariables(self): + '''Variable expansion on structures is controlled by an XML attribute. + + However, old files assume that expansion is always on for Rc files. + + Returns: + A boolean. + ''' + attrs = self.GetRoot().attrs + if 'grit_version' in attrs and attrs['grit_version'] > 1: + return self.attrs['expand_variables'] == 'true' + else: + return (self.attrs['expand_variables'] == 'true' or + self.attrs['file'].lower().endswith('.rc')) + + def _Substitute(self, text): + '''Perform local and global variable substitution.''' + if self.substituter: + text = self.substituter.Substitute(text) + return self.GetRoot().GetSubstituter().Substitute(text) + + def RunCommandOnCurrentPlatform(self): + if self.attrs['run_command_on_platforms'] == '': + return True + else: + target_platforms = self.attrs['run_command_on_platforms'].split(',') + return platform.system() in target_platforms + + def FileForLanguage(self, lang, output_dir, create_file=True, + return_if_not_generated=True): + '''Returns the filename of the file associated with this structure, + for the specified language. + + Args: + lang: 'fr' + output_dir: 'c:\temp' + create_file: True + ''' + assert self.HasFileForLanguage() + # If the source language is requested, and no extra changes are requested, + # use the existing file. + if ((not lang or lang == self.GetRoot().GetSourceLanguage()) and + self.attrs['expand_variables'] != 'true' and + (not self.attrs['run_command'] or + not self.RunCommandOnCurrentPlatform())): + if return_if_not_generated: + input_path = self.GetInputPath() + if input_path is None: + return None + return self.ToRealPath(input_path) + else: + return None + + if self.attrs['output_filename'] != '': + filename = self.attrs['output_filename'] + else: + filename = os.path.basename(self.attrs['file']) + assert len(filename) + filename = '%s_%s' % (lang, filename) + filename = os.path.join(output_dir, filename) + + # Only create the output if it was requested by the call. + if create_file: + text = self.gatherer.Translate( + lang, + pseudo_if_not_available=self.PseudoIsAllowed(), + fallback_to_english=self.ShouldFallbackToEnglish(), + skeleton_gatherer=self.GetSkeletonGatherer()) + + file_contents = util.FixLineEnd(text, self.GetLineEnd()) + if self.ExpandVariables(): + # Note that we reapply substitution a second time here. + # This is because a) we need to look inside placeholders + # b) the substitution values are language-dependent + file_contents = self._Substitute(file_contents) + + with open(filename, 'wb') as file_object: + output_stream = util.WrapOutputStream(file_object, + self.attrs['output_encoding']) + output_stream.write(file_contents) + + if self.attrs['run_command'] and self.RunCommandOnCurrentPlatform(): + # Run arbitrary commands after translation is complete so that it + # doesn't interfere with what's in translation console. + command = self.attrs['run_command'] % {'filename': filename} + result = os.system(command) + assert result == 0, '"%s" failed.' % command + + return filename + + def IsResourceMapSource(self): + return True + + @staticmethod + def Construct(parent, name, type, file, encoding='cp1252'): + '''Creates a new node which is a child of 'parent', with attributes set + by parameters of the same name. + ''' + node = StructureNode() + node.StartParsing('structure', parent) + node.HandleAttribute('name', name) + node.HandleAttribute('type', type) + node.HandleAttribute('file', file) + node.HandleAttribute('encoding', encoding) + node.EndParsing() + return node + + def SubstituteMessages(self, substituter): + '''Propagates substitution to gatherer. + + Args: + substituter: a grit.util.Substituter object. + ''' + assert hasattr(self, 'gatherer') + if self.ExpandVariables(): + self.gatherer.SubstituteMessages(substituter) diff --git a/tools/grit/grit/node/structure_unittest.py b/tools/grit/grit/node/structure_unittest.py new file mode 100644 index 0000000000..0e66dce37a --- /dev/null +++ b/tools/grit/grit/node/structure_unittest.py @@ -0,0 +1,178 @@ +#!/usr/bin/env python +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Unit tests for nodes. +''' + +from __future__ import print_function + +import os +import os.path +import sys +import zlib +if __name__ == '__main__': + sys.path.append(os.path.join(os.path.dirname(__file__), '../..')) + +import platform +import tempfile +import unittest +import struct + +from grit import constants +from grit import util +from grit.node import brotli_util +from grit.node import structure +from grit.format import rc + + +def checkIsGzipped(filename, compress_attr): + test_data_root = util.PathFromRoot('grit/testdata') + root = util.ParseGrdForUnittest( + ''' + + + ''' % (filename, compress_attr), + base_dir=test_data_root) + node, = root.GetChildrenOfType(structure.StructureNode) + node.RunPreSubstitutionGatherer() + compressed = node.GetDataPackValue(lang='en', encoding=util.BINARY) + + decompressed_data = zlib.decompress(compressed, 16 + zlib.MAX_WBITS) + expected = util.ReadFile(os.path.join(test_data_root, filename), util.BINARY) + return expected == decompressed_data + + +class StructureUnittest(unittest.TestCase): + def testSkeleton(self): + grd = util.ParseGrdForUnittest(''' + + + + + ''', base_dir=util.PathFromRoot('grit/testdata')) + grd.SetOutputLanguage('fr') + grd.RunGatherers() + transl = ''.join(rc.Format(grd, 'fr', '.')) + self.failUnless(transl.count('040704') and transl.count('110978')) + self.failUnless(transl.count('2005",IDC_STATIC')) + + def testRunCommandOnCurrentPlatform(self): + node = structure.StructureNode() + node.attrs = node.DefaultAttributes() + self.failUnless(node.RunCommandOnCurrentPlatform()) + node.attrs['run_command_on_platforms'] = 'Nosuch' + self.failIf(node.RunCommandOnCurrentPlatform()) + node.attrs['run_command_on_platforms'] = ( + 'Nosuch,%s,Othernot' % platform.system()) + self.failUnless(node.RunCommandOnCurrentPlatform()) + + def testVariables(self): + grd = util.ParseGrdForUnittest(''' + + + ''', base_dir=util.PathFromRoot('grit/testdata')) + grd.SetOutputLanguage('en') + grd.RunGatherers() + node, = grd.GetChildrenOfType(structure.StructureNode) + filename = node.Process(tempfile.gettempdir()) + filepath = os.path.join(tempfile.gettempdir(), filename) + with open(filepath) as f: + result = f.read() + self.failUnlessEqual(('

Hello!

\n' + 'Some cool things are foo, bar, baz.\n' + 'Did you know that 2+2==4?\n' + '

\n' + ' Hello!\n' + '

\n'), result) + os.remove(filepath) + + def testGetPath(self): + base_dir = util.PathFromRoot('grit/testdata') + grd = util.ParseGrdForUnittest(''' + + + ''', base_dir) + grd.SetOutputLanguage('en') + grd.RunGatherers() + node, = grd.GetChildrenOfType(structure.StructureNode) + self.assertEqual(grd.ToRealPath(node.GetInputPath()), + os.path.abspath(os.path.join( + base_dir, r'structure_variables.html'))) + + def testGetPathNoBasedir(self): + base_dir = util.PathFromRoot('grit/testdata') + abs_path = os.path.join(base_dir, r'structure_variables.html') + rel_path = os.path.relpath(abs_path, os.getcwd()) + grd = util.ParseGrdForUnittest(''' + + + ''', util.PathFromRoot('grit/testdata')) + grd.SetOutputLanguage('en') + grd.RunGatherers() + node, = grd.GetChildrenOfType(structure.StructureNode) + self.assertEqual(grd.ToRealPath(node.GetInputPath()), + os.path.abspath(os.path.join( + base_dir, r'structure_variables.html'))) + + def testCompressGzip(self): + self.assertTrue(checkIsGzipped('test_text.txt', 'compress="gzip"')) + + def testCompressGzipByDefault(self): + self.assertTrue(checkIsGzipped('test_html.html', '')) + self.assertTrue(checkIsGzipped('test_js.js', '')) + self.assertTrue(checkIsGzipped('test_css.css', '')) + self.assertTrue(checkIsGzipped('test_svg.svg', '')) + + self.assertTrue(checkIsGzipped('test_html.html', 'compress="default"')) + self.assertTrue(checkIsGzipped('test_js.js', 'compress="default"')) + self.assertTrue(checkIsGzipped('test_css.css', 'compress="default"')) + self.assertTrue(checkIsGzipped('test_svg.svg', 'compress="default"')) + + def testCompressBrotli(self): + test_data_root = util.PathFromRoot('grit/testdata') + root = util.ParseGrdForUnittest( + ''' + + + ''', + base_dir=test_data_root) + node, = root.GetChildrenOfType(structure.StructureNode) + node.RunPreSubstitutionGatherer() + + # Using the mock brotli decompression executable. + brotli_util.SetBrotliCommand([sys.executable, + os.path.join(os.path.dirname(__file__), + 'mock_brotli.py')]) + compressed = node.GetDataPackValue(lang='en', encoding=util.BINARY) + # Assert that the first two bytes in compressed format is BROTLI_CONST. + self.assertEqual(constants.BROTLI_CONST, compressed[0:2]) + + # Compare the actual size of the uncompressed test data with + # the size appended during compression. + actual_size = len(util.ReadFile( + os.path.join(test_data_root, 'test_text.txt'), util.BINARY)) + uncompress_size = struct.unpack(' + + ''', base_dir=test_data_root) + node, = root.GetChildrenOfType(structure.StructureNode) + node.RunPreSubstitutionGatherer() + data = node.GetDataPackValue(lang='en', encoding=util.BINARY) + + self.assertEqual(util.ReadFile( + os.path.join(test_data_root, 'test_text.txt'), util.BINARY), data) + + +if __name__ == '__main__': + unittest.main() diff --git a/tools/grit/grit/node/variant.py b/tools/grit/grit/node/variant.py new file mode 100644 index 0000000000..9f5845f954 --- /dev/null +++ b/tools/grit/grit/node/variant.py @@ -0,0 +1,41 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''The element. +''' + +from __future__ import print_function + +from grit.node import base + + +class SkeletonNode(base.Node): + '''A element.''' + + # TODO(joi) Support inline skeleton variants as CDATA instead of requiring + # a 'file' attribute. + + def MandatoryAttributes(self): + return ['expr', 'variant_of_revision', 'file'] + + def DefaultAttributes(self): + '''If not specified, 'encoding' will actually default to the parent node's + encoding. + ''' + return {'encoding' : ''} + + def _ContentType(self): + if 'file' in self.attrs: + return self._CONTENT_TYPE_NONE + else: + return self._CONTENT_TYPE_CDATA + + def GetEncodingToUse(self): + if self.attrs['encoding'] == '': + return self.parent.attrs['encoding'] + else: + return self.attrs['encoding'] + + def GetInputPath(self): + return self.attrs['file'] diff --git a/tools/grit/grit/pseudo.py b/tools/grit/grit/pseudo.py new file mode 100644 index 0000000000..b607bfc6bb --- /dev/null +++ b/tools/grit/grit/pseudo.py @@ -0,0 +1,129 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Pseudotranslation support. Our pseudotranslations are based on the +P-language, which is a simple vowel-extending language. Examples of P: + - "hello" becomes "hepellopo" + - "howdie" becomes "hopowdiepie" + - "because" becomes "bepecaupause" (but in our implementation we don't + handle the silent e at the end so it actually would return "bepecaupausepe" + +The P-language has the excellent quality of increasing the length of text +by around 30-50% which is great for pseudotranslations, to stress test any +GUI layouts etc. + +To make the pseudotranslations more obviously "not a translation" and to make +them exercise any code that deals with encodings, we also transform all English +vowels into equivalent vowels with diacriticals on them (rings, acutes, +diaresis, and circumflex), and we write the "p" in the P-language as a Hebrew +character Qof. It looks sort of like a latin character "p" but it is outside +the latin-1 character set which will stress character encoding bugs. +''' + +from __future__ import print_function + +from grit import lazy_re +from grit import tclib + + +# An RFC language code for the P pseudolanguage. +PSEUDO_LANG = 'x-P-pseudo' + +# Hebrew character Qof. It looks kind of like a 'p' but is outside +# the latin-1 character set which is good for our purposes. +# TODO(joi) For now using P instead of Qof, because of some bugs it used. Find +# a better solution, i.e. one that introduces a non-latin1 character into the +# pseudotranslation. +#_QOF = u'\u05e7' +_QOF = u'P' + +# How we map each vowel. +_VOWELS = { + u'a' : u'\u00e5', # a with ring + u'e' : u'\u00e9', # e acute + u'i' : u'\u00ef', # i diaresis + u'o' : u'\u00f4', # o circumflex + u'u' : u'\u00fc', # u diaresis + u'y' : u'\u00fd', # y acute + u'A' : u'\u00c5', # A with ring + u'E' : u'\u00c9', # E acute + u'I' : u'\u00cf', # I diaresis + u'O' : u'\u00d4', # O circumflex + u'U' : u'\u00dc', # U diaresis + u'Y' : u'\u00dd', # Y acute +} +_VOWELS_KEYS = set(_VOWELS.keys()) + +# Matches vowels and P +_PSUB_RE = lazy_re.compile("(%s)" % '|'.join(_VOWELS_KEYS | {'P'})) + + +# Pseudotranslations previously created. This is important for performance +# reasons, especially since we routinely pseudotranslate the whole project +# several or many different times for each build. +_existing_translations = {} + + +def MapVowels(str, also_p = False): + '''Returns a copy of 'str' where characters that exist as keys in _VOWELS + have been replaced with the corresponding value. If also_p is true, this + function will also change capital P characters into a Hebrew character Qof. + ''' + def Repl(match): + if match.group() == 'p': + if also_p: + return _QOF + else: + return 'p' + else: + return _VOWELS[match.group()] + return _PSUB_RE.sub(Repl, str) + + +def PseudoString(str): + '''Returns a pseudotranslation of the provided string, in our enhanced + P-language.''' + if str in _existing_translations: + return _existing_translations[str] + + outstr = u'' + ix = 0 + while ix < len(str): + if str[ix] not in _VOWELS_KEYS: + outstr += str[ix] + ix += 1 + else: + # We want to treat consecutive vowels as one composite vowel. This is not + # always accurate e.g. in composite words but good enough. + consecutive_vowels = u'' + while ix < len(str) and str[ix] in _VOWELS_KEYS: + consecutive_vowels += str[ix] + ix += 1 + changed_vowels = MapVowels(consecutive_vowels) + outstr += changed_vowels + outstr += _QOF + outstr += changed_vowels + + _existing_translations[str] = outstr + return outstr + + +def PseudoMessage(message): + '''Returns a pseudotranslation of the provided message. + + Args: + message: tclib.Message() + + Return: + tclib.Translation() + ''' + transl = tclib.Translation() + + for part in message.GetContent(): + if isinstance(part, tclib.Placeholder): + transl.AppendPlaceholder(part) + else: + transl.AppendText(PseudoString(part)) + + return transl diff --git a/tools/grit/grit/pseudo_rtl.py b/tools/grit/grit/pseudo_rtl.py new file mode 100644 index 0000000000..2240b571de --- /dev/null +++ b/tools/grit/grit/pseudo_rtl.py @@ -0,0 +1,104 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Pseudo RTL, (aka Fake Bidi) support. It simply wraps each word with +Unicode RTL overrides. +More info at https://sites.google.com/a/chromium.org/dev/Home/fake-bidi +''' + +from __future__ import print_function + +import re + +from grit import lazy_re +from grit import tclib + +ACCENTED_STRINGS = { + 'a': u"\u00e5", 'e': u"\u00e9", 'i': u"\u00ee", 'o': u"\u00f6", + 'u': u"\u00fb", 'A': u"\u00c5", 'E': u"\u00c9", 'I': u"\u00ce", + 'O': u"\u00d6", 'U': u"\u00db", 'c': u"\u00e7", 'd': u"\u00f0", + 'n': u"\u00f1", 'p': u"\u00fe", 'y': u"\u00fd", 'C': u"\u00c7", + 'D': u"\u00d0", 'N': u"\u00d1", 'P': u"\u00de", 'Y': u"\u00dd", + 'f': u"\u0192", 's': u"\u0161", 'S': u"\u0160", 'z': u"\u017e", + 'Z': u"\u017d", 'g': u"\u011d", 'G': u"\u011c", 'h': u"\u0125", + 'H': u"\u0124", 'j': u"\u0135", 'J': u"\u0134", 'k': u"\u0137", + 'K': u"\u0136", 'l': u"\u013c", 'L': u"\u013b", 't': u"\u0163", + 'T': u"\u0162", 'w': u"\u0175", 'W': u"\u0174", + '$': u"\u20ac", '?': u"\u00bf", 'R': u"\u00ae", r'!': u"\u00a1", +} + +# a character set containing the keys in ACCENTED_STRINGS +# We should not accent characters in an escape sequence such as "\n". +# To be safe, we assume every character following a backslash is an escaped +# character. We also need to consider the case like "\\n", which means +# a blackslash and a character "n", we will accent the character "n". +TO_ACCENT = lazy_re.compile( + r'[%s]|\\[a-z\\]' % ''.join(ACCENTED_STRINGS.keys())) + +# Lex text so that we don't interfere with html tokens and entities. +# This lexing scheme will handle all well formed tags and entities, html or +# xhtml. It will not handle comments, CDATA sections, or the unescaping tags: +# script, style, xmp or listing. If any of those appear in messages, +# something is wrong. +TOKENS = [ lazy_re.compile( + '^%s' % pattern, # match at the beginning of input + re.I | re.S # html tokens are case-insensitive + ) + for pattern in + ( + # a run of non html special characters + r'[^<&]+', + # a tag + (r']+|"[^\"]*"|\'[^\']*\'))?' # attribute value + r')*\s*/?>'), + # an entity + r'&(?:[a-z]\w+|#\d+|#x[\da-f]+);', + # an html special character not part of a special sequence + r'.' + ) ] + +ALPHABETIC_RUN = lazy_re.compile(r'([^\W0-9_]+)') + +RLO = u'\u202e' +PDF = u'\u202c' + +def PseudoRTLString(text): + '''Returns a fake bidirectional version of the source string. This code is + based on accentString above, in turn copied from Frank Tang. + ''' + parts = [] + while text: + m = None + for token in TOKENS: + m = token.search(text) + if m: + part = m.group(0) + text = text[len(part):] + if part[0] not in ('<', '&'): + # not a tag or entity, so accent + part = ALPHABETIC_RUN.sub(lambda run: RLO + run.group() + PDF, part) + parts.append(part) + break + return ''.join(parts) + + +def PseudoRTLMessage(message): + '''Returns a pseudo-RTL (aka Fake-Bidi) translation of the provided message. + + Args: + message: tclib.Message() + + Return: + tclib.Translation() + ''' + transl = tclib.Translation() + for part in message.GetContent(): + if isinstance(part, tclib.Placeholder): + transl.AppendPlaceholder(part) + else: + transl.AppendText(PseudoRTLString(part)) + + return transl diff --git a/tools/grit/grit/pseudo_unittest.py b/tools/grit/grit/pseudo_unittest.py new file mode 100644 index 0000000000..b1d53ff401 --- /dev/null +++ b/tools/grit/grit/pseudo_unittest.py @@ -0,0 +1,55 @@ +#!/usr/bin/env python +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Unit tests for grit.pseudo''' + +from __future__ import print_function + +import os +import sys +if __name__ == '__main__': + sys.path.append(os.path.join(os.path.dirname(__file__), '..')) + +import unittest + +from grit import pseudo +from grit import tclib + + +class PseudoUnittest(unittest.TestCase): + def testVowelMapping(self): + self.failUnless(pseudo.MapVowels('abebibobuby') == + u'\u00e5b\u00e9b\u00efb\u00f4b\u00fcb\u00fd') + self.failUnless(pseudo.MapVowels('ABEBIBOBUBY') == + u'\u00c5B\u00c9B\u00cfB\u00d4B\u00dcB\u00dd') + + def testPseudoString(self): + out = pseudo.PseudoString('hello') + self.failUnless(out == pseudo.MapVowels(u'hePelloPo', True)) + + def testConsecutiveVowels(self): + out = pseudo.PseudoString("beautiful weather, ain't it?") + self.failUnless(out == pseudo.MapVowels( + u"beauPeautiPifuPul weaPeathePer, aiPain't iPit?", 1)) + + def testCapitals(self): + out = pseudo.PseudoString("HOWDIE DOODIE, DR. JONES") + self.failUnless(out == pseudo.MapVowels( + u"HOPOWDIEPIE DOOPOODIEPIE, DR. JOPONEPES", 1)) + + def testPseudoMessage(self): + msg = tclib.Message(text='Hello USERNAME, how are you?', + placeholders=[ + tclib.Placeholder('USERNAME', '%s', 'Joi')]) + trans = pseudo.PseudoMessage(msg) + # TODO(joi) It would be nicer if 'you' -> 'youPou' instead of + # 'you' -> 'youPyou' and if we handled the silent e in 'are' + self.failUnless(trans.GetPresentableContent() == + pseudo.MapVowels( + u'HePelloPo USERNAME, hoPow aParePe youPyou?', 1)) + + +if __name__ == '__main__': + unittest.main() diff --git a/tools/grit/grit/shortcuts.py b/tools/grit/grit/shortcuts.py new file mode 100644 index 0000000000..0db2ce436c --- /dev/null +++ b/tools/grit/grit/shortcuts.py @@ -0,0 +1,93 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Stuff to prevent conflicting shortcuts. +''' + +from __future__ import print_function + +from grit import lazy_re + + +class ShortcutGroup(object): + '''Manages a list of cliques that belong together in a single shortcut + group. Knows how to detect conflicting shortcut keys. + ''' + + # Matches shortcut keys, e.g. &J + SHORTCUT_RE = lazy_re.compile('([^&]|^)(&[A-Za-z])') + + def __init__(self, name): + self.name = name + # Map of language codes to shortcut keys used (which is a map of + # shortcut keys to counts). + self.keys_by_lang = {} + # List of cliques in this group + self.cliques = [] + + def AddClique(self, c): + for existing_clique in self.cliques: + if existing_clique.GetId() == c.GetId(): + # This happens e.g. when we have e.g. + # + # where only one will really be included in the output. + return + + self.cliques.append(c) + for (lang, msg) in c.clique.items(): + if lang not in self.keys_by_lang: + self.keys_by_lang[lang] = {} + keymap = self.keys_by_lang[lang] + + content = msg.GetRealContent() + keys = [groups[1] for groups in self.SHORTCUT_RE.findall(content)] + for key in keys: + key = key.upper() + if key in keymap: + keymap[key] += 1 + else: + keymap[key] = 1 + + def GenerateWarnings(self, tc_project): + # For any language that has more than one occurrence of any shortcut, + # make a list of the conflicting shortcuts. + problem_langs = {} + for (lang, keys) in self.keys_by_lang.items(): + for (key, count) in keys.items(): + if count > 1: + if lang not in problem_langs: + problem_langs[lang] = [] + problem_langs[lang].append(key) + + warnings = [] + if len(problem_langs): + warnings.append("WARNING - duplicate keys exist in shortcut group %s" % + self.name) + for (lang,keys) in problem_langs.items(): + warnings.append(" %6s duplicates: %s" % (lang, ', '.join(keys))) + return warnings + + +def GenerateDuplicateShortcutsWarnings(uberclique, tc_project): + '''Given an UberClique and a project name, will print out helpful warnings + if there are conflicting shortcuts within shortcut groups in the provided + UberClique. + + Args: + uberclique: clique.UberClique() + tc_project: 'MyProjectNameInTheTranslationConsole' + + Returns: + ['warning line 1', 'warning line 2', ...] + ''' + warnings = [] + groups = {} + for c in uberclique.AllCliques(): + for group in c.shortcut_groups: + if group not in groups: + groups[group] = ShortcutGroup(group) + groups[group].AddClique(c) + for group in groups.values(): + warnings += group.GenerateWarnings(tc_project) + return warnings diff --git a/tools/grit/grit/shortcuts_unittest.py b/tools/grit/grit/shortcuts_unittest.py new file mode 100644 index 0000000000..30e7c4f758 --- /dev/null +++ b/tools/grit/grit/shortcuts_unittest.py @@ -0,0 +1,79 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Unit tests for grit.shortcuts +''' + +from __future__ import print_function + +import os +import sys +if __name__ == '__main__': + sys.path.append(os.path.join(os.path.dirname(__file__), '..')) + +import unittest + +from six import StringIO + +from grit import shortcuts +from grit import clique +from grit import tclib +from grit.gather import rc + +class ShortcutsUnittest(unittest.TestCase): + + def setUp(self): + self.uq = clique.UberClique() + + def testFunctionality(self): + c = self.uq.MakeClique(tclib.Message(text="Hello &there")) + c.AddToShortcutGroup('group_name') + c = self.uq.MakeClique(tclib.Message(text="Howdie &there partner")) + c.AddToShortcutGroup('group_name') + + warnings = shortcuts.GenerateDuplicateShortcutsWarnings(self.uq, 'PROJECT') + self.failUnless(warnings) + + def testAmpersandEscaping(self): + c = self.uq.MakeClique(tclib.Message(text="Hello &there")) + c.AddToShortcutGroup('group_name') + c = self.uq.MakeClique(tclib.Message(text="S&&T are the &letters S and T")) + c.AddToShortcutGroup('group_name') + + warnings = shortcuts.GenerateDuplicateShortcutsWarnings(self.uq, 'PROJECT') + self.failUnless(len(warnings) == 0) + + def testDialog(self): + dlg = rc.Dialog(StringIO('''\ +IDD_SIDEBAR_RSS_PANEL_PROPPAGE DIALOGEX 0, 0, 239, 221 +STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD +FONT 8, "MS Shell Dlg", 400, 0, 0x1 +BEGIN + PUSHBUTTON "Add &URL",IDC_SIDEBAR_RSS_ADD_URL,182,53,57,14 + EDITTEXT IDC_SIDEBAR_RSS_NEW_URL,0,53,178,15,ES_AUTOHSCROLL + PUSHBUTTON "&Remove",IDC_SIDEBAR_RSS_REMOVE,183,200,56,14 + PUSHBUTTON "&Edit",IDC_SIDEBAR_RSS_EDIT,123,200,56,14 + CONTROL "&Automatically add commonly viewed clips", + IDC_SIDEBAR_RSS_AUTO_ADD,"Button",BS_AUTOCHECKBOX | + BS_MULTILINE | WS_TABSTOP,0,200,120,17 + PUSHBUTTON "",IDC_SIDEBAR_RSS_HIDDEN,179,208,6,6,NOT WS_VISIBLE + LTEXT "You can display clips from blogs, news sites, and other online sources.", + IDC_STATIC,0,0,239,10 + LISTBOX IDC_SIDEBAR_DISPLAYED_FEED_LIST,0,69,239,127,LBS_SORT | + LBS_OWNERDRAWFIXED | LBS_HASSTRINGS | + LBS_NOINTEGRALHEIGHT | WS_VSCROLL | WS_HSCROLL | + WS_TABSTOP + LTEXT "Add a clip from a recently viewed website by clicking Add Recent Clips.", + IDC_STATIC,0,13,141,19 + LTEXT "Or, if you know a site supports RSS or Atom, you can enter the RSS or Atom URL below and add it to your list of Web Clips.", + IDC_STATIC,0,33,239,18 + PUSHBUTTON "Add Recent &Clips (10)...", + IDC_SIDEBAR_RSS_ADD_RECENT_CLIPS,146,14,93,14 +END'''), 'IDD_SIDEBAR_RSS_PANEL_PROPPAGE') + dlg.SetUberClique(self.uq) + dlg.Parse() + + warnings = shortcuts.GenerateDuplicateShortcutsWarnings(self.uq, 'PROJECT') + self.failUnless(len(warnings) == 0) + diff --git a/tools/grit/grit/tclib.py b/tools/grit/grit/tclib.py new file mode 100644 index 0000000000..27ba366924 --- /dev/null +++ b/tools/grit/grit/tclib.py @@ -0,0 +1,246 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Adaptation of the extern.tclib classes for our needs. +''' + +from __future__ import print_function + +import functools +import re + +import six + +from grit import exception +from grit import lazy_re +import grit.extern.tclib + + +# Matches whitespace sequences which can be folded into a single whitespace +# character. This matches single characters so that non-spaces are replaced +# with spaces. +_FOLD_WHITESPACE = re.compile(r'\s+') + +# Caches compiled regexp used to split tags in BaseMessage.__init__() +_RE_CACHE = {} + +def Identity(i): + return i + + +class BaseMessage(object): + '''Base class with methods shared by Message and Translation. + ''' + + def __init__(self, text='', placeholders=[], description='', meaning=''): + self.parts = [] + self.placeholders = [] + self.meaning = meaning + self.dirty = True # True if self.id is (or might be) wrong + self.id = 0 + self.SetDescription(description) + + if text != '': + if not placeholders or placeholders == []: + self.AppendText(text) + else: + tag_map = {} + for placeholder in placeholders: + tag_map[placeholder.GetPresentation()] = [placeholder, 0] + # This creates a regexp like '(TAG1|TAG2|TAG3)'. + # The tags have to be sorted in order of decreasing length, so that + # longer tags are substituted before shorter tags that happen to be + # substrings of the longer tag. + # E.g. "EXAMPLE_FOO_NAME" must be matched before "EXAMPLE_FOO", + # otherwise "EXAMPLE_FOO" splits "EXAMPLE_FOO_NAME" too. + tags = sorted(tag_map.keys(), + key=functools.cmp_to_key( + lambda x, y: len(x) - len(y) or ((x > y) - (x < y))), + reverse=True) + tag_re = '(' + '|'.join(tags) + ')' + + # This caching improves the time to build + # chrome/app:generated_resources from 21.562s to 17.672s on Linux. + compiled_re = _RE_CACHE.get(tag_re, None) + if compiled_re is None: + compiled_re = re.compile(tag_re) + _RE_CACHE[tag_re] = compiled_re + + chunked_text = compiled_re.split(text) + + for chunk in chunked_text: + if chunk: # ignore empty chunk + if chunk in tag_map: + self.AppendPlaceholder(tag_map[chunk][0]) + tag_map[chunk][1] += 1 # increase placeholder use count + else: + self.AppendText(chunk) + for key in tag_map: + assert tag_map[key][1] != 0 + + def GetRealContent(self, escaping_function=Identity): + '''Returns the original content, i.e. what your application and users + will see. + + Specify a function to escape each translateable bit, if you like. + ''' + bits = [] + for item in self.parts: + if isinstance(item, six.string_types): + bits.append(escaping_function(item)) + else: + bits.append(item.GetOriginal()) + return ''.join(bits) + + def GetPresentableContent(self): + presentable_content = [] + for part in self.parts: + if isinstance(part, Placeholder): + presentable_content.append(part.GetPresentation()) + else: + presentable_content.append(part) + return ''.join(presentable_content) + + def AppendPlaceholder(self, placeholder): + assert isinstance(placeholder, Placeholder) + dup = False + for other in self.GetPlaceholders(): + if other.presentation == placeholder.presentation: + assert other.original == placeholder.original + dup = True + + if not dup: + self.placeholders.append(placeholder) + self.parts.append(placeholder) + self.dirty = True + + def AppendText(self, text): + assert isinstance(text, six.string_types) + assert text != '' + + self.parts.append(text) + self.dirty = True + + def GetContent(self): + '''Returns the parts of the message. You may modify parts if you wish. + Note that you must not call GetId() on this object until you have finished + modifying the contents. + ''' + self.dirty = True # user might modify content + return self.parts + + def GetDescription(self): + return self.description + + def SetDescription(self, description): + self.description = _FOLD_WHITESPACE.sub(' ', description) + + def GetMeaning(self): + return self.meaning + + def GetId(self): + if self.dirty: + self.id = self.GenerateId() + self.dirty = False + return self.id + + def GenerateId(self): + return grit.extern.tclib.GenerateMessageId(self.GetPresentableContent(), + self.meaning) + + def GetPlaceholders(self): + return self.placeholders + + def FillTclibBaseMessage(self, msg): + msg.SetDescription(self.description.encode('utf-8')) + + for part in self.parts: + if isinstance(part, Placeholder): + ph = grit.extern.tclib.Placeholder( + part.presentation.encode('utf-8'), + part.original.encode('utf-8'), + part.example.encode('utf-8')) + msg.AppendPlaceholder(ph) + else: + msg.AppendText(part.encode('utf-8')) + + +class Message(BaseMessage): + '''A message.''' + + def __init__(self, text='', placeholders=[], description='', meaning='', + assigned_id=None): + super(Message, self).__init__(text, placeholders, description, meaning) + self.assigned_id = assigned_id + + def ToTclibMessage(self): + msg = grit.extern.tclib.Message('utf-8', meaning=self.meaning) + self.FillTclibBaseMessage(msg) + return msg + + def GetId(self): + '''Use the assigned id if we have one.''' + if self.assigned_id: + return self.assigned_id + + return super(Message, self).GetId() + + def HasAssignedId(self): + '''Returns True if this message has an assigned id.''' + return bool(self.assigned_id) + + +class Translation(BaseMessage): + '''A translation.''' + + def __init__(self, text='', id='', placeholders=[], description='', meaning=''): + super(Translation, self).__init__(text, placeholders, description, meaning) + self.id = id + + def GetId(self): + assert id != '', "ID has not been set." + return self.id + + def SetId(self, id): + self.id = id + + def ToTclibMessage(self): + msg = grit.extern.tclib.Message( + 'utf-8', id=self.id, meaning=self.meaning) + self.FillTclibBaseMessage(msg) + return msg + + +class Placeholder(grit.extern.tclib.Placeholder): + '''Modifies constructor to accept a Unicode string + ''' + + # Must match placeholder presentation names + _NAME_RE = lazy_re.compile('^[A-Za-z0-9_]+$') + + def __init__(self, presentation, original, example): + '''Creates a new placeholder. + + Args: + presentation: 'USERNAME' + original: '%s' + example: 'Joi' + ''' + assert presentation != '' + assert original != '' + assert example != '' + if not self._NAME_RE.match(presentation): + raise exception.InvalidPlaceholderName(presentation) + self.presentation = presentation + self.original = original + self.example = example + + def GetPresentation(self): + return self.presentation + + def GetOriginal(self): + return self.original + + def GetExample(self): + return self.example diff --git a/tools/grit/grit/tclib_unittest.py b/tools/grit/grit/tclib_unittest.py new file mode 100644 index 0000000000..7a08654e1b --- /dev/null +++ b/tools/grit/grit/tclib_unittest.py @@ -0,0 +1,180 @@ +#!/usr/bin/env python +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Unit tests for grit.tclib''' + +from __future__ import print_function + +import sys +import os.path +if __name__ == '__main__': + sys.path.append(os.path.join(os.path.dirname(__file__), '..')) + +import unittest + +import six + +from grit import tclib + +from grit import exception +import grit.extern.tclib + + +class TclibUnittest(unittest.TestCase): + def testInit(self): + msg = tclib.Message(text=u'Hello Earthlings', + description='Greetings\n\t message') + self.failUnlessEqual(msg.GetPresentableContent(), 'Hello Earthlings') + self.failUnless(isinstance(msg.GetPresentableContent(), six.string_types)) + self.failUnlessEqual(msg.GetDescription(), 'Greetings message') + + def testGetAttr(self): + msg = tclib.Message() + msg.AppendText(u'Hello') # Tests __getattr__ + self.failUnless(msg.GetPresentableContent() == 'Hello') + self.failUnless(isinstance(msg.GetPresentableContent(), six.string_types)) + + def testAll(self): + text = u'Howdie USERNAME' + phs = [tclib.Placeholder(u'USERNAME', u'%s', 'Joi')] + msg = tclib.Message(text=text, placeholders=phs) + self.failUnless(msg.GetPresentableContent() == 'Howdie USERNAME') + + trans = tclib.Translation(text=text, placeholders=phs) + self.failUnless(trans.GetPresentableContent() == 'Howdie USERNAME') + self.failUnless(isinstance(trans.GetPresentableContent(), six.string_types)) + + def testUnicodeReturn(self): + text = u'\u00fe' + msg = tclib.Message(text=text) + self.failUnless(msg.GetPresentableContent() == text) + from_list = msg.GetContent()[0] + self.failUnless(from_list == text) + + def testRegressionTranslationInherited(self): + '''Regression tests a bug that was caused by grit.tclib.Translation + inheriting from the translation console's Translation object + instead of only owning an instance of it. + ''' + msg = tclib.Message(text=u"BLA1\r\nFrom: BLA2 \u00fe BLA3", + placeholders=[ + tclib.Placeholder('BLA1', '%s', '%s'), + tclib.Placeholder('BLA2', '%s', '%s'), + tclib.Placeholder('BLA3', '%s', '%s')]) + transl = tclib.Translation(text=msg.GetPresentableContent(), + placeholders=msg.GetPlaceholders()) + content = transl.GetContent() + self.failUnless(isinstance(content[3], six.string_types)) + + def testFingerprint(self): + # This has Windows line endings. That is on purpose. + id = grit.extern.tclib.GenerateMessageId( + 'Google Desktop for Enterprise\r\n' + 'All Rights Reserved\r\n' + '\r\n' + '---------\r\n' + 'Contents\r\n' + '---------\r\n' + 'This distribution contains the following files:\r\n' + '\r\n' + 'GoogleDesktopSetup.msi - Installation and setup program\r\n' + 'GoogleDesktop.adm - Group Policy administrative template file\r\n' + 'AdminGuide.pdf - Google Desktop for Enterprise administrative guide\r\n' + '\r\n' + '\r\n' + '--------------\r\n' + 'Documentation\r\n' + '--------------\r\n' + 'Full documentation and installation instructions are in the \r\n' + 'administrative guide, and also online at \r\n' + 'http://desktop.google.com/enterprise/adminguide.html.\r\n' + '\r\n' + '\r\n' + '------------------------\r\n' + 'IBM Lotus Notes Plug-In\r\n' + '------------------------\r\n' + 'The Lotus Notes plug-in is included in the release of Google \r\n' + 'Desktop for Enterprise. The IBM Lotus Notes Plug-in for Google \r\n' + 'Desktop indexes mail, calendar, task, contact and journal \r\n' + 'documents from Notes. Discussion documents including those from \r\n' + 'the discussion and team room templates can also be indexed by \r\n' + 'selecting an option from the preferences. Once indexed, this data\r\n' + 'will be returned in Google Desktop searches. The corresponding\r\n' + 'document can be opened in Lotus Notes from the Google Desktop \r\n' + 'results page.\r\n' + '\r\n' + 'Install: The plug-in will install automatically during the Google \r\n' + 'Desktop setup process if Lotus Notes is already installed. Lotus \r\n' + 'Notes must not be running in order for the install to occur. \r\n' + '\r\n' + 'Preferences: Preferences and selection of databases to index are\r\n' + 'set in the \'Google Desktop for Notes\' dialog reached through the \r\n' + '\'Actions\' menu.\r\n' + '\r\n' + 'Reindexing: Selecting \'Reindex all databases\' will index all the \r\n' + 'documents in each database again.\r\n' + '\r\n' + '\r\n' + 'Notes Plug-in Known Issues\r\n' + '---------------------------\r\n' + '\r\n' + 'If the \'Google Desktop for Notes\' item is not available from the \r\n' + 'Lotus Notes Actions menu, then installation was not successful. \r\n' + 'Installation consists of writing one file, notesgdsplugin.dll, to \r\n' + 'the Notes application directory and a setting to the notes.ini \r\n' + 'configuration file. The most likely cause of an unsuccessful \r\n' + 'installation is that the installer was not able to locate the \r\n' + 'notes.ini file. Installation will complete if the user closes Notes\r\n' + 'and manually adds the following setting to this file on a new line:\r\n' + 'AddinMenus=notegdsplugin.dll\r\n' + '\r\n' + 'If the notesgdsplugin.dll file is not in the application directory\r\n' + r'(e.g., C:\Program Files\Lotus\Notes) after Google Desktop \r\n' + 'installation, it is likely that Notes was not installed correctly. \r\n' + '\r\n' + 'Only local databases can be indexed. If they can be determined, \r\n' + 'the user\'s local mail file and address book will be included in the\r\n' + 'list automatically. Mail archives and other databases must be \r\n' + 'added with the \'Add\' button.\r\n' + '\r\n' + 'Some users may experience performance issues during the initial \r\n' + 'indexing of a database. The \'Perform the initial index of a \r\n' + 'database only when I\'m idle\' option will limit the indexing process\r\n' + 'to times when the user is not using the machine. If this does not \r\n' + 'alleviate the problem or the user would like to continually index \r\n' + 'but just do so more slowly or quickly, the GoogleWaitTime notes.ini\r\n' + 'value can be set. Increasing the GoogleWaitTime value will slow \r\n' + 'down the indexing process, and lowering the value will speed it up.\r\n' + 'A value of zero causes the fastest possible indexing. Removing the\r\n' + 'ini parameter altogether returns it to the default (20).\r\n' + '\r\n' + 'Crashes have been known to occur with certain types of history \r\n' + 'bookmarks. If the Notes client seems to crash randomly, try \r\n' + 'disabling the \'Index note history\' option. If it crashes before,\r\n' + 'you can get to the preferences, add the following line to your \r\n' + 'notes.ini file:\r\n' + 'GDSNoIndexHistory=1\r\n') + self.assertEqual(id, '7660964495923572726') + + def testPlaceholderNameChecking(self): + try: + ph = tclib.Placeholder('BINGO BONGO', 'bla', 'bla') + raise Exception("We shouldn't get here") + except exception.InvalidPlaceholderName: + pass # Expect exception to be thrown because presentation contained space + + def testTagsWithCommonSubstring(self): + word = 'ABCDEFGHIJ' + text = ' '.join([word[:i] for i in range(1, 11)]) + phs = [tclib.Placeholder(word[:i], str(i), str(i)) for i in range(1, 11)] + try: + msg = tclib.Message(text=text, placeholders=phs) + self.failUnless(msg.GetRealContent() == '1 2 3 4 5 6 7 8 9 10') + except: + self.fail('tclib.Message() should handle placeholders that are ' + 'substrings of each other') + +if __name__ == '__main__': + unittest.main() diff --git a/tools/grit/grit/test_suite_all.py b/tools/grit/grit/test_suite_all.py new file mode 100644 index 0000000000..3bfe2a79d5 --- /dev/null +++ b/tools/grit/grit/test_suite_all.py @@ -0,0 +1,34 @@ +#!/usr/bin/env python3 +# Copyright (c) 2011 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Unit test suite that collects all test cases for GRIT.''' + +from __future__ import print_function + +import os +import sys + + +CUR_DIR = os.path.dirname(os.path.realpath(__file__)) +SRC_DIR = os.path.dirname(os.path.dirname(os.path.dirname(CUR_DIR))) +TYP_DIR = os.path.join( + SRC_DIR, 'third_party', 'catapult', 'third_party', 'typ') + +if TYP_DIR not in sys.path: + sys.path.insert(0, TYP_DIR) + + +import typ # pylint: disable=import-error,unused-import + + +def main(args): + return typ.main( + top_level_dirs=[os.path.join(CUR_DIR, '..')], + skip=['grit.format.gen_predetermined_ids_unittest.*', + 'grit.pseudo_unittest.*'] + ) + +if __name__ == '__main__': + sys.exit(main(sys.argv[1:])) diff --git a/tools/grit/grit/testdata/GoogleDesktop.adm b/tools/grit/grit/testdata/GoogleDesktop.adm new file mode 100644 index 0000000000..082f56bb1a --- /dev/null +++ b/tools/grit/grit/testdata/GoogleDesktop.adm @@ -0,0 +1,945 @@ +CLASS MACHINE + CATEGORY !!Cat_Google + CATEGORY !!Cat_GoogleDesktopSearch + KEYNAME "Software\Policies\Google\Google Desktop" + + CATEGORY !!Cat_Preferences + KEYNAME "Software\Policies\Google\Google Desktop\Preferences" + + CATEGORY !!Cat_IndexAndCaptureControl + POLICY !!Blacklist_Email + EXPLAIN !!Explain_Blacklist_Email + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-1" + VALUENAME "1" + END POLICY + + POLICY !!Blacklist_Gmail + EXPLAIN !!Explain_Blacklist_Gmail + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-pop" + VALUENAME "gmail" + END POLICY + + POLICY !!Blacklist_WebHistory + EXPLAIN !!Explain_Blacklist_WebHistory + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-1" + VALUENAME "2" + END POLICY + + POLICY !!Blacklist_Chat + EXPLAIN !!Explain_Blacklist_Chat + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-1" + ACTIONLISTON + VALUENAME "3" VALUE NUMERIC 1 + END ACTIONLISTON + END POLICY + + POLICY !!Blacklist_Text + EXPLAIN !!Explain_Blacklist_Text + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-1" + ACTIONLISTON + VALUENAME "4" VALUE NUMERIC 1 + END ACTIONLISTON + END POLICY + + POLICY !!Blacklist_Media + EXPLAIN !!Explain_Blacklist_Media + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-1" + ACTIONLISTON + VALUENAME "5" VALUE NUMERIC 1 + END ACTIONLISTON + END POLICY + + POLICY !!Blacklist_Contact + EXPLAIN !!Explain_Blacklist_Contact + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-1" + ACTIONLISTON + VALUENAME "9" VALUE NUMERIC 1 + END ACTIONLISTON + END POLICY + + POLICY !!Blacklist_Calendar + EXPLAIN !!Explain_Blacklist_Calendar + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-1" + ACTIONLISTON + VALUENAME "10" VALUE NUMERIC 1 + END ACTIONLISTON + END POLICY + + POLICY !!Blacklist_Task + EXPLAIN !!Explain_Blacklist_Task + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-1" + ACTIONLISTON + VALUENAME "11" VALUE NUMERIC 1 + END ACTIONLISTON + END POLICY + + POLICY !!Blacklist_Note + EXPLAIN !!Explain_Blacklist_Note + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-1" + ACTIONLISTON + VALUENAME "12" VALUE NUMERIC 1 + END ACTIONLISTON + END POLICY + + POLICY !!Blacklist_Journal + EXPLAIN !!Explain_Blacklist_Journal + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-1" + ACTIONLISTON + VALUENAME "13" VALUE NUMERIC 1 + END ACTIONLISTON + END POLICY + + POLICY !!Blacklist_Word + EXPLAIN !!Explain_Blacklist_Word + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-2" + VALUENAME "DOC" + END POLICY + + POLICY !!Blacklist_Excel + EXPLAIN !!Explain_Blacklist_Excel + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-2" + VALUENAME "XLS" + END POLICY + + POLICY !!Blacklist_Powerpoint + EXPLAIN !!Explain_Blacklist_Powerpoint + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-2" + VALUENAME "PPT" + END POLICY + + POLICY !!Blacklist_PDF + EXPLAIN !!Explain_Blacklist_PDF + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-2" + VALUENAME "PDF" + END POLICY + + POLICY !!Blacklist_ZIP + EXPLAIN !!Explain_Blacklist_ZIP + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-2" + VALUENAME "ZIP" + END POLICY + + POLICY !!Blacklist_HTTPS + EXPLAIN !!Explain_Blacklist_HTTPS + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-3" + VALUENAME "HTTPS" + END POLICY + + POLICY !!Blacklist_PasswordProtectedOffice + EXPLAIN !!Explain_Blacklist_PasswordProtectedOffice + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-13" + VALUENAME "SECUREOFFICE" + END POLICY + + POLICY !!Blacklist_URI_Contains + EXPLAIN !!Explain_Blacklist_URI_Contains + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-6" + PART !!Blacklist_URI_Contains LISTBOX + END PART + END POLICY + + POLICY !!Blacklist_Extensions + EXPLAIN !!Explain_Blacklist_Extensions + PART !!Blacklist_Extensions EDITTEXT + VALUENAME "file_extensions_to_skip" + END PART + END POLICY + + POLICY !!Pol_Disallow_UserSearchLocations + EXPLAIN !!Explain_Disallow_UserSearchLocations + VALUENAME user_search_locations + VALUEON NUMERIC 1 + END POLICY + + POLICY !!Pol_Search_Location_Whitelist + EXPLAIN !!Explain_Search_Location_Whitelist + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\policy_search_location_whitelist" + PART !!Search_Locations_Whitelist LISTBOX + END PART + END POLICY + + POLICY !!Email_Retention + EXPLAIN !!Explain_Email_Retention + PART !!Email_Retention_Edit NUMERIC + VALUENAME "email_days_to_retain" + MIN 1 MAX 65535 DEFAULT 30 SPIN 1 + END PART + END POLICY + + POLICY !!Webpage_Retention + EXPLAIN !!Explain_Webpage_Retention + PART !!Webpage_Retention_Edit NUMERIC + VALUENAME "webpage_days_to_retain" + MIN 1 MAX 65535 DEFAULT 30 SPIN 1 + END PART + END POLICY + + POLICY !!File_Retention + EXPLAIN !!Explain_File_Retention + PART !!File_Retention_Edit NUMERIC + VALUENAME "file_days_to_retain" + MIN 1 MAX 65535 DEFAULT 30 SPIN 1 + END PART + END POLICY + + POLICY !!IM_Retention + EXPLAIN !!Explain_IM_Retention + PART !!IM_Retention_Edit NUMERIC + VALUENAME "im_days_to_retain" + MIN 1 MAX 65535 DEFAULT 30 SPIN 1 + END PART + END POLICY + + POLICY !!Pol_Remove_Deleted_Items + EXPLAIN !!Explain_Remove_Deleted_Items + VALUENAME remove_deleted_items + VALUEON NUMERIC 1 + END POLICY + + POLICY !!Pol_Allow_Simultaneous_Indexing + EXPLAIN !!Explain_Allow_Simultaneous_Indexing + VALUENAME simultaneous_indexing + VALUEON NUMERIC 1 + END POLICY + + END CATEGORY + + POLICY !!Pol_TurnOffAdvancedFeatures + EXPLAIN !!Explain_TurnOffAdvancedFeatures + VALUENAME error_report_on + VALUEON NUMERIC 0 + END POLICY + + POLICY !!Pol_TurnOffImproveGd + EXPLAIN !!Explain_TurnOffImproveGd + VALUENAME improve_gd + VALUEON NUMERIC 0 + VALUEOFF NUMERIC 1 + END POLICY + + POLICY !!Pol_NoPersonalizationInfo + EXPLAIN !!Explain_NoPersonalizationInfo + VALUENAME send_personalization_info + VALUEON NUMERIC 0 + VALUEOFF NUMERIC 1 + END POLICY + + POLICY !!Pol_OneBoxMode + EXPLAIN !!Explain_OneBoxMode + VALUENAME onebox_mode + VALUEON NUMERIC 0 + END POLICY + + POLICY !!Pol_EncryptIndex + EXPLAIN !!Explain_EncryptIndex + VALUENAME encrypt_index + VALUEON NUMERIC 1 + END POLICY + + POLICY !!Pol_Hyper + EXPLAIN !!Explain_Hyper + VALUENAME hyper_off + VALUEON NUMERIC 1 + END POLICY + + POLICY !!Pol_Display_Mode + EXPLAIN !!Explain_Display_Mode + PART !!Pol_Display_Mode DROPDOWNLIST + VALUENAME display_mode + ITEMLIST + NAME !!Sidebar VALUE NUMERIC 1 + NAME !!Deskbar VALUE NUMERIC 8 + NAME !!FloatingDeskbar VALUE NUMERIC 4 + NAME !!None VALUE NUMERIC 0 + END ITEMLIST + END PART + END POLICY + + END CATEGORY ; Preferences + + CATEGORY !!Cat_Enterprise + KEYNAME "Software\Policies\Google\Google Desktop\Enterprise" + + POLICY !!Pol_Autoupdate + EXPLAIN !!Explain_Autoupdate + VALUENAME autoupdate_host + VALUEON "" + END POLICY + + POLICY !!Pol_AutoupdateAsSystem + EXPLAIN !!Explain_AutoupdateAsSystem + VALUENAME autoupdate_impersonate_user + VALUEON NUMERIC 0 + VALUEOFF NUMERIC 1 + END POLICY + + POLICY !!Pol_EnterpriseTab + EXPLAIN !!Explain_EnterpriseTab + PART !!EnterpriseTabText EDITTEXT + VALUENAME enterprise_tab_text + END PART + PART !!EnterpriseTabHomepage EDITTEXT + VALUENAME enterprise_tab_homepage + END PART + PART !!EnterpriseTabHomepageQuery CHECKBOX + VALUENAME enterprise_tab_homepage_query + END PART + PART !!EnterpriseTabResults EDITTEXT + VALUENAME enterprise_tab_results + END PART + PART !!EnterpriseTabResultsQuery CHECKBOX + VALUENAME enterprise_tab_results_query + END PART + END POLICY + + POLICY !!Pol_GSAHosts + EXPLAIN !!Explain_GSAHosts + KEYNAME "Software\Policies\Google\Google Desktop\Enterprise\GSAHosts" + PART !!Pol_GSAHosts LISTBOX + END PART + END POLICY + + POLICY !!Pol_PolicyUnawareClientProhibitedFlag + EXPLAIN !!Explain_PolicyUnawareClientProhibitedFlag + KEYNAME "Software\Policies\Google\Google Desktop" + VALUENAME PolicyUnawareClientProhibitedFlag + END POLICY + + POLICY !!Pol_MinimumAllowedVersion + EXPLAIN !!Explain_MinimumAllowedVersion + PART !!Pol_MinimumAllowedVersion EDITTEXT + VALUENAME minimum_allowed_version + END PART + END POLICY + + POLICY !!Pol_MaximumAllowedVersion + EXPLAIN !!Explain_MaximumAllowedVersion + PART !!Pol_MaximumAllowedVersion EDITTEXT + VALUENAME maximum_allowed_version + END PART + END POLICY + + POLICY !!Pol_Disallow_Gadgets + EXPLAIN !!Explain_Disallow_Gadgets + VALUENAME disallow_gadgets + VALUEON NUMERIC 1 + PART !!Disallow_Only_Non_Builtin_Gadgets CHECKBOX DEFCHECKED + VALUENAME disallow_only_non_builtin_gadgets + VALUEON NUMERIC 1 + VALUEOFF NUMERIC 0 + END PART + END POLICY + + POLICY !!Pol_Gadget_Whitelist + EXPLAIN !!Explain_Gadget_Whitelist + KEYNAME "Software\Policies\Google\Google Desktop\Enterprise\gadget_whitelist" + PART !!Pol_Gadget_Whitelist LISTBOX + END PART + END POLICY + + POLICY !!Pol_Gadget_Install_Confirmation_Whitelist + EXPLAIN !!Explain_Gadget_Install_Confirmation_Whitelist + KEYNAME "Software\Policies\Google\Google Desktop\Enterprise\install_confirmation_whitelist" + PART !!Pol_Gadget_Install_Confirmation_Whitelist LISTBOX + END PART + END POLICY + + POLICY !!Pol_Alternate_User_Data_Dir + EXPLAIN !!Explain_Alternate_User_Data_Dir + PART !!Pol_Alternate_User_Data_Dir EDITTEXT + VALUENAME alternate_user_data_dir + END PART + END POLICY + + POLICY !!Pol_MaxAllowedOutlookConnections + EXPLAIN !!Explain_MaxAllowedOutlookConnections + PART !!Pol_MaxAllowedOutlookConnections NUMERIC + VALUENAME max_allowed_outlook_connections + MIN 1 MAX 65535 DEFAULT 400 SPIN 1 + END PART + END POLICY + + POLICY !!Pol_DisallowSsdService + EXPLAIN !!Explain_DisallowSsdService + VALUENAME disallow_ssd_service + VALUEON NUMERIC 1 + END POLICY + + POLICY !!Pol_DisallowSsdOutbound + EXPLAIN !!Explain_DisallowSsdOutbound + VALUENAME disallow_ssd_outbound + VALUEON NUMERIC 1 + END POLICY + + POLICY !!Pol_Disallow_Store_Gadget_Service + EXPLAIN !!Explain_Disallow_Store_Gadget_Service + VALUENAME disallow_store_gadget_service + VALUEON NUMERIC 1 + END POLICY + + POLICY !!Pol_MaxExchangeIndexingRate + EXPLAIN !!Explain_MaxExchangeIndexingRate + PART !!Pol_MaxExchangeIndexingRate NUMERIC + VALUENAME max_exchange_indexing_rate + MIN 1 MAX 1000 DEFAULT 60 SPIN 1 + END PART + END POLICY + + POLICY !!Pol_EnableSafeweb + EXPLAIN !!Explain_Safeweb + VALUENAME safe_browsing + VALUEON NUMERIC 1 + VALUEOFF NUMERIC 0 + END POLICY + + END CATEGORY ; Enterprise + + END CATEGORY ; GoogleDesktopSearch + END CATEGORY ; Google + + +CLASS USER + CATEGORY !!Cat_Google + CATEGORY !!Cat_GoogleDesktopSearch + KEYNAME "Software\Policies\Google\Google Desktop" + + CATEGORY !!Cat_Preferences + KEYNAME "Software\Policies\Google\Google Desktop\Preferences" + + CATEGORY !!Cat_IndexAndCaptureControl + POLICY !!Blacklist_Email + EXPLAIN !!Explain_Blacklist_Email + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-1" + VALUENAME "1" + END POLICY + + POLICY !!Blacklist_Gmail + EXPLAIN !!Explain_Blacklist_Gmail + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-pop" + VALUENAME "gmail" + END POLICY + + POLICY !!Blacklist_WebHistory + EXPLAIN !!Explain_Blacklist_WebHistory + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-1" + VALUENAME "2" + END POLICY + + POLICY !!Blacklist_Chat + EXPLAIN !!Explain_Blacklist_Chat + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-1" + ACTIONLISTON + VALUENAME "3" VALUE NUMERIC 1 + END ACTIONLISTON + END POLICY + + POLICY !!Blacklist_Text + EXPLAIN !!Explain_Blacklist_Text + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-1" + ACTIONLISTON + VALUENAME "4" VALUE NUMERIC 1 + END ACTIONLISTON + END POLICY + + POLICY !!Blacklist_Media + EXPLAIN !!Explain_Blacklist_Media + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-1" + ACTIONLISTON + VALUENAME "5" VALUE NUMERIC 1 + END ACTIONLISTON + END POLICY + + POLICY !!Blacklist_Contact + EXPLAIN !!Explain_Blacklist_Contact + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-1" + ACTIONLISTON + VALUENAME "9" VALUE NUMERIC 1 + END ACTIONLISTON + END POLICY + + POLICY !!Blacklist_Calendar + EXPLAIN !!Explain_Blacklist_Calendar + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-1" + ACTIONLISTON + VALUENAME "10" VALUE NUMERIC 1 + END ACTIONLISTON + END POLICY + + POLICY !!Blacklist_Task + EXPLAIN !!Explain_Blacklist_Task + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-1" + ACTIONLISTON + VALUENAME "11" VALUE NUMERIC 1 + END ACTIONLISTON + END POLICY + + POLICY !!Blacklist_Note + EXPLAIN !!Explain_Blacklist_Note + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-1" + ACTIONLISTON + VALUENAME "12" VALUE NUMERIC 1 + END ACTIONLISTON + END POLICY + + POLICY !!Blacklist_Journal + EXPLAIN !!Explain_Blacklist_Journal + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-1" + ACTIONLISTON + VALUENAME "13" VALUE NUMERIC 1 + END ACTIONLISTON + END POLICY + + POLICY !!Blacklist_Word + EXPLAIN !!Explain_Blacklist_Word + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-2" + VALUENAME "DOC" + END POLICY + + POLICY !!Blacklist_Excel + EXPLAIN !!Explain_Blacklist_Excel + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-2" + VALUENAME "XLS" + END POLICY + + POLICY !!Blacklist_Powerpoint + EXPLAIN !!Explain_Blacklist_Powerpoint + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-2" + VALUENAME "PPT" + END POLICY + + POLICY !!Blacklist_PDF + EXPLAIN !!Explain_Blacklist_PDF + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-2" + VALUENAME "PDF" + END POLICY + + POLICY !!Blacklist_ZIP + EXPLAIN !!Explain_Blacklist_ZIP + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-2" + VALUENAME "ZIP" + END POLICY + + POLICY !!Blacklist_HTTPS + EXPLAIN !!Explain_Blacklist_HTTPS + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-3" + VALUENAME "HTTPS" + END POLICY + + POLICY !!Blacklist_PasswordProtectedOffice + EXPLAIN !!Explain_Blacklist_PasswordProtectedOffice + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-13" + VALUENAME "SECUREOFFICE" + END POLICY + + POLICY !!Blacklist_URI_Contains + EXPLAIN !!Explain_Blacklist_URI_Contains + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\blacklist-6" + PART !!Blacklist_URI_Contains LISTBOX + END PART + END POLICY + + POLICY !!Blacklist_Extensions + EXPLAIN !!Explain_Blacklist_Extensions + PART !!Blacklist_Extensions EDITTEXT + VALUENAME "file_extensions_to_skip" + END PART + END POLICY + + POLICY !!Pol_Disallow_UserSearchLocations + EXPLAIN !!Explain_Disallow_UserSearchLocations + VALUENAME user_search_locations + VALUEON NUMERIC 1 + END POLICY + + POLICY !!Pol_Search_Location_Whitelist + EXPLAIN !!Explain_Search_Location_Whitelist + KEYNAME "Software\Policies\Google\Google Desktop\Preferences\policy_search_location_whitelist" + PART !!Search_Locations_Whitelist LISTBOX + END PART + END POLICY + + POLICY !!Email_Retention + EXPLAIN !!Explain_Email_Retention + PART !!Email_Retention_Edit NUMERIC + VALUENAME "email_days_to_retain" + MIN 1 MAX 65535 DEFAULT 30 SPIN 1 + END PART + END POLICY + + POLICY !!Webpage_Retention + EXPLAIN !!Explain_Webpage_Retention + PART !!Webpage_Retention_Edit NUMERIC + VALUENAME "webpage_days_to_retain" + MIN 1 MAX 65535 DEFAULT 30 SPIN 1 + END PART + END POLICY + + POLICY !!File_Retention + EXPLAIN !!Explain_File_Retention + PART !!File_Retention_Edit NUMERIC + VALUENAME "file_days_to_retain" + MIN 1 MAX 65535 DEFAULT 30 SPIN 1 + END PART + END POLICY + + POLICY !!IM_Retention + EXPLAIN !!Explain_IM_Retention + PART !!IM_Retention_Edit NUMERIC + VALUENAME "im_days_to_retain" + MIN 1 MAX 65535 DEFAULT 30 SPIN 1 + END PART + END POLICY + + POLICY !!Pol_Remove_Deleted_Items + EXPLAIN !!Explain_Remove_Deleted_Items + VALUENAME remove_deleted_items + VALUEON NUMERIC 1 + END POLICY + + POLICY !!Pol_Allow_Simultaneous_Indexing + EXPLAIN !!Explain_Allow_Simultaneous_Indexing + VALUENAME simultaneous_indexing + VALUEON NUMERIC 1 + END POLICY + + END CATEGORY + + POLICY !!Pol_TurnOffAdvancedFeatures + EXPLAIN !!Explain_TurnOffAdvancedFeatures + VALUENAME error_report_on + VALUEON NUMERIC 0 + END POLICY + + POLICY !!Pol_TurnOffImproveGd + EXPLAIN !!Explain_TurnOffImproveGd + VALUENAME improve_gd + VALUEON NUMERIC 0 + VALUEOFF NUMERIC 1 + END POLICY + + POLICY !!Pol_NoPersonalizationInfo + EXPLAIN !!Explain_NoPersonalizationInfo + VALUENAME send_personalization_info + VALUEON NUMERIC 0 + VALUEOFF NUMERIC 1 + END POLICY + + POLICY !!Pol_OneBoxMode + EXPLAIN !!Explain_OneBoxMode + VALUENAME onebox_mode + VALUEON NUMERIC 0 + END POLICY + + POLICY !!Pol_EncryptIndex + EXPLAIN !!Explain_EncryptIndex + VALUENAME encrypt_index + VALUEON NUMERIC 1 + END POLICY + + POLICY !!Pol_Hyper + EXPLAIN !!Explain_Hyper + VALUENAME hyper_off + VALUEON NUMERIC 1 + END POLICY + + POLICY !!Pol_Display_Mode + EXPLAIN !!Explain_Display_Mode + PART !!Pol_Display_Mode DROPDOWNLIST + VALUENAME display_mode + ITEMLIST + NAME !!Sidebar VALUE NUMERIC 1 + NAME !!Deskbar VALUE NUMERIC 8 + NAME !!FloatingDeskbar VALUE NUMERIC 4 + NAME !!None VALUE NUMERIC 0 + END ITEMLIST + END PART + END POLICY + + END CATEGORY ; Preferences + + CATEGORY !!Cat_Enterprise + KEYNAME "Software\Policies\Google\Google Desktop\Enterprise" + + POLICY !!Pol_Autoupdate + EXPLAIN !!Explain_Autoupdate + VALUENAME autoupdate_host + VALUEON "" + END POLICY + + POLICY !!Pol_AutoupdateAsSystem + EXPLAIN !!Explain_AutoupdateAsSystem + VALUENAME autoupdate_impersonate_user + VALUEON NUMERIC 0 + VALUEOFF NUMERIC 1 + END POLICY + + POLICY !!Pol_EnterpriseTab + EXPLAIN !!Explain_EnterpriseTab + PART !!EnterpriseTabText EDITTEXT + VALUENAME enterprise_tab_text + END PART + PART !!EnterpriseTabHomepage EDITTEXT + VALUENAME enterprise_tab_homepage + END PART + PART !!EnterpriseTabHomepageQuery CHECKBOX + VALUENAME enterprise_tab_homepage_query + END PART + PART !!EnterpriseTabResults EDITTEXT + VALUENAME enterprise_tab_results + END PART + PART !!EnterpriseTabResultsQuery CHECKBOX + VALUENAME enterprise_tab_results_query + END PART + END POLICY + + POLICY !!Pol_GSAHosts + EXPLAIN !!Explain_GSAHosts + KEYNAME "Software\Policies\Google\Google Desktop\Enterprise\GSAHosts" + PART !!Pol_GSAHosts LISTBOX + END PART + END POLICY + + POLICY !!Pol_Disallow_Gadgets + EXPLAIN !!Explain_Disallow_Gadgets + VALUENAME disallow_gadgets + VALUEON NUMERIC 1 + PART !!Disallow_Only_Non_Builtin_Gadgets CHECKBOX DEFCHECKED + VALUENAME disallow_only_non_builtin_gadgets + VALUEON NUMERIC 1 + VALUEOFF NUMERIC 0 + END PART + END POLICY + + POLICY !!Pol_Gadget_Whitelist + EXPLAIN !!Explain_Gadget_Whitelist + KEYNAME "Software\Policies\Google\Google Desktop\Enterprise\gadget_whitelist" + PART !!Pol_Gadget_Whitelist LISTBOX + END PART + END POLICY + + POLICY !!Pol_Gadget_Install_Confirmation_Whitelist + EXPLAIN !!Explain_Gadget_Install_Confirmation_Whitelist + KEYNAME "Software\Policies\Google\Google Desktop\Enterprise\install_confirmation_whitelist" + PART !!Pol_Gadget_Install_Confirmation_Whitelist LISTBOX + END PART + END POLICY + + POLICY !!Pol_Alternate_User_Data_Dir + EXPLAIN !!Explain_Alternate_User_Data_Dir + PART !!Pol_Alternate_User_Data_Dir EDITTEXT + VALUENAME alternate_user_data_dir + END PART + END POLICY + + POLICY !!Pol_MaxAllowedOutlookConnections + EXPLAIN !!Explain_MaxAllowedOutlookConnections + PART !!Pol_MaxAllowedOutlookConnections NUMERIC + VALUENAME max_allowed_outlook_connections + MIN 1 MAX 65535 DEFAULT 400 SPIN 1 + END PART + END POLICY + + POLICY !!Pol_DisallowSsdService + EXPLAIN !!Explain_DisallowSsdService + VALUENAME disallow_ssd_service + VALUEON NUMERIC 1 + END POLICY + + POLICY !!Pol_DisallowSsdOutbound + EXPLAIN !!Explain_DisallowSsdOutbound + VALUENAME disallow_ssd_outbound + VALUEON NUMERIC 1 + END POLICY + + POLICY !!Pol_Disallow_Store_Gadget_Service + EXPLAIN !!Explain_Disallow_Store_Gadget_Service + VALUENAME disallow_store_gadget_service + VALUEON NUMERIC 1 + END POLICY + + POLICY !!Pol_MaxExchangeIndexingRate + EXPLAIN !!Explain_MaxExchangeIndexingRate + PART !!Pol_MaxExchangeIndexingRate NUMERIC + VALUENAME max_exchange_indexing_rate + MIN 1 MAX 1000 DEFAULT 60 SPIN 1 + END PART + END POLICY + + POLICY !!Pol_EnableSafeweb + EXPLAIN !!Explain_Safeweb + VALUENAME safe_browsing + VALUEON NUMERIC 1 + VALUEOFF NUMERIC 0 + END POLICY + + END CATEGORY ; Enterprise + + END CATEGORY ; GoogleDesktopSearch + END CATEGORY ; Google + +;------------------------------------------------------------------------------ + +[strings] +Cat_Google="Google" +Cat_GoogleDesktopSearch="Google Desktop" + +;------------------------------------------------------------------------------ +; Preferences +;------------------------------------------------------------------------------ +Cat_Preferences="Preferences" +Explain_Preferences="Controls Google Desktop preferences" + +Cat_IndexAndCaptureControl="Indexing and Capture Control" +Explain_IndexAndCaptureControl="Controls what files, web pages, and other content will be indexed by Google Desktop." + +Blacklist_Email="Prevent indexing of email" +Explain_Blacklist_Email="Enabling this policy will prevent Google Desktop from indexing emails.\n\nIf this policy is not configured, the user can choose whether or not to index emails." +Blacklist_Gmail="Prevent indexing of Gmail" +Explain_Blacklist_Gmail="Enabling this policy prevents Google Desktop from indexing Gmail messages.\n\nThis policy is in effect only when the policy "Prevent indexing of email" is disabled. When that policy is enabled, all email indexing is disabled, including Gmail indexing.\n\nIf both this policy and "Prevent indexing of email" are disabled or not configured, a user can choose whether or not to index Gmail messages." +Blacklist_WebHistory="Prevent indexing of web pages" +Explain_Blacklist_WebHistory="Enabling this policy will prevent Google Desktop from indexing web pages.\n\nIf this policy is disabled or not configured, the user can choose whether or not to index web pages." +Blacklist_Text="Prevent indexing of text files" +Explain_Blacklist_Text="Enabling this policy will prevent Google Desktop from indexing text files.\n\nIf this policy is disabled or not configured, the user can choose whether or not to index text files." +Blacklist_Media="Prevent indexing of media files" +Explain_Blacklist_Media="Enabling this policy will prevent Google Desktop from indexing media files.\n\nIf this policy is disabled or not configured, the user can choose whether or not to index media files." +Blacklist_Contact="Prevent indexing of contacts" +Explain_Blacklist_Contact="Enabling this policy will prevent Google Desktop from indexing contacts.\n\nIf this policy is disabled or not configured, the user can choose whether or not to index contacts." +Blacklist_Calendar="Prevent indexing of calendar entries" +Explain_Blacklist_Calendar="Enabling this policy will prevent Google Desktop from indexing calendar entries.\n\nIf this policy is disabled or not configured, the user can choose whether or not to index calendar entries." +Blacklist_Task="Prevent indexing of tasks" +Explain_Blacklist_Task="Enabling this policy will prevent Google Desktop from indexing tasks.\n\nIf this policy is disabled or not configured, the user can choose whether or not to index tasks." +Blacklist_Note="Prevent indexing of notes" +Explain_Blacklist_Note="Enabling this policy will prevent Google Desktop from indexing notes.\n\nIf this policy is disabled or not configured, the user can choose whether or not to index notes." +Blacklist_Journal="Prevent indexing of journal entries" +Explain_Blacklist_Journal="Enabling this policy will prevent Google Desktop from indexing journal entries.\n\nIf this policy is disabled or not configured, the user can choose whether or not to index journal entries." +Blacklist_Word="Prevent indexing of Word documents" +Explain_Blacklist_Word="Enabling this policy will prevent Google Desktop from indexing Word documents.\n\nIf this policy is disabled or not configured, the user can choose whether or not to index Word documents." +Blacklist_Excel="Prevent indexing of Excel documents" +Explain_Blacklist_Excel="Enabling this policy will prevent Google Desktop from indexing Excel documents.\n\nIf this policy is disabled or not configured, the user can choose whether or not to index Excel documents." +Blacklist_Powerpoint="Prevent indexing of PowerPoint documents" +Explain_Blacklist_Powerpoint="Enabling this policy will prevent Google Desktop from indexing PowerPoint documents.\n\nIf this policy is disabled or not configured, the user can choose whether or not to index PowerPoint documents." +Blacklist_PDF="Prevent indexing of PDF documents" +Explain_Blacklist_PDF="Enabling this policy will prevent Google Desktop from indexing PDF documents.\n\nIf this policy is disabled or not configured, the user can choose whether or not to index PDF documents." +Blacklist_ZIP="Prevent indexing of ZIP files" +Explain_Blacklist_ZIP="Enabling this policy will prevent Google Desktop from indexing ZIP files.\n\nIf this policy is disabled or not configured, the user can choose whether or not to index ZIP files." +Blacklist_HTTPS="Prevent indexing of secure web pages" +Explain_Blacklist_HTTPS="Enabling this policy will prevent Google Desktop from indexing secure web pages (pages with HTTPS in the URL).\n\nIf this policy is disabled or not configured, the user can choose whether or not to index secure web pages." +Blacklist_URI_Contains="Prevent indexing of specific web sites and folders" +Explain_Blacklist_URI_Contains="This policy allows you to prevent Google Desktop from indexing specific websites or folders. If an item's URL or path name contains any of these specified strings, it will not be indexed. These restrictions will be applied in addition to any websites or folders that the user has specified.\n\nThis policy has no effect when disabled or not configured." +Blacklist_Chat="Prevent indexing of IM chats" +Explain_Blacklist_Chat="Enabling this policy will prevent Google Desktop from indexing IM chat conversations.\n\nIf this policy is disabled or not configured, the user can choose whether or not to index IM chat conversations." +Blacklist_PasswordProtectedOffice="Prevent indexing of password-protected Office documents (Word, Excel)" +Explain_Blacklist_PasswordProtectedOffice="Enabling this policy will prevent Google Desktop from indexing password-protected office documents.\n\nIf this policy is disabled or not configured, the user can choose whether or not to index password-protected office documents." +Blacklist_Extensions="Prevent indexing of specific file extensions" +Explain_Blacklist_Extensions="This policy allows you to prevent Google Desktop from indexing files with specific extensions. Enter a list of file extensions, separated by commas, that you wish to exclude from indexing.\n\nThis policy has no effect when disabled or not configured." +Pol_Disallow_UserSearchLocations="Disallow adding search locations for indexing" +Explain_Disallow_UserSearchLocations="Enabling this policy will prevent the user from specifying additional drives or networked folders to be indexed by Google Desktop.\n\nIf this policy is disabled or not configured, users may specify additional drives and networked folders to be indexed." +Pol_Search_Location_Whitelist="Allow indexing of specific folders" +Explain_Search_Location_Whitelist="This policy allows you to add additional drives and networked folders to index." +Search_Locations_Whitelist="Search these locations" +Email_Retention="Only retain emails that are less than x days old" +Explain_Email_Retention="This policy allows you to configure Google Desktop to only retain emails that are less than the specified number of days old in the index. Enter the number of days to retain emails for\n\nThis policy has no effect when disabled or not configured." +Email_Retention_Edit="Number of days to retain emails" +Webpage_Retention="Only retain webpages that are less than x days old" +Explain_Webpage_Retention="This policy allows you to configure Google Desktop to only retain webpages that are less than the specified number of days old in the index. Enter the number of days to retain webpages for\n\nThis policy has no effect when disabled or not configured." +Webpage_Retention_Edit="Number of days to retain webpages" +File_Retention="Only retain files that are less than x days old" +Explain_File_Retention="This policy allows you to configure Google Desktop to only retain files that are less than the specified number of days old in the index. Enter the number of days to retain files for\n\nThis policy has no effect when disabled or not configured." +File_Retention_Edit="Number of days to retain files" +IM_Retention="Only retain IM that are less than x days old" +Explain_IM_Retention="This policy allows you to configure Google Desktop to only retain IM that are less than the specified number of days old in the index. Enter the number of days to retain IM for\n\nThis policy has no effect when disabled or not configured." +IM_Retention_Edit="Number of days to retain IM" + +Pol_Remove_Deleted_Items="Remove deleted items from the index." +Explain_Remove_Deleted_Items="Enabling this policy will remove all deleted items from the index and cache. Any items that are deleted will no longer be searchable." + +Pol_Allow_Simultaneous_Indexing="Allow historical indexing for multiple users simultaneously." +Explain_Allow_Simultaneous_Indexing="Enabling this policy will allow a computer to generate first-time indexes for multiple users simultaneously. \n\nIf this policy is disabled or not configured, historical indexing will happen only for the logged-in user that was connected last; historical indexing for any other logged-in user will happen the next time that other user connects." + +Pol_TurnOffAdvancedFeatures="Turn off Advanced Features options" +Explain_TurnOffAdvancedFeatures="Enabling this policy will prevent Google Desktop from sending Advanced Features data to Google (for either improvements or personalization), and users won't be able to change these options. Enabling this policy also prevents older versions of Google Desktop from sending data.\n\nIf this policy is disabled or not configured and the user has a pre-5.5 version of Google Desktop, the user can choose whether or not to enable sending data to Google. If the user has version 5.5 or later, the 'Turn off Improve Google Desktop option' and 'Do not send personalization info' policies will be used instead." + +Pol_TurnOffImproveGd="Turn off Improve Google Desktop option" +Explain_TurnOffImproveGd="Enabling this policy will prevent Google Desktop from sending improvement data, including crash reports and anonymous usage data, to Google.\n\nIf this policy is disabled, improvement data will be sent to Google and the user won't be able to change the option.\n\nIf this policy is not configured, the user can choose whether or not to enable the Improve Google Desktop option.\n\nNote that this policy applies only to version 5.5 or later and doesn't affect previous versions of Google Desktop.\n\nAlso note that this policy can be overridden by the 'Turn off Advanced Features options' policy." + +Pol_NoPersonalizationInfo="Do not send personalization info" +Explain_NoPersonalizationInfo="Enabling this policy will prevent Google Desktop from displaying personalized content, such as news that reflects the user's past interest in articles. Personalized content is derived from anonymous usage data sent to Google.\n\nIf this policy is disabled, personalized content will be displayed for all users, and users won't be able to disable this feature.\n\nIf this policy is not configured, users can choose whether or not to enable personalization in each gadget that supports this feature.\n\nNote that this policy applies only to version 5.5 or later and doesn't affect previous versions of Google Desktop.\n\nAlso note that this policy can be overridden by the 'Turn off Advanced Features options' policy." + +Pol_OneBoxMode="Turn off Google Web Search Integration" +Explain_OneBoxMode="Enabling this policy will prevent Google Desktop from displaying Desktop Search results in queries to google.com.\n\nIf this policy is disabled or not configured, the user can choose whether or not to include Desktop Search results in queries to google.com." + +Pol_EncryptIndex="Encrypt index data" +Explain_EncryptIndex="Enabling this policy will cause Google Desktop to turn on Windows file encryption for the folder containing the Google Desktop index and related user data the next time it is run.\n\nNote that Windows EFS is only available on NTFS volumes. If the user's data is stored on a FAT volume, this policy will have no effect.\n\nThis policy has no effect when disabled or not configured." + +Pol_Hyper="Turn off Quick Find" +Explain_Hyper="Enabling this policy will cause Google Desktop to turn off Quick Find feature. Quick Find allows you to see results as you type.\n\nIf this policy is disabled or not configured, the user can choose whether or not to enable it." + +Pol_Display_Mode="Choose display option" +Explain_Display_Mode="This policy sets the Google Desktop display option: Sidebar, Deskbar, Floating Deskbar or none.\n\nNote that on 64-bit systems, a setting of Deskbar will be interpreted as Floating Deskbar.\n\nIf this policy is disabled or not configured, the user can choose a display option." +Sidebar="Sidebar" +Deskbar="Deskbar" +FloatingDeskbar="Floating Deskbar" +None="None" + +;------------------------------------------------------------------------------ +; Enterprise +;------------------------------------------------------------------------------ +Cat_Enterprise="Enterprise Integration" +Explain_Enterprise="Controls features specific to Enterprise installations of Google Desktop" + +Pol_Autoupdate="Block Auto-update" +Explain_Autoupdate="Enabling this policy prevents Google Desktop from automatically checking for and installing updates from google.com.\n\nIf you enable this policy, you must distribute updates to Google Desktop using Group Policy, SMS, or a similar enterprise software distribution mechanism. You should check http://desktop.google.com/enterprise/ for updates.\n\nIf this policy is disabled or not configured, Google Desktop will periodically check for updates from desktop.google.com." + +Pol_AutoupdateAsSystem="Use system proxy settings when auto-updating" +Explain_AutoupdateAsSystem="Enabling this policy makes Google Desktop use the machine-wide proxy settings (as specified using e.g. proxycfg.exe) when performing autoupdates (if enabled).\n\nIf this policy is disabled or not configured, Google Desktop will use the logged-on user's Internet Explorer proxy settings when checking for auto-updates (if enabled)." + +Pol_EnterpriseTab="Enterprise search tab" +Explain_EnterpriseTab="This policy allows you to add a search tab for your Google Search Appliance to Google Desktop and google.com web pages.\n\nYou must provide the name of the tab, such as "Intranet", as well as URLs for the search homepage and for retrieving search results. Use [DISP_QUERY] in place of the query term for the search results URL.\n\nSee the administrator's guide for more details." +EnterpriseTabText="Tab name" +EnterpriseTabHomepage="Search homepage URL" +EnterpriseTabHomepageQuery="Check if search homepage supports '&&q='" +EnterpriseTabResults="Search results URL" +EnterpriseTabResultsQuery="Check if search results page supports '&&q='" + +Pol_GSAHosts="Google Search Appliances" +Explain_GSAHosts="This policy allows you to list any Google Search Appliances in your intranet. When properly configured, Google Desktop will insert Google Desktop results into the results of queries on the Google Search Appliance" + +Pol_PolicyUnawareClientProhibitedFlag="Prohibit Policy-Unaware versions" +Explain_PolicyUnawareClientProhibitedFlag="Prohibits installation and execution of versions of Google Desktop that are unaware of group policy.\n\nEnabling this policy will prevent users from installing or running version 1.0 of Google Desktop.\n\nThis policy has no effect when disabled or not configured." + +Pol_MinimumAllowedVersion="Minimum allowed version" +Explain_MinimumAllowedVersion="This policy allows you to prevent installation and/or execution of older versions of Google Desktop by specifying the minimum version you wish to allow. When enabling this policy, you should also enable the "Prohibit Policy-Unaware versions" policy to block versions of Google Desktop that did not support group policy.\n\nThis policy has no effect when disabled or not configured." + +Pol_MaximumAllowedVersion="Maximum allowed version" +Explain_MaximumAllowedVersion="This policy allows you to prevent installation and/or execution of newer versions of Google Desktop by specifying the maximum version you wish to allow.\n\nThis policy has no effect when disabled or not configured." + +Pol_Disallow_Gadgets="Disallow gadgets and indexing plug-ins" +Explain_Disallow_Gadgets="This policy prevents the use of all Google Desktop gadgets and indexing plug-ins. The policy applies to gadgets that are included in the Google Desktop installation package (built-in gadgets), built-in indexing plug-ins (currently only the Lotus Notes plug-in), and to gadgets or indexing plug-ins that a user might want to add later (non-built-in gadgets and indexing plug-ins).\n\nYou can prohibit use of all non-built-in gadgets and indexing plug-ins, but allow use of built-in gadgets and indexing plug-ins. To do so, enable this policy and then select the option "Disallow only non-built-in gadgets and indexing plug-ins.\n\nYou can supersede this policy to allow specified built-in and non-built-in gadgets and indexing plug-ins. To do so, enable this policy and then specify the gadgets and/or indexing plug-ins you want to allow under "Gadget and Plug-in Whitelist."" +Disallow_Only_Non_Builtin_Gadgets="Disallow only non-built-in gadgets and indexing plug-ins" + +Pol_Gadget_Whitelist="Gadget and plug-in whitelist" +Explain_Gadget_Whitelist="This policy specifies a list of Google Desktop gadgets and indexing plug-ins that you want to allow, as exceptions to the "Disallow gadgets and indexing plug-ins" policy. This policy is valid only when the "Disallow gadgets and indexing plug-ins" policy is enabled.\n\nFor each gadget or indexing plug-in you wish to allow, add the CLSID or PROGID of the gadget or indexing plug-in (see the administrator's guide for more details).\n\nThis policy has no effect when disabled or not configured." + +Pol_Gadget_Install_Confirmation_Whitelist="Allow silent installation of gadgets" +Explain_Gadget_Install_Confirmation_Whitelist="Enabling this policy lets you specify a list of Google Desktop gadgets or indexing plug-ins that can be installed without confirmation from the user.\n\nAdd a gadget or indexing plug-in by placing its class ID (CLSID) or program identifier (PROGID) in the list, surrounded with curly braces ({ }).\n\nThis policy has no effect when disabled or not configured." + +Pol_Alternate_User_Data_Dir="Alternate user data directory" +Explain_Alternate_User_Data_Dir="This policy allows you to specify a directory to be used to store user data for Google Desktop (such as index data and cached documents).\n\nYou may use [USER_NAME] or [DOMAIN_NAME] in the path to specify the current user's name or domain. If [USER_NAME] is not specified, the user name will be appended at the end of the path.\n\nThis policy has no effect when disabled or not configured." + +Pol_MaxAllowedOutlookConnections="Maximum allowed Outlook connections" +Explain_MaxAllowedOutlookConnections="This policy specifies the maximum number of open connections that Google Desktop maintains with the Exchange server. Google Desktop opens a connection for each email folder that it indexes. If insufficient connections are allowed, Google Desktop cannot index all the user email folders.\n\nThe default value is 400. Because users rarely have as many as 400 email folders, Google Desktop rarely reaches the limit.\n\nIf you set this policy's value above 400, you must also configure the number of open connections between Outlook and the Exchange server. By default, approximately 400 connections are allowed. If Google Desktop uses too many of these connections, Outlook might be unable to access email.\n\nThis policy has no effect when disabled or not configured." + +Pol_DisallowSsdService="Disallow sharing and receiving of web history and documents across computers" +Explain_DisallowSsdService="Enabling this policy will prevent Google Desktop from sharing the user's web history and document contents across the user's different Google Desktop installations, and will also prevent it from receiving such shared items from the user's other machines. To allow reception but disallow sharing, use DisallowSsdOutbound.\nThis policy has no effect when disabled or not configured." + +Pol_DisallowSsdOutbound="Disallow sharing of web history and documents to user's other computers." +Explain_DisallowSsdOutbound="Enabling this policy will prevent Google Desktop from sending the user's web history and document contents from this machine to the user's other machines. It does not prevent reception of items from the user's other machines; to disallow both, use DisallowSsdService.\nThis policy has no effect when disabled or not configured." + +Pol_Disallow_Store_Gadget_Service="Disallow storage of gadget content and settings." +Explain_Disallow_Store_Gadget_Service="Enabling this policy will prevent users from storing their gadget content and settings with Google. Users will be unable to access their gadget content and settings from other computers and all content and settings will be lost if Google Desktop is uninstalled." + +Pol_MaxExchangeIndexingRate="Maximum allowed Exchange indexing rate" +Explain_MaxExchangeIndexingRate="This policy allows you to specify the maximum number of emails that are indexed per minute. \n\nThis policy has no effect when disabled or not configured." + +Pol_EnableSafeweb="Enable or disable safe browsing" +Explain_Safeweb="Google Desktop safe browsing informs the user whenever they visit any site which is a suspected forgery site or may harm their computer. Enabling this policy turns on safe browsing; disabling the policy turns it off. \n\nIf this policy is not configured, the user can select whether to turn on safe browsing." \ No newline at end of file diff --git a/tools/grit/grit/testdata/README.txt b/tools/grit/grit/testdata/README.txt new file mode 100644 index 0000000000..a683b3b9e3 --- /dev/null +++ b/tools/grit/grit/testdata/README.txt @@ -0,0 +1,87 @@ +Google Desktop for Enterprise +Copyright (C) 2007 Google Inc. +All Rights Reserved + +--------- +Contents +--------- +This distribution contains the following files: + +GoogleDesktopSetup.msi - Installation and setup program +GoogleDesktop.adm - Group Policy administrative template file +AdminGuide.pdf - Google Desktop for Enterprise administrative guide + + +-------------- +Documentation +-------------- +Full documentation and installation instructions are in the +administrative guide, and also online at +http://desktop.google.com/enterprise/adminguide.html. + + +------------------------ +IBM Lotus Notes Plug-In +------------------------ +The Lotus Notes plug-in is included in the release of Google +Desktop for Enterprise. The IBM Lotus Notes Plug-in for Google +Desktop indexes mail, calendar, task, contact and journal +documents from Notes. Discussion documents including those from +the discussion and team room templates can also be indexed by +selecting an option from the preferences. Once indexed, this data +will be returned in Google Desktop searches. The corresponding +document can be opened in Lotus Notes from the Google Desktop +results page. + +Install: The plug-in will install automatically during the Google +Desktop setup process if Lotus Notes is already installed. Lotus +Notes must not be running in order for the install to occur. The +Class ID for this plug-in is {8F42BDFB-33E8-427B-AFDC-A04E046D3F07}. + +Preferences: Preferences and selection of databases to index are +set in the 'Google Desktop for Notes' dialog reached through the +'Actions' menu. + +Reindexing: Selecting 'Reindex all databases' will index all the +documents in each database again. + + +Notes Plug-in Known Issues +--------------------------- + +If the 'Google Desktop for Notes' item is not available from the +Lotus Notes Actions menu, then installation was not successful. +Installation consists of writing one file, notesgdsplugin.dll, to +the Notes application directory and a setting to the notes.ini +configuration file. The most likely cause of an unsuccessful +installation is that the installer was not able to locate the +notes.ini file. Installation will complete if the user closes Notes +and manually adds the following setting to this file on a new line: +AddinMenus=notesgdsplugin.dll + +If the notesgdsplugin.dll file is not in the application directory +(e.g., C:\Program Files\Lotus\Notes) after Google Desktop +installation, it is likely that Notes was not installed correctly. + +Only local databases can be indexed. If they can be determined, +the user's local mail file and address book will be included in the +list automatically. Mail archives and other databases must be +added with the 'Add' button. + +Some users may experience performance issues during the initial +indexing of a database. The 'Perform the initial index of a +database only when I'm idle' option will limit the indexing process +to times when the user is not using the machine. If this does not +alleviate the problem or the user would like to continually index +but just do so more slowly or quickly, the GoogleWaitTime notes.ini +value can be set. Increasing the GoogleWaitTime value will slow +down the indexing process, and lowering the value will speed it up. +A value of zero causes the fastest possible indexing. Removing the +ini parameter altogether returns it to the default (20). + +Crashes have been known to occur with certain types of history +bookmarks. If the Notes client seems to crash randomly, try +disabling the 'Index note history' option. If it crashes before, +you can get to the preferences, add the following line to your +notes.ini file: +GDSNoIndexHistory=1 diff --git a/tools/grit/grit/testdata/about.html b/tools/grit/grit/testdata/about.html new file mode 100644 index 0000000000..8e5fad7b2b --- /dev/null +++ b/tools/grit/grit/testdata/about.html @@ -0,0 +1,45 @@ +[HEADER] +
+
 [TITLE]
+
Google Desktop Search: Search your own computer.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
  Outlook Email   Netscape Mail / Thunderbird
  Outlook Express   Netscape / Firefox / Mozilla
  Word   PDF
  Excel   Music
  PowerPoint   Images
  Internet Explorer   Video
  AOL Instant Messenger   Even more with these plug-ins
  Text and others
+
+

+ + + + + +
Getting Started - Learn more about using Google Desktop Search
Online Help - Up-to-date answers to your questions
Privacy - A few words about privacy and Google Desktop Search
Uninstall - How to uninstall Google Desktop Search
Submit Feedback - Send us your comments and ideas

Google Desktop Search [$~BUILDNUMBER~$]

+[FOOTER] \ No newline at end of file diff --git a/tools/grit/grit/testdata/android.xml b/tools/grit/grit/testdata/android.xml new file mode 100644 index 0000000000..cc3b141f70 --- /dev/null +++ b/tools/grit/grit/testdata/android.xml @@ -0,0 +1,24 @@ + + + + + + Open %s? + + + + A simple string. + + + Contains a comment. + + + Another simple string. + + + Do not translate me. + diff --git a/tools/grit/grit/testdata/bad_browser.html b/tools/grit/grit/testdata/bad_browser.html new file mode 100644 index 0000000000..e8cf34664d --- /dev/null +++ b/tools/grit/grit/testdata/bad_browser.html @@ -0,0 +1,16 @@ +

We're sorry, but we don't seem to be compatible.

+

Our software suggests that you're using a browser incompatible with Google Desktop Search. + Google Desktop Search currently supports the following:

+ + +

You may click here to use your + unsupported browser, though you likely will encounter some areas that don't + work as expected. You need to have Javascript enabled, regardless of the + browser you use. +

We hope to expand this list in the near future and announce new + browsers as they become available. diff --git a/tools/grit/grit/testdata/browser.html b/tools/grit/grit/testdata/browser.html new file mode 100644 index 0000000000..45d364d56f --- /dev/null +++ b/tools/grit/grit/testdata/browser.html @@ -0,0 +1,42 @@ + +[$~TITLE~$] + + + + + + + + + + +
[$~IMAGE~$] +   + + + + +
+ + + + +
 [$~CHROME_TITLE~$]
+
+ + + + + +
+ [$~BODY~$] +
+[$~FOOTER~$] + \ No newline at end of file diff --git a/tools/grit/grit/testdata/buildinfo.grd b/tools/grit/grit/testdata/buildinfo.grd new file mode 100644 index 0000000000..80458a8265 --- /dev/null +++ b/tools/grit/grit/testdata/buildinfo.grd @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Copyright 2008 Google Inc. All Rights Reserved. + + + Google Desktop News gadget +[IDS_COPYRIGHT_GOOGLE_LONG] +View news that is personalized based on the articles you read. + +For example, if you read lots of sports news, you'll see more sports articles. If you read technology news less often, you'll see fewer of those articles. + + + + diff --git a/tools/grit/grit/testdata/cache_prefix.html b/tools/grit/grit/testdata/cache_prefix.html new file mode 100644 index 0000000000..b1f91dd82b --- /dev/null +++ b/tools/grit/grit/testdata/cache_prefix.html @@ -0,0 +1,24 @@ + + + + + + +
+ + +
This is one version of +[URL-DISP] from your personal cache.
+The page may have changed since that time. Click here for the current page.
+Since this page is stored on your computer, publicly linking to this page will not work.[$~EXTRA~$]

+Google may not be affiliated with the authors of this page nor responsible for its content. This page may be protected by copyright. +
+ + +


+ \ No newline at end of file diff --git a/tools/grit/grit/testdata/cache_prefix_file.html b/tools/grit/grit/testdata/cache_prefix_file.html new file mode 100644 index 0000000000..f3eb8e0f11 --- /dev/null +++ b/tools/grit/grit/testdata/cache_prefix_file.html @@ -0,0 +1,25 @@ + + + + + + +
+ + +
This is one version of [URL-DISP] +from your personal cache.
+The file may have changed since that time. Click here for the current file.
+Since this file is stored on your computer, publicly linking to it will not work.[$~EXTRA~$]

+Google may not be affiliated with the authors of this page nor responsible for its content. This page may be protected by copyright. +
+
+ + +
+ \ No newline at end of file diff --git a/tools/grit/grit/testdata/chat_result.html b/tools/grit/grit/testdata/chat_result.html new file mode 100644 index 0000000000..318078bc3d --- /dev/null +++ b/tools/grit/grit/testdata/chat_result.html @@ -0,0 +1,24 @@ +[HEADER] +[CHROME] + + +
[$~STARTCHAT~$]
+
+
+   [$~TITLE~$] +

Participants: [USERNAME], [BUDDYNAME]
+Date: [TIME]
+
+ +
+ + +
[$~STARTCHAT~$]
+ + +[FOOTER] diff --git a/tools/grit/grit/testdata/chrome/app/generated_resources.grd b/tools/grit/grit/testdata/chrome/app/generated_resources.grd new file mode 100644 index 0000000000..c2efb77fd8 --- /dev/null +++ b/tools/grit/grit/testdata/chrome/app/generated_resources.grd @@ -0,0 +1,199 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + New background app installed + + + $1Background App will launch at system startup and continue to run in the background even once you've closed all other $2Google Chrome windows. + + + + + + + + + + + diff --git a/tools/grit/grit/testdata/chrome_html.html b/tools/grit/grit/testdata/chrome_html.html new file mode 100644 index 0000000000..7f7633c5cf --- /dev/null +++ b/tools/grit/grit/testdata/chrome_html.html @@ -0,0 +1,6 @@ + + diff --git a/tools/grit/grit/testdata/default_100_percent/a.png b/tools/grit/grit/testdata/default_100_percent/a.png new file mode 100644 index 0000000000000000000000000000000000000000..5d5089038ca71172e95db9e7aae1e1fa5cebd505 GIT binary patch literal 159 zcmeAS@N?(olHy`uVBq!ia0vp^oFL4>0wld=oSO}#(mY)pLnNjq|2Y3)zGGzYPN&L+ zMSC}CcCfp=Dtxv4%6W%G#Q=|R|L;6pCCLUWO)Z<5eoL%TkDTw=s4X!^d(Qa<2khAN zZPy!XToBAic1Ss}vcWiD27B3&`Zj^H6CO>7R1{ToQ;=ggdEYbV=IISvfHpFCy85}S Ib4q9e0O9jEh5!Hn literal 0 HcmV?d00001 diff --git a/tools/grit/grit/testdata/default_100_percent/b.png b/tools/grit/grit/testdata/default_100_percent/b.png new file mode 100644 index 0000000000..6178079822 --- /dev/null +++ b/tools/grit/grit/testdata/default_100_percent/b.png @@ -0,0 +1 @@ +b diff --git a/tools/grit/grit/testdata/del_footer.html b/tools/grit/grit/testdata/del_footer.html new file mode 100644 index 0000000000..4e19950bfc --- /dev/null +++ b/tools/grit/grit/testdata/del_footer.html @@ -0,0 +1,8 @@ + + + +
 Remove checked results and return to search.Check all - Uncheck all   + +
+

[$~BOTTOMLINE~$] - ©2005 Google
+ diff --git a/tools/grit/grit/testdata/del_header.html b/tools/grit/grit/testdata/del_header.html new file mode 100644 index 0000000000..72bc6756eb --- /dev/null +++ b/tools/grit/grit/testdata/del_header.html @@ -0,0 +1,60 @@ + + + + + + + + + + +
Go to Google Desktop Search  + + + + +
+ + + + + +
 Remove Specific ItemsHelp  
+
+ + + + + + +
 Remove checked results and return to search.Check all - +Uncheck all  
+
+ + + + +
 Remove +checked items from Google Desktop Search. Other copies of the same items will not be +affected.
+ If you view the item again, it will be added back to Google Desktop Search.
+
\ No newline at end of file diff --git a/tools/grit/grit/testdata/deleted.html b/tools/grit/grit/testdata/deleted.html new file mode 100644 index 0000000000..5ae5f355fa --- /dev/null +++ b/tools/grit/grit/testdata/deleted.html @@ -0,0 +1,21 @@ + +Database Deleted + + + + + + + +
+ +
Google Desktop Search +

+
The database has been deleted. Click here to continue.
+ + +
[$~BOTTOMLINE~$]

+

©2005 Google

\ No newline at end of file diff --git a/tools/grit/grit/testdata/depfile.grd b/tools/grit/grit/testdata/depfile.grd new file mode 100644 index 0000000000..e2f7191218 --- /dev/null +++ b/tools/grit/grit/testdata/depfile.grd @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + diff --git a/tools/grit/grit/testdata/details.html b/tools/grit/grit/testdata/details.html new file mode 100644 index 0000000000..0ab0e2a90c --- /dev/null +++ b/tools/grit/grit/testdata/details.html @@ -0,0 +1,10 @@ +[!] +title Improve Google Desktop Search by Sending Non-Personal Information +template +bottomline +hp_image + +

This documentation is not yet available

+

+[$~BOTTOMLINE~$] - ©2005 Google +
diff --git a/tools/grit/grit/testdata/duplicate-name-input.xml b/tools/grit/grit/testdata/duplicate-name-input.xml new file mode 100644 index 0000000000..cc4d1d65c5 --- /dev/null +++ b/tools/grit/grit/testdata/duplicate-name-input.xml @@ -0,0 +1,26 @@ + + + + + + Hello %sJoi, how are you doing today? + + + + + + + + + + + + + + + + + + + + diff --git a/tools/grit/grit/testdata/email_result.html b/tools/grit/grit/testdata/email_result.html new file mode 100644 index 0000000000..8bb04b988c --- /dev/null +++ b/tools/grit/grit/testdata/email_result.html @@ -0,0 +1,34 @@ +[HEADER] +[CHROME] + + +
[CONV] +Reply | Reply to All[$~FORWARD_URL~$] | Compose[$~OUTLOOKVIEW~$] +
+
+
+   [SUBJECT] +

[FROM-DISP] +[TO-DISP] +[CC-DISP] +[BCC-DISP] +[REPLYTO-DISP] +[DATE-DISP] +[VIEW-DISP] +[$~ATTACH~$] +

+

+ +
+ +
[CONV] +Reply | Reply to All[$~FORWARD_URL~$] | Compose[$~OUTLOOKVIEW~$] +
+ + +[FOOTER] \ No newline at end of file diff --git a/tools/grit/grit/testdata/email_thread.html b/tools/grit/grit/testdata/email_thread.html new file mode 100644 index 0000000000..3c7279b841 --- /dev/null +++ b/tools/grit/grit/testdata/email_thread.html @@ -0,0 +1,10 @@ +[HEADER] +[CHROME] +
+   [SUBJECT]

+ +[CONTENTS] +
+
+[NEXT_PREV] +[FOOTER] \ No newline at end of file diff --git a/tools/grit/grit/testdata/error.html b/tools/grit/grit/testdata/error.html new file mode 100644 index 0000000000..66875a234c --- /dev/null +++ b/tools/grit/grit/testdata/error.html @@ -0,0 +1,8 @@ +[HEADER] +[CHROME] +
+
+[ERROR]

+If you think this is an error, please contact us. +
+[FOOTER] \ No newline at end of file diff --git a/tools/grit/grit/testdata/explicit_web.html b/tools/grit/grit/testdata/explicit_web.html new file mode 100644 index 0000000000..1424adc617 --- /dev/null +++ b/tools/grit/grit/testdata/explicit_web.html @@ -0,0 +1,11 @@ +[HEADER] + +[WEB_TOP_CHROME] +[$~STATUS~$] +[$~MESSAGE~$] +[WEB_FILES] +
[NEXT_PREV] +[FOOTER] \ No newline at end of file diff --git a/tools/grit/grit/testdata/footer.html b/tools/grit/grit/testdata/footer.html new file mode 100644 index 0000000000..3372d6afac --- /dev/null +++ b/tools/grit/grit/testdata/footer.html @@ -0,0 +1,14 @@ +


+
+ + +

+ + + +
[$~BOTTOM~$]

+
+

+[$~BOTTOMLINE~$] - ©2005 Google
+[SCRIPT] + diff --git a/tools/grit/grit/testdata/generated_resources_fr.xtb b/tools/grit/grit/testdata/generated_resources_fr.xtb new file mode 100644 index 0000000000..373c40feea --- /dev/null +++ b/tools/grit/grit/testdata/generated_resources_fr.xtb @@ -0,0 +1,3079 @@ + + + +Salut! +Salut +Supprime&r +Activer la barre de favoris +Déconnexion du réseau privé + sur  +Déconnecter ce compte... +&Vérifier l'orthographe dans ce champ +Aucune donnée reçue. +Une erreur s'est produite lors de la tentative de lecture du fichier : . +Le mot de passe multiterme est obligatoire. +Importer les données d'un autre navigateur... +Saisie automatique +API P2P +Exécuter automatiquement (recommandé) +Le certificat de sécurité du site a expiré ! +Clé publique de l'objet +Importer +Afficher dan&s un onglet +ID : +Le certificat n'indique aucun mécanisme permettant de vérifier s'il a été révoqué. +Touches de modification... +Signé par : +Utiliser un service Web pour résoudre les erreurs de navigation +Guillemet +Une nouvelle tentative de connexion avec SSL 3.0 a dû être effectuée. Cette opération indique généralement que le serveur utilise un logiciel très ancien et qu'il est susceptible de présenter d'autres problèmes de sécurité. +Autoriser le stockage des données locales (recommandé) +Ouvrir dans une fenêtre +Google pense qu'un logiciel malveillant pourrait être installé sur votre ordinateur si vous continuez. Nous vous conseillons de ne pas continuer, même si vous avez déjà consulté ce site auparavant ou si vous avez confiance en celui-ci. Il se peut qu'il ait été piraté récemment. Réessayez demain ou utilisez un autre site. +&Rechercher : +Échec de génération de clé privée RSA aléatoire +Certificat en attente +Technologie réseau : +Le certificat du serveur ne figure pas dans le DNS. +Demander le mot de passe au retour de veille +Désactiver la synchronisation +Base de données indexée +Ne pas enregistrer + synchronise vos données avec votre compte Google en toute sécurité. Synchronisez toutes vos données ou personnalisez les types de données synchronisées et les options de chiffrement. +Le délai imparti à l'opération est dépassé. +Nordique +Créer des raccourcis vers des applications +Pas encore chargé +Confirmer le nouveau code PIN : +L2TP/IPSec + Certificat utilisateur +Préfecture +Extraction de l'image de récupération... +Terminé +Il se peut que la page Web à l'adresse soit temporairement inaccessible ou qu'elle ait été déplacée de façon permanente à une autre adresse Web. +Cache des scripts +Barre d'outils Google +Importés depuis Safari +Le plug-in n'est pas autorisé. +Vous exécutez à partir de son image disque. Si vous l'installez sur votre ordinateur, vous pourrez l'utiliser sans image disque et bénéficierez de mises à jour automatiques. +Certificat du serveur SSL +Z&oom arrière +Indique si la suggestion du moteur de recherche doit être entrée immédiatement via la saisie semi-automatique lorsque la fonctionnalité Recherche instantanée est activée. +Mise à jour du système : % téléchargés +Les informations d'identification associées au partage de vos imprimantes via sont arrivées à expiration. Cliquez ici pour saisir à nouveau votre nom d'utilisateur et votre mot de passe. +Erreur de définition du paramètre de confiance du certificat + peut maintenant synchroniser vos mots de passe. +Sélectionnez le certificat à présenter pour l'identification : + a planté. Cliquez sur cette info-bulle pour actualiser l'extension. +Compatibilité expérimentale avec des méthodes Wi-Fi Extensible Authentication Protocol supplémentaires, telles que EAP-TLS et LEAP. +Échec de lecture de la clé privée +Les plug-ins suivants ont été bloqués sur cette page : +Configuration de la synchronisation +Case d'option cochée +Très petite +URL de révocation de l'autorité de certification Netscape +Style de pavé numérique +Active les feuilles de style CSS 3D et la composition graphique haute performance des pages Web via le processeur graphique. +&Rétablir +Redémarrer +La connexion n'est pas compressée. +Fin +&Nouvelle fenêtre +Configuration automatique du proxy +Afficher l'orthographe et la grammaire +Aucune imprimante n'a été trouvée. Veuillez en installer une. +Saisissez les caractères visibles dans l'image ci-dessous. +Certificat d'authentification de client SSL incorrect +Le certificat du serveur ou un certificat AC intermédiaire présenté au navigateur a été signé avec un algorithme de signature faible tel que RSA-MD2. D'après des études récentes menées par des informaticiens, les algorithmes de signature seraient plus faibles qu'on ne le pensait jusqu'alors. Aujourd'hui, ils sont très rarement utilisés par les sites Web jugés dignes de confiance. Ce certificat a peut-être été contrefait. Nous vous déconseillons vivement de continuer. +Rechercher le précédent +I&nspecter l'élément +État d'itinérance : +&Non +Effacer les données de navigation... +Nombre maximal de suggestions +L'accessibilité est désactivée. +Sélectionner par domaine +Tout réduire... +Ne jamais traduire les pages rédigées en +Non confirmé +Avant de vous connecter, démarrez une session en tant qu'invité afin d'activer le réseau . +La gravure de l'image est terminée. +Si vous supprimez le certificat d'une autorité de certification, votre navigateur ne fera plus confiance aux certificats émis par cette autorité de certification. +Synchronisez toutes les données de cet ordinateur ou sélectionnez celles que vous souhaitez synchroniser. + hours ago +Domaine : +Aperçu +Associe chaque fenêtre du navigateur à un profil et ajoute une option de sélection des profils en haut à droite. Chaque profil possède ses propres favoris, extensions, applications, etc. +Ignorer le verrouillage des majuscules et saisir des minuscules par défaut +Aucune parole détectée +Changer de moteur de recherche par défaut +Cliquer pour revenir en arrière, maintenir pour voir l'historique + secondes restantes +Unicode +Ouverture à la fin du téléchargement +Les extensions, les applications et les thèmes peuvent endommager votre ordinateur. Voulez-vous vraiment continuer ? +Schéma du pinyin double +Déconnecter ce compte... +&Fichier +Microsoft Internet Explorer +Aucune correspondance trouvée +État de votre commentaire +Mise à jour terminée. Veuillez redémarrer le système. +Lorsque vous supprimez un certificat de serveur, vous rétablissez les contrôles de sécurité habituels du serveur et un certificat valide lui est demandé. +Essayez d'ajouter + + aux programmes autorisés dans les paramètres de votre pare-feu ou de votre antivirus. S'il + est déjà autorisé, tentez de le supprimer de la liste et de l'ajouter à nouveau à + la liste des programmes autorisés. +Réseaux sans fil +Masquer +Zoom arrière +Méthode EAP : +Développer +Veuillez vous connecter +de n'importe quand +Désactiver la validation des formulaires interactifs HTML5 +Le suivi de votre position géographique sur cette page a été bloqué pour les sites suivants : +La gravure de l'image a été interrompue. +&Afficher dans le dossier +Continuer à bloquer JavaScript +Enregistrer la page sous... +Le serveur à l'adresse requiert un nom d'utilisateur et un mot de passe. +Exceptions de géolocalisation +13px +Contenu : +Le plug-in a été bloqué, car il n'est plus à jour. +Taille ré&elle +Échec de la connexion au serveur proxy. +Vérification de pilote matériel Microsoft Windows +Paysage +Détecter automatiquement +Page +Nom d'utilisateur : +Nous aider à améliorer en envoyant automatiquement les statistiques d'utilisation et les rapports d'erreur à Google +Réseau +Connexion en cours +Ajouter tous les onglets aux favoris... +Onglets ou fenêtres +Sites récemment consultés +Ouvrir dans une fenêtre de navigation privée +Préférences de saisie automatique... +Compteur d'images par seconde +Mot de passe +Afficher le compte + : +Le suivi de votre position géographique a été bloqué pour cette page. +Connexion à l'aide de votre compte Google +Le mot de passe multiterme entré est incorrect. +télécopie : # +Le navigateur par défaut est actuellement . + secondes restantes +Mot de passe précédent +Code PIN incorrect +Modifier l'adresse +Zoom avant +Micrologiciel +Une erreur s'est produite lors de l'affichage de cette page Web. Pour continuer, actualisez cette page ou ouvrez-en une autre. +Récupération de clé Microsoft +recto verso +Fichier ou répertoire introuvable +Aucun forfait de données actif +Tout sélectionner +Le fichier manifeste est incorrect. +Les pages suivantes ne répondent plus. Vous pouvez attendre qu'elles soient de nouveau accessibles ou les supprimer. + minutes restantes +Le certificat du serveur n'est pas encore valide. +Menu contenant des extensions masquées +Enregistrer les infos +Configuration de l'accès à distance à cet ordinateur. +Point +Ajouter un moteur de recherche +Impossible d'atteindre le serveur. +Importer mes favoris... +Enregistrer le &cadre sous... +Vous n'êtes pas autorisé à accéder à la page Web . Votre connexion peut être requise. +Envoyer la capture d'écran du dernier onglet actif +Erreur +Utiliser le thème GTK+ +Ouvrir une fenêtre du navigateur + a planté. Cliquez sur cette info-bulle pour redémarrer l'application. +Définir comme navigateur par défaut +Certificat de courrier électronique +Clavier en superposition +La connexion est compressée avec . +Exporter mes favoris... +Format : +Ignorer +Déplacer un mot +Index de +Mémoire +Impossible d'utiliser cette langue pour corriger l'orthographe. +Recherche +Ajouter une autre carte de paiement... +Envoyer la dernière capture d'écran enregistrée +Ce fichier contient du code malveillant. Voulez-vous vraiment continuer ? +Erreur de synchronisation... +Clavier brésilien +Utiliser TLS 1.0 +&Signaler un problème... +Créer des raccourci&s vers des applications... +Le certificat "" a été émis par : + ne contrôlant pas la façon dont les extensions gèrent vos données personnelles, toutes les extensions sont désactivées dans les fenêtres de navigation privée. Vous pouvez les réactiver individuellement dans le gestionnaire des extensions. +Logiciels malveillants +Mise en page ou mise en forme de la page +Acheter davantage... +Traduire +Tout +Créé : +Annuler l'importation +Le mode indiqué est incorrect. + copié(s) sur +L'accès à distance à cet ordinateur est activé pour . +Options... +Un problème est survenu lors de la création du support de récupération du système d'exploitation. Le périphérique de stockage utilisé est introuvable. +Toujours &afficher la barre de favoris +Erreur SSL +Confirmer les préférences de synchronisation +Utiliser les valeurs par défaut +Code secret manquant +L'accès à distance à cet ordinateur est désactivé. +API des extensions expérimentales +Inclure les informations système +Date d'expiration +Autorité de certification compromise +À propos de la saisie automatique +Activer la fonction "Taper pour cliquer" +Accès à la page Web refusé +&Gestionnaire de favoris +Erreur serveur +Cette carte SIM est désactivée et ne peut être utilisée. Veuillez demander à votre fournisseur de services de la remplacer. +Outils +Clavier néerlandais +EAP-TTLS +Choisissez une image à associer à votre compte. Celle-ci s'affichera sur l'écran de connexion. +Configurer le blocage des fenêtres pop-up... +des 4 dernières semaines +Une situation inattendue s'est produite tandis que le serveur tentait de traiter la demande. +Impossible d'afficher certaines parties de ce document PDF. Souhaitez-vous l'ouvrir dans Adobe Reader ? +Proxy FTP +Si vous utilisez la version PPAPI de Flash, exécutez-la dans chaque processus de moteur du rendu plutôt que dans un processus de plug-in dédié. +Cela signifie que le certificat présenté à votre navigateur contient des erreurs et qu'il ne peut pas être compris. Il est possible que les informations sur l'identité du certificat ou que d'autres informations du certificat relatives à la sécurité de la connexion soient incompréhensibles. Ne poursuivez pas. +Activer l'onglet 1 +Communication à distance +Importer les favoris et les paramètres... +À propos +Modifier le favori de cette page +Ajouter un format d'exception +Configurer l'accès à distance... +Supprimer le certificat "" ? +Cache des images +Configuration du proxy +En l'absence de connexion Wi-Fi, Google Chrome utilise les données 3G. +Appuyez sur pour sélectionner le mode de saisie précédent. +La création du support de récupération du système d'exploitation a été annulée. +Le plug-in suivant est bloqué : +Erreur de connexion réseau +Mot de passe multiterme +Internet +Configurer les paramètres de blocage des plug-ins... +Afficher dan&s un onglet +Synchroniser vos mots de passe +Le serveur proxy agit comme un intermédiaire entre votre ordinateur et les autres serveurs. Votre configuration système utilise actuellement un proxy, mais + + ne parvient pas à s'y connecter. +Sélectionner par type d'application +Procéder à l'i&nspection de l'élément +Impossible de valider entièrement l'identité du serveur auquel vous êtes connecté. Le nom utilisé pour cette connexion n'est valide que sur votre réseau et aucune autorité de certification externe ne peut en vérifier la propriété. Certaines autorités de certification délivrent tout de même des certificats pour ces types de nom, par conséquent nous ne sommes pas en mesure de vérifier que vous êtes connecté au site voulu et non à un site malveillant. +Impossible de déplacer le répertoire d'extensions dans le profil. +Supprimer ces paramètres pour les prochaines visites +L'accessibilité est activée. +Appuyer sur la touche Espace pour sélectionner la suggestion +Vos favoris + () +Fermer les onglets +Applications en arrière-plan +Favoris +Supprimer les données synchronisées de Google Dashboard +Veuillez patienter pendant que installe les dernières mises à jour système. +Utilisez les touches Maj gauche et droite pour sélectionner les 2e et 3e propositions +WEP +Mode Zhuyin complet. La sélection automatique de la suggestion et les options associées sont désactivées ou ignorées. +&Paramètres linguistiques... +CRX-less Web Apps +Connexion au réseau +Reliure bord long + utilise les paramètres proxy du système pour se connecter au réseau. +Application : +&Descendre +? Toutes les données présentes sur le périphérique seront supprimées. +Adresse IP +Active le nouveau design de la page "Nouvel onglet" (en cours de développement). +Échec de l'activation +Ne pas vérifier +Le chinois simplifié est le mode de saisie initial +Paramètres SSL sur tout l'ordinateur : +Votre connexion à n'est pas chiffrée. +matériel requis +Gérer les exceptions... +Rechercher des mises à jour +Utiliser un mot de passe multiterme pour chiffrer mes données de synchronisation +Connexion en cours... +Le serveur ne parvient pas à traiter la demande pour le moment. Ce code indique une situation temporaire. Le serveur sera de nouveau opérationnel ultérieurement. +Historique +Destination +Web audio +Cookies placés par cette page +Accès partagé +Afficher... +Veuillez vous connecter à . +Ajouter un nouvel e-mail +Personnaliser les polices... +Matériel : +Erreur de connexion au réseau. +Cette page Web est introuvable. +En&registrer la vidéo sous... +Le certificat du serveur n'est pas approuvé. +Cop&ier l'image +Sebeol-sik 390 + mins ago +Autre réseau mobile... +Erreur HTTP () : +Signature du code +Aide +<sans nom> +Version du micrologiciel : +La page ne se charge pas +Attention, ces fonctionnalités expérimentales peuvent mordre. +Verrouiller l'écran ou éteindre +La connexion est chiffrée au moyen de , avec pour l'authentification des messages et pour la méthode d'échange de clés. +Clavier portugais +Importation +Connexion au réseau +Langues +Cette erreur peut se produire lors de la connexion à un serveur sécurisé (HTTPS). + Elle indique que le serveur tente d'établir une connexion sécurisée, mais + que celle-ci ne sera pas du tout sécurisée en raison d'une grave erreur de configuration. + Dans ce cas, une intervention + est requise sur le serveur. + + n'utilise pas de connexion non sécurisée pour protéger la confidentialité + de vos données. +La synchronisation de vous permet de partager vos données (favoris, préférences) sur vos ordinateurs en toute simplicité. Pour ce faire, enregistre vos données en ligne via Google lorsque vous vous connectez à votre compte. +Format ou mise en forme de la page +Clavier suisse +En&registrer l'image sous... +Basculer en mode pleine chasse ou demi-chasse +Sélectionner... +Effacer les paramètres d'ouverture automatique +Ajouter un réseau privé + secondes +Ne pas envoyer de capture d'écran +Hébreu +Toujours afficher la barre de favoris +Impossible de trouver le chemin d'accès absolu du répertoire à empaqueter. +Créer un profil +Diners Club +Paramètres de contenu... +Activer la recherche instantanée pour accélérer la recherche et la navigation ? +Plus d'extensions >> +La valeur d'entrée de la clé privée est obligatoire. +PEAP +Fonctionnalités de localisation expérimentales +Ou&vrir la vidéo dans un nouvel onglet +Toujours afficher la barre de favoris +Reliure +Utilisation de la clé du certificat +Clavier belge + heures restantes +Afficher toutes les images (recommandé) +Cliquez sur + Démarrer, + puis sur + Exécuter. + Saisissez + et cliquez sur + OK. +Nom de volume +Reliure bord court + va configurer les mises à jour automatiques pour tous les utilisateurs de cet ordinateur. +Effacer les éléments datant : +Interdire à tous les sites d'afficher des notifications sur le Bureau +Appuyez sur pour passer d'un mode de saisie à l'autre. +Ajouter un nouveau fax +Recherche de contenu en cours... +Style d'entrée avec Espace +Vous avez tenté d'accéder à , mais, au lieu de cela, vous communiquez actuellement avec un serveur identifié comme . Cela est peut-être dû à un défaut de configuration du serveur ou à quelque chose de plus grave. Un pirate informatique sur votre réseau cherche peut-être à vous faire visiter une version falsifiée de , donc potentiellement préjudiciable. Nous vous déconseillons vivement de continuer. +Masquer le bouton +Modifier l'image +Ne pas synchroniser mes mots de passe +JavaScript +Activer les notifications de +Afficher les incompatibilités +Nouvel onglet +Impossible de charger l'icône "" d'action de page. +Fermer l'onglet +Nom d'hôte du serveur : +Ajouter une carte de paiement + : type de fichier inconnu +Non défini +Gérer les paramètres de saisie automatique... +Respecter la &casse +Autoriser tous les sites à exécuter JavaScript (recommandé) +Gérer vos périphériques depuis le cloud +Clavier catalan +Me demander lorsqu'un site essaie de stocker des données +Menu +Sélectionnez le périphérique de stockage amovible à utiliser. +La traduction a échoué, car nous n'avons pas pu déterminer la langue de la page. +Vous pouvez créer des profils supplémentaires pour autoriser plusieurs personnes à utiliser et personnaliser Google Chrome. +Deux-points +Toujours traduire en +(désactivée) +Cela signifie que le certificat n'a pas été vérifié par un tiers reconnu par votre ordinateur. N'importe qui peut émettre un certificat en se faisant passer pour un autre site Web. Ce certificat doit donc être vérifié par un tiers approuvé. Sans cette vérification, les informations sur l'identité du certificat sont sans intérêt. Par conséquent, il nous est impossible de vérifier que vous communiquez bien avec et non avec un pirate informatique ayant émis son propre certificat en prétendant être . Nous vous déconseillons vivement de continuer. + requiert que vous cryptiez vos données à l'aide de votre mot de passe Google ou de votre propre mot de passe multiterme. + +N'est pas une autorité de certification +Date et heure : +Impossible de charger "" pour le thème. +Rechercher à nouveau +En attente de ... +Masquer ce plug-in +Enregistrer &sous... +Ajouter une langue : +Annuler +Ouvrir une &adresse... +Supprimer le mot +Vous devez saisir deux fois le même mot de passe multiterme. +Ouvrir dans un onglet épinglé +Page Web, tout type de contenu +Activer +Considérer ce certificat comme fiable pour identifier les développeurs de logiciels. +Ajouter tous les onglets aux favoris +Impossible de créer le dossier de favoris. +Copier l'URL +Si vous pensez ne pas avoir à utiliser de serveur proxy, procédez comme suit : + +Définir les utilisateurs autorisés à se connecter à un périphérique et autoriser les sessions de navigation en tant qu'invité +Sélectionnez le répertoire racine de l'extension à empaqueter. Pour mettre à jour une extension, sélectionnez également le fichier de clé privée à réutiliser. +Pool restreint : +&Rafraîchir cette page +&Normal +PKCS #1 SHA-384 avec chiffrement RSA +Numéro de série : +HTTPS/SSL +Toutes les données de votre ordinateur et des sites Web que vous visitez +Ceci est une installation secondaire de et ce dernier ne peut pas être défini comme navigateur par défaut. +Erreur lors de la signature de l'extension + permet d'effectuer des recherches sur Internet à l'aide du champ polyvalent. Sélectionnez le moteur de recherche à utiliser : +Sécurité : +Adobe Reader n'est pas à jour +Extensions ou applications +Effacer les cookies et autres données de site et de plug-in lorsque je ferme le navigateur +Téléchargement de l'image terminé. +Favoris +Afficher les vignettes +Ne plus afficher ce message +Agent de récupération de clé Microsoft +Page de diagnostic de navigation sécurisée +Adresse ligne 2 +Décrivez-nous le problème recontré. (Champ obligatoire) +Cela peut prendre quelques minutes. +Options de base +Niveau de zoom par défaut : +Stockage externe +Modifi&er les moteurs de recherche... +Cartes de paiement +Nom du fichier +Arrêter la synchronisation +Actualiser le cadre +Connexion +Mémoire privée +Tout effacer +Activer la correction orthographique automatique +Afficher les &infos sur la page +favoris_.html +Autoriser uniquement les utilisateurs suivants à se connecter : +&Muet +Nouvel ongle&t +Erreur de synchronisation +Zoom + sur +Type de clavier +Délai d'expiration atteint au niveau de la passerelle ou du serveur proxy en attente d'une réponse d'un serveur en amont. +Déplacer +Mode de saisie du vietnamien (VIQR) +Ajouter la page actuelle aux favoris +<aucun cookie sélectionné> +Le mot de passe de l'application est incorrect. +Sélectionner "un mot à la fois" +Tout bloquer +Chargement en cours… +&Rouvrir la fenêtre fermée +Gérer les exceptions... +URL +Katakana demi-chasse +Ouvrir une adresse +Données de navigation +Code PIN incorrect. Veuillez réessayer. +Non +Utiliser cette langue pour corriger l'orthographe +Fermer les autres onglets +Clé privée non valide. +Une erreur réseau s'est produite pendant la communication avec le service de gestion des périphériques. +Importer les données d'un autre navigateur... +&Ajouter au dictionnaire +Voulez-vous vraiment ouvrir  onglets ? +Fabricant du périphérique : +Afficher l'historique complet +Illimité +Clavier Neo2 allemand +Liste déroulante +Clé : +Coller en texte brut +Afficher les &commandes +Cette page suit votre position géographique. +Certificat de chiffrement de courrier électronique +&Profilage activé +En savoir plus sur la récupération du système +Essentielle +Type MIME +Autoriser le téléchargement ? +Clavier croate +Interdire à tous les sites de suivre ma position géographique +Utiliser la barre de titre du système et les bordures de la fenêtre +En bas à gauche +Informations sur l'erreur : +Essayez : saisissez "orchidées", puis appuyez sur Entrée. +Pour utiliser Chrome Web Store, vous devez être connecté à un compte Google. +Configurer +Petit problème... Nous n'avons pas réussi à vous authentifier. Veuillez vérifier vos identifiants de connexion puis réessayer. +Pour gérer à distance la configuration de ce périphérique depuis le cloud, connectez-vous avec votre compte Google Apps. +Réactiver +Fermer la fenêtre +Présentation +Vous avez saisi un trop grand nombre de codes PIN incorrects. Veuillez contacter pour obtenir une nouvelle clé de déverrouillage du code PIN à 8 chiffres. +Bloquer le contenu inapproprié +Configuration avancée +Utiliser SSL 3.0 +Règles de confidentialité liées à la navigation sécurisée +Vous devez être connecté à votre compte Google pour importer les favoris de la barre d'outils Google dans Google Chrome. Connectez-vous et relancez l'importation. +Ouvrir le lien dans une nouvelle &fenêtre +Les cookies de ont été bloqués. +Copies +&Ouvrir le fichier audio dans un nouvel onglet +Afficher les noms d'utilisateurs et leur photo sur la page de connexion +URL de révocation de certificat Netscape +Ajoute des options de regroupement des onglets dans le menu contextuel des onglets. +Clavier finnois +Vérifiez votre connexion Internet. Redémarrez votre routeur, votre modem + ou tout autre périphérique réseau que vous utilisez. +&Afficher le code source de la page +Le serveur ne prend pas en charge la version HTTP utilisée dans la demande. +Vos mots de passe enregistrés s'afficheront ici. +Fermer les onglets sur la droite + heures + + indique qu'un produit ESET intercepte les connexions sécurisées. + En général, cela ne constitue pas un problème de sécurité car le + logiciel ESET s'exécute souvent sur le même ordinateur. Toutefois, en raison + de certaines incompatibilités avec les connexions sécurisées + , + vous devez configurer les produits ESET de manière à éviter ces + interceptions. Cliquez sur le lien En savoir plus pour obtenir des instructions. +Les requêtes adressées au serveur ont été temporairement limitées. +Impossible de télécharger l'image. Gravure annulée. +Activer/désactiver le mode Hanja +Effacer les paramètres d'ouverture automatique +Pas après le +Manifeste : +Visa +Clavier anglais canadien +Récupération de fichier Microsoft +En&registrer l'image sous... +Zone +Chemin : +Prendre la photo +Inactif +Certains de vos certificats enregistrés identifient ces autorités de certification : +Impossible d'afficher la page Web, car le serveur n'a envoyé aucune donnée. +Considérer ce certificat comme fiable pour identifier les utilisateurs de messageries. +Ce type de fichier peut endommager votre ordinateur. Voulez-vous vraiment télécharger  ? +Importés depuis la barre d'outils Google +Recherche instantanée et saisie semi-automatique +Tout synchroniser +Dvorak (Hsu) +Exécuter la commande  : +Le fichier contenait un certificat, qui n'a pas été importé : +Vous utilisez actuellement un mot de passe multiterme. Si vous l'oubliez, vous pouvez réinitialiser la synchronisation afin de supprimer vos données des serveurs Google à l'aide de Google Dashboard. +Impossible de détecter les modules chargés. +Cette fonctionnalité affiche une bordure autour des couches de rendu afin de déboguer et d'étudier leur composition. +Processus de traitement Web : +Invité +Nom du fichier : +Un élément est manquant. +Échec de la tentative de connexion au serveur. +Des fenêtres pop-up ont été bloquées sur cette page. +Personnaliser les langues et la saisie... +Proxy HTTP +Mot de passe multiterme de chiffrement +Nouvelle fenêtre +Certains certificats provenant de ces organisations vous identifient : +Autoriser l'itinérance des données mobiles +Alt +Utiliser les pages actuelles +Version +En&registrer le fichier audio sous... +Itinérance +Romaji + minutes +Synchroniser uniquement les paramètres et\ndonnées qui ont changé depuis la dernière connexion\n(requiert votre mot de passe précédent) +Autoriser tous les sites à afficher des notifications sur le Bureau +Ouvrir le fichier... +Changer de fenêtre +Chèvres téléportées +Si vous arrêtez la synchronisation, les données stockées sur cet ordinateur et dans votre compte Google demeureront à ces deux emplacements. Toutefois, les nouvelles données ou les modifications apportées au contenu existant ne seront pas synchronisées. +Le certificat du serveur ne correspond pas à l'URL. +Commune +Impossible d'activer les plug-ins désactivés par une stratégie d'entreprise. +Ne pas afficher sur cette page +Méthodes EAP en Wi-Fi expérimentales +Disque dur +Nouveau dossier +intégration sur +Autorité de certification de messagerie +Cache CSS +En haut à gauche +Saisissez le nom du nouveau dossier. +L'extension de renégociation SSL était introuvable lors de la négociation sécurisée. Avec certains sites, connus pour leur prise en charge de l'extension de renégociation, Google Chrome exige une négociation mieux sécurisée afin de prévenir certaines attaques. L'absence de cette extension suggère que votre connexion a été interceptée et manipulée au cours du transfert. +Petit problème... Une erreur de communication avec le réseau est survenue lors de la tentative d'inscription de ce périphérique. Veuillez vérifier votre connexion réseau et réessayer. +pause +Afficher tous les téléchargements... +Connexion à +Impossible de résoudre l'adresse DNS du serveur. +En attente de l'affichage du cache +Thèmes +Impossible de se connecter au serveur proxy. +Ignorer la synchronisation des données chiffrées ? +Oui +Nombre de suggestions par page +Modifier le code PIN +Un problème est survenu lors de la copie de l'image de récupération sur le périphérique. + jours restants +La connexion Internet a été interrompue. +Début +« Précédent +C&opier l'URL de la vidéo +Vos données sur et +Langue +Mappages des stratégies de certificat + minutes restantes +Sélectionner la position +Le site Web à l'adresse contient des éléments provenant de sites signalés comme étant des sites de phishing. Ces derniers incitent les internautes à divulguer leurs informations personnelles en se faisant passer pour des institutions de confiance, telles que des banques. + +Hors de portée +Effacer l'historique de navigation +Aucune page Web trouvée à l'adresse : +Nouveau moteur de recherche : +Jamais pour ce site + jours restants +Impossible d'accéder au réseau. +Modifier l'adresse +&Masquer le panneau de la vérification orthographique +1 cookie +Activer ces fonctionnalités... + secondes restantes +Cou&per +Fermer la barre de recherche +Signataire de la liste de révocation de certificats +Afficher des informations à propos du site +UC +Fermer les pages +MSPY + () +Très petite +Afficher les réseaux privés dans le menu Réseau pour activer la connexion à un VPN +Vérification de la mise à jour du système... +L'entrée demandée est introuvable dans le cache. +Connectez-vous à pour importer le certificat client. +Modifier la mise en page +Se déconnecter +Espace insuffisant. +Préférences synchronisées +Imp&rimer le cadre... +MSCHAP +Continuer à bloquer les images +Lorsqu'un site utilise des plug-ins : +Échec d'exportation de la clé publique +Choisir les éléments à synchroniser +Paramètres de saisie du Pinyin +Ouvrir les pages suivantes : +Déconnexion +Moteurs de recherche +Erreur de suppression de certificat +Ne rien faire +Épingler l'onglet +réinitialiser la synchronisation +PKCS #1 SHA-256 avec chiffrement RSA +Katakana +Choisir un réseau mobile +&Historique +Mode développeur : +Lien +Système +Sélectionnez le fichier de clé privée. +Insérez une carte SD ou une carte mémoire USB. +Temps restant : +Cliquez ici pour exécuter le plug-in . +Hanyu +pages +Configuration en cours +Erreur inconnue + days ago +La langue utilisée pour Google Chrome est passée de "" à "" après la synchronisation de vos paramètres. +&Aucune suggestion orthographique +Erreur de protocole SSL +Mode de saisie du thaï (clavier Pattachote) +Ce compte utilisateur n'est pas compatible avec ce service. + ne peut pas être exécuté en tant que root. +C&oller +Paramètres de contenu... +Dimensions de l'image +Sélectionner le fichier à enregistrer sous +Disque Flash +Moteur de recherche actuel : +L'identité de situé à a été vérifiée par . +Version de l'autorité de certification Microsoft +Enregistrer une capture d'écran +Page sur +Console &JavaScript +Réponse reçue incorrecte lors de la tentative de chargement de . + Cela peut être dû à une opération de maintenance ou à une configuration incorrecte sur le serveur. +Serveur DNS : +Pré-rendu : +Impossible d'accéder à la bibliothèque réseau. +Des images ont été bloquées sur cette page. +Toujours autoriser à afficher les images +Copier l'adr&esse du lien +Ouvrir dans une fenêtre de navigation privée +Mode développeur +Chiffrement des données +Activer la protection contre le phishing et les logiciels malveillants +Appuyez sur pour rechercher sur +Voulez-vous utiliser () au lieu de pour gérer les liens :// à partir de maintenant ? +Démarrer une session en tant qu'invité +Nombre maximal de caractères chinois dans la mémoire tampon de pré-édition, notamment les entrées de symboles Zhuyin +Barre de menus GNOME expérimentale disponible +Effacer l'historique des téléchargements +Navigateur bloqué... +Parenthèse drte +Calcul du temps de chargement +Ajouter une carte de paiement... +Itinérance : +Arrêter +Erreur de synchronisation... +ID de clé de l'autorité de certification +Extensions +Imprimez où que vous soyez. +Un problème est survenu lors du téléchargement de l'image de récupération. +Cloud Print Proxy +Une erreur s'est produite lors de la configuration de la synchronisation. +Fichiers personnalisés +Impossible de définir le mode une fois la fenêtre créée. +Date et heure +Personnaliser les préférences de synchronisation +Aucune information disponible sur le forfait +Signaler un problème +Importer mes favoris et paramètres +Sélectionnez le menu clé à molette > Paramètres > Options avancées > Modifier les paramètres du proxy et vérifiez que vos paramètres sont définis sur "sans proxy" ou "direct". +Fermer et annuler les téléchargements +Autres moteurs de recherche + peut maintenant synchroniser vos mots de passe. Pour protéger vos données, vous devez confirmer les informations relatives à votre compte. +Cette fonctionnalité active les API P2P Pepper et P2P JavaScript. L'API est en cours de développement et n'est pas encore opérationnelle. +L'identité de ce site Web n'a pas été vérifiée. +Sessions à l'étranger +Cette page répertorie tous les modules chargés dans le processus principal et les modules enregistrés de manière à être chargés ultérieurement. +Afficher les &infos sur le cadre +Connecté +Paramètres d'entrée en Chewing +Conserver sur cette page +Votre support de récupération est prêt. Vous pouvez le retirer du système. +Copi&er l'adresse e-mail +Interdire à tous les sites d'afficher des fenêtres pop-up (recommandé) +Console &JavaScript +Empêcher cette page de générer des boîtes de dialogue supplémentaires +En haut à droite +Entrez le mot de passe associé à votre application : +Mode de saisie Google du japonais (pour clavier japonais) + est à jour () +Le serveur a mis fin à la connexion de manière inattendue. +Il est possible que le serveur hébergeant la page Web soit surchargé ou ait rencontré une erreur. Pour éviter de générer + trop de trafic et d'aggraver la situation, + a temporairement + bloqué l'acceptation des requêtes adressées au serveur. + + Si vous pensez que ce comportement n'est pas souhaitable, (par exemple, dans le cas où vous déboguez votre propre site Web), vous pouvez + consulter la page , + sur laquelle vous pourrez trouver plus d'informations ou désactiver cette fonctionnalité. +Gestionnaire de &fichiers +Arrêter la synchronisation du compte +Ajouter +Sélectionnez le fichier à ouvrir +Aucun forfait de données +Créer un compte Google +Code postal +&Gestionnaire de tâches +Téléphone +Sélectionner l'onglet précédent +Sélectionner un certificat +Mots de passe enregistrés +Autoriser l'accès aux URL de fichier +Modifi&er les moteurs de recherche... +Gérer les moteurs de recherche... +PKCS #7, chaîne de certificats +Clé pré-partagée : +Contrôlez et partagez l'accès à vos imprimantes depuis n'importe quel compte Google. +Ajoute l'option "Utiliser les onglets latéraux" au menu contextuel de la barre d'onglets. Utilisez cette option pour déplacer les onglets du haut de l'écran (affichage par défaut) vers le côté. Particulièrement utile sur les grands écrans. +S'inscrire +, +Saisissez un nouveau nom. + ne peut pas être affiché dans cette langue. +Erreur : impossible de décoder l'extension. +Clavier bulgare +Accès aux informations de l'autorité +Ajouter un réseau privé... +C&opier l'URL du fichier audio +Masque de sous-réseau : +Impossible d'accéder à votre compte ? +Utiliser les touches - et = pour paginer une liste d'entrées +Le serveur ne prend pas en charge l'extension de renégociation TLS. +Résolution de l'hôte... +Récemment fermés +Le certificat de sécurité du site a été signé avec un algorithme de signature faible. +Votre mot de passe a été modifié +Gérer les paramètres de saisie automatique... +La page Web n'est pas disponible pour le moment. Cela peut être dû à une surcharge ou à une opération de maintenance. +Éjecter +Impossible de lancer le processus de service. + Mo restants +Nouvelle fenêtre +Sélectionnez + + Applications > Préférences système > Réseau > Avancé > Proxys + + et désélectionnez les serveurs proxy sélectionnés. +Gravure en cours d'initialisation... +Téléchargement de l'image de récupération... +il y a  minutes +Mode de saisie du chinois (cangjie) +Comté +Ouvrir l'adresse dans un nouvel onglet +&Rouvrir l'onglet fermé +Impossible d'afficher la page Web, car votre ordinateur est passé en mode + veille ou hibernation. Dans ce cas, les connexions réseau sont + coupées et les requêtes réseau échouent. L'actualisation de la page + devrait permettre de résoudre ce problème. +Certificat utilisateur : +Autoriser +Appuyer sur Entrée pour revenir en arrière et sur la touche de menu contextuel pour afficher l'historique +ZRM +Cookies et autres données +Page(s) ne répondant pas +Paramètres d'entrée hangûl +Configurer la synchronisation... +Modules (). Conflits connus : , conflits probables : +Date de renouvellement du certificat Netscape +Ouvrir tous les favoris dans une nouvelle fenêtre +bouton radio concernant l'étendue de pages +Saisissez votre mot de passe + est conçu pour rendre l'impression plus intuitive, accessible et utile. vous permet de rendre vos imprimantes accessibles depuis n'importe quelle application Web ou mobile associée à . +Dictionnaire de kanji unique +Rétablir tous les onglets +Échec de l'installation de l'extension +En savoir plus sur la manière de se protéger des logiciels malveillants en ligne +Toujours afficher les fenêtres pop-up de +Authentification phase 2 : +Aucun résultat de recherche trouvé +Ouvrir une fois le téléchargement &terminé + cookies +Mode de saisie du japonais (pour clavier américain) +Continuer à bloquer les plug-ins +Épingler sur la barre des tâches +Les certificats ont une période de validité, comme tous les documents relatifs à votre identité (tel qu'un passeport). Le certificat présenté à votre navigateur n'est pas encore valide ! Lorsqu'un certificat est en dehors de sa période de validité, il n'est pas nécessaire d'assurer la maintenance de certaines informations relatives à son état (s'il a été révoqué ou s'il n'est plus approuvé). Par conséquent, il est impossible de vérifier que le certificat est fiable. Ne poursuivez pas. +Fermer la session d'invité +Contrôlez vos tâches d'impression et l'état de connexion de vos imprimantes en ligne. +Désinstallation +Empreinte SHA-1 +Modifier le code PIN de la carte SIM +État du réseau : +sans limite +(Choisir une autre capture d'écran) +Désactivation +Aucune erreur n'a été signalée récemment. Les erreurs n'apparaissent ici que lorsque l'envoi de rapports d'erreur est activé. +Rouvrir les dernières pages ouvertes +Ouvrir en mode plein écran +Ajouter une carte de paiement +Désactivé +Chargement des informations sur votre forfait Internet mobile, veuillez patienter... +Acheter un forfait de données... +Inclure cet e-mail : +Le titre doit comporter au moins un caractère. +Espaces de noms réseau + n'a pas pu terminer l'installation, mais va poursuivre son exécution à partir de son image disque. +Gestion des services Internet mobiles +Utiliser les onglets latéraux +Non +Saisir le code PIN de la carte SIM +&Afficher dans le Finder +Maintenez la touche Ctrl, Alt ou Maj enfoncée<br>pour afficher le raccourci clavier qui lui est associé. +Vraiment désolé, aucun prototype n'est disponible pour le moment. +&Afficher dans le Finder +Informations relatives au certificat +/ +La synchronisation des mots de passe requiert votre attention. +Veuillez saisir l'ancien et le nouveau code PIN. +Langue : +Résultats de recherche +Serveur SSL avec fonction d'optimisation +Enregistrer en PDF +Mémoire USB détectée +M'avertir lorsque le flux de données est faible ou presque inexistant +Saisir le mot de passe multiterme +Clavier lituanien +Les éléments saisis dans le champ polyvalent peuvent être enregistrés. +Les informations de connexion à votre compte sont obsolètes. Cliquez ici pour saisir à nouveau votre mot de passe. +Vietnamien +feuilles de papier +URL de mot de passe perdu Netscape +Rouvrir l'onglet fermé +Effacer les mots de passe enregistrés +Créer un nouveau dossier... +Basculer en mode ponctuation pleine chasse ou demi-chasse +Gérer les paramètres de localisation... +Synchronisé... +Options de recherche par défaut +Aucune sélection +Mode de saisie du vietnamien (TELEX) + minute restante +Le nombre maximal d'autorités de certification intermédiaires a été dépassé : +Saisissez un mot de passe pour chiffrer ce fichier de certificat. +Organiser +Votre mot de passe a changé. Veuillez réessayer avec votre nouveau mot de passe. +PKCS #1 MD5 avec chiffrement RSA +Utiliser le thème classique +Échap efface toute la mémoire tampon de pré-édition +Ajouter aux favoris +Un incident est survenu sur une partie de cette page (HTML WebWorker). Elle risque de ne pas fonctionner correctement. +Clavier américain +Signataire de code +Adobe Reader n'est pas à jour et risque de ne plus être sécurisé. +Personnaliser les paramètres de synchronisation... +Co&ller et rechercher +Détails du certificat sélectionné : +Impossible de se connecter +Activation : +Système de révocation introuvable dans le certificat du serveur +Numéro de série +Afficher la page "Nouvel onglet" +il y a  heure +Votre ordinateur redémarrera une fois la mise à jour effectuée. +Verr. maj. +L'accès au répertoire de l'hôte de communication à distance a été refusé. Essayez avec un autre compte. +Accessible aux scripts : +Cette page place des cookies. +Proxy +Avec sous-menu +Afficher dans le dossier +il y a  minutes +<saisir une requête> +Appuyez sur pour envoyer des commandes à . +Prévisualiser le rapport +Activer le dernier onglet +Lorsque je quitte le navigateur +Continuer sans mettre à jour Adobe Reader (non recommandé) +Le champ de mot clé doit être vide ou comporter un mot unique +Déplacer le curseur automatiquement au caractère suivant +Enregistrer +Ouvrir le lien dans un nouvel ongle&t +Nouvelle fenêtre de navigation privée +Celtique +Réinitialiser le zoom +Prototypes +Mémoriser mes choix pour tous les liens de ce type +Les plug-ins de cette page ont été bloqués. +Site +Sélectionner +Couper +Restaurer toutes les miniatures supprimées +Utiliser les onglets latéraux +Se connecter au dispositif de sécurité +Enregistrer le fichier +Pages +Options de +Barre de lancement rapide +Annuler +Choisir un fichier +&Rechercher avec +(pas encore valide) +Mettre à jour le plug-in... +Police Sans-Serif +Impossible de charger le JavaScript "" du script de contenu. +Connexion... +Mots de passe +Fichiers PKCS #12 +Options de saisie automatique de +Fenêtre précédente +Astuce + / fichiers +Localisation utilisée, mais les paramètres régionaux par défaut (default_locale) n'ont pas été indiqués dans le manifeste. +Si vous n'êtes pas à l'origine de cette requête, il s'agit probablement d'une attaque contre votre système. Si vous n'avez pas lancé cette requête de manière intentionnelle, cliquez sur Ne rien faire. +Votre commentaire a bien été envoyé. +Fonction d'optimisation internationale Netscape +Taille de police minimale +Suivant +Utilitaire : +Cette opération peut prendre une minute... +Le format du mot de passe est incorrect. +Chargement... +Ajouter la page... +Masquer ce plug-in +&Paramètres linguistiques... +Créer un support de récupération du système d'exploitation +Le fichier de clé privée est incorrect. +Valeur : +Stable +Grande +Certificat serveur invalide +Jamais enregistrés +Cette page a été préchargée. +Google Chrome ne peut pas afficher l'aperçu avant impression lorsque la visionneuse de documents PDF intégrée est désactivée. Pour l'afficher, veuillez accéder à chrome://plugins, activer "Chrome PDF Viewer" et réessayer. +Nouveau ! +Vous êtes passé en navigation privée. Les pages que vous consultez dans cette fenêtre n'apparaîtront ni dans l'historique de votre navigateur, ni dans l'historique des recherches, et ne laisseront aucune trace (comme les cookies) sur votre ordinateur une fois que vous aurez fermé la fenêtre de navigation privée. Tous les fichiers téléchargés et les favoris créés seront toutefois conservés. Passer en navigation privée n'a aucun effet sur les autres utilisateurs, serveurs ou logiciels. Méfiez-vous : Des sites Web qui collectent ou partagent des informations vous concernant Des fournisseurs d'accès Internet ou des employeurs qui conservent une trace des pages que vous visitez Des programmes indésirables qui enregistrent vos frappes en échange d'émoticônes gratuites Des personnes qui pourraient surveiller vos activités Des personnes qui se tiennent derrière vous En savoir plus sur la navigation privée +Le certificat du serveur a été révoqué. +&Reprendre +Sélectionnez un réseau : +Impossible d'extraire les fichiers de l'extension. Pour effectuer cette opération en toute sécurité, vous devez disposer d'un chemin d'accès à votre répertoire de profils ne contenant pas de lien symbolique. Aucun chemin de ce type n'existe pour votre profil. +Effacer les données de navigation +Si vous êtes conscient que la visite de ce site peut être préjudiciable à votre ordinateur, vous pouvez . +Votre périphérique est inscrit pour bénéficier de la gestion d'entreprise. +Serveur de mise à jour non disponible (erreur : ) +Module client natif : +Rechercher sur  : +Style de symboles + hours +Département +Continuer à utiliser +OK +Essayez de désactiver les prédictions d'actions du réseau en procédant comme suit : + Sélectionnez le + + menu clé à molette > + + > + + + et désélectionnez "". + Si le problème n'est pas résolu, nous vous conseillons de sélectionner de nouveau + cette option pour améliorer les performances. +Date +Sélectionnez un certificat pour vous authentifier sur . +Barre latérale +La clé publique éphémère Diffie-Hellman associée au serveur est peu sûre. +Rechercher dans Dictionnaire +Sélectionnez un moteur de recherche +Clavier russe +Nom Microsoft principal +Clavier polonais +Clavier serbe + minute +Erreur lors de la lecture des données du cache. +Canary +Commentaire du certificat Netscape +Page suivante + est à jour. +Paramètres de saisie automatique... +Tout ramener au premier plan +Sélectionner le dossier à ouvrir +Activer le mode Pinyin fuzzy +Résolution du proxy... +Le téléchargement de l'image a été interrompu. +Eten 26 +URI +Clavier Dvorak américain +Rechercher sur le Web... +Si vous utilisez un serveur proxy, vérifiez les paramètres associés ou demandez à votre administrateur réseau + si ce serveur fonctionne. +Impossible de charger l'icône de l'extension "". +Définir un proxy pour se connecter au réseau +zone de texte concernant l'étendue de pages +Activation +Clavier Dvorak britannique + jours +MS-IME +Aucun forfait de données +Les fenêtres pop-up suivantes ont été bloquées sur cette page : + heures restantes +Impossible de charger le modèle du favori. +Échec d'exportation de la clé privée +Utiliser comme page d'accueil +Compte +Plein écran +Autoriser tous les sites à suivre ma position géographique +Si la restauration du système d'exploitation de votre ordinateur s'avère nécessaire, une carte SD ou une clé USB de récupération vous sera demandée. +Les cookies suivants ont été bloqués : +Inclure les adresses de ma fiche de Carnet d’adresses +Le certificat de sécurité du site n'est pas approuvé ! +Votre liste d'applications, d'extensions et de thèmes installés +Exécuter tous les plug-ins de cette page +Augmente la taille du texte +Accepter et continuer » +Fichiers + +Appliquer uniquement à cette session de navigation privée +Latin large +Exécuter ce plug-in +MasterCard +Sur le Web, Tab permet de sélectionner les liens, ainsi que les champs de formulaire. +À propos de +Paramètres de sécurité du système +Images +Cyrillique +Pas maintenant +Attendre la fin du téléchargement +Thème "" installé +&Supprimer +Menu Démarrer +&Zoom +Transfert en cours ( %)... +Géré par +&Rafraîchir +Configuration du module de plate-forme sécurisée (TPM) en cours. Veuillez patienter, cela peut prendre quelques minutes. +Vous avez acheté une quantité illimitée de données le . +Confirmer avant de quitter () +Mémoire partagée +Rech. dans les paramètres +mot de passe d'accès au réseau +Activer la vérification orthographique +Types de données +Bloquer +Certificat de l'autorité de certification du serveur : +Clavier grec +Taille réelle +Toujours en haut +Aucun plug-in installé. +Alerte JavaScript +Autoriser en mode navigation privée +Rétablir +, expire le : +Confirmer la désinstallation +Impossible de désactiver les plug-ins ayant été activés par une stratégie d'entreprise. +Cette fonctionnalité active l'option "Lire en un clic" dans les paramètres de contenu du plug-in. +Attendre la fin des téléchargements +Synchronisation +&Rouvrir l'onglet fermé +Votre mot de passe de compte Google a changé depuis votre dernière connexion à partir de cet ordinateur. +Le fichier contenait plusieurs certificats, aucun d'eux n'a été importé : +Afficher le bouton +La saisie dans le champ polyvalent d'une URL déjà ouverte dans un autre onglet entraîne l'affichage de l'onglet en question, et non l'affichage de l'URL dans l'onglet actuel. +Configuration en cours... +Rechercher dans les téléchargements +Me demander lorsqu'un site tente de suivre ma position géographique (recommandé) +La nouvelle version de "" a été désactivée, car elle nécessite davantage d'autorisations. +Clavier phonétique russe +American Express +Ce serveur exige un certificat d'authentification et n'a pas accepté celui envoyé par le navigateur. +Votre certificat a peut-être expiré ou le serveur n'a pas approuvé l'émetteur. +Réessayez avec un autre certificat si vous en avez un. +Sinon, vous devrez en obtenir un nouveau d'un autre émetteur. +Lorsque vous vous connectez à un site Web sécurisé, le serveur hébergeant ce site présente à votre navigateur un "certificat" afin de vérifier l'identité du site. Ce certificat contient des informations d'identité, telles que l'adresse du site Web, laquelle est vérifiée par un tiers approuvé par votre ordinateur. En vérifiant que l'adresse du certificat correspond à l'adresse du site Web, il est possible de s'assurer que vous êtes connecté de façon sécurisée avec le site Web souhaité et non pas avec un tiers (tel qu'un pirate informatique sur votre réseau). +À l'instant +Votre carte SIM sera définitivement désactivée si vous ne saisissez pas correctement la clé de déverrouillage du code PIN. Nombre de tentatives restantes : + / octets, Interrompu +Importés depuis Firefox +Détection automatique +&Aide +Les codes PIN sont différents ! +Contenu Web +Vider le cache +Rétablir le thème par défaut +Le service de communication à distance a démarré correctement. Vous devriez maintenant pouvoir vous connecter à distance à cet ordinateur. +Outils de développement +Police Serif +Copier +Adresse e-mail ou mot de passe incorrect. Veuillez réessayer. +Le plug-in suivant ne répond pas : souhaitez-vous interrompre ? +Sens + secondes +Clavier tchèque +Voulez-vous que "" soit considérée comme une autorité de certification fiable ? +Gestionnaire de sécurité natif du client +<p>Lorsque vous exécutez dans un environnement de bureau pris en charge, les paramètres proxy du système sont utilisés. Toutefois, soit votre système n'est pas pris en charge, soit un problème est survenu lors du lancement de votre configuration système.</p> + + <p>Vous avez toujours la possibilité d'effectuer la configuration via la ligne de commande. Pour plus d'informations sur les indicateurs et les variables d'environnement, veuillez vous reporter à <code>man </code>.</p> +La page Web à l'adresse a déclenché trop de redirections. Pour résoudre le problème, effacez les cookies de ce site ou autorisez les cookies tiers. Si le problème persiste, il peut être dû à une mauvaise configuration du serveur et n'être aucunement lié à votre ordinateur. +SSID : +Nom du forfait : +Adresse X.400 +Fermer l'onglet +Impossible de trouver un navigateur pris en charge. +Le compte associé à la boutique en ligne est le suivant : . L'utilisation d'un autre compte pour la synchronisation provoque des erreurs. +Enregistrer la p&age sous... + importe actuellement les éléments suivants à partir de  : +Appuyez sur Entrée pour avancer et sur la touche de menu contextuel pour afficher l'historique +Actualiser le cadre +Annulé +Autorités +Sélectionnez votre clavier : +Signaler un problème... +Ignorer ce réseau +Nouveau matériel détecté +Vous disposez de certificats qui n'appartiennent à aucune autre catégorie : +&Profilage activé +(Navigation privée) +&Nouveau dossier +Types MIME : +Afficher les pages en arrière-plan () +Fichiers audio +Plug-ins +Plus d'informations... +Se connecter automatiquement à ce réseau +Titulaire de la carte +Elle peut désormais accéder à : +Noir et blanc +Ignorer la connexion et naviguer en tant qu'invité +Toutefois, cette page inclut d'autres ressources qui ne sont pas sécurisées. Ces ressources peuvent être consultées par des tiers pendant leur transfert, et modifiées par un pirate informatique dans le but de changer l'aspect et le comportement de cette page. +Accès réseau interrompu +La dernière version de l'extension "" requiert d'autres permissions. Elle a donc été désactivée. +Dans ce cas, le certificat du serveur ou un certificat d'autorité intermédiaire présenté à votre navigateur n'est pas valide. Cela peut signifier que le certificat est incorrect, qu'il contient des champs non valides ou qu'il n'est pas compatible. +Veuillez saisir la clé de déverrouillage du code PIN à 8 chiffres fournie par . +Exceptions... +Connexion à +Voulez-vous vraiment quitter alors qu'un téléchargement est en cours ? +Le site Web ne parvient pas à gérer la demande associée à . +Précédent +&Arrêter +Lorsque l'option permettant de bloquer l'enregistrement des cookies tiers est activée, la lecture de ces cookies est également bloquée. + : +Console JavaScript +Les sites pour lesquels vos mots de passe ne seront jamais enregistrés s'afficheront ici. +Inconnu +Mode de saisie du thaï (clavier TIS-820.2538) +&Favoris +Désinstaller +Voulez-vous vraiment quitter alors que  téléchargements sont en cours ? +Configurer le blocage des cookies... +ABC +L'application hébergée par est inaccessible, car vous êtes déconnecté du réseau. Cette page s'affichera dès que la connexion réseau sera rétablie. <br> +Gestionnaire de favoris + secs ago +Quitter le mode plein écran +Ouvrir l'&image dans un nouvel onglet +Favori ajouté ! +Choisir un autre dossier... +Kotoeri +Hier +Synchroniser automatiquement les éléments suivants : +Votre ordinateur intègre un périphérique de sécurité TPM (module de plate-forme sécurisée) qui permet de mettre en œuvre plusieurs fonctionnalités de sécurité critiques dans Google Chrome OS. +Contraintes des stratégies de certificat +Créer un support de récupération +Emplacement : +Toutes les pages que vous consultez apparaîtront ici à moins que vous ne les ouvriez dans une fenêtre en navigation privée. Vous pouvez utiliser le bouton Rechercher de cette page pour rechercher dans toutes les pages de votre historique. +Options pour les développeurs +Cookies +Toujours exécuter pour ce site +Afficher le dossier +Autres favoris +Clavier français + ne parvient pas à déterminer ou à définir le navigateur par défaut. +Sélectionner l'onglet suivant +Voulez-vous vraiment supprimer ces pages de votre historique ? +Déverrouiller +ID de clé : +Exécuter ce plug-in +Utilisateurs +Ajouter un moteur +Répondeur OCSP : +Ignorer +Champs de certificat +Modules () : aucun conflit détecté. +Onglet : +Impossible de charger la page d'options "". +Coller en adaptant le style +Veuillez ajouter une autre langue avant de supprimer celle-ci. +nom du réseau + synchronise de manière sécurisée vos données avec votre compte Google. +Taille +Activer... +Recherche +Poursuivre quand même +Nouveau code PIN : +La capacité du périphérique doit être d'au moins 4 Go. +De droite à gauche +Activer le mode Pinyin double +Menu contenant des favoris masqués +Utiliser le dictionnaire système +Vous avez choisi de chiffrer les données à l'aide de votre mot de passe Google. Vous pouvez modifier vos paramètres de synchronisation à tout moment, si vous changez d'avis. +Personnaliser les polices... +Enregistrement des informations de date +&Vérifier l'orthographe du texte de ce champ +Ceci est un modèle expérimental qui permet aux enregistrements DNS (utilisant le protocole de sécurité DNSSEC) d'autoriser ou de refuser des certificats HTTPS. Ce message s'affiche lorsque vous activez des fonctionnalités expérimentales via des options de ligne de commande. Vous pouvez supprimer ces options de ligne de commande pour ignorer cette erreur. + minutes restantes +Île +Contraintes de base du certificat +Autres... +Activer l'onglet 4 +Données personnelles +Afficher l'original +Nom de la société +Définir Adobe Reader comme visionneuse de documents PDF par défaut ? +Pour gérer les extensions installées, cliquez sur Extensions dans le menu Fenêtre. +Accédez à vos imprimantes depuis n'importe quel ordinateur ou smartphone. En savoir plus +Me &le rappeler plus tard +Opération réussie ! +Carte SD détectée. + - Propriétaire +Clavier japonais +WPA +janv.^févr.^mars^avr.^mai^juin^juil.^août^sept.^oct.^nov.^déc. +Sélectionnez + + Applications > Préférences système > Réseau > Assistant + + pour tester votre connexion. +&Afficher le code source de la page +Micrologiciel : +Créer un profil +Date de modification +Sandbox seccomp +Signale&r un problème... +Entrée de symboles simplifiée +Chinois simplifié +Hôte SOCKS +Considérer ce certificat comme fiable pour identifier les sites Web. +Exceptions de localisation +Hiragana +Le mot de passe TPM ci-dessous, généré de façon aléatoire, a été attribué à votre ordinateur : +Importer mes favoris maintenant... + +Avertissement : Un problème a été détecté sur cette page. +Avec Google Chrome OS for business, vous pouvez connecter votre périphérique à Google Apps, ce qui vous permet de le rechercher et de le contrôler depuis le panneau de configuration de Google Apps. +Ajouter tous les onglets aux favoris... +Émis le +Lorsque je ferme le navigateur +Localisation +Attendre +Infos sur la clé publique de l'objet +Plug-in inconnu +Connexion en mode invité +Toujours autoriser à paramétrer les cookies +Résumé +Le certificat du serveur n'est pas valide. +Chaîne de certificats codés Base 64 ASCII +Choisir mon propre mot de passe multiterme +Certificat de serveur non répertorié +Rechercher la sélection +Activer +L'accès à ce réseau est protégé. +E-mail +Erreur () : +Signature permanente Microsoft +Sélectionnez + + Démarrer > Panneau de configuration > Réseau et Internet > Centre Réseau et partage > Résolution des problèmes (en bas) > Connexions Internet. + +Gestionnaire de &fichiers +Service client +Impossible de se connecter au réseau "". +J'accepte ces termes +Copier l'adr&esse du lien +Veuillez démarrer en tant qu'utilisateur normal. Pour l'exécuter en tant que root, vous devez indiquer un autre répertoire de données utilisateur pour stocker les informations du profil. +Le processus du connecteur est bloqué. Voulez-vous le redémarrer ? +Contenu Web +Clé compromise +Supprimer +Si vous fermez maintenant, ces téléchargements seront annulés. +Dachen 26 +Voulez-vous vraiment graver l'image sur le périphérique suivant : +Mémoire SQLite +/, + est affiché dans cette langue. +Fenêtre pop-up bloquée + : +Ouvrir tous les favoris +Effacer les cookies et autres données de site et de plug-in lorsque je ferme le navigateur +Page d'accueil +Onglet +Non configuré +Opération réussie ! +Relancez pour terminer la mise à jour. +Chiffrer toutes mes données +Veuillez patienter pendant que nous configurons votre réseau pour mobile. +Points de distribution de listes de révocation des certificats +Association +Appuyez sur Maj+Alt pour changer la disposition du clavier. +Utiliser l'horloge au format 24 heures + est prêt à terminer l'installation. +Lancez votre recherche à partir d'ici +OK, synchroniser tout +Afin d'être correctement affichée, cette page requiert des données que vous avez précédemment entrées. Vous pouvez de nouveau transmettre ces données, mais, en procédant ainsi, vous devrez répéter chaque action que cette page a effectuée auparavant. Cliquez sur Rafraîchir pour transmettre de nouveau ces données et pour afficher cette page. +Cela signifie que le certificat présenté à votre navigateur a été révoqué par son émetteur. L'intégrité de ce certificat a certainement été compromise, et il ne doit donc pas être approuvé. Ne poursuivez pas. +Clavier slovaque +Nom de partie EDI +Vous avez déjà chiffré des données avec un mot de passe multiterme. Saisissez-le ci-dessous. +Informations sur le site +Créer un raccourci vers l'application... +Authentification requise + n'est pas parvenu à se connecter à . Sélectionnez un autre réseau ou réessayez. +Votre compte n'est pas compatible avec . Contactez l'administrateur de votre domaine ou utilisez un compte Google standard pour vous connecter. +Adresse e-mail +Client natif +Chargé depuis : +Active les balises canvas hautes performances dans un contexte 2D, pour effectuer le rendu via le processeur graphique. +Cette page ena été traduite en +Seule une personne en possession de votre mot de passe multiterme peut lire vos données chiffrées. Google ne reçoit ni n'enregistre votre mot de passe multiterme. Si vous oubliez votre mot de passe multiterme, vous devrez +Autorité de certification SSL + contient un logiciel malveillant. Votre ordinateur pourrait être infecté par un virus si vous consultez ce site. +Aucune donnée disponible. +Im&primer... +Description +Voix non reconnue. +Aucun fichier sélectionné +Souhaitez-vous installer  ? +Activité récente +de la dernière semaine +Profil +Actualiser sans utiliser le cache +Logiciels malveillants et sites de phishing détectés ! +Onglet fermé ! +il y a  jours +Paramètres +Ce site exige que vous vous identifiiez avec un certificat : +Supprimer... +&Aucune suggestion orthographique +Clavier franco-canadien +Clavier étendu américain +Le serveur a mis fin à la connexion sans envoyer de données. +Autoriser à afficher des notifications sur le Bureau ? +Pour gérer les extensions installées, cliquez sur Extensions dans le menu Outils. +Erreur de synchronisation, veuillez vous connecter à nouveau. +La liste suivante fait état des éléments dangereux détectés sur la page. Cliquez sur le lien "Diagnostic" pour obtenir plus d'informations sur un élément particulier. +Émirat +Synchroniser tous les paramètres et toutes les données\n(peut prendre un certain temps) +Toujours demander où enregistrer les fichiers +Créer un raccourci +Tous les fichiers +Sebeol-sik No-shift +Anglais (pleine chasse) +2D avec canvas et accélération matérielle +Cette fonctionnalité autorise l'installation d'applications Google Chrome déployées à partir d'un manifeste situé sur une page Web, plutôt qu'avec un fichier crx contenant le manifeste et les icônes. +Nouvelle connexion +GPU +Moins de 1 Mo disponible +Nouvelle fenêtre de navigation privée +Europe du Sud +Sélectionner les éléments à synchroniser +Attributs du répertoire de l'objet du certificat +Accédez à vos imprimantes et partagez-les en ligne via . +&Ajouter... +Afficher dans cette langue +il y a  jour +Police Sans-Serif +Ne rien faire + seconde +Configurer les mises à jour automatiques pour tous les utilisateurs +Échec de la création du répertoire des données +Fermer et annuler le chargement + +Adresse : +Détails +Notification : +Cette opération peut prendre quelques minutes. +Géré par () +Type de certificat Netscape +Impossible d'afficher certaines parties de ce document PDF. Souhaitez-vous installer Adobe Reader ? +Vos certificats +Vos données personnelles sur , et +URL de stratégie de l'autorité de certification Netscape +Dernier accès : +Synchroniser les mots de passe +&Quitter +&Fermer l'onglet +, +Le site Web à l'adresse contient des éléments provenant de sites qui semblent héberger des logiciels malveillants. Ces derniers peuvent nuire à votre ordinateur ou agir à votre insu. Le simple fait de visiter un site hébergeant ce type de logiciels peut infecter votre ordinateur. +Total : +Les cookies de plusieurs sites ont été autorisés pour la session uniquement. +Nom du service : +Imprimer une page de test +Aperçu avant impression - + + ne peut pas à afficher la page Web, car votre ordinateur n'est pas connecté à Internet. +Exécuter cette fois +Chiffrement de la clé +Échec de la vérification AAA +Ouverture dans ... +&Copier +Logiciel +Moteurs de recherche +&Méthodes d'entrée +Jamais enregistrés +Impossible d'analyser le fichier. +Subordination qualifiée Microsoft +Bureau +Toujours traduire en les pages en +Thaï +Activer l'onglet suivant +: de chargement +Style de mappage du clavier +Un problème lié à votre microphone s'est produit. + vous permet d'accéder aux imprimantes de cet ordinateur, où que vous soyez. Connectez-vous pour l'activer. +District +Ethernet +Erreur de réseau inconnue. +Nom du certificat +Plus d'informations +Mise à jour du système disponible. Préparation du téléchargement… +Galerie des thèmes Google Chrome +Copi&er l'adresse e-mail +Activer l'onglet 3 +Adresses +Plug-in : () +Pas maintenant +Pays +<Ne fait pas partie du certificat> +il y a  seconde +Fichiers image +Europe centrale +Certificat client SSL +Pour accélérer l'affichage des pages Web, + + enregistre temporairement les fichiers téléchargés sur le disque. Si + + ne s'arrête pas correctement, ces fichiers peuvent être endommagés, ce qui + génère cette erreur. L'actualisation de la page devrait permettre de résoudre + ce problème ; celui-ci ne se reproduira vraisemblablement plus si l'arrêt s'effectue + correctement. + + Si le problème persiste, essayez de supprimer le contenu du cache. Cette + erreur peut aussi indiquer que le matériel est sur le point de tomber + en panne. +Thème créé par +Données de navigation +Ajouter cette page aux favoris +Le serveur a refusé la connexion. +Module ( bits) :\n\n\nExposant public ( bits) :\n + secondes restantes +Vous utilisez un indicateur de ligne de commande non pris en charge : . La stabilité et la sécurité en seront affectées. +Emplacement de téléchargement +À propos de Google Traduction +Les lettres ne sont pas sensibles à la casse. +Mot clé +Connexion +Redémarrez pour appliquer la mise à jour. +Sélectionner un carré dans l'image +Bases de données Web +Codage +Mise en route +Utiliser les pages actuelles +Signaler une erreur +Recherche de réseaux en cours +Effacer les données de navigation +Ouvrir le lien dans une nouvelle &fenêtre +Nom d'utilisateur +Clavier letton +Forcer l'actualisation de cette page +Disposition du clavier : +Non utilisé + minutes +Chiffrement RSA PKCS #1 +Ce n'est probablement pas le site que vous recherchez ! +&Général +Configurer la synchronisation +État de connexion : +Ancien code PIN : +Désactiver le contrôle des liens hypertexte +&Modifier +Chinois +Navigateur par défaut +Extension en mode navigation privée : +Mot clé : +Un problème est survenu lors du téléchargement de l'image de récupération. La connexion réseau a été perdue. +Votre administrateur a désactivé certaines préférences. +Forfait de données épuisé +Veuillez indiquer à quel niveau vous rencontrez des problèmes avant d'envoyer vos commentaires. +Authentification du serveur WWW TLS +Le service de synchronisation n'est pas disponible pour votre domaine. +Modifier les paramètres du proxy... +Cette fonctionnalité active les API des extensions expérimentales. Notez que vous ne pouvez pas mettre en ligne des extensions qui font appel aux API expérimentales dans la galerie d'extensions. +Un logiciel malveillant a été détecté ! +Forfait de données presque épuisé +des dernières 24 heures +Une fois activée, la recherche instantanée charge la plupart des pages Web dès que vous saisissez l'URL dans le champ polyvalent, avant même que vous n'appuyiez sur Entrée. Si votre moteur de recherche par défaut est compatible, toute lettre saisie dans ce champ offre de nouveaux résultats et les prédictions intégrées vous guident dans vos recherches.\n\nChaque touche utilisée fait l'objet d'une requête, par conséquent il se peut que les éléments saisies dans le champ polyvalent soient enregistrés par votre moteur de recherche par défaut.\n + hours left +poursuivre quand même +Autorisé +Retirer l'onglet +Moins de +Impossible de charger l'icône "" d'action du navigateur. +Consulter Google Dashboard +Plus d'informations +Ajoutez des langues puis faites-les glisser pour les classer dans l'ordre souhaité. + sera lancé au démarrage du système et continuera de s'exécuter en arrière-plan, même toutes les fenêtres de sont fermées. +Non (HttpOnly) +Saisir votre mot de passe multiterme pour la synchronisation +Police standard + (par défaut) +Cette fonctionnalité active la prise en charge du client natif. +La puce du module de plate-forme sécurisée (TPM) est désactivée ou inexistante. +L'index de l'onglet indiqué est incorrect. +Nom du serveur SSL du certificat Netscape +Est une autorité de certification +Wi-Fi +Connexion à +Confirmer le mot de passe : +Aperçu avant impression +Clavier italien +Impossible d'établir une connexion sécurisée à cause de l'antivirus ESET. +(expiré) +Voulez-vous vraiment quitter cette page ? +Faire défiler d'une page vers le haut +Empreintes +Le plus récent + heures +Agrandir +La page Web est introuvable dans le cache. Certaines ressources ne sont restituées fidèlement que si elles sont extraites du cache, notamment les pages générées à partir de données que vous avez envoyées. Cette erreur peut également être due à un cache endommagé lors d'une fermeture incorrecte. Si le problème persiste, essayez d'effacer le cache. +Le plug-in n'est plus à jour. +Vous avez changé de position. Souhaitez-vous utiliser  ? +EAP-TLS + heures +Rafraîchir cette page +Non-répudiation +Extension : +Active l'API Web audio. +Zone de saisie de mot de passe +Effacer les cookies et autres données de site lorsque je quitte le navigateur +Ajouter l'option de regroupement au menu contextuel des onglets +Version +Latin +Le connecteur requiert l'installation du pack Microsoft XML Paper Specification Essentials. +Effacer les cookies et autres données de site lorsque je ferme le navigateur +Case décochée +Mise en page +Saisir un nom ou une adresse +Choix de l'image du compte +Me montrer + minutes restantes +De : +Ouvrir un rapport de phishing +Page de phishing +Inspecter le pop-up +Importer... +Modifier la carte de paiement +Cette langue est utilisée pour corriger l'orthographe. +Le type d'enregistrement indiqué est incorrect. +Forfait de données arrivé à expiration +Exporter mes favoris... +Clavier britannique +Importer des favoris... + +Nom d'utilisateur ou mot de passe incorrect +&Tout sélectionner +Erreur inconnue liée au certificat du serveur. +Envoyer une capture d'écran enregistrée +Émis pour : +Page précédente +Hsu +Réduire +Navigateur par défaut +Afficher le mot de passe +Activer les fonctionnalités d'accessibilité +Inclure la capture d'écran actuelle : + - +(cette extension est gérée et ne peut être désinstallée ni désactivée) +OID enregistré +Importés depuis IE +Fichier de clé privée (facultatif) : +Autoriser pour la session uniquement + mins +Mise à jour en cours +Aucun microphone trouvé. +Connexion à + n'est pas votre navigateur par défaut. +Forfait +Cette page contient des éléments des sites ci-dessous qui suivent votre position géographique : +Plusieurs profils +Plantages +Par défaut + jours +PKCS #1 MD4 avec chiffrement RSA +Modifier le moteur de recherche + minutes +Indiquez le mot de passe approprié ci-dessus, puis saisissez les caractères figurant dans l'image ci-dessous. +Expiration de imminente +Activer l'onglet précédent +Désactiver l'accès à distance +Afficher les incompatibilités +Carte de débit Solo +Actualisez cette page Web ultérieurement. +Pour utiliser cette extension, saisissez "", TAB, puis votre commande ou votre recherche. + synchronisera les applications installées, afin que vous puissiez y accéder en vous connectant depuis tout navigateur . +Langues et paramètres du correcteur orthographique... +Erreur de sécurité +Applications +La ressource demandée n'existe plus et aucune adresse de transfert n'est disponible. Il semble que cet état de fait soit permanent. +Certificat unique binaire codé DER +&Plein écran +Fichiers vidéo + indique que + NetNanny intercepte les connexions sécurisées. En général, cela + ne constitue pas un problème de sécurité, car le logiciel NetNanny s'exécute souvent + sur le même ordinateur. Toutefois, en raison de certaines incompatibilités avec + les connexions sécurisées Google Chrome, vous devez configurer NetNanny + de manière à éviter ces interceptions. Cliquez sur le lien En savoir plus pour obtenir des instructions. +Vos onglets et activités de navigation +Créer +Turc +Une erreur s'est produite lors de la tentative d'enregistrement du certificat client. Erreur  () +Bienvenue dans +Sélectionner +Nom du modèle de certificat Microsoft +Configuration de l'adresse IP pour +Immortalisez votre plus beau sourire et utilisez la photo comme image de compte. +Extension créée : + + +Mot de passe incorrect. Veuillez réessayer. +LEAP +Échec de la connexion aux serveurs de reconnaissance vocale. +Très grande +Sélectionner le répertoire de l'extension +&Téléchargements +Gestionnaire des certificats + souhaite suivre votre position géographique +Quitter + sur +Proposer d'enregistrer les mots de passe +Modification de l'affiliation +par exemple : 1-5, 8, 11-13 +(Activé par une stratégie d'entreprise) +Qu'est-ce que c'est ? +Les cookies de plusieurs sites ont été bloqués. +Serveur DNS spécifié par l'utilisateur et utilisé par Google Chrome, à la place du paramètre système par défaut, pour les résolutions DNS. +Désactivé +Annuler +Répertoire racine de l'extension : +Mode de saisie du vietnamien (TCVN6064) +Échec de l'activation +Ajouter cette page aux favoris +L'identité de ce site Web a été vérifiée par . +Adresse e-mail : +Activation... +PAP +Sites de phishing + secs ago +Interdire à tous les sites d'exécuter JavaScript +Vouliez-vous accéder à  ? +La connexion avec le service de configuration a été perdue. Veuillez réinitialiser votre périphérique ou contacter votre représentant de l'assistance technique. +Paramètres des fenêtres pop-up : +Tout exporter... +Barre de favoris +Stocké dans : +Développer... +Gin Yieh +Rechercher sur +Modifier la carte de paiement +Au démarrage +Nous examinons actuellement le problème. +Notifications +Navigateur +Case d'option décochée + days +Anglais +Modifier le nom du dossier +Grammaire et orthographe +Réseaux privés +Toutes sortes de connexions +Exceptions liées aux notifications +Épingler les onglets +Barre d'onglets +Activer l'onglet 6 +Gestionnaire de &tâches +Paramètres de stockage d'Adobe Flash Player... +Connexion au réseau +Mode de saisie du vietnamien (VNI) +L'application suivante va être lancée si vous acceptez cette requête :\n\n +Importation... +N° de carte +Gérer les moteurs de recherche... +Utiliser un moniteur externe +Gravure de l'image en cours... +État +Éteindre +Enregistrer les fichiers dans le dossier : +Fermer les autres onglets +Répertoire de fichiers +Masquer les autres +Annuler l'épinglage des onglets +Plus +Échec de la vérification de la révocation +Ajouter www. et .com, puis ouvrir la page +Pour inspecter un pop-up, cliquez avec le bouton droit sur la page ou sur l'icône d'action du navigateur, puis sélectionnez Inspecter le pop-up. +&Répéter + est à présent activé. a enregistré les imprimantes installées sur cette machine en les associant à <b></b>. Vous pouvez désormais utiliser vos imprimantes depuis n'importe quelle application Web ou mobile associée à . +Le serveur de + est introuvable, car la résolution DNS a échoué. DNS est le service Web qui + traduit les noms de site Web en adresses Internet. Cette erreur est + généralement due à l'absence de connexion Internet ou à une configuration + incorrecte du réseau. Cela peut également venir d'un serveur DNS qui ne + répond pas ou d'un pare-feu interdisant l'accès de + + au réseau. +ZGPY +Impossible de charger le fichier css "" du script de contenu. +Créer des raccourcis vers des applications aux emplacements suivants : +Moyenne +Envoyé pour : +Aider Google à détecter les logiciels malveillants en envoyant des données supplémentaires concernant les sites pour lesquels cet avertissement s'affiche. Ces données seront gérées conformément aux règles définies sur la page . +[répertoire parent] +Touches de sélection du clavier Hsu +Copie de l'image de récupération... +Tout supprimer +Seule une personne en possession de votre mot de passe multiterme peut lire vos données chiffrées. Google ne reçoit ni n'enregistre votre mot de passe multiterme. Si vous oubliez votre mot de passe multiterme, vous devrez réinitialiser la synchronisation. +Ouvrir dans une nouvelle fenêtre +Dommage... Aucune extension n'est installée. :-( +Style de ponctuation +Historique de navigation +Ce site tente de télécharger plusieurs fichiers. Voulez-vous autoriser le chargement ? +Établissement de la liaison avec le service de gestion des périphériques en attente... + heures +Ne pas utiliser les paramètres du proxy pour les hôtes et domaines suivants : +&Avancer +Impossible de charger "" pour le plug-in. +À propos du système +Utilisation de la clé du certificat : +Mode de saisie du chinois (quick) +Une erreur s'est produite lors de la tentative d'écriture du fichier : . +Renommer +La synchronisation requiert votre attention. +Aujourd'hui +Imp&rimer le cadre... +Le site a déjà été informé qu'un logiciel malveillant a été détecté sur ses pages. Pour plus d'informations concernant les problèmes rencontrés sur , consultez notre Google. +Adresse de serveur DNS spécifiée par l'utilisateur. +&Rechercher... +, +&Afficher dans le dossier +Non connecté à Internet. +Sélectionnez + + Démarrer > Panneau de configuration > Connexions réseau > Assistant Nouvelle connexion + + pour tester votre connexion. +Cette icône s'affiche lorsque l'extension peut agir sur la page active. +Reconnexion +Réponses OCSP de signature +Erreur d'importation de l'autorité de certification +Gravure de l'image terminée. +&Historique +Installer +Ajouter des utilisateurs +Enregistrer l'authentification et le mot de passe +Clavier norvégien +Basculer en mode chinois/anglais +Traduction de la page en ... +À propos de & + onglets +il y a  minutes +Qu'est-ce que c'est ? +Tout &sélectionner +&Ajouter au dictionnaire +Utilisation étendue de la clé +Le chinois est la langue de saisie initiale +Agent utilisateur +Émetteurs de l'autorité de certification : + jours +Code source +Redémarrer maintenant +La largeur de caractères initiale est Complète +Pour masquer l'accès à ce programme, vous devez le désinstaller au moyen de \n du Panneau de configuration.\n\nSouhaitez-vous exécuter  ? +Paramètres du microphone +Port +&Toujours ouvrir les fichiers de ce type +Uniquement les connexions sécurisées +Les informations de connexion au compte sont obsolètes. +La traduction a échoué, car la page est déjà en . +Sandbox SUID +(vide) +Échec de l'authentification basée sur le certificat +Envoyer le code source de la page actuelle +Votre administrateur a désactivé certains paramètres. +Coréen +Avertissement : Il s'agit peut-être d'un site de phishing ! +Dvorak +Étendue de pages incorrecte + heures restantes +Exceptions liées aux cookies et aux données de site + n'est pas accessible +P&lus grand +Connecté à +Le certificat de sécurité du site a été révoqué ! +Désactiver + risque de ne pas rester à jour. +intégré sur tout autre site + + ne parvient pas à atteindre le site Web. Cela vient probablement d'un problème de réseau, + mais peut également être dû à un pare-feu ou à un serveur proxy mal configuré. +À propos de la reconnaissance vocale +Langues et paramètres du correcteur orthographique... + seconde restante +Nom d'utilisateur : +Le stockage des cookies n'est pas autorisé pour cette page. +JavaScript +La connexion utilise . +Échec de l'installation +Afficher les &infos sur la page +Serveurs +Système de fichiers de chiffrement Microsoft +Un plug-in supplémentaire est requis pour afficher certains éléments sur cette page. +Appuyez sur Ctrl+Alt+/ ou sur Échap pour masquer +Cette fonctionnalité effectue des vérifications en arrière-plan et vous avertit en cas d'incompatibilité logicielle (modules tiers bloquant le navigateur, par exemple). +Connexion avec +Imprimer depuis la boîte de dialogue système… + heure restante +Échec de l'initialisation de l'appareil photo +Importés +Type de fournisseur : +IP restreinte : +Refuser +Démarrage du téléchargement en cours... +Une nouvelle version de est disponible. +Clavier hébreu +Police à largeur fixe +Safari +Les champs obligatoires ne doivent pas rester vides. +Ouvrir une fois le téléchargement &terminé +Stratégies de certificat +Pavé tactile +Aucun +Activer la barre d'adresse en mode recherche +Exceptions pour JavaScript +Ouvrir dans une nouvelle fenêtre +Veuillez saisir le code PIN. +Options de saisie automatique... +Arabe +Nouveau dossier +E/S réseau interrompue +Rechercher le précédent +Ne jamais enregistrer les mots de passe +Ouvrir dans un nouvel onglet +Fenêtre suivante +&Rechercher le suivant +JCB +Signature de liste d'approbation Microsoft +Gérer les certificats... +Sélectionnez le fichier de certificat. +Fabricant : +Bloquer le contenu inapproprié +Le fichier contenait plusieurs certificats, dont certains n'ont pas été importés : +Exceptions pour les images +Autoriser tous les sites à afficher des fenêtres pop-up +Vous devez indiquer un chemin valide comme valeur de clé privée. +Sans mot de passe multiterme, vos mots de passe et autres données chiffrées ne seront pas synchronisés sur cet ordinateur. +Extensions ou applications +Ce site recommande Google Chrome Frame (déjà installé). +Les plus visités +Vous n'êtes pas autorisé à vous connecter. Consultez le propriétaire de cet ordinateur portable. +Remarque : Lorsque vous cliquez sur "Envoyer", Google Chrome joint à votre + envoi un journal indiquant votre version de Google Chrome et celle du système + d'exploitation utilisé, ainsi que l'URL associée à votre rapport. Vous pouvez + également joindre une capture d'écran. Ces informations nous + permettent de diagnostiquer les problèmes et d'améliorer les performances de + Google Chrome. Les informations personnelles fournies sciemment dans vos + commentaires ou involontairement dans le journal, l'URL ou la capture + d'écran sont protégées conformément à nos règles de + confidentialité. Si vous ne souhaitez pas indiquer d'URL et/ou de capture + d'écran, décochez les cases "Inclure cette URL" et/ou "Inclure cette capture d'écran". Vous acceptez que Google utilise vos commentaires pour améliorer ses produits ou services. +Vos modifications seront prises en compte au prochain démarrage de . +Taille de police minimale +Entrée directe +Fermer la fenêtre +Mode de saisie du japonais (pour clavier japonais) +Inscription réussie +Échec de création du fichier zip temporaire lors de la création du pack +Modifier les paramètres de confiance : +Votre historique de navigation +&Masquer le panneau de la vérification orthographique +Plug-in ne répondant pas +IBM +Les paramètres seront effacés lors de la prochaine actualisation. + introuvable +Démarrage... +Nouvelle fenêtre de nav&igation privée +Ajouter une adresse postale... +Authentification en cours... +Ouvrir dans un nouvel onglet +Déconnecté +Action du navigateur +Le mot de passe multiterme saisi ne peut pas être utilisé, car vous avez déjà chiffré des données avec un mot de passe multiterme. Entrez ci-dessous le mot de passe multiterme actuellement défini pour la synchronisation. +Ouvrir cette page : +Voulez-vous vraiment supprimer tous les mots de passe ? +Sélectionner par domaine +Ouvrir le lien dans une fenêtre en navi&gation privée +Émetteur +Options de saisie automatique +Les nouveaux paramètres des cookies seront appliqués quand vous aurez actualisé la page. +Votre connexion à est sécurisée par un chiffrement bits. +Menu Applications +Outi&ls +Onglets latéraux +Reprendre +Zoom +Inspecteur de DOM +Document sans titre +Police standard +Activer +Opération en cours... +C&opier l'URL de l'image +La saisie automatique des numéros de carte de paiement est désactivée, car la connexion utilisée par ce formulaire n'est pas sécurisée. +Enregistrer le &cadre sous... +Général +Défaillance +Demander +Coller l'URL et y a&ccéder +Pour plus de sécurité, va chiffrer vos mots de passe. +Si vous avez oublié votre mot de passe multiterme, vous devrez arrêter la synchronisation via Google Dashboard. + sur  +Adresse ligne 1 +Impossible de créer le favori. +Basculer en mode chinois simplifié/traditionnel +Votre système Sandbox n'est pas correctement configuré. +Sélectionnez le menu clé à molette > Préférences > Options avancées > Modifier les paramètres du proxy et vérifiez que vos paramètres sont définis sur "sans proxy" ou "direct". +Impossible de vérifier si le certificat a été révoqué. +Stockage des données +/, Interrompu +Acheter un forfait +Installer le plug-in... +Afficher le code source +Fermer les onglets sur la droite +Afficher le bouton "Accueil" +Version  +Parenthèse gche +Microsoft Server Gated Cryptography +Zoom avant +Protection du courrier électronique +Les cookies suivants ont été bloqués (tous les cookies tiers sont bloqués, sans exception) : +Connectez-vous à pour importer le certificat client de +La batterie est chargée. +Créer un nouveau profil... +Maintenez la touche enfoncée pour quitter. +Masquer ce plug-in +Ouvrir le fichier +Conteneur de barres d'infos +Le certificat du serveur a expiré. +Utiliser +Réduit la taille du texte +Épingler l'onglet +Mise à jour du système + days left +Inclure les informations système +Google Chrome n'avait pas suffisamment de mémoire ou le processus de la page Web a été arrêté pour une autre raison. Pour continuer, actualisez la page ou ouvrez-en une autre. +Impossible de valider votre mot de passe sur le réseau actuel. Sélectionnez un autre réseau. +Cette page n'est pas rédigée en  ? Signaler l'erreur +Certificat unique codé Base 64 ASCII +Activer le mode plein écran +Codag&e + est déjà utilisé pour gérer les liens ://. +Touches de sélection +Clavier international américain +Je comprends que la visite de ce site peut être préjudiciable à mon ordinateur. +Ressource cache manquante. +Impossible d'accéder à mon compte +C&opier l'URL de la vidéo +Vous préférez parcourir la galerie ? +Impossible de vérifier le certificat du serveur. +Outils de &développement +Exporter... +Paramètres de saisie automatique +Téléchargement de l'image en cours... +&Options du vérificateur d'orthographe +Impossible d'ouvrir votre profil correctement.\n\nIl est possible que certaines fonctionnalités ne soient pas disponibles. Vérifiez que ce profil existe et que vous disposez d'une autorisation d'accès à son contenu en lecture et en écriture. +Vérifier le document maintenant +Zone de liste +Clavier slovène +Sens de l'écriture +Vos données sur +Ouvrir une fenêtre du navigateur +Conversion de la date et de l'heure +PKCS #1 SHA-512 avec chiffrement RSA +Clavier coréen +Dupliquer +Ne pas conserver sur cette page +Désactiver +ATOK +téléchargement +E-mail : +Ouvrir tous les favoris dans une nouvelle &fenêtre +Rafraîchir la page actuelle +Accessibilité +Exceptions pour les plug-ins +Remplissage automatique des formulaires +Nom d'utilisateur +Enregistrer le lie&n sous... +Réessayer +Personnaliser et configurer +Préférences de saisie automatique +Votre position géographique +Afficher les pages en arrière-plan () +Configurer les mises à jour automatiques +il y a  heures +Valeur du champ +Les dernières versions d'Unity et GNOME (ainsi que la prochaine version d'Ubuntu, Natty Narwhal) affichent une barre de menus de type OSX sur toute la largeur supérieure de l'écran. +Index erroné. +Préparation du module de plate-forme sécurisée (TPM) en cours. Veuillez patienter, l'opération peut prendre quelques minutes. +Nombre de copies incorrect +Personnaliser +Prédire les actions du réseau pour améliorer les performances de chargement des pages +Données restantes : +N'est pas une autorité de certification. +L'URL doit être valide. +Envoyer automatiquement les statistiques d'utilisation et les rapports d'erreur à Google +Cette fonctionnalité active la géolocalisation dans les extensions expérimentales. Cela implique l'utilisation des API de localisation du système d'exploitation (si disponibles) et l'envoi de données sur la configuration réseau locale au service de localisation de Google afin de déterminer une position précise. +Impossible de charger le profil. +Toujours exécuter JavaScript sur +Version PRL : +Confirmer la réactivation +Ajouter une adresse postale... +PKCS #1 MD2 avec chiffrement RSA +Dim.^Lun.^Mar.^Mer.^Jeu.^Ven.^Sam. +Zone de saisie +Trier par nom +Fenêtre +Nouvel onglet +Vous tentez d'accéder au site , mais le certificat présenté par le serveur a été révoqué par son émetteur. Cela signifie que les informations d'identification présentées par le serveur ne sont pas approuvées. Vous communiquez peut-être avec un pirate informatique. Nous vous déconseillons vivement de continuer. +Composition hors écran + mins left +Technologie : +Accédez à la page d'accueil du site : +Configurer la communication à distance +L'émetteur d'un certificat n'ayant pas expiré est tenu d'assurer la maintenance de ce qui s'appelle "une liste de révocation". Si un certificat est compromis, l'émetteur peut le révoquer en l'ajoutant à la liste de révocation. Ce certificat n'est alors plus approuvé par votre navigateur. Il n'est pas nécessaire d'assurer la maintenance de l'état "révoqué" des certificats expirés. Donc, bien qu'un certificat ait été qualifié de valide pour le site Web que vous visitez actuellement, il est impossible de déterminer s'il a été, depuis, compromis puis révoqué ou s'il est toujours valide. Par conséquent, il n'est pas possible de s'assurer si vous communiquez avec un site Web légitime ou si le certificat a été compromis et se trouve maintenant en la possession d'un pirate informatique avec lequel vous communiquez. Ne poursuivez pas. +Néanmoins, si vous travaillez dans une entreprise qui génère ses propres certificats, et que vous essayez de vous connecter au site Web interne de l'entreprise avec un certificat de ce type, vous pouvez résoudre ce problème en toute sécurité. Pour ce faire, importez le certificat racine de l'entreprise en tant que "certificat racine". Par la suite, les certificats émis ou vérifiés par votre entreprise seront approuvés et vous ne verrez plus cette erreur lorsque vous tenterez de vous connecter à nouveau au site Web interne. Contactez le support informatique de votre entreprise pour savoir comment ajouter un nouveau certificat racine sur votre ordinateur. +Définir en tant que navigateur par défaut +Avertissement +Préférences de recherche +Clavier Colemak américain +Activer la navigation en tant qu'invité +Utiliser les paramètres par défaut +Rétablir +Désinstaller "" ? +Établissement de la connexion sécurisée... +Dossier : +Erreur non reconnue +Consultez les conflits connus avec des modules tiers. +Co&ller et rechercher +&Remonter +Échec de la traduction en raison d'une erreur de serveur +Version : +Polices et codage + - +Signature du code commercial Microsoft +Sélectionnez les éléments à importer : +De gauche à droite +Votre connexion à est sécurisée par le biais d'un faible chiffrement. +sans objet +Toujours afficher la barre de favoris +Activer l'onglet 2 +Aperçu des onglets +Redémarrer +Configuration en cours... +Une erreur s'est produite lors de la récupération des fonctions de l'imprimante . Cette imprimante n'a pas pu être enregistrée dans . +Exceptions pour les fenêtres pop-up +Signataire du certificat +La page Web n'existe plus. +Vous n'avez jamais visité ce site auparavant. +Personnaliser... +Fe&rmer la fenêtre +Arrêter le chargement de cette page +Autres favoris + a été mis à jour. +Mode hors connexion +Erreur d'importation de fichier PKCS #12 +Algorithme de clé publique de l'objet +Le site Web a rencontré une erreur lors de l'extraction de . + Cela peut être dû à une opération de maintenance ou à une configuration incorrecte. +Échec du chargement de la page +Mot de passe : +Conserver en tant que moteur de recherche par défaut +Fichier manifeste absent ou illisible +La connexion a été réinitialisée. +Le mot de passe choisi vous sera demandé pour restaurer le fichier. Veillez à le conserver en lieu sûr. +La vérification de la provenance du certificat DNS est activée, ce qui peut entraîner l'envoi d'informations privées à Google. +À propos de la reconnaissance vocale +Aller à la sélection +Ajouter un certificat +Espaces de noms PID +Préférences de saisie automatique +Activer l'onglet 8 +Le certificat "" représente une autorité de certification. +Envoyer par e-mail l'emplacement de la page +Enregistrement des informations de date Microsoft +Validité +&Traduire en +Batterie :  % +Désactivé +Japonais + () +L'application est actuellement inaccessible. +Lecteur du certificat : + jour restant +Gestionnaire de tâches +Gérer les extensions... +Continuer +Synchronisation avec effectuée. Dernière synchronisation : +Le certificat de sécurité du site n'est pas encore valide ! +Ouverture de session par carte à puce Microsoft +Format +Tapez votre requête ou saisissez une URL pour commencer la navigation : c'est à vous de choisir. +Enregistrer &sous... +Le serveur requiert un nom d'utilisateur et un mot de passe. +Supprimer tous les mots de passe +Le certificat du serveur contient des erreurs. +Recherche de réseaux Wi-Fi... +Description : +Séparateur +Si vous supprimez l'un de vos propres certificats, vous ne pouvez plus l'utiliser pour vous identifier. +Rafraîchir cette page +État d'activation : +Créer des raccourcis vers des applications +Clavier franco-suisse +GUID de domaine Microsoft +Entrer +Supprimer +Échec de l'enregistrement de cet ordinateur pour l'accès à distance. +Ouvrir l'&image dans un nouvel onglet +Préférences... +L'administrateur a désactivé les mises à jour. +À propos de la version +Veuillez nous indiquer ce qu'il se passe avant d'envoyer votre rapport. +Connectez-vous à afin de générer une clé pour . +Clavier roumain +Autres +Sécurité : +Imprimer +Mode de saisie standard +Signature +Erreur lors de la connexion +Pour cette session uniquement +Une erreur s'est produite. +(Désactivé par une stratégie d'entreprise) +Erreur lors de la tentative d'impression. Vérifiez votre imprimante et réessayez. +Grec +Ignorer les exceptions et bloquer l'enregistrement des cookies tiers +Cet outil vous permet de sélectionner une capture d'écran enregistrée. Aucune capture d'écran n'est disponible pour le moment. Appuyez simultanément sur Ctrl et sur la touche "Mode Présentation" pour enregistrer une capture d'écran. Vos trois dernières captures apparaissent ici. +Activation effectuée +Aucun système de révocation trouvé +Bouton +Interrompu +Dictionnaire de symboles +Technologie EvDo requise +Internet mobile +Envoyer le commentaire +Associé au profil Chrome . Dernière synchronisation : +Carte de crédit (autre) +Langues et saisie +Utiliser la barre de titre et les bordures de fenêtre du système +Ann&uler + () +Le serveur a refusé d'exécuter la demande. + Ko + a été mis à jour vers la version . +Navigateur de contenu +&Rouvrir la fenêtre fermée +Se connecter directement à Internet +Émis pour +Ouverture de en cours +Cibles disponibles pour l'image +Signaler un problème +Taille de police : +Aide pour la configuration de proxy +Petite + hours ago +Rester sur cette page +Type de bug : +Inclure cette URL : +Cookies et données de site... +Police Serif +Avertissement : ne peut pas empêcher les extensions d'enregistrer votre historique de navigation. Pour désactiver cette extension en mode navigation privée, désélectionnez-la. +ChromiumOs Image Burn +Services +Paramètres du proxy... +1 onglet +Vous naviguez en tant qu'invité. Les pages que vous consultez dans cette fenêtre n'apparaîtront pas dans l'historique de votre navigateur ni dans votre historique des recherches. Les autres traces telles que les cookies seront supprimées de l'ordinateur à la fin de votre session. En revanche, les fichiers téléchargés et les favoris créés seront conservés. + + En savoir plus sur le mode invité +Chargement des pages impossible +Inclure cette capture d'écran : +Certificat +&Effacer les données de navigation... +Valeur de signature du certificat +URL de renouvellement du certificat Netscape +Afficher la s&ource + - , +Reprendre + secs ago +Activé +Carte SIM désactivée +Compatibilité avec VPN +Développement - Instable +Échec de création du raccourci vers l'application +Barre de favoris +Le serveur est en mesure de répondre à la demande. +Modifier les paramètres du proxy... +(non empaquetée) +Rechercher le suivant +Paramètres réseau +Votre service Internet mobile est activé et prêt à l'emploi. +Modifier la police et la langue par défaut des pages Web +Composition graphique avec accélération matérielle +Autre nom de l'émetteur du certificat + +&Afficher le code source du cadre +Mode de saisie du persan (clavier ISIRI 2901) +OpenVPN +Arrêter le processus +Votre compte a peut-être été supprimé ou désactivé. Veuillez vous déconnecter. +Authentification anonyme : +Bases de données indexées +En savoir plus sur les escroqueries par phishing +Page à l'apparence anormale +Adresse e-mail ou mot de passe incorrect. Essayez tout d'abord de vous connecter à un réseau. +Périphérique +Informations sur la connexion +Confirmer la navigation +Nom du point d'accès : +Rechercher +Au démarrage +Paramètres... +Lire en un clic +Connectez-vous à pour vous authentifier auprès de avec votre certificat. +Votre administrateur informatique a désactivé certaines options. +Supprimer le certificat de serveur ""? +Configurer la synchronisation... +Valider automatiquement une chaîne +Empreinte SHA-256 +Retour +Réseau domestique, sans itinérance + - +Gérer les mots de passe enregistrés... +Sélectionnez + + Menu clé à molette > Options > Options avancées > Modifier les paramètres du proxy > Paramètres réseau + + et désélectionnez l'option "Utiliser un serveur proxy pour votre réseau local". +Ne jamais traduire ce site +(suite) +Trop de redirections +Ces paramètres ne peuvent être modifiés que par le propriétaire : +Active la protection XSS Auditor de WebKit (protection contre le Cross-site Scripting), une fonctionnalité qui vous protège de certaines attaques de sites malveillants et offre une sécurité accrue, mais qui n'est pas compatible avec tous les sites Web. +Clavier latino-américain +Phishing détecté ! +Voulez-vous utiliser () pour gérer les liens :// à partir de maintenant ? + (Navigation privée) +Prendre une photo +Non merci +Ne pas afficher les images +Toujours autoriser ces plug-ins sur +Sélectionner un dossier +&Paramètres +Informations sur l'erreur : +Toujours autoriser les plug-ins sur +Effacer les données de saisie automatique enregistrées +Changer de moteur de recherche +En attente du tunnel proxy... +Veuillez ajouter un autre mode de saisie avant de supprimer celui-ci. + secondes +Paramètres de contenu +Impossible d'extraire les fichiers de l'extension. Pour effectuer cette opération en toute sécurité, vous devez disposer d'un chemin d'accès à votre répertoire de profils commençant par une lettre de lecteur et ne contenant ni jonction, ni point de montage, ni lien symbolique. Aucun chemin de ce type n'existe pour votre profil. + va être installé. +Code postal +En bas à droite +&Ouvrir + téléchargé(s) sur +Commentaires d'ordre général/Autres +Ou&vrir la vidéo dans un nouvel onglet +Identité : +Échec de l'opération OTASP +Action sur la page +Modifier des éléments... +Le répertoire d'extensions est obligatoire. + Mo disponibles +Ancien + fournit du contenu provenant de , un site connu pour distribuer des logiciels malveillants. Votre ordinateur pourrait être infecté par un virus si vous consultez ce site. +Ces fonctionnalités expérimentales sont susceptibles d'être modifiées, interrompues ou supprimées à tout moment. Nous ne fournissons aucune garantie quant aux effets de leur activation. Votre navigateur pourrait bien prendre feu. Trêve de plaisanterie, il est possible que votre navigateur supprime toutes vos données ou que votre sécurité et votre vie privée soient compromises de manière inattendue. Nous vous prions d'agir avec précaution. +Configuration manuelle du proxy +Mettre à jour Adobe Reader maintenant + days ago +Désactiver les plug-ins individuels... +Envoyer une capture d'écran de la page en cours +Point d'exclamation + n'est plus à jour, car il n'a pas été relancé depuis quelque temps. La mise à jour disponible sera installée dès que vous le relancerez. +Petit problème... Tentons de le résoudre. +Cette fonctionnalité permet d'établir des correspondances entre les sous-chaînes et plusieurs fragments d'URL figurant dans l'historique. +Page "Nouvel onglet" expérimentale +Les cookies suivants étaient autorisés lorsque vous avez consulté cette page : +votre opérateur +Activer ces fonctionnalités... +Quitter Firefox avant l'importation +Ajouter un nouveau téléphone +Proxy HTTP sécurisé +Accès à refusé. +Finalisation de la mise à jour du système... +Voulez-vous continuer ? + Ko ( Ko effectifs) +Autre réseau Wi-Fi... +Choisir un autre répertoire... +L'extension indiquée est déjà associée à une clé privée. Utilisez cette clé ou supprimez-la. +Ajouter une adresse +Stockage local +Afficher tous les téléchargements +Navigateur de contenu +Magasin de certificats +Émis par +Quitter le mode plein écran () +Le certificat du serveur a été signé avec un algorithme de signature faible. +Ajouter un utilisateur +Me proposer de traduire les pages qui sont écrites dans une langue que je ne sais pas lire +Récemment fermés +Saisir la clé de déverrouillage du code PIN + jours +Rechercher du texte +Sans-Serif +Zoom &avant +Confirmer le nouvel envoi du formulaire + heure +Cet élément doit être installé depuis . +Mise en veille ou reprise +Mettre à jour maintenant +Ajouter une page +Chiffrer seulement +Ne jamais intervertir les touches de modification +Conversion des numéros spéciaux +Relancer maintenant +Synchronisation avec effectuée +il y a  minute +Édition +Préférences synchronisées + hours ago +Personnalisé +Rechercher à partir de la barre d'adresse +Ouvrir +Inspecter les vues actives : +Contraintes de nom du certificat +Ajouter une adresse +Mot de passe incorrect. +Statistiques avancées +Clavier espagnol +Sélectionnez votre réseau + jour +Le serveur de synchronisation est occupé. Veuillez réessayer ultérieurement. +Quitter cette page +Naviguer en tant qu'invité +Discover +&Toujours afficher la barre de favoris +Options de recherche +Taille : +il y a  secondes +La liste suivante fait état des éléments dangereux détectés sur la page. Cliquez sur le lien "Diagnostic" pour obtenir plus d'informations sur une ressource particulière. Si une ressource a été signalée comme site de phishing alors que vous êtes certain de sa fiabilité, cliquez sur le lien "Signaler une erreur". +Cette page rédigée dans une langue non identifiée a été traduite en . +Les exceptions ci-dessous s'appliquent uniquement à la session de navigation privée actuelle. +Ne plus afficher la boîte de dialogue pour les liens de ce type + secondes restantes +Insérez dans l'URL où les termes de recherche devraient apparaître. +En&registrer la vidéo sous... +Nom : +Si vous rencontrez des problèmes fréquents avec ce module, vous pouvez tenter d'y remédier en suivant la procédure ci-après : +Informations relatives au certificat +Activer l'onglet 7 +En savoir plus sur ce problème. +Version du matériel : +Le site Web à l'adresse contient des éléments provenant de sites qui semblent héberger des logiciels malveillants. Ces derniers peuvent nuire à votre ordinateur ou agir à votre insu. Le simple fait de visiter un site hébergeant ce type de logiciels peut infecter votre ordinateur. Ce site héberge également des informations provenant de sites signalés comme étant des sites de phishing. Ces derniers incitent les internautes à divulguer des informations personnelles en se faisant passer pour des institutions de confiance, telles que des banques. +Afficher la liste +Désactivez l'affichage des messages de confirmation et le blocage de l'envoi des formulaires. +Ce cadre a été bloqué, car il contient des éléments non sécurisés. +Tout +Kana +Gérer les mots de passe enregistrés... +Boîte de dialogue "Effacer les données de navigation" +Mettre à jour les extensions maintenant +Nouvelle application en arrière-plan installée +Envoyer une capture d'écran de la page actuelle +L'URL indiquée est incorrecte. +Un problème est survenu lors de l'affichage de la liste des imprimantes. Certaines de vos imprimantes ne sont peut-être pas correctement enregistrées dans . +Actuellement connecté +La page que vous recherchez a utilisé des informations que vous avez envoyées. Si vous revenez sur cette page, chaque action précédemment effectuée sera répétée. Souhaitez-vous continuer ? +Cette fonctionnalité indique la vitesse d'affichage réelle d'une page, en images par seconde, lorsque l'accélération matérielle est active. +E&xporter... +&Ouvrir un fichier... +Configurer le contrôle d'accès pour vos périphériques +Ouvrir un rapport de phishing +Activer la barre d'adresse + secs ago +Cartes de paiement +Code opérateur : +Erreur de connexion +Vous avez la possibilité de désactiver ces services. +Essayer d'afficher la page malgré tout +Impossible d'établir une connexion sécurisée avec le serveur. Le serveur a peut-être rencontré un problème ou exige un certificat d'authentification du client dont vous ne disposez pas. +Ajouter un nouveau nom +Obtenir d'autres thèmes +Rétablir les valeurs par défaut +Aucun Plug-in installé. +Action +Extensions de fichier +Les plus visités +&Gestionnaire de favoris +Caches des applications +Cette langue est actuellement utilisée par . + % +Empaqueter l'extension +Activer l'onglet 5 +Sélectionner le mode de saisie précédent +Configurer le blocage de JavaScript... +Réseaux mémorisés +Impossible de se connecter à Internet. +URL incorrecte +Informations sur la sécurité +Impossible d'installer l'application, car elle est en conflit avec "", qui est déjà installé. +Votre périphérique n'est pas connecté. +Fermer +Accord de la clé + mins ago +Vous ne trouvez pas ce que vous recherchez ? +Désactivez l'envoi des pings de contrôle des liens hypertexte. +En&registrer le fichier audio sous... +Accédez rapidement à vos favoris en les ajoutant à la barre de favoris. +Vérifier la grammaire et l'orthographe +Épingler les onglets +Sélectionner par type d'application +assembler + souhaite devenir votre moteur de recherche. +Utiliser l'historique d'entrée +Fermer les onglets +Voici quelques suggestions : +Sélectionnez un ou plusieurs fichiers +Afficher le panneau de la &vérification orthographique +Veuillez relancer . +Sans titre +Pour saisir du texte, sélectionnez une langue et consultez la liste des modes de saisie disponibles. +Ville +Modifier... +Réinitialiser la synchronisation +Inclure une capture d'écran enregistrée : +Tout supprimer +Passer automatiquement en demi-chasse +&Accéder à +La capacité de ce périphérique de stockage est de . Veuillez insérer une carte SD ou une clé USB d'au moins 4 Go. +Rouvrir le dernier onglet fermé +(blocage) +Erreurs () +Traitement de la sélection... +Aide +Désolé ! La visionneuse de documents PDF intégrée à Google Chrome, nécessaire à l'affichage de l'aperçu avant impression, n'est pas incluse dans Chromium. +Impossible d'ouvrir , car vous êtes déconnecté du réseau. Cette page s'affichera dès que la connexion réseau sera rétablie. <br> +Télécopie +version +La passerelle ou le serveur proxy a reçu une réponse incorrecte d'un serveur en amont. +Nouvelle fenêtre ouverte dans la session du navigateur +Réessayer + peut maintenant synchroniser vos mots de passe. Vos données seront chiffrées avec le mot de passe de votre compte Google ou le mot de passe multiterme de votre choix. +Les paramètres réseau de votre proxy sont gérés par une extension. +Retirer l'onglet +Valable du au +Case cochée +Mode de saisie +AVERTISSEMENT +Clavier estonien +Ajout de bordures aux couches de rendu composées +Imp&rimer... +Paramètres de saisie automatique +Rafraîchir +Barre d'outils +Nom de la base de données : +Certificat du répondeur d'état +Utiliser le mot de passe de mon compte Google +Vos favoris sont maintenant synchronisés avec Google Documents ! +Pour fusionner et synchroniser vos favoris dans sur un autre ordinateur, procédez de la même manière que précédemment sur l'ordinateur voulu. +Renommer... + a été désactivé. Si vous arrêtez la synchronisation des favoris, vous pouvez la réactiver sur la page des extensions, via le menu Outils. +Affichage des pages impossible +Utiliser par défaut +La carte SIM est verrouillée. Veuillez saisir votre code PIN. Nombre de tentatives restantes : +Point-virgule +Réseau domestique requis +PKCS #7, certificat unique +Langues baltes +Vous avez saisi un trop grand nombre de clés de verrouillage du code PIN incorrectes. Votre carte SIM est définitivement désactivée. +Données de diagnostic système +Page Web, contenu HTML uniquement +Continuer » +Gérez vos imprimantes. +(Choisir un problème dans la liste ci-dessous) +&Afficher le code source du cadre +Authentification du client WWW TLS +Les cookies de plusieurs sites sont autorisés. +Impossible d'afficher la page de la barre latérale "". +Vous avez acheté de données le . +Enregistrer le mot de passe +Configurer... +Mode de saisie du pinyin +Intervertir les touches Ctrl et Alt de gauche +Confirmer le mot de passe multiterme +Activer +Ajouter... +Voulez-vous que Google Chrome enregistre ces informations de carte de paiement pour le remplissage de formulaires Web ? +Continuer à bloquer les fenêtres pop-up +Échec de la vérification DHCP +Choisir un autre dossier... +Le profil semble être utilisé par le processus sur l'hôte . Si vous êtes certain qu'aucun autre processus n'utilise ce profil, supprimez le fichier et relancez . +Chinois traditionnel +Effacer les données de navigation... +Ré&activer le son +Aucun réseau trouvé. +&Ouvrir le fichier audio dans un nouvel onglet +&Méthodes d'entrée +Onglets ou fenêtres +Toutefois, cette page inclut d'autres ressources qui ne sont pas sécurisées. Ces ressources peuvent être consultées par des tiers pendant leur transfert, et modifiées par un pirate informatique dans le but de changer le comportement de cette page. +Automatique +&Extensions +Roumain +Paramètres du réseau... +Changer... +Clé privée +Format : +Se connecter + : +Vous avez tenté de contacter , mais le certificat présenté par le serveur est incorrect. +Nouvelle fenêtre de nav&igation privée +La page à l'adresse indique : +Le serveur associé à n'a pas répondu à temps. Cela peut être dû à une surcharge. +L2TP/IPSec + Clé pré-partagée +XSS Auditor +Durée de validité +WebGL +Mot de passe multiterme erroné +Corriger automatiquement la saisie +Unité d'organisation +Compte Google +&Aide +Utiliser un service de prédiction afin de compléter les recherches et les URL saisies dans la barre d'adresse +Certificat du signataire de courrier électronique +En savoir plus +Vous avez enregistré vos imprimantes sur via le compte . +il y a  jours +: restantes +Cette page est enVoulez-vous la traduire ? +Saisie automatique des formulaires +Clavier ukrainien +Ouvrir tous les favoris dans une fenêtre de navigation privée +Ctrl + minutes +Le certificat de sécurité du serveur contient des erreurs ! +avec votre compte Google +Rechercher dans les favoris +MSCHAPv2 +Avertissement utilisateur +&Options du vérificateur d'orthographe +Échec de la connexion +Identifiant de l'erreur + jours restants +Émis par : +Mode de saisie du thaï (clavier Kesmanee) +Passerelle : +Chiffrement +Autre... +Pas avant le + n'a pas pu synchroniser vos données, car la connexion avec le serveur de synchronisation n'a pas pu être établie. Nouvel essai... +Me demander lorsqu'un site souhaite afficher des notifications sur le Bureau (recommandé) +Source : +Erreur de lecture du cache +Raccourci de sélection +Vérifier la révocation du certificat serveur +Vous rencontrez des problèmes lors de l'installation ? +Bêta +Pointeur de la déclaration CPS (Certification Practice Statement) +Le , vous avez reçu à utiliser librement. +Nom complet +Inscription d'entreprise +Clavier allemand +Impossible de lancer l'impression. +&Lire +Récent +Cette page Web présente une boucle de redirection. +Supprimer le certificat "" émis par l'autorité de certification ? +Mots de passe enregistrés +Moins +Options avancées +Vérifiez vos paramètres DNS. Contactez votre administrateur réseau si vous n'êtes pas sûr de vous. +Une erreur inconnue s'est produite. +Émetteur : +Passer d'un mode de saisie à l'autre +Organisation (O) +PKCS #1 SHA-1 avec chiffrement RSA +Entrez la requête de recherche ici. +Application en mode navigation privée : +La largeur de ponctuation initiale est Complète +Installer  ? +Installation d'une nouvelle version... +Ouvrir le lien dans un nouvel ongle&t +Pour accéder aux paramètres de sécurité, saisissez le code PIN de la carte SIM. +Jamais +Impossible d'accéder au réseau. +Effacer le formulaire +Échec de la mise à jour du système +Saisissez le mot de passe utilisé pour chiffrer ce fichier de certificat. +CHAP +Enregistrer le lie&n sous... +Effacer les données de navigation... +Options de reconnaissance vocale +Réseau câblé +Nouvel ongle&t +R&etour +Téléchargement suspendu +Ouvrir la page d'accueil +Connexion +L'installation de est terminée. +&Outils +Page d'accueil +Clavier phonétique bulgare +Cookies et données de site... +Batterie faible +Commentaires +Package incorrect : "". + heures restantes +Configurer les paramètres de blocage des images... +Options + hours ago +&Détails +Masquer la barre de titre du système et utiliser les bordures +Elle peut accéder aux éléments suivants : +Confidentialité +Objets : +Paramètres d'entrée du japonais +Sebeol-sik Final +Veuillez vous connecter à Internet pour continuer. +Afficher les &infos sur le cadre +Fichier +Cop&ier l'image +Utiliser le même proxy pour tous les protocoles +Masquer +Requête de protocole externe +Afficher +Certains de vos certificats enregistrés identifient ces serveurs : +Vous avez visité ce site pour la première fois le . +Cliquer pour avancer, maintenir pour voir l'historique +La dernière version de l'application "" requiert d'autres autorisations. Elle a donc été désactivée. + secondes +Vous avez choisi d'ouvrir automatiquement certains types de fichiers après leur téléchargement. +EAP-MD5 +&Nouvelle fenêtre ++ +Vous avez essayé d'accéder au site , mais le serveur a présenté un certificat signé avec un algorithme de signature faible. Il se peut que les informations d'identification fournies par le serveur aient été falsifiées. Le serveur n'est peut-être pas celui auquel vous souhaitez accéder (il peut s'agir d'une tentative de piratage). Nous nous déconseillons vivement de continuer. +L'envoi de rapports d'erreur est désactivé. +Clé WEP incorrecte +Date d'expiration : +URL de base du certificat Netscape +Réduire... +Rechercher dans l'historique +Ouvrir le lien dans la fenêtre de navi&gation privée + secondes +Historique avancé pour le champ polyvalent +Active l'utilisation de graphismes 3D dans les éléments canvas via l'API WebGL. +Occident +État non reconnu + +Impossible de vérifier si le certificat du serveur a été révoqué. +Se connecter +Fuseau horaire : +Cette option est soumise à une stratégie d'entreprise. Contactez votre administrateur pour plus d'informations. +Résultats de recherche pour "" +Revenir à "" (redémarrage requis) + va exécuter les tâches suivantes : +Ajouter la page +Changement de mode via la touche Maj +Options de date et d'heure... +Nom DNS +Build de développement + sur ... +Verrouiller la carte SIM (code PIN obligatoire pour utiliser les données mobiles) +Sélectionnez le répertoire racine de l'extension. +Les cookies de sont autorisés uniquement pour cette session. +Confirmer les préférences de synchronisation +RSN +Ajuster la conversion en fonction de l'entrée précédente +Afficher le panneau de la &vérification orthographique +(Revenir à la capture d'écran d'origine) +Mettre à jour & +SSID +- +Les informations de connexion au compte n'ont pas encore été saisies. +URL de configuration automatique +URL : +Avancer + jours restants +Vous avez choisi de ne pas synchroniser les mots de passe. Vous pouvez à tout moment modifier vos paramètres de synchronisation, si vous changez d'avis. +Lancer + + ne parvient pas à accéder au réseau. + + Il est possible que votre pare-feu ou votre antivirus considère + + comme un intrus dans votre ordinateur et qu'il bloque ses tentatives de connexion à Internet. +Ce certificat a été vérifié pour les utilisations suivantes : +Petit problème ! Une erreur est survenue lors de l'inscription de ce périphérique. Veuillez réessayer ou contacter votre représentant de l'assistance technique. +Ajouter aux favoris +Gérer les certificats... +Analyse du périphérique... +PYJJ +Web Store +Annuler l'épinglage des onglets +Favori +Sélectionnez votre langue : +Réessayer le téléchargement +Configurer la synchronisation des mots de passe +Nom d'utilisateur : +Enregistrer la p&age sous... +Vos données sur tous les sites Web +Un problème est survenu lors de l'extraction de l'image sur l'ordinateur. +Lancer l'application +Dubeol-sik +Remplacé +Afficher les cookies et autres données de site... +Si vous pensez avoir cerné les risques, vous pouvez . +Apparence +Créer des raccourci&s vers des applications... +Exécuter le flash PPAPI dans le processus du moteur de rendu +Définir en tant que navigateur par défaut +Veuillez choisir un nouveau code PIN. + () +Autre +&Options +Impossible de charger la page d'arrière-plan "". +À quel niveau rencontrez-vous des problèmes ? (Champ obligatoire) +Retour à la sécurité +Eten +Ce site répertorie tous ses certificats valides dans le système DNS. Un certificat non répertorié a cependant été utilisé par le serveur. +Options de reconnaissance vocale +Tout sélectionner +Impossible de charger le fichier "" pour le script de contenu, car ce fichier n'est pas codé en UTF-8. +&Annuler +Désactiver temporairement la personnalisation des conversions, les suggestions basées sur l'historique et le dictionnaire utilisateur +Les cookies de sont autorisés. +Au fil du temps, la zone ci-dessous affichera les huit sites que vous avez le plus visités. +Le plug-in a besoin de votre autorisation pour s'exécuter. +Échec de création de clé privée +Ouvrir tous les favoris dans une fenêtre de navigation privée +Placer dans la file d'attente +Erreur de certificat serveur inconnue +Mode de saisie du coréen +&Plein écran + + + Vous pouvez essayer de diagnostiquer le problème en procédant comme suit : + + +Bienvenue sur votre page d'accueil ! +Vos modifications seront prises en compte au prochain démarrage de . +Adresse du matériel : +Lecture seule +Erreur d'importation du certificat serveur +Données stockées localement +Tous les fichiers de vont être effacés. +Modèle du périphérique : +Afficher dans le Finder +Nom X.500 +Vous devez sélectionner au moins un type de données à synchroniser. +Tout afficher +Ouvrir tous les favoris +Clavier danois +Cette fonctionnalité permet de réaliser un rendu hors écran de la texture, au lieu d'un affichage direct. +Partiellement activé +Votre système Sandbox est correctement configuré. +Ne pas installer +Activer la recherche instantanée pour accélérer la recherche et la navigation +Utiliser par défaut +Non essentielle +Fenêtres pop-up +Dernière modification : +Désélectionné +Sécurité +Rechercher... +Le script de la page utilisait trop de mémoire. Rafraîchissez la page pour réactiver le script. +Signature du code individuel Microsoft +Mozilla Firefox +Page Web inaccessible +Recadrer l'image +Si vous fermez maintenant, le téléchargement sera annulé. +Coller +Retour +Impossible de graver l'image. +Mode de saisie du Chewing +Province +JavaScript a été bloqué sur cette page. +Remarque : Lorsque vous cliquez sur "Envoyer", Google Chrome OS + joint à votre envoi un journal des événements système de + votre périphérique. Ces informations nous permettent de diagnostiquer les + problèmes, de comprendre comment vous interagissez avec votre + périphérique et d'améliorer les performances de ce dernier. Les + informations personnelles fournies sciemment dans vos commentaires ou + involontairement dans les journaux système et la capture d'écran sont + protégées conformément à nos Règles de confidentialité. + Si vous ne souhaitez pas envoyer de journaux système, décochez la case + "Inclure les informations système". +Interdire à tous les sites de stocker des données +Trier par nom +Afficher un aperçu des onglets... +Annuler l'importation +Ce serveur envoie des données que ne comprend pas. Veuillez signaler un bug et inclure la liste des raw. +Calcul de la durée restante +Mode de saisie Google du japonais (pour clavier américain) +Envoi de la requête... +Parlez maintenant +Impossible d'installer le package : "" +Modèle : +Bloquer tous les cookies tiers +Remplacer par +Espace +Arrêt du fonctionnement +Préférences +Nom inconnu +Nom +Choisir un nouveau code PIN + [] +Erreur d'exportation de fichier PKCS #12 +Le répertoire racine de l'extension doit être indiqué. +Miniature supprimée +Tout développer... +Aie aie aie +Choisir les expressions en arrière-plan, sans déplacer le pointeur +Plu&s petit +Afficher le clavier en superposition +C&opier l'URL de l'image +OK +Aucun réseau détecté +Charger l'extension non empaquetée... +page +Active l'interface utilisateur et le code de support pour le processus du service de communication à distance, de même que le plug-in client. Avertissement : ce service n'est actuellement disponible que pour les tests de développeurs. Si vous ne faites pas partie de l'équipe de développement et ne figurez pas sur la liste blanche, aucun élément de l'interface utilisateur activée ne fonctionnera. +Clavier turc +Modifier le favori +Couleur +Personnaliser les paramètres de synchronisation... +Activation de votre service Internet mobile + +Ouvrir dans un onglet standard + - +Portrait + days ago +Active un service en arrière-plan qui connecte le service aux éventuelles imprimantes installées sur cet ordinateur. Une fois ce labo activé, vous pouvez lancer en vous connectant à votre compte Google via Options/Préférences dans la section Options avancées. +Outils de &développement +Le répertoire racine de l'extension est incorrect. +ID de clé de l'objet du certificat +Téléchargements +Le stockage du certificat client généré par a réussi. +Sélectionnée +Suspendre +Taille sur le disque : +ID du processus +Réduire +Expire le +Votre administrateur a désactivé l'accès aux fichiers locaux sur votre ordinateur. +Erreur de connexion SSL +Envoyer +Virgule +&Pause +Parcourir... +Mode de saisie Google du japonais (pour clavier Dvorak américain) +Police à largeur fixe +Stockage de session +Page en arrière-plan : +Le serveur a renvoyé un certificat client incorrect. Erreur  () +Signature de document Microsoft +Bloqué +Gérer les paramètres d'impression... +Cette page Web a désactivé la saisie automatique dans ce formulaire. +Clavier hongrois +Les versions en développement permettent de tester de nouvelles idées, mais elles peuvent s'avérer très instables. Nous vous prions d'agir avec précaution. +Ajouter un dossier... +Mode de saisie du japonais (pour clavier Dvorak américain) +Signaler un bug +&Toujours ouvrir les fichiers de ce type +Disque optique +Nom commun +Très grande +Modification terminée +Objet +Opérateur : +Algorithme de signature du certificat +Cette fonctionnalité permet d'afficher un onglet d'aperçu avant de lancer une impression. +Autre nom de l'objet du certificat +Activer la saisie automatique pour remplir les formulaires Web d'un simple clic +Le site Web à l'adresse a été signalé comme étant un site de phishing. Ces sites tentent d'amener les internautes à divulguer leurs informations personnelles en se faisant passer pour des institutions de confiance, telles que des banques. +Rechercher directement sur +Connectez-vous à pour exporter le certificat client. +Créer un compte Google maintenant +État Sandbox +Retirer de la liste +rapide +&Effacer les données de navigation… +Vérification des mises à jour... +Télécharger les mises à jour de sécurité essentielles +Package incorrect. Détails : "". +Continuer à bloquer les cookies +Ligne de commande +Coller l'URL et y a&ccéder +Désactiver +Build officiel +Se connecter à un réseau Wi-Fi +Périphérique inconnu +Supprimer les cookies et autres données de site +URL saisies +Utiliser les touches , et . pour paginer une liste d'entrées +Vider la mémoire +Supprimer les éléments sélectionnés +Toujours +de moins d'une heure +Aucun réseau n'est disponible. +Supprimer les cookies et autres données de site et de plug-in +Intervertir les touches Rechercher et Ctrl gauche +Faites glisser trois doigts sur la surface de votre trackpad pour afficher un aperçu de tous vos onglets. Cliquez sur une vignette pour la sélectionner. Idéal en mode plein écran. +Nouveau ! Configurer la synchronisation des mots de passe +Échec de la tentative de connexion au serveur +Désactiver les notifications de +Les fichiers suivants ont été créés : + +Extension : +Fichier de clé : + +Conservez votre fichier de clé en lieu sûr. Vous en aurez besoin lors de la création de nouvelles versions de l'extension. +&Oui +Ouvrir les fichiers +Clavier suédois +Mémoire JavaScript +Quitter le mode plein écran +Hiérarchie des certificats +Afficher l'onglet existant si l'URL associée est demandée dans un autre +&Afficher +Vos données personnelles sur , et sur  autres sites Web +SMS de +Afficher la s&ource +Zoom arrière +C&opier l'URL du fichier audio +Importer et associer au périphérique... +() () +Plug-ins (par ex. Adobe Flash Player, QuickTime, etc.) +Empaqueter l'extension... +Vérifier l'orthographe lors de la frappe +Échec de la traduction en raison d'un problème de connexion réseau +Code PIN incorrect. Veuillez réessayer. Nombre de tentatives restantes : +Vous pouvez effectuer une recherche directement à partir du champ ci-dessus. +Ajouter les expressions au premier plan +Lorem ipsum dolor sit amet, consectetur adipiscing elit. +Opérateur +Confirmer l'installation +(Mot clé : ) +Sensibilité : + diff --git a/tools/grit/grit/testdata/generated_resources_iw.xtb b/tools/grit/grit/testdata/generated_resources_iw.xtb new file mode 100644 index 0000000000..86b55334c0 --- /dev/null +++ b/tools/grit/grit/testdata/generated_resources_iw.xtb @@ -0,0 +1,4 @@ + + + + diff --git a/tools/grit/grit/testdata/generated_resources_no.xtb b/tools/grit/grit/testdata/generated_resources_no.xtb new file mode 100644 index 0000000000..913638ba4e --- /dev/null +++ b/tools/grit/grit/testdata/generated_resources_no.xtb @@ -0,0 +1,4 @@ + + + + diff --git a/tools/grit/grit/testdata/grit_part.grdp b/tools/grit/grit/testdata/grit_part.grdp new file mode 100644 index 0000000000..c8e9d92692 --- /dev/null +++ b/tools/grit/grit/testdata/grit_part.grdp @@ -0,0 +1,5 @@ + + + + + diff --git a/tools/grit/grit/testdata/header.html b/tools/grit/grit/testdata/header.html new file mode 100644 index 0000000000..8e9d10ec50 --- /dev/null +++ b/tools/grit/grit/testdata/header.html @@ -0,0 +1,39 @@ + +[$~TITLE~$] + + + + +[EXTRA_META] + + \ No newline at end of file diff --git a/tools/grit/grit/testdata/homepage.html b/tools/grit/grit/testdata/homepage.html new file mode 100644 index 0000000000..cce4f2cf35 --- /dev/null +++ b/tools/grit/grit/testdata/homepage.html @@ -0,0 +1,37 @@ + +Google Desktop Search + + + + + + + + +
+ +
Google Desktop Search

+
+ + + +
+[$~LINKS~$] +
+ + + + + +
 
  Desktop Preferences
+

Search your own computer.

+[$~MESSAGE~$]
+
[$~SETHOMEPAGE~$][$~BOTTOMLINE~$]

+

©2005 Google - Searching [NUM_ITEMS] items

\ No newline at end of file diff --git a/tools/grit/grit/testdata/hover.html b/tools/grit/grit/testdata/hover.html new file mode 100644 index 0000000000..b8f9ce0200 --- /dev/null +++ b/tools/grit/grit/testdata/hover.html @@ -0,0 +1,177 @@ + + + + + + + + + + + + + + + + + + + + + + +
+Sidebar +Minibar +Close +
+ + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + + + + + +
  
+
+ + +
+ +
+
+ + + diff --git a/tools/grit/grit/testdata/include_test.html b/tools/grit/grit/testdata/include_test.html new file mode 100644 index 0000000000..e08f2e2e8a --- /dev/null +++ b/tools/grit/grit/testdata/include_test.html @@ -0,0 +1,31 @@ + + +should be kept + +in the middle... + +should be removed + + + +should be removed + + should be removed because outer expr is False + +should be removed + + + + + + nested true should be kept + + + should be removed + + + + silbing true should be kept + + +at the end... diff --git a/tools/grit/grit/testdata/included_sample.html b/tools/grit/grit/testdata/included_sample.html new file mode 100644 index 0000000000..7150ffcbea --- /dev/null +++ b/tools/grit/grit/testdata/included_sample.html @@ -0,0 +1 @@ +Hello Include! diff --git a/tools/grit/grit/testdata/indexing_speed.html b/tools/grit/grit/testdata/indexing_speed.html new file mode 100644 index 0000000000..db1787b0e2 --- /dev/null +++ b/tools/grit/grit/testdata/indexing_speed.html @@ -0,0 +1,58 @@ + +Google Desktop Search Index Speed + + + + + + + + +
+ Go to Google Desktop Search  + + + + +
+ + + + +
 Index SpeedIndex Speed + Help | About Google Desktop Search
+ +

+To make your emails, files, and previously viewed web pages searchable, Google Desktop Search +needs to index them. This indexing process is currently occuring in the background +and your computer performance is minimally impacted. +

+You have the option of speeding up this process. +

Warning: Speeding up indexing will cause your computer +to become unusable for many minutes, depending on how many items need to be indexed. FAST INDEXING IS NOT +RECOMMENDED. +
 
+

+ +
+

+ +
+
+ +

 
+ + + +
+ + + + +
Google Desktop Search Home - Status - About Google Desktop Search - [$~BUILDNUMBER~$] - ©2005 Google

+ + \ No newline at end of file diff --git a/tools/grit/grit/testdata/install_prefs.html b/tools/grit/grit/testdata/install_prefs.html new file mode 100644 index 0000000000..eca0b56de5 --- /dev/null +++ b/tools/grit/grit/testdata/install_prefs.html @@ -0,0 +1,92 @@ + +Google Desktop Search: Initial Preferences + + + + + + + +

+ +
+
To continue, please set these initial preferences:

+ + + + + + + + + + + + + + + + + + + +
 
 
  +
+ + + + + + + + +
+ + +
Deskbar
+ + +
+
  +
You can change these and other preferences at any time.
+


+

+
+[SCRIPT] + + + \ No newline at end of file diff --git a/tools/grit/grit/testdata/install_prefs2.html b/tools/grit/grit/testdata/install_prefs2.html new file mode 100644 index 0000000000..18380397c2 --- /dev/null +++ b/tools/grit/grit/testdata/install_prefs2.html @@ -0,0 +1,52 @@ + +Indexing has Started + + + + + + + +
+

+
+
+One-time indexing has started.

+An index is being prepared on your computer to allow you +to search your information as fast as you can search the web.

+
  • This is a one-time process that may take several hours. +
  • You may continue to use your computer as usual and it is safe to shut down your computer. +
  • Indexing will be performed only when your computer is idle. + + +


    + +

  • + +
    + +[SCRIPT] + \ No newline at end of file diff --git a/tools/grit/grit/testdata/klonk-alternate-skeleton.rc b/tools/grit/grit/testdata/klonk-alternate-skeleton.rc new file mode 100644 index 0000000000000000000000000000000000000000..5f2c82a55469ddaab246c095826ad9e6743c0015 GIT binary patch literal 1088 zcmbW0Pfr3t48`AhKZV)z#sGrI5!gjnU?DC>IT2z!82=r_L=!)}zjnmk5b$6oGo9&7 z+t=4lu9UG-Ujxl_t%b{59ih$9PSBn!lW7`iGrKMm&Q10vTRK5!yRJHlRN`fcWril@ zv|?uHM))d_NBa7`nW9TQ&PZ3tsax6ojav@U&9TYdHduz6k{G4GFTfpX_hk&`!z0F` z!gJ>6WBh&UO&i_oS+VOvUfcD9JR=y&;3OxP2%KT$#JB9W=UtgQpDT@>(E^#^A;oG% z4omjIK7rLXcRgmyS+%u_Gl2`MhOxMB{GGM&5o6cXFE~=G z`!#F5=z%_bq95y7+aIx?IdcSN`A)xX^vZjCS7lnS#=iZ)E7W%eX8!kr-#RDO36^!o Qqn&wY8qX0d7T}2V4SbP+*8l(j literal 0 HcmV?d00001 diff --git a/tools/grit/grit/testdata/klonk.ico b/tools/grit/grit/testdata/klonk.ico new file mode 100644 index 0000000000000000000000000000000000000000..d371b214dc366249870efccc5da278d023aa91f1 GIT binary patch literal 766 zcmeH_F%H5o5CqSFL>Ve71Sxq1;TtsMEB*!Fv6LbmDQFSUL1mXjO7OC0gpl|G?B1ML zXS=a1V(2`di0U>FnQ~o{oUDnF5j(}bxAgSuhE8lMu~rkI8Ju%mb%Im^Xd<+ZwEgwd zFTg+WQOj5lfvO*4mbEA^bCj9KHh65vjx^zvsKW{eA8|Ah`w&r;%!`QgmEiG3hXCcC L+@V2V6oA7MJIRBx literal 0 HcmV?d00001 diff --git a/tools/grit/grit/testdata/klonk.rc b/tools/grit/grit/testdata/klonk.rc new file mode 100644 index 0000000000000000000000000000000000000000..35652c4e6dd7cf7b7f62f637e191acf66f487235 GIT binary patch literal 9824 zcmeI2+j1L48poSUd1!LS!j6*Z-q>7MTIeClrf{=b{yW=KLKoQA`29(tkA z?@<`g*P*W;F2X@LqqP?P!IgxQa2&e)&gmcUJfiQMr{-PocF21|OVCckGsY~31#sNt zeuJJaU(OhLWaHAYxy#{kNExfq8uQ5J2xc`jLo2kyURV$HuoL#fZm7|_&ii)Q3SZFE z;@$|W^lb4S@e23#yIdxsED4)%Ix5vi$fg&b@^yerB!M>k-sfJ2-!(XtBx>~E;y0>; zywqpO@eUBz4c2yv49m3k+_Z88eb3Rg>+A-4?GCk8rmyLEuD7;k@iyBQuQz|u4r}P| z1pk!hKgO!w#>STMq~-8ViH-G#etL?RCgF{OzaBBS8aA-k=%+1wau1JP!(#WbwJk2e z{FW=3II|6mUA$wTS=-Ei$KrzUMVn6ea?kwXHeRp*%qrtH8Cm5n-|(IYVUuHA@wRN;~7h6y+xyz_&R~;+XxM^eZ-_q~|%%b86_{3Asa-8FBk+Z7c-kJgN>UjHR zv*J6C_vNv`hUxGkXMvL0T0vKhVQf$p6QjfeUR}fgl_wW2W!gk%O?IOa`tbcYLDwE{AY?>BR88vkIj3pcp9ftwy~b;A8i-;T|_p=$nY5yWU!`jTE^ib ze*F+mE-Vf$>e;=5g*fg0^w_NUeElxZA2EAWiGRui^1Zl<=<)P1 zF&Y;=yo$%KVIA>VGwa=@)kgQbrt31jq~WuvvL2VO`$zNqGSmHCaU;Y2q0yQ$JF7mTwL~ub{sOMb^Vh8GFZ(K1F-x>#wroJR z&tF1@??TN-{BD^HbgJ;mLeTx&a ztSZO1p-!t5NvMLINn_JEi1N%h$mrKfeZ%Sxtv*(Sq%E`|5` zMQa!2rJ*fu!l%|$%^a7pE^XVFE$AM-((pNcct~BK8YqR1Sd~Aqmi*&@D)rQ&bN`YW zMPvC%+;<0?G_uSf2bldXz_x`Rp$tXUa07m0#5g^O>n*TJE4PW#|}5_jztxOjO*+fAM}< zk=Lii5sD#879SKTSIp++>5AlgXumxIv246U-XKqCe;}^ATDIP+P{%8`Yynw2Uilpc z$xha}X;{ahB+#YVajq(xJ|2|kCBqoURxZc-PCWGR&NeH+c%h>-Yw>z7_{+>=5WWql;yg~F}V-&+XR>jna$uG|ylUKW)Rw*m^ z_oOjp@vHny>%lMrW)jt@&DG$}J`tOC!twxncz`|R{U9wplS^%1SD7h)zLPS$9KxSJ z^(luqF00#DmestFZxDq%2fL5@KE>#HI|)#R(g69An@YFD|(_t^K?Y(=LYvGR$s)LKbvaYc(JPp$Xb2G?a>eC9KE-cEhZ zHSZ3+_C$Rze-w`BSsn7ZgI%TJO=9FfdDBy)V;pqaYpnOHjNdZ)cZhIWOV;71NPE_b z5ZwYd@EV=tI))^?mN>3>KBO~=3-s|NvQu_bO!m`Xy&s`1RS8A9bec9lO`@(ym$)sX zMVVq?wjta)kvTJp%Bk>bSh}4@HcmwuW}T<$ta~!gT03ja*d|hI1w9*Uk>}TwPvL12 z=Q{J$UgQ8RXmu+(2GDd)J#{>6mrEh;W{57|8=6JgB)U>?#`vQXEaBEZgsP}6H0c~I zlTn_wQLB~3>U1IQ2y}Rh=cM|##66Rnd!p7F(K=LbM6B`LtO3?OS3Ko>03~gD6g5tu zOSRooa>4*SqvO;gSO;d)IuFc4e&rSY3#4arR~e}tmqXie5w!0rzg2#y{KWm2%CD85 zD?e8LTlv1?UR>st9pKlDtGM^mfuA&df=7MIT`QQ#k8mnxoriygx5#|&^UZ&6F?Nx! z2jMH^+zTJm>H?vU#6L!6XLz9~{RHheL_xo4SVUcx*(c|e8ZfVRzJC37^PM7DoUXW9 zRu0v_b;|ztF`73W!u5N4HWX!l^ZH1;i+3m{&0Ya4gg*c` C>9bG( literal 0 HcmV?d00001 diff --git a/tools/grit/grit/testdata/ko_oem_enable_bug.html b/tools/grit/grit/testdata/ko_oem_enable_bug.html new file mode 100644 index 0000000000..f2c199cc15 --- /dev/null +++ b/tools/grit/grit/testdata/ko_oem_enable_bug.html @@ -0,0 +1 @@ +아웃룩 \ No newline at end of file diff --git a/tools/grit/grit/testdata/ko_oem_non_admin_bug.html b/tools/grit/grit/testdata/ko_oem_non_admin_bug.html new file mode 100644 index 0000000000..b9e8a1f288 --- /dev/null +++ b/tools/grit/grit/testdata/ko_oem_non_admin_bug.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tools/grit/grit/testdata/mini.html b/tools/grit/grit/testdata/mini.html new file mode 100644 index 0000000000..8ac0a231a0 --- /dev/null +++ b/tools/grit/grit/testdata/mini.html @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + +
    + + + + + + + + +
      
    +
    +
    diff --git a/tools/grit/grit/testdata/oem_enable.html b/tools/grit/grit/testdata/oem_enable.html new file mode 100644 index 0000000000..db6b85eca6 --- /dev/null +++ b/tools/grit/grit/testdata/oem_enable.html @@ -0,0 +1,106 @@ + +Google Desktop Search Download + + + + + +
    + + + + + +
    +
    Google Desktop Search
                Search your own +computer.

    + + + + + +
    +
  • Find your email, files, web history and chats instantly +
  • View web pages you've seen, even when you're not online +
  • Search as easily as you do on Google +

    Google Desktop Search finds:

    + + + + + + + + + + + +
    Outlook  Email from Outlook, Outlook Express, & + Thunderbird
    Internet Explorer  Web history + from IE/Firefox/Mozilla/Netscape
    Text  Files in Word, + Excel, Powerpoint, PDF, & media formats
    AOL IM  Chats from AOL + Instant Messenger
     
     About Desktop + Search   Screenshots   + Help   Contact + Us
  •     + + + +

    +
    By using, you agree to our
    Terms & + Conditions
    and Privacy + Policy
    +

    +
    +

    +

    * Automatically starts when you turn on + your computer
    +

    +

    +
    ©2005 Google +

    diff --git a/tools/grit/grit/testdata/oem_non_admin.html b/tools/grit/grit/testdata/oem_non_admin.html new file mode 100644 index 0000000000..8b7ca13e21 --- /dev/null +++ b/tools/grit/grit/testdata/oem_non_admin.html @@ -0,0 +1,39 @@ + +Google Desktop Search Preferences + + + + + + + + + + +
    +
    +


    We're sorry, but you need administrator access to +enable Desktop Search.

    +

    To install or run Google Desktop Search you need administrator access on this +computer. Please try installing again once you have administrator +access.

    +


    +
    diff --git a/tools/grit/grit/testdata/onebox.html b/tools/grit/grit/testdata/onebox.html new file mode 100644 index 0000000000..c24ff043a5 --- /dev/null +++ b/tools/grit/grit/testdata/onebox.html @@ -0,0 +1,21 @@ +Google Desktop Search Results + + + + + + + + + + diff --git a/tools/grit/grit/testdata/oneclick.html b/tools/grit/grit/testdata/oneclick.html new file mode 100644 index 0000000000..32dc6459dd --- /dev/null +++ b/tools/grit/grit/testdata/oneclick.html @@ -0,0 +1,34 @@ +[HEADER] + + + + + + + + + + +
    + [EMAIL_TOP_CHROME] + +

    + + [EMAIL] +
    +

    + [FREQ_TOP_CHROME] +

    + + [$~FREQ~$] +
    +

    + [RECENT_TOP_CHROME] + + [$~RECENT~$] +
    +

    +

    + + +[FOOTER] diff --git a/tools/grit/grit/testdata/password.html b/tools/grit/grit/testdata/password.html new file mode 100644 index 0000000000..16007a1ac0 --- /dev/null +++ b/tools/grit/grit/testdata/password.html @@ -0,0 +1,37 @@ + +Password Required + + + + + + + + +
    + +
    Google Desktop Search

    +
    + + +
    + + + +
    Password required:   + +   +
    + +
    +
    [$~BOTTOMLINE~$]

    +

    ©2005 Google

    \ No newline at end of file diff --git a/tools/grit/grit/testdata/preferences.html b/tools/grit/grit/testdata/preferences.html new file mode 100644 index 0000000000..b37412436b --- /dev/null +++ b/tools/grit/grit/testdata/preferences.html @@ -0,0 +1,234 @@ + +Google Desktop Search Preferences + + + + + +
    + + + + +
    +Go to Google Desktop Search  + + + + +
    Preferences +Preferences Help +
    + +
    + + + + +
    +Save your preferences when finished.
    + +[STATUS-MESSAGE] + + +
    Preferences (changes apply to Google Desktop Search application)
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Search types
    Index the following items so that you can +search for them:
     
    +
    + + + + + +
    +
    +
    + + +
    + + +
    + +
    + +
    +
    + +
    + +
    +

    + +
    +
    +
    Plug-ins
    Index these additional items:

    +[ADDIN-DO] +[ADDIN-OPTIONS]

    +To install plug-ins to index other items, visit the +Plug-ins Download page.
    +
    Don't search these items
    +
    +c:\Documents and Settings\username\Private Stuff
    +http://www.domain.com/
    +
     
    +
    +
    Search Box Display + + + + + + + + + + +
    + + +
    Deskbar
    + + +
    + + + +
    + +
    Number of Results +
    Google integration + + + +
    + Your personal results are private from Google. +
    +
    Help us improve + +
    + + + + +
    Save your preferences +when finished.
    + +

    [$~BOTTOMLINE~$]
    +
    ©2005 Google
    +
    \ No newline at end of file diff --git a/tools/grit/grit/testdata/preprocess_test.html b/tools/grit/grit/testdata/preprocess_test.html new file mode 100644 index 0000000000..13ece9a9f6 --- /dev/null +++ b/tools/grit/grit/testdata/preprocess_test.html @@ -0,0 +1,7 @@ + +should be kept + +in the middle... + +should be removed + diff --git a/tools/grit/grit/testdata/privacy.html b/tools/grit/grit/testdata/privacy.html new file mode 100644 index 0000000000..1d45f4a539 --- /dev/null +++ b/tools/grit/grit/testdata/privacy.html @@ -0,0 +1,35 @@ +[!] +title Privacy and Google Desktop Search +template +privacy_bottomline +hp_image + + + +
    +

    Privacy and Google Desktop Search

    + +

    Google is committed to making search on your desktop as easy +as searching the web. We recognize that privacy is an important issue, +so we designed and built Google Desktop Search with respect for your privacy. +

    +So that you can easily search your computer, the Google Desktop Search application indexes +and stores versions of your files and other computer activity, +such as email, chats, and web history. These versions may also be mixed +with your Web search results to produce +results pages for you that integrate relevant content from your computer and +information from the Web. +

    +Your computer's content is not made accessible to Google or anyone else without your explicit permission. + +

    You can read the +Privacy Policy +and Privacy FAQ online. + +

    + +

    + +
    +[$~PRIVACY_BOTTOMLINE~$] - ©2005 Google +
    \ No newline at end of file diff --git a/tools/grit/grit/testdata/quit_apps.html b/tools/grit/grit/testdata/quit_apps.html new file mode 100644 index 0000000000..a501b0e2bf --- /dev/null +++ b/tools/grit/grit/testdata/quit_apps.html @@ -0,0 +1,49 @@ + +Google Desktop Search Preferences + + + + + + + + + + +
    +
    +


    To start using Google Desktop Search, we may need to close the following programs if they are running:

    +

    You can start these programs once Google Desktop Search is running.

    + +
  • AOL Instant Messenger +
  • Firefox +
  • Internet Explorer +
  • Microsoft Excel +
  • Microsoft Outlook +
  • Microsoft Word +
  • Mozilla +
  • Mozilla Thunderbird +
  • Netscape +
  • Opera +
  • Other web browsers + +

    This will take only a few seconds to complete.

  • +

    +

    +
    diff --git a/tools/grit/grit/testdata/recrawl.html b/tools/grit/grit/testdata/recrawl.html new file mode 100644 index 0000000000..0401e7c2b0 --- /dev/null +++ b/tools/grit/grit/testdata/recrawl.html @@ -0,0 +1,30 @@ + +Refresh index + + + + + + + +
    + + + + +
    Google Desktop Search +
    +
    +
    Google Desktop Search is now recrawling your drive to index new files.
    +
    Note that new files are indexed automatically, and this step is generally not needed.
    +
    Click here to continue.
    + +
    +[$~BOTTOMLINE~$] +

    ©2005 Google

    +
    + + \ No newline at end of file diff --git a/tools/grit/grit/testdata/resource_ids b/tools/grit/grit/testdata/resource_ids new file mode 100644 index 0000000000..d5d440d57f --- /dev/null +++ b/tools/grit/grit/testdata/resource_ids @@ -0,0 +1,13 @@ +{ + "SRCDIR": ".", + "test.grd": { + "messages": [100, 10000], + }, + "substitute_no_ids.grd": { + "messages": [10000, 20000], + }, + "<(FOO)/file.grd": { + }, + "<(SHARED_INTERMEDIATE_DIR)/devtools/devtools.grd": { + }, +} diff --git a/tools/grit/grit/testdata/script.html b/tools/grit/grit/testdata/script.html new file mode 100644 index 0000000000..f177d9c30e --- /dev/null +++ b/tools/grit/grit/testdata/script.html @@ -0,0 +1,38 @@ + diff --git a/tools/grit/grit/testdata/searchbox.html b/tools/grit/grit/testdata/searchbox.html new file mode 100644 index 0000000000..9eccba99a5 --- /dev/null +++ b/tools/grit/grit/testdata/searchbox.html @@ -0,0 +1,22 @@ + + + + + +
    Go to Google Desktop Search   + + + + +
    + + +
    +[$~LINKS~$] +
    +
    +[$~FLAGS~$]
      Desktop Preferences
      [DELETE_NAME]
    + + +
     
    +
    \ No newline at end of file diff --git a/tools/grit/grit/testdata/sidebar_h.html b/tools/grit/grit/testdata/sidebar_h.html new file mode 100644 index 0000000000..e103e8f8db --- /dev/null +++ b/tools/grit/grit/testdata/sidebar_h.html @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + + + + + + +
     Google Desktop Search
    +
    + +
    + +[HEADER_SECTION1] +[CONTENT_INBOX] + + + +[HEADER_SECTION2] +[CONTENT_HIST] + + + +[CONTENT_NEWS] +[CONTENT_OTHER] + + + + + +
    + + + +[SCRIPT] + diff --git a/tools/grit/grit/testdata/sidebar_v.html b/tools/grit/grit/testdata/sidebar_v.html new file mode 100644 index 0000000000..e040d8ec59 --- /dev/null +++ b/tools/grit/grit/testdata/sidebar_v.html @@ -0,0 +1,267 @@ + +Google Desktop Search Sidebar + + + + + + + + + + + + + + + + + + + + +
    + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + +
    Google Desktop Search  Web 
    +
    + +

    +
    +
     News
    +
    + + +[CONTENT_NEWS] +

    + + +
    +
     Email
    +
    + + +[CONTENT_INBOX] +

    + + +
    +
     Related History
    +
    + + +[CONTENT_HIST] +

    + + + +
    +
     Recent
    +
    + + +[CONTENT_RECENT] +

    + + + +
    +
     Frequently Visited
    +
    + + +[CONTENT_POPULAR] +

    + + + +
    +
     Implicit Query Debug
    +
    + + +[CONTENT_QUIB_DEBUG] + + + + +[CONTENT_OTHER] + +[SCRIPT] + + diff --git a/tools/grit/grit/testdata/simple-input.xml b/tools/grit/grit/testdata/simple-input.xml new file mode 100644 index 0000000000..92827fa4b5 --- /dev/null +++ b/tools/grit/grit/testdata/simple-input.xml @@ -0,0 +1,52 @@ + + + + + Hello earthlings! + + + + + + + + + Go! + + Hello %sJoi, how are you doing today? + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tools/grit/grit/testdata/simple.html b/tools/grit/grit/testdata/simple.html new file mode 100644 index 0000000000..4392d23e98 --- /dev/null +++ b/tools/grit/grit/testdata/simple.html @@ -0,0 +1,3 @@ +

    + Hello! +

    \ No newline at end of file diff --git a/tools/grit/grit/testdata/source.rc b/tools/grit/grit/testdata/source.rc new file mode 100644 index 0000000000..fbc72284e9 --- /dev/null +++ b/tools/grit/grit/testdata/source.rc @@ -0,0 +1,57 @@ +IDC_KLONKMENU MENU +BEGIN + POPUP "&File" + BEGIN + MENUITEM "E&xit", IDM_EXIT + MENUITEM "This be ""Klonk"" me like", ID_FILE_THISBE + POPUP "gonk" + BEGIN + MENUITEM "Klonk && is [good]", ID_GONK_KLONKIS + END + END + POPUP "&Help" + BEGIN + MENUITEM "&About ...", IDM_ABOUT + END +END + +IDD_ABOUTBOX DIALOGEX 22, 17, 230, 75 +STYLE DS_SETFONT | DS_MODALFRAME | WS_CAPTION | WS_SYSMENU +CAPTION "About" +FONT 8, "System", 0, 0, 0x0 +BEGIN + ICON IDI_KLONK,IDC_MYICON,14,9,20,20 + LTEXT "klonk Version ""yibbee"" 1.0",IDC_STATIC,49,10,119,8, + SS_NOPREFIX + LTEXT "Copyright (C) 2005",IDC_STATIC,49,20,119,8 + DEFPUSHBUTTON "OK",IDOK,195,6,30,11,WS_GROUP + CONTROL "Jack ""Black"" Daniels",IDC_RADIO1,"Button", + BS_AUTORADIOBUTTON,46,51,84,10 +END + +IDD_DIFFERENT_LENGTH_IN_TRANSL DIALOGEX 22, 17, 230, 75 +STYLE DS_SETFONT | DS_MODALFRAME | WS_CAPTION | WS_SYSMENU +CAPTION "Bingobobbi" +FONT 8, "System", 0, 0, 0x0 +BEGIN + LTEXT "Howdie dodie!",IDC_STATIC,49,10,119,8,SS_NOPREFIX + LTEXT "Yo froodie!",IDC_STATIC,49,20,119,8 +END + +STRINGTABLE +BEGIN + IDS_SIMPLE "One" + IDS_PLACEHOLDER "%s birds" + IDS_PLACEHOLDERS "%d of %d" + IDS_REORDERED_PLACEHOLDERS "$1 of $2" + // Won't be in translations list because it has changed + IDS_CHANGED "This was the old version" + IDS_TWIN_1 "Hello" + IDS_TWIN_2 "Hello" + IDS_NOT_TRANSLATEABLE ":" + IDS_LONGER_TRANSLATED "Removed document $1" + // Won't appear in the list of translations because it's not in the .grd file + IDS_NO_LONGER_USED "Not used" + IDS_DIFFERENT_TWIN_1 "Howdie" + IDS_DIFFERENT_TWIN_2 "Howdie" +END diff --git a/tools/grit/grit/testdata/special_100_percent/a.png b/tools/grit/grit/testdata/special_100_percent/a.png new file mode 100644 index 0000000000000000000000000000000000000000..5d5089038ca71172e95db9e7aae1e1fa5cebd505 GIT binary patch literal 159 zcmeAS@N?(olHy`uVBq!ia0vp^oFL4>0wld=oSO}#(mY)pLnNjq|2Y3)zGGzYPN&L+ zMSC}CcCfp=Dtxv4%6W%G#Q=|R|L;6pCCLUWO)Z<5eoL%TkDTw=s4X!^d(Qa<2khAN zZPy!XToBAic1Ss}vcWiD27B3&`Zj^H6CO>7R1{ToQ;=ggdEYbV=IISvfHpFCy85}S Ib4q9e0O9jEh5!Hn literal 0 HcmV?d00001 diff --git a/tools/grit/grit/testdata/status.html b/tools/grit/grit/testdata/status.html new file mode 100644 index 0000000000..6b997b9369 --- /dev/null +++ b/tools/grit/grit/testdata/status.html @@ -0,0 +1,44 @@ +[HEADER] + + +
    + + +
     Desktop Search Status
    +
    +
    +[$~MESSAGE~$] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
     Number of itemsTime of newest item
      Total searchable items[TOTAL_COUNT][TOTAL_TIME]
           Emails[EMAIL_COUNT][EMAIL_TIME]
           Chats[IM_COUNT][IM_TIME]
           Web history[WEB_COUNT][WEB_TIME]
           Files[FILE_COUNT][FILE_TIME]
    +
    +[FOOTER] \ No newline at end of file diff --git a/tools/grit/grit/testdata/structure_variables.html b/tools/grit/grit/testdata/structure_variables.html new file mode 100644 index 0000000000..2a15de8072 --- /dev/null +++ b/tools/grit/grit/testdata/structure_variables.html @@ -0,0 +1,4 @@ +

    [GREETING]!

    +Some cool things are [THINGS]. +Did you know that [EQUATION]? + diff --git a/tools/grit/grit/testdata/substitute.grd b/tools/grit/grit/testdata/substitute.grd new file mode 100644 index 0000000000..95dcc56e1d --- /dev/null +++ b/tools/grit/grit/testdata/substitute.grd @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + Copyright 2008 Google Inc. All Rights Reserved. + + + Google Desktop News gadget +[IDS_COPYRIGHT_GOOGLE_LONG] +View news that is personalized based on the articles you read. + +For example, if you read lots of sports news, you'll see more sports articles. If you read technology news less often, you'll see fewer of those articles. + + + + diff --git a/tools/grit/grit/testdata/substitute.xmb b/tools/grit/grit/testdata/substitute.xmb new file mode 100644 index 0000000000..e592069c8b --- /dev/null +++ b/tools/grit/grit/testdata/substitute.xmb @@ -0,0 +1,10 @@ + + + +© 2008 Google Inc. Med ensamrätt. +Google Desktop News gadget + +Se nyheter som är anpassade till dig, baserat på de artiklar du läser. + +Om du t.ex. läser massor av sportnyheter kommer du att se fler sportartiklar. Om du inte läser tekniknyheter lika ofta ser du färre av dessa artiklar. + diff --git a/tools/grit/grit/testdata/substitute_no_ids.grd b/tools/grit/grit/testdata/substitute_no_ids.grd new file mode 100644 index 0000000000..d569d1cacd --- /dev/null +++ b/tools/grit/grit/testdata/substitute_no_ids.grd @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + Copyright 2008 Google Inc. All Rights Reserved. + + + Google Desktop News gadget +[IDS_COPYRIGHT_GOOGLE_LONG] +View news that is personalized based on the articles you read. + +For example, if you read lots of sports news, you'll see more sports articles. If you read technology news less often, you'll see fewer of those articles. + + + + diff --git a/tools/grit/grit/testdata/substitute_tmpl.grd b/tools/grit/grit/testdata/substitute_tmpl.grd new file mode 100644 index 0000000000..be7b601707 --- /dev/null +++ b/tools/grit/grit/testdata/substitute_tmpl.grd @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + Copyright 2008 Google Inc. All Rights Reserved. + + + Google Desktop News gadget +[IDS_COPYRIGHT_GOOGLE_LONG] +View news that is personalized based on the articles you read. + +For example, if you read lots of sports news, you'll see more sports articles. If you read technology news less often, you'll see fewer of those articles. + + + + diff --git a/tools/grit/grit/testdata/test_css.css b/tools/grit/grit/testdata/test_css.css new file mode 100644 index 0000000000..55d5dd1770 --- /dev/null +++ b/tools/grit/grit/testdata/test_css.css @@ -0,0 +1 @@ +This is a test! diff --git a/tools/grit/grit/testdata/test_html.html b/tools/grit/grit/testdata/test_html.html new file mode 100644 index 0000000000..55d5dd1770 --- /dev/null +++ b/tools/grit/grit/testdata/test_html.html @@ -0,0 +1 @@ +This is a test! diff --git a/tools/grit/grit/testdata/test_js.js b/tools/grit/grit/testdata/test_js.js new file mode 100644 index 0000000000..55d5dd1770 --- /dev/null +++ b/tools/grit/grit/testdata/test_js.js @@ -0,0 +1 @@ +This is a test! diff --git a/tools/grit/grit/testdata/test_svg.svg b/tools/grit/grit/testdata/test_svg.svg new file mode 100644 index 0000000000..55d5dd1770 --- /dev/null +++ b/tools/grit/grit/testdata/test_svg.svg @@ -0,0 +1 @@ +This is a test! diff --git a/tools/grit/grit/testdata/test_text.txt b/tools/grit/grit/testdata/test_text.txt new file mode 100644 index 0000000000..55d5dd1770 --- /dev/null +++ b/tools/grit/grit/testdata/test_text.txt @@ -0,0 +1 @@ +This is a test! diff --git a/tools/grit/grit/testdata/time_related.html b/tools/grit/grit/testdata/time_related.html new file mode 100644 index 0000000000..ee64b1665e --- /dev/null +++ b/tools/grit/grit/testdata/time_related.html @@ -0,0 +1,11 @@ +[HEADER] +[CHROME] +[NAV_PRE_POST] +[$~MESSAGE~$]
    + +[CONTENTS] +

    + +[NAV_PRE_POST] +[FOOTER] + diff --git a/tools/grit/grit/testdata/toolbar_about.html b/tools/grit/grit/testdata/toolbar_about.html new file mode 100644 index 0000000000..bb4b0eb355 --- /dev/null +++ b/tools/grit/grit/testdata/toolbar_about.html @@ -0,0 +1,138 @@ + + + +About Google Toolbar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    Google Toolbar
    +
    +
    + + +
    +
    + +
    +
    +
    + + + De parvis grandis acervus erit + + +
    + + © 2006 Google + + +
    + + + + diff --git a/tools/grit/grit/testdata/tools/grit/resource_ids b/tools/grit/grit/testdata/tools/grit/resource_ids new file mode 100644 index 0000000000..8a2b608df1 --- /dev/null +++ b/tools/grit/grit/testdata/tools/grit/resource_ids @@ -0,0 +1,176 @@ +# Copyright (c) 2011 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. +# +# This file is used to assign starting resource ids for resources and strings +# used by Chromium. This is done to ensure that resource ids are unique +# across all the grd files. If you are adding a new grd file, please add +# a new entry to this file. +# +# The first entry in the file, SRCDIR, is special: It is a relative path from +# this file to the base of your checkout. +# +# http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx says that the +# range for IDR_ is 1 to 28,671 and the range for IDS_ is 1 to 32,767 and +# common convention starts practical use of IDs at 100 or 101. +{ + "SRCDIR": "../..", + + "chrome/browser/browser_resources.grd": { + "includes": [500], + }, + "chrome/browser/resources/component_extension_resources.grd": { + "includes": [1000], + }, + "chrome/browser/resources/net_internals_resources.grd": { + "includes": [1500], + }, + "chrome/browser/resources/shared_resources.grd": { + "includes": [2000], + }, + "chrome/common/common_resources.grd": { + "includes": [2500], + }, + "chrome/default_plugin/default_plugin_resources.grd": { + "includes": [3000], + }, + "chrome/renderer/renderer_resources.grd": { + "includes": [3500], + }, + "net/base/net_resources.grd": { + "includes": [4000], + }, + "webkit/glue/webkit_resources.grd": { + "includes": [4500], + }, + "webkit/tools/test_shell/test_shell_resources.grd": { + "includes": [5000], + }, + "ui/resources/ui_resources.grd": { + "includes": [5500], + }, + "chrome/app/theme/theme_resources.grd": { + "includes": [6000], + }, + "chrome_frame/resources/chrome_frame_resources.grd": { + "includes": [6500], + }, + # WebKit.grd can be in two different places depending on whether we are + # in a chromium checkout or a webkit-only checkout. + "third_party/WebKit/Source/WebKit/chromium/WebKit.grd": { + "includes": [7000], + }, + "WebKit.grd": { + "includes": [7000], + }, + + "ui/base/strings/app_locale_settings.grd": { + "META": {"join": 2}, + "messages": [7500], + }, + "chrome/app/resources/locale_settings.grd": { + "includes": [8000], + "messages": [8500], + }, + # These each start with the same resource id because we only use one + # file for each build (cros, linux, mac, or win). + "chrome/app/resources/locale_settings_cros.grd": { + "messages": [9000], + }, + "chrome/app/resources/locale_settings_linux.grd": { + "messages": [9000], + }, + "chrome/app/resources/locale_settings_mac.grd": { + "messages": [9000], + }, + "chrome/app/resources/locale_settings_win.grd": { + "messages": [9000], + }, + + "ui/base/strings/ui_strings.grd": { + "META": {"join": 4}, + "messages": [9500], + }, + # Chromium strings and Google Chrome strings must start at the same id. + # We only use one file depending on whether we're building Chromium or + # Google Chrome. + "chrome/app/chromium_strings.grd": { + "messages": [10000], + }, + "chrome/app/google_chrome_strings.grd": { + "messages": [10000], + }, + # Leave lots of space for generated_resources since it has most of our + # strings. + "chrome/app/generated_resources.grd": { + "META": {"join": 2}, + "structures": [10500], + "messages": [11000], + }, + # The chrome frame dialogs are also in generated_resources.grd so they + # get included by the translation console. We make sure that the ids + # for structures here are the same as for generated_resources.grd. + "chrome_frame/resources/chrome_frame_dialogs.grd": { + "structures": [10500], + "includes": [10750], + }, + "webkit/glue/inspector_strings.grd": { + "messages": [16000], + }, + "webkit/glue/webkit_strings.grd": { + "messages": [16500], + }, + + "chrome_frame/resources/chrome_frame_resources.grd": { + "includes": [17500], + "structures": [18000], + }, + + "ui/gfx/gfx_resources.grd": { + "includes": [18500], + }, + + "chrome/app/policy/policy_templates.grd": { + "structures": [19000], + "messages": [19010], + }, + + "chrome/browser/autofill/autofill_resources.grd": { + "messages": [19500], + }, + "chrome/browser/resources/sync_internals_resources.grd": { + "includes": [20000], + }, + # This file is generated during the build. + "<(SHARED_INTERMEDIATE_DIR)/devtools/devtools_resources.grd": { + "includes": [20500], + }, + # All standard and large theme resources should have the same IDs. + "chrome/app/theme/theme_resources_standard.grd": { + "includes": [21000], + }, + "chrome/app/theme/theme_resources_large.grd": { + "includes": [21000], + }, + # This file is generated during the build. + "chrome/browser/debugger/frontend/devtools_frontend_resources.grd": { + "META": {"join": 2}, + "includes": [21500], + }, + "cloud_print/virtual_driver/win/install/virtual_driver_setup_resources.grd": { + "messages": [22500], + }, + "chrome/browser/resources/quota_internals_resources.grd": { + "includes": [23000], + }, + "chrome/browser/resources/workers_resources.grd": { + "includes": [23500], + }, + # All standard and large theme resources should have the same IDs. + "ui/resources/ui_resources_standard.grd": { + "includes": [24000], + }, + "ui/resources/ui_resources_large.grd": { + "includes": [24000], + }, +} diff --git a/tools/grit/grit/testdata/transl.rc b/tools/grit/grit/testdata/transl.rc new file mode 100644 index 0000000000..2f2595db3f --- /dev/null +++ b/tools/grit/grit/testdata/transl.rc @@ -0,0 +1,56 @@ +IDC_KLONKMENU MENU +BEGIN + POPUP "&Skra" + BEGIN + MENUITEM "&Haetta", IDM_EXIT + MENUITEM "Thetta er ""Klonk"" sem eg fyla", ID_FILE_THISBE + POPUP "gonkurinn" + BEGIN + MENUITEM "Klonk && er [good]", ID_GONK_KLONKIS + END + END + POPUP "&Hjalp" + BEGIN + MENUITEM "&Um...", IDM_ABOUT + END +END + +IDD_ABOUTBOX DIALOGEX 22, 17, 230, 75 +STYLE DS_SETFONT | DS_MODALFRAME | WS_CAPTION | WS_SYSMENU +CAPTION "Um Klonk" +FONT 8, "System", 0, 0, 0x0 +BEGIN + ICON IDI_KLONK,IDC_MYICON,14,9,20,20 + LTEXT "klonk utgafa ""jibbi"" 1.0",IDC_STATIC,49,10,119,8, + SS_NOPREFIX + LTEXT "Hofundarrettur (C) 2005",IDC_STATIC,49,20,119,8 + DEFPUSHBUTTON "I lagi",IDOK,195,6,30,11,WS_GROUP + CONTROL "Jack ""Black"" Daniels",IDC_RADIO1,"Button", + BS_AUTORADIOBUTTON,46,51,84,10 +END + +IDD_DIFFERENT_LENGTH_IN_TRANSL DIALOGEX 22, 17, 230, 75 +STYLE DS_SETFONT | DS_MODALFRAME | WS_CAPTION | WS_SYSMENU +CAPTION "Bingobobbi" +FONT 8, "System", 0, 0, 0x0 +BEGIN + LTEXT "Howdie dodie!",IDC_STATIC,49,10,119,8,SS_NOPREFIX +END + +STRINGTABLE +BEGIN + IDS_SIMPLE "Ein" + IDS_PLACEHOLDER "%s Vogeln" + IDS_PLACEHOLDERS "%d von %d" + // Shouldn't be part of translations list because the translation is + // reordered so placeholder fixup fails + IDS_REORDERED_PLACEHOLDERS "$2 auf $1" + IDS_CHANGED "Dass war die alte Version" + IDS_TWIN_1 "Hallo" + IDS_TWIN_2 "Hallo" + IDS_NOT_TRANSLATEABLE ":" + IDS_LONGER_TRANSLATED "Dokument $1 ist entfernt worden" + IDS_NO_LONGER_USED "Nicht verwendet" + IDS_DIFFERENT_TWIN_1 "Howdie" + IDS_DIFFERENT_TWIN_2 "Hallo sagt man" +END diff --git a/tools/grit/grit/testdata/versions.html b/tools/grit/grit/testdata/versions.html new file mode 100644 index 0000000000..d1f40d8d72 --- /dev/null +++ b/tools/grit/grit/testdata/versions.html @@ -0,0 +1,7 @@ +[HEADER] + +[TOP_CHROME] +[CONTENTS] + +[NEXT_PREV] +[FOOTER] diff --git a/tools/grit/grit/testdata/whitelist.txt b/tools/grit/grit/testdata/whitelist.txt new file mode 100644 index 0000000000..5b3aca40b5 --- /dev/null +++ b/tools/grit/grit/testdata/whitelist.txt @@ -0,0 +1,4 @@ +IDS_MESSAGE_WHITELISTED +IDR_STRUCTURE_WHITELISTED +IDR_STRUCTURE_IN_TRUE_IF_WHITELISTED +IDR_INCLUDE_WHITELISTED diff --git a/tools/grit/grit/testdata/whitelist_resources.grd b/tools/grit/grit/testdata/whitelist_resources.grd new file mode 100644 index 0000000000..9925688ff5 --- /dev/null +++ b/tools/grit/grit/testdata/whitelist_resources.grd @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tools/grit/grit/testdata/whitelist_strings.grd b/tools/grit/grit/testdata/whitelist_strings.grd new file mode 100644 index 0000000000..df80f5fd32 --- /dev/null +++ b/tools/grit/grit/testdata/whitelist_strings.grd @@ -0,0 +1,23 @@ + + + + + + + + + + + + Whitelisted. + + + Not whitelisted. + + + + diff --git a/tools/grit/grit/tool/__init__.py b/tools/grit/grit/tool/__init__.py new file mode 100644 index 0000000000..cc455b36e7 --- /dev/null +++ b/tools/grit/grit/tool/__init__.py @@ -0,0 +1,8 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Package grit.tool +''' + +pass diff --git a/tools/grit/grit/tool/android2grd.py b/tools/grit/grit/tool/android2grd.py new file mode 100644 index 0000000000..005297bafe --- /dev/null +++ b/tools/grit/grit/tool/android2grd.py @@ -0,0 +1,484 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +"""The 'grit android2grd' tool.""" + +from __future__ import print_function + +import getopt +import os.path +import sys +from xml.dom import Node +import xml.dom.minidom + +import six +from six import StringIO + +import grit.node.empty +from grit.node import node_io +from grit.node import message + +from grit.tool import interface + +from grit import grd_reader +from grit import lazy_re +from grit import tclib + + +# The name of a string in strings.xml +_STRING_NAME = lazy_re.compile(r'[a-z0-9_]+\Z') + +# A string's character limit in strings.xml +_CHAR_LIMIT = lazy_re.compile(r'\[CHAR-LIMIT=(\d+)\]') + +# Finds String.Format() style format specifiers such as "%-5.2f". +_FORMAT_SPECIFIER = lazy_re.compile( + r'%' + r'([1-9][0-9]*\$|<)?' # argument_index + r'([-#+ 0,(]*)' # flags + r'([0-9]+)?' # width + r'(\.[0-9]+)?' # precision + r'([bBhHsScCdoxXeEfgGaAtT%n])') # conversion + + +class Android2Grd(interface.Tool): + """Tool for converting Android string.xml files into chrome Grd files. + +Usage: grit [global options] android2grd [OPTIONS] STRINGS_XML + +The Android2Grd tool will convert an Android strings.xml file (whose path is +specified by STRINGS_XML) and create a chrome style grd file containing the +relevant information. + +Because grd documents are much richer than strings.xml documents we supplement +the information required by grds using OPTIONS with sensible defaults. + +OPTIONS may be any of the following: + + --name FILENAME Specify the base FILENAME. This should be without + any file type suffix. By default + "chrome_android_strings" will be used. + + --languages LANGUAGES Comma separated list of ISO language codes (e.g. + en-US, en-GB, ru, zh-CN). These codes will be used + to determine the names of resource and translations + files that will be declared by the output grd file. + + --grd-dir GRD_DIR Specify where the resultant grd file + (FILENAME.grd) should be output. By default this + will be the present working directory. + + --header-dir HEADER_DIR Specify the location of the directory where grit + generated C++ headers (whose name will be + FILENAME.h) will be placed. Use an empty string to + disable rc generation. Default: empty. + + --rc-dir RC_DIR Specify the directory where resource files will + be located relative to grit build's output + directory. Use an empty string to disable rc + generation. Default: empty. + + --xml-dir XML_DIR Specify where to place localized strings.xml files + relative to grit build's output directory. For each + language xx a values-xx/strings.xml file will be + generated. Use an empty string to disable + strings.xml generation. Default: '.'. + + --xtb-dir XTB_DIR Specify where the xtb files containing translations + will be located relative to the grd file. Default: + '.'. +""" + + _NAME_FLAG = 'name' + _LANGUAGES_FLAG = 'languages' + _GRD_DIR_FLAG = 'grd-dir' + _RC_DIR_FLAG = 'rc-dir' + _HEADER_DIR_FLAG = 'header-dir' + _XTB_DIR_FLAG = 'xtb-dir' + _XML_DIR_FLAG = 'xml-dir' + + def __init__(self): + self.name = 'chrome_android_strings' + self.languages = [] + self.grd_dir = '.' + self.rc_dir = None + self.xtb_dir = '.' + self.xml_res_dir = '.' + self.header_dir = None + + def ShortDescription(self): + """Returns a short description of the Android2Grd tool. + + Overridden from grit.interface.Tool + + Returns: + A string containing a short description of the android2grd tool. + """ + return 'Converts Android string.xml files into Chrome grd files.' + + def ParseOptions(self, args): + """Set this objects and return all non-option arguments.""" + flags = [ + Android2Grd._NAME_FLAG, + Android2Grd._LANGUAGES_FLAG, + Android2Grd._GRD_DIR_FLAG, + Android2Grd._RC_DIR_FLAG, + Android2Grd._HEADER_DIR_FLAG, + Android2Grd._XTB_DIR_FLAG, + Android2Grd._XML_DIR_FLAG, ] + (opts, args) = getopt.getopt( + args, None, ['%s=' % o for o in flags] + ['help']) + + for key, val in opts: + # Get rid of the preceding hypens. + k = key[2:] + if k == Android2Grd._NAME_FLAG: + self.name = val + elif k == Android2Grd._LANGUAGES_FLAG: + self.languages = val.split(',') + elif k == Android2Grd._GRD_DIR_FLAG: + self.grd_dir = val + elif k == Android2Grd._RC_DIR_FLAG: + self.rc_dir = val + elif k == Android2Grd._HEADER_DIR_FLAG: + self.header_dir = val + elif k == Android2Grd._XTB_DIR_FLAG: + self.xtb_dir = val + elif k == Android2Grd._XML_DIR_FLAG: + self.xml_res_dir = val + elif k == 'help': + self.ShowUsage() + sys.exit(0) + return args + + def Run(self, opts, args): + """Runs the Android2Grd tool. + + Inherited from grit.interface.Tool. + + Args: + opts: List of string arguments that should be parsed. + args: String containing the path of the strings.xml file to be converted. + """ + args = self.ParseOptions(args) + if len(args) != 1: + print('Tool requires one argument, the path to the Android ' + 'strings.xml resource file to be converted.') + return 2 + self.SetOptions(opts) + + android_path = args[0] + + # Read and parse the Android strings.xml file. + with open(android_path) as android_file: + android_dom = xml.dom.minidom.parse(android_file) + + # Do the hard work -- convert the Android dom to grd file contents. + grd_dom = self.AndroidDomToGrdDom(android_dom) + grd_string = six.text_type(grd_dom) + + # Write the grd string to a file in grd_dir. + grd_filename = self.name + '.grd' + grd_path = os.path.join(self.grd_dir, grd_filename) + with open(grd_path, 'w') as grd_file: + grd_file.write(grd_string) + + def AndroidDomToGrdDom(self, android_dom): + """Converts a strings.xml DOM into a DOM representing the contents of + a grd file. + + Args: + android_dom: A xml.dom.Document containing the contents of the Android + string.xml document. + Returns: + The DOM for the grd xml document produced by converting the Android DOM. + """ + + # Start with a basic skeleton for the .grd file. + root = grd_reader.Parse(StringIO( + ''' + + + + + + + '''), dir='.') + outputs = root.children[0] + translations = root.children[1] + messages = root.children[2].children[0] + assert (isinstance(messages, grit.node.empty.MessagesNode) and + isinstance(translations, grit.node.empty.TranslationsNode) and + isinstance(outputs, grit.node.empty.OutputsNode)) + + if self.header_dir: + cpp_header = self.__CreateCppHeaderOutputNode(outputs, self.header_dir) + for lang in self.languages: + # Create an output element for each language. + if self.rc_dir: + self.__CreateRcOutputNode(outputs, lang, self.rc_dir) + if self.xml_res_dir: + self.__CreateAndroidXmlOutputNode(outputs, lang, self.xml_res_dir) + if lang != 'en': + self.__CreateFileNode(translations, lang) + # Convert all the strings.xml strings into grd messages. + self.__CreateMessageNodes(messages, android_dom.documentElement) + + return root + + def __CreateMessageNodes(self, messages, resources): + """Creates the elements and adds them as children of . + + Args: + messages: the element in the strings.xml dom. + resources: the element in the grd dom. + """ + # elements contain the definition of the resource. + # The description of a element is contained within the comment + # node element immediately preceeding the string element in question. + description = '' + for child in resources.childNodes: + if child.nodeType == Node.COMMENT_NODE: + # Remove leading/trailing whitespace; collapse consecutive whitespaces. + description = ' '.join(child.data.split()) + elif child.nodeType == Node.ELEMENT_NODE: + if child.tagName != 'string': + print('Warning: ignoring unknown tag <%s>' % child.tagName) + else: + translatable = self.IsTranslatable(child) + raw_name = child.getAttribute('name') + if not _STRING_NAME.match(raw_name): + print('Error: illegal string name: %s' % raw_name) + grd_name = 'IDS_' + raw_name.upper() + # Transform the node contents into a tclib.Message, taking + # care to handle whitespace transformations and escaped characters, + # and coverting placeholders into placeholders. + msg = self.CreateTclibMessage(child) + msg_node = self.__CreateMessageNode(messages, grd_name, description, + msg, translatable) + messages.AddChild(msg_node) + # Reset the description once a message has been parsed. + description = '' + + def CreateTclibMessage(self, android_string): + """Transforms a element from strings.xml into a tclib.Message. + + Interprets whitespace, quotes, and escaped characters in the android_string + according to Android's formatting and styling rules for strings. Also + converts placeholders into placeholders, e.g.: + + %s + becomes + google.com%s + + Returns: + The tclib.Message. + """ + msg = tclib.Message() + current_text = '' # Accumulated text that hasn't yet been added to msg. + nodes = android_string.childNodes + + for i, node in enumerate(nodes): + # Handle text nodes. + if node.nodeType in (Node.TEXT_NODE, Node.CDATA_SECTION_NODE): + current_text += node.data + + # Handle and other tags. + elif node.nodeType == Node.ELEMENT_NODE: + if node.tagName == 'xliff:g': + assert node.hasAttribute('id'), 'missing id: ' + node.data() + placeholder_id = node.getAttribute('id') + placeholder_text = self.__FormatPlaceholderText(node) + placeholder_example = node.getAttribute('example') + if not placeholder_example: + print('Info: placeholder does not contain an example: %s' % + node.toxml()) + placeholder_example = placeholder_id.upper() + msg.AppendPlaceholder(tclib.Placeholder(placeholder_id, + placeholder_text, placeholder_example)) + else: + print('Warning: removing tag <%s> which must be inside a ' + 'placeholder: %s' % (node.tagName, node.toxml())) + msg.AppendText(self.__FormatPlaceholderText(node)) + + # Handle other nodes. + elif node.nodeType != Node.COMMENT_NODE: + assert False, 'Unknown node type: %s' % node.nodeType + + is_last_node = (i == len(nodes) - 1) + if (current_text and + (is_last_node or nodes[i + 1].nodeType == Node.ELEMENT_NODE)): + # For messages containing just text and comments (no xml tags) Android + # strips leading and trailing whitespace. We mimic that behavior. + if not msg.GetContent() and is_last_node: + current_text = current_text.strip() + msg.AppendText(self.__FormatAndroidString(current_text)) + current_text = '' + + return msg + + def __FormatAndroidString(self, android_string, inside_placeholder=False): + r"""Returns android_string formatted for a .grd file. + + * Collapses consecutive whitespaces, except when inside double-quotes. + * Replaces \\, \n, \t, \", \' with \, newline, tab, ", '. + """ + backslash_map = {'\\' : '\\', 'n' : '\n', 't' : '\t', '"' : '"', "'" : "'"} + is_quoted_section = False # True when we're inside double quotes. + is_backslash_sequence = False # True after seeing an unescaped backslash. + prev_char = '' + output = [] + for c in android_string: + if is_backslash_sequence: + # Unescape \\, \n, \t, \", and \'. + assert c in backslash_map, 'Illegal escape sequence: \\%s' % c + output.append(backslash_map[c]) + is_backslash_sequence = False + elif c == '\\': + is_backslash_sequence = True + elif c.isspace() and not is_quoted_section: + # Turn whitespace into ' ' and collapse consecutive whitespaces. + if not prev_char.isspace(): + output.append(' ') + elif c == '"': + is_quoted_section = not is_quoted_section + else: + output.append(c) + prev_char = c + output = ''.join(output) + + if is_quoted_section: + print('Warning: unbalanced quotes in string: %s' % android_string) + + if is_backslash_sequence: + print('Warning: trailing backslash in string: %s' % android_string) + + # Check for format specifiers outside of placeholder tags. + if not inside_placeholder: + format_specifier = _FORMAT_SPECIFIER.search(output) + if format_specifier: + print('Warning: format specifiers are not inside a placeholder ' + ' tag: %s' % output) + + return output + + def __FormatPlaceholderText(self, placeholder_node): + """Returns the text inside of an placeholder node.""" + text = [] + for childNode in placeholder_node.childNodes: + if childNode.nodeType in (Node.TEXT_NODE, Node.CDATA_SECTION_NODE): + text.append(childNode.data) + elif childNode.nodeType != Node.COMMENT_NODE: + assert False, 'Unknown node type in ' + placeholder_node.toxml() + return self.__FormatAndroidString(''.join(text), inside_placeholder=True) + + def __CreateMessageNode(self, messages_node, grd_name, description, msg, + translatable): + """Creates and initializes a element. + + Message elements correspond to Android elements in that they + declare a string resource along with a programmatic id. + """ + if not description: + print('Warning: no description for %s' % grd_name) + # Check that we actually fit within the character limit we've specified. + match = _CHAR_LIMIT.search(description) + if match: + char_limit = int(match.group(1)) + msg_content = msg.GetRealContent() + if len(msg_content) > char_limit: + print('Warning: char-limit for %s is %d, but length is %d: %s' % + (grd_name, char_limit, len(msg_content), msg_content)) + return message.MessageNode.Construct(parent=messages_node, + name=grd_name, + message=msg, + desc=description, + translateable=translatable) + + def __CreateFileNode(self, translations_node, lang): + """Creates and initializes the elements. + + File elements provide information on the location of translation files + (xtbs) + """ + xtb_file = os.path.normpath(os.path.join( + self.xtb_dir, '%s_%s.xtb' % (self.name, lang))) + fnode = node_io.FileNode() + fnode.StartParsing(u'file', translations_node) + fnode.HandleAttribute('path', xtb_file) + fnode.HandleAttribute('lang', lang) + fnode.EndParsing() + translations_node.AddChild(fnode) + return fnode + + def __CreateCppHeaderOutputNode(self, outputs_node, header_dir): + """Creates the element corresponding to the generated c header.""" + header_file_name = os.path.join(header_dir, self.name + '.h') + header_node = node_io.OutputNode() + header_node.StartParsing(u'output', outputs_node) + header_node.HandleAttribute('filename', header_file_name) + header_node.HandleAttribute('type', 'rc_header') + emit_node = node_io.EmitNode() + emit_node.StartParsing(u'emit', header_node) + emit_node.HandleAttribute('emit_type', 'prepend') + emit_node.EndParsing() + header_node.AddChild(emit_node) + header_node.EndParsing() + outputs_node.AddChild(header_node) + return header_node + + def __CreateRcOutputNode(self, outputs_node, lang, rc_dir): + """Creates the element corresponding to various rc file output.""" + rc_file_name = self.name + '_' + lang + ".rc" + rc_path = os.path.join(rc_dir, rc_file_name) + node = node_io.OutputNode() + node.StartParsing(u'output', outputs_node) + node.HandleAttribute('filename', rc_path) + node.HandleAttribute('lang', lang) + node.HandleAttribute('type', 'rc_all') + node.EndParsing() + outputs_node.AddChild(node) + return node + + def __CreateAndroidXmlOutputNode(self, outputs_node, locale, xml_res_dir): + """Creates the element corresponding to various rc file output.""" + # Need to check to see if the locale has a region, e.g. the GB in en-GB. + # When a locale has a region Android expects the region to be prefixed + # with an 'r'. For example for en-GB Android expects a values-en-rGB + # directory. Also, Android expects nb, tl, in, iw, ji as the language + # codes for Norwegian, Tagalog/Filipino, Indonesian, Hebrew, and Yiddish: + # http://developer.android.com/reference/java/util/Locale.html + if locale == 'es-419': + android_locale = 'es-rUS' + else: + android_lang, dash, region = locale.partition('-') + lang_map = {'no': 'nb', 'fil': 'tl', 'id': 'in', 'he': 'iw', 'yi': 'ji'} + android_lang = lang_map.get(android_lang, android_lang) + android_locale = android_lang + ('-r' + region if region else '') + values = 'values-' + android_locale if android_locale != 'en' else 'values' + xml_path = os.path.normpath(os.path.join( + xml_res_dir, values, 'strings.xml')) + + node = node_io.OutputNode() + node.StartParsing(u'output', outputs_node) + node.HandleAttribute('filename', xml_path) + node.HandleAttribute('lang', locale) + node.HandleAttribute('type', 'android') + node.EndParsing() + outputs_node.AddChild(node) + return node + + def IsTranslatable(self, android_string): + """Determines if a element is a candidate for translation. + + A element is by default translatable unless otherwise marked. + """ + if android_string.hasAttribute('translatable'): + value = android_string.getAttribute('translatable').lower() + if value not in ('true', 'false'): + print('Warning: translatable attribute has invalid value: %s' % value) + return value == 'true' + else: + return True diff --git a/tools/grit/grit/tool/android2grd_unittest.py b/tools/grit/grit/tool/android2grd_unittest.py new file mode 100644 index 0000000000..a6934a707c --- /dev/null +++ b/tools/grit/grit/tool/android2grd_unittest.py @@ -0,0 +1,181 @@ +#!/usr/bin/env python +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Unit tests for grit.tool.android2grd''' + +from __future__ import print_function + +import os +import sys +if __name__ == '__main__': + sys.path.append(os.path.join(os.path.dirname(__file__), '../..')) + +import unittest +import xml.dom.minidom + +from grit import util +from grit.node import empty +from grit.node import message +from grit.node import misc +from grit.node import node_io +from grit.tool import android2grd + + +class Android2GrdUnittest(unittest.TestCase): + + def __Parse(self, xml_string): + return xml.dom.minidom.parseString(xml_string).childNodes[0] + + def testCreateTclibMessage(self): + tool = android2grd.Android2Grd() + msg = tool.CreateTclibMessage(self.__Parse(r''' + A simple string''')) + self.assertEqual(msg.GetRealContent(), 'A simple string') + msg = tool.CreateTclibMessage(self.__Parse(r''' + + Strip leading/trailing whitespace + ''')) + self.assertEqual(msg.GetRealContent(), 'Strip leading/trailing whitespace') + msg = tool.CreateTclibMessage(self.__Parse(r''' + Fold multiple spaces''')) + self.assertEqual(msg.GetRealContent(), 'Fold multiple spaces') + msg = tool.CreateTclibMessage(self.__Parse(r''' + Retain \n escaped\t spaces''')) + self.assertEqual(msg.GetRealContent(), 'Retain \n escaped\t spaces') + msg = tool.CreateTclibMessage(self.__Parse(r''' + " Quotes preserve + whitespace" but only for "enclosed elements " + ''')) + self.assertEqual(msg.GetRealContent(), ''' Quotes preserve + whitespace but only for enclosed elements ''') + msg = tool.CreateTclibMessage(self.__Parse( + r'''Escaped characters: \"\'\\\t\n''' + '')) + self.assertEqual(msg.GetRealContent(), '''Escaped characters: "'\\\t\n''') + msg = tool.CreateTclibMessage(self.__Parse( + '' + 'Open %s?' + '')) + self.assertEqual(msg.GetRealContent(), 'Open %s?') + self.assertEqual(len(msg.GetPlaceholders()), 1) + self.assertEqual(msg.GetPlaceholders()[0].presentation, 'FILENAME') + self.assertEqual(msg.GetPlaceholders()[0].original, '%s') + self.assertEqual(msg.GetPlaceholders()[0].example, 'internet.html') + msg = tool.CreateTclibMessage(self.__Parse(r''' + Contains a comment + ''')) + self.assertEqual(msg.GetRealContent(), 'Contains a comment') + + def testIsTranslatable(self): + tool = android2grd.Android2Grd() + string_el = self.__Parse('Hi') + self.assertTrue(tool.IsTranslatable(string_el)) + string_el = self.__Parse( + 'Hi') + self.assertTrue(tool.IsTranslatable(string_el)) + string_el = self.__Parse( + 'Hi') + self.assertFalse(tool.IsTranslatable(string_el)) + + def __ParseAndroidXml(self, options = []): + tool = android2grd.Android2Grd() + + tool.ParseOptions(options) + + android_path = util.PathFromRoot('grit/testdata/android.xml') + with open(android_path) as android_file: + android_dom = xml.dom.minidom.parse(android_file) + + grd = tool.AndroidDomToGrdDom(android_dom) + self.assertTrue(isinstance(grd, misc.GritNode)) + + return grd + + def testAndroidDomToGrdDom(self): + grd = self.__ParseAndroidXml(['--languages', 'en-US,en-GB,ru']) + + # Check that the structure of the GritNode is as expected. + messages = grd.GetChildrenOfType(message.MessageNode) + translations = grd.GetChildrenOfType(empty.TranslationsNode) + files = grd.GetChildrenOfType(node_io.FileNode) + + self.assertEqual(len(translations), 1) + self.assertEqual(len(files), 3) + self.assertEqual(len(messages), 5) + + # Check that a message node is constructed correctly. + msg = [x for x in messages if x.GetTextualIds()[0] == 'IDS_PLACEHOLDERS'] + self.assertTrue(msg) + msg = msg[0] + + self.assertTrue(msg.IsTranslateable()) + self.assertEqual(msg.attrs["desc"], "A string with placeholder.") + + def testTranslatableAttribute(self): + grd = self.__ParseAndroidXml([]) + messages = grd.GetChildrenOfType(message.MessageNode) + msgs = [x for x in messages if x.GetTextualIds()[0] == 'IDS_CONSTANT'] + self.assertTrue(msgs) + self.assertFalse(msgs[0].IsTranslateable()) + + def testTranslations(self): + grd = self.__ParseAndroidXml(['--languages', 'en-US,en-GB,ru,id']) + + files = grd.GetChildrenOfType(node_io.FileNode) + us_file = [x for x in files if x.attrs['lang'] == 'en-US'] + self.assertTrue(us_file) + self.assertEqual(us_file[0].GetInputPath(), + 'chrome_android_strings_en-US.xtb') + + id_file = [x for x in files if x.attrs['lang'] == 'id'] + self.assertTrue(id_file) + self.assertEqual(id_file[0].GetInputPath(), + 'chrome_android_strings_id.xtb') + + def testOutputs(self): + grd = self.__ParseAndroidXml(['--languages', 'en-US,ru,id', + '--rc-dir', 'rc/dir', + '--header-dir', 'header/dir', + '--xtb-dir', 'xtb/dir', + '--xml-dir', 'xml/dir']) + + outputs = grd.GetChildrenOfType(node_io.OutputNode) + self.assertEqual(len(outputs), 7) + + header_outputs = [x for x in outputs if x.GetType() == 'rc_header'] + rc_outputs = [x for x in outputs if x.GetType() == 'rc_all'] + xml_outputs = [x for x in outputs if x.GetType() == 'android'] + + self.assertEqual(len(header_outputs), 1) + self.assertEqual(len(rc_outputs), 3) + self.assertEqual(len(xml_outputs), 3) + + # The header node should have an "" child and the proper filename. + self.assertTrue(header_outputs[0].GetChildrenOfType(node_io.EmitNode)) + self.assertEqual(util.normpath(header_outputs[0].GetFilename()), + util.normpath('header/dir/chrome_android_strings.h')) + + id_rc = [x for x in rc_outputs if x.GetLanguage() == 'id'] + id_xml = [x for x in xml_outputs if x.GetLanguage() == 'id'] + self.assertTrue(id_rc) + self.assertTrue(id_xml) + self.assertEqual(util.normpath(id_rc[0].GetFilename()), + util.normpath('rc/dir/chrome_android_strings_id.rc')) + self.assertEqual(util.normpath(id_xml[0].GetFilename()), + util.normpath('xml/dir/values-in/strings.xml')) + + us_rc = [x for x in rc_outputs if x.GetLanguage() == 'en-US'] + us_xml = [x for x in xml_outputs if x.GetLanguage() == 'en-US'] + self.assertTrue(us_rc) + self.assertTrue(us_xml) + self.assertEqual(util.normpath(us_rc[0].GetFilename()), + util.normpath('rc/dir/chrome_android_strings_en-US.rc')) + self.assertEqual(util.normpath(us_xml[0].GetFilename()), + util.normpath('xml/dir/values-en-rUS/strings.xml')) + + +if __name__ == '__main__': + unittest.main() diff --git a/tools/grit/grit/tool/build.py b/tools/grit/grit/tool/build.py new file mode 100644 index 0000000000..204592bf0d --- /dev/null +++ b/tools/grit/grit/tool/build.py @@ -0,0 +1,556 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''The 'grit build' tool. +''' + +from __future__ import print_function + +import codecs +import filecmp +import getopt +import gzip +import os +import shutil +import sys + +import six + +from grit import grd_reader +from grit import shortcuts +from grit import util +from grit.format import minifier +from grit.node import brotli_util +from grit.node import include +from grit.node import message +from grit.node import structure +from grit.tool import interface + + +# It would be cleaner to have each module register itself, but that would +# require importing all of them on every run of GRIT. +'''Map from node types to modules under grit.format.''' +_format_modules = { + 'android': 'android_xml', + 'c_format': 'c_format', + 'chrome_messages_json': 'chrome_messages_json', + 'chrome_messages_json_gzip': 'chrome_messages_json', + 'data_package': 'data_pack', + 'policy_templates': 'policy_templates_json', + 'rc_all': 'rc', + 'rc_header': 'rc_header', + 'rc_nontranslateable': 'rc', + 'rc_translateable': 'rc', + 'resource_file_map_source': 'resource_map', + 'resource_map_header': 'resource_map', + 'resource_map_source': 'resource_map', +} + +def GetFormatter(type): + modulename = 'grit.format.' + _format_modules[type] + __import__(modulename) + module = sys.modules[modulename] + try: + return module.Format + except AttributeError: + return module.GetFormatter(type) + + +class RcBuilder(interface.Tool): + '''A tool that builds RC files and resource header files for compilation. + +Usage: grit build [-o OUTPUTDIR] [-D NAME[=VAL]]* + +All output options for this tool are specified in the input file (see +'grit help' for details on how to specify the input file - it is a global +option). + +Options: + + -a FILE Assert that the given file is an output. There can be + multiple "-a" flags listed for multiple outputs. If a "-a" + or "--assert-file-list" argument is present, then the list + of asserted files must match the output files or the tool + will fail. The use-case is for the build system to maintain + separate lists of output files and to catch errors if the + build system's list and the grit list are out-of-sync. + + --assert-file-list Provide a file listing multiple asserted output files. + There is one file name per line. This acts like specifying + each file with "-a" on the command line, but without the + possibility of running into OS line-length limits for very + long lists. + + -o OUTPUTDIR Specify what directory output paths are relative to. + Defaults to the current directory. + + -p FILE Specify a file containing a pre-determined mapping from + resource names to resource ids which will be used to assign + resource ids to those resources. Resources not found in this + file will be assigned ids normally. The motivation is to run + your app's startup and have it dump the resources it loads, + and then pass these via this flag. This will pack startup + resources together, thus reducing paging while all other + resources are unperturbed. The file should have the format: + RESOURCE_ONE_NAME 123 + RESOURCE_TWO_NAME 124 + + -D NAME[=VAL] Specify a C-preprocessor-like define NAME with optional + value VAL (defaults to 1) which will be used to control + conditional inclusion of resources. + + -E NAME=VALUE Set environment variable NAME to VALUE (within grit). + + -f FIRSTIDSFILE Path to a python file that specifies the first id of + value to use for resources. A non-empty value here will + override the value specified in the node's + first_ids_file. + + -w WHITELISTFILE Path to a file containing the string names of the + resources to include. Anything not listed is dropped. + + -t PLATFORM Specifies the platform the build is targeting; defaults + to the value of sys.platform. The value provided via this + flag should match what sys.platform would report for your + target platform; see grit.node.base.EvaluateCondition. + + --whitelist-support + Generate code to support extracting a resource whitelist + from executables. + + --write-only-new flag + If flag is non-0, write output files to a temporary file + first, and copy it to the real output only if the new file + is different from the old file. This allows some build + systems to realize that dependent build steps might be + unnecessary, at the cost of comparing the output data at + grit time. + + --depend-on-stamp + If specified along with --depfile and --depdir, the depfile + generated will depend on a stampfile instead of the first + output in the input .grd file. + + --js-minifier A command to run the Javascript minifier. If not set then + Javascript won't be minified. The command should read the + original Javascript from standard input, and output the + minified Javascript to standard output. A non-zero exit + status will be taken as indicating failure. + + --css-minifier A command to run the CSS minifier. If not set then CSS won't + be minified. The command should read the original CSS from + standard input, and output the minified CSS to standard + output. A non-zero exit status will be taken as indicating + failure. + + --brotli The full path to the brotli executable generated by + third_party/brotli/BUILD.gn, required if any entries use + compress="brotli". + +Conditional inclusion of resources only affects the output of files which +control which resources get linked into a binary, e.g. it affects .rc files +meant for compilation but it does not affect resource header files (that define +IDs). This helps ensure that values of IDs stay the same, that all messages +are exported to translation interchange files (e.g. XMB files), etc. +''' + + def ShortDescription(self): + return 'A tool that builds RC files for compilation.' + + def Run(self, opts, args): + brotli_util.SetBrotliCommand(None) + os.environ['cwd'] = os.getcwd() + self.output_directory = '.' + first_ids_file = None + predetermined_ids_file = None + whitelist_filenames = [] + assert_output_files = [] + target_platform = None + depfile = None + depdir = None + whitelist_support = False + write_only_new = False + depend_on_stamp = False + js_minifier = None + css_minifier = None + replace_ellipsis = True + (own_opts, args) = getopt.getopt( + args, 'a:p:o:D:E:f:w:t:', + ('depdir=', 'depfile=', 'assert-file-list=', 'help', + 'output-all-resource-defines', 'no-output-all-resource-defines', + 'no-replace-ellipsis', 'depend-on-stamp', 'js-minifier=', + 'css-minifier=', 'write-only-new=', 'whitelist-support', 'brotli=')) + for (key, val) in own_opts: + if key == '-a': + assert_output_files.append(val) + elif key == '--assert-file-list': + with open(val) as f: + assert_output_files += f.read().splitlines() + elif key == '-o': + self.output_directory = val + elif key == '-D': + name, val = util.ParseDefine(val) + self.defines[name] = val + elif key == '-E': + (env_name, env_value) = val.split('=', 1) + os.environ[env_name] = env_value + elif key == '-f': + # TODO(joi@chromium.org): Remove this override once change + # lands in WebKit.grd to specify the first_ids_file in the + # .grd itself. + first_ids_file = val + elif key == '-w': + whitelist_filenames.append(val) + elif key == '--no-replace-ellipsis': + replace_ellipsis = False + elif key == '-p': + predetermined_ids_file = val + elif key == '-t': + target_platform = val + elif key == '--depdir': + depdir = val + elif key == '--depfile': + depfile = val + elif key == '--write-only-new': + write_only_new = val != '0' + elif key == '--depend-on-stamp': + depend_on_stamp = True + elif key == '--js-minifier': + js_minifier = val + elif key == '--css-minifier': + css_minifier = val + elif key == '--whitelist-support': + whitelist_support = True + elif key == '--brotli': + brotli_util.SetBrotliCommand([os.path.abspath(val)]) + elif key == '--help': + self.ShowUsage() + sys.exit(0) + + if len(args): + print('This tool takes no tool-specific arguments.') + return 2 + self.SetOptions(opts) + self.VerboseOut('Output directory: %s (absolute path: %s)\n' % + (self.output_directory, + os.path.abspath(self.output_directory))) + + if whitelist_filenames: + self.whitelist_names = set() + for whitelist_filename in whitelist_filenames: + self.VerboseOut('Using whitelist: %s\n' % whitelist_filename); + whitelist_contents = util.ReadFile(whitelist_filename, 'utf-8') + self.whitelist_names.update(whitelist_contents.strip().split('\n')) + + if js_minifier: + minifier.SetJsMinifier(js_minifier) + + if css_minifier: + minifier.SetCssMinifier(css_minifier) + + self.write_only_new = write_only_new + + self.res = grd_reader.Parse(opts.input, + debug=opts.extra_verbose, + first_ids_file=first_ids_file, + predetermined_ids_file=predetermined_ids_file, + defines=self.defines, + target_platform=target_platform) + + # Set an output context so that conditionals can use defines during the + # gathering stage; we use a dummy language here since we are not outputting + # a specific language. + self.res.SetOutputLanguage('en') + self.res.SetWhitelistSupportEnabled(whitelist_support) + self.res.RunGatherers() + + # Replace ... with the single-character version. http://crbug.com/621772 + if replace_ellipsis: + for node in self.res: + if isinstance(node, message.MessageNode): + node.SetReplaceEllipsis(True) + + self.Process() + + if assert_output_files: + if not self.CheckAssertedOutputFiles(assert_output_files): + return 2 + + if depfile and depdir: + self.GenerateDepfile(depfile, depdir, first_ids_file, depend_on_stamp) + + return 0 + + def __init__(self, defines=None): + # Default file-creation function is codecs.open(). Only done to allow + # overriding by unit test. + self.fo_create = codecs.open + + # key/value pairs of C-preprocessor like defines that are used for + # conditional output of resources + self.defines = defines or {} + + # self.res is a fully-populated resource tree if Run() + # has been called, otherwise None. + self.res = None + + # The set of names that are whitelisted to actually be included in the + # output. + self.whitelist_names = None + + # Whether to compare outputs to their old contents before writing. + self.write_only_new = False + + @staticmethod + def AddWhitelistTags(start_node, whitelist_names): + # Walk the tree of nodes added attributes for the nodes that shouldn't + # be written into the target files (skip markers). + for node in start_node: + # Same trick data_pack.py uses to see what nodes actually result in + # real items. + if (isinstance(node, include.IncludeNode) or + isinstance(node, message.MessageNode) or + isinstance(node, structure.StructureNode)): + text_ids = node.GetTextualIds() + # Mark the item to be skipped if it wasn't in the whitelist. + if text_ids and text_ids[0] not in whitelist_names: + node.SetWhitelistMarkedAsSkip(True) + + @staticmethod + def ProcessNode(node, output_node, outfile): + '''Processes a node in-order, calling its formatter before and after + recursing to its children. + + Args: + node: grit.node.base.Node subclass + output_node: grit.node.io.OutputNode + outfile: open filehandle + ''' + base_dir = util.dirname(output_node.GetOutputFilename()) + + formatter = GetFormatter(output_node.GetType()) + formatted = formatter(node, output_node.GetLanguage(), output_dir=base_dir) + # NB: Formatters may be generators or return lists. The writelines API + # accepts iterables as a shortcut to calling write directly. That means + # you can pass strings (iteration yields characters), but not bytes (as + # iteration yields integers). Python 2 worked due to its quirks with + # bytes/string implementation, but Python 3 fails. It's also a bit more + # inefficient to call write once per character/byte. Handle all of this + # ourselves by calling write directly on strings/bytes before falling back + # to writelines. + if isinstance(formatted, (six.string_types, six.binary_type)): + outfile.write(formatted) + else: + outfile.writelines(formatted) + if output_node.GetType() == 'data_package': + with open(output_node.GetOutputFilename() + '.info', 'w') as infofile: + if node.info: + # We terminate with a newline so that when these files are + # concatenated later we consistently terminate with a newline so + # consumers can account for terminating newlines. + infofile.writelines(['\n'.join(node.info), '\n']) + + @staticmethod + def _EncodingForOutputType(output_type): + # Microsoft's RC compiler can only deal with single-byte or double-byte + # files (no UTF-8), so we make all RC files UTF-16 to support all + # character sets. + if output_type in ('rc_header', 'resource_file_map_source', + 'resource_map_header', 'resource_map_source'): + return 'cp1252' + if output_type in ('android', 'c_format', 'plist', 'plist_strings', 'doc', + 'json', 'android_policy', 'chrome_messages_json', + 'chrome_messages_json_gzip', 'policy_templates'): + return 'utf_8' + # TODO(gfeher) modify here to set utf-8 encoding for admx/adml + return 'utf_16' + + def Process(self): + for output in self.res.GetOutputFiles(): + output.output_filename = os.path.abspath(os.path.join( + self.output_directory, output.GetOutputFilename())) + + # If there are whitelisted names, tag the tree once up front, this way + # while looping through the actual output, it is just an attribute check. + if self.whitelist_names: + self.AddWhitelistTags(self.res, self.whitelist_names) + + for output in self.res.GetOutputFiles(): + self.VerboseOut('Creating %s...' % output.GetOutputFilename()) + + # Set the context, for conditional inclusion of resources + self.res.SetOutputLanguage(output.GetLanguage()) + self.res.SetOutputContext(output.GetContext()) + self.res.SetFallbackToDefaultLayout(output.GetFallbackToDefaultLayout()) + self.res.SetDefines(self.defines) + + # Assign IDs only once to ensure that all outputs use the same IDs. + if self.res.GetIdMap() is None: + self.res.InitializeIds() + + # Make the output directory if it doesn't exist. + self.MakeDirectoriesTo(output.GetOutputFilename()) + + # Write the results to a temporary file and only overwrite the original + # if the file changed. This avoids unnecessary rebuilds. + out_filename = output.GetOutputFilename() + tmp_filename = out_filename + '.tmp' + tmpfile = self.fo_create(tmp_filename, 'wb') + + output_type = output.GetType() + if output_type != 'data_package': + encoding = self._EncodingForOutputType(output_type) + tmpfile = util.WrapOutputStream(tmpfile, encoding) + + # Iterate in-order through entire resource tree, calling formatters on + # the entry into a node and on exit out of it. + with tmpfile: + self.ProcessNode(self.res, output, tmpfile) + + if output_type == 'chrome_messages_json_gzip': + gz_filename = tmp_filename + '.gz' + with open(tmp_filename, 'rb') as tmpfile, open(gz_filename, 'wb') as f: + with gzip.GzipFile(filename='', mode='wb', fileobj=f, mtime=0) as fgz: + shutil.copyfileobj(tmpfile, fgz) + os.remove(tmp_filename) + tmp_filename = gz_filename + + # Now copy from the temp file back to the real output, but on Windows, + # only if the real output doesn't exist or the contents of the file + # changed. This prevents identical headers from being written and .cc + # files from recompiling (which is painful on Windows). + if not os.path.exists(out_filename): + os.rename(tmp_filename, out_filename) + else: + # CHROMIUM SPECIFIC CHANGE. + # This clashes with gyp + vstudio, which expect the output timestamp + # to change on a rebuild, even if nothing has changed, so only do + # it when opted in. + if not self.write_only_new: + write_file = True + else: + files_match = filecmp.cmp(out_filename, tmp_filename) + write_file = not files_match + if write_file: + shutil.copy2(tmp_filename, out_filename) + os.remove(tmp_filename) + + self.VerboseOut(' done.\n') + + # Print warnings if there are any duplicate shortcuts. + warnings = shortcuts.GenerateDuplicateShortcutsWarnings( + self.res.UberClique(), self.res.GetTcProject()) + if warnings: + print('\n'.join(warnings)) + + # Print out any fallback warnings, and missing translation errors, and + # exit with an error code if there are missing translations in a non-pseudo + # and non-official build. + warnings = (self.res.UberClique().MissingTranslationsReport(). + encode('ascii', 'replace')) + if warnings: + self.VerboseOut(warnings) + if self.res.UberClique().HasMissingTranslations(): + print(self.res.UberClique().missing_translations_) + sys.exit(-1) + + + def CheckAssertedOutputFiles(self, assert_output_files): + '''Checks that the asserted output files are specified in the given list. + + Returns true if the asserted files are present. If they are not, returns + False and prints the failure. + ''' + # Compare the absolute path names, sorted. + asserted = sorted([os.path.abspath(i) for i in assert_output_files]) + actual = sorted([ + os.path.abspath(os.path.join(self.output_directory, + i.GetOutputFilename())) + for i in self.res.GetOutputFiles()]) + + if asserted != actual: + missing = list(set(asserted) - set(actual)) + extra = list(set(actual) - set(asserted)) + error = '''Asserted file list does not match. + +Expected output files: +%s +Actual output files: +%s +Missing output files: +%s +Extra output files: +%s +''' + print(error % ('\n'.join(asserted), '\n'.join(actual), '\n'.join(missing), + ' \n'.join(extra))) + return False + return True + + + def GenerateDepfile(self, depfile, depdir, first_ids_file, depend_on_stamp): + '''Generate a depfile that contains the imlicit dependencies of the input + grd. The depfile will be in the same format as a makefile, and will contain + references to files relative to |depdir|. It will be put in |depfile|. + + For example, supposing we have three files in a directory src/ + + src/ + blah.grd <- depends on input{1,2}.xtb + input1.xtb + input2.xtb + + and we run + + grit -i blah.grd -o ../out/gen \ + --depdir ../out \ + --depfile ../out/gen/blah.rd.d + + from the directory src/ we will generate a depfile ../out/gen/blah.grd.d + that has the contents + + gen/blah.h: ../src/input1.xtb ../src/input2.xtb + + Where "gen/blah.h" is the first output (Ninja expects the .d file to list + the first output in cases where there is more than one). If the flag + --depend-on-stamp is specified, "gen/blah.rd.d.stamp" will be used that is + 'touched' whenever a new depfile is generated. + + Note that all paths in the depfile are relative to ../out, the depdir. + ''' + depfile = os.path.abspath(depfile) + depdir = os.path.abspath(depdir) + infiles = self.res.GetInputFiles() + + # We want to trigger a rebuild if the first ids change. + if first_ids_file is not None: + infiles.append(first_ids_file) + + if (depend_on_stamp): + output_file = depfile + ".stamp" + # Touch the stamp file before generating the depfile. + with open(output_file, 'a'): + os.utime(output_file, None) + else: + # Get the first output file relative to the depdir. + outputs = self.res.GetOutputFiles() + output_file = os.path.join(self.output_directory, + outputs[0].GetOutputFilename()) + + output_file = os.path.relpath(output_file, depdir) + # The path prefix to prepend to dependencies in the depfile. + prefix = os.path.relpath(os.getcwd(), depdir) + deps_text = ' '.join([os.path.join(prefix, i) for i in infiles]) + + depfile_contents = output_file + ': ' + deps_text + self.MakeDirectoriesTo(depfile) + outfile = self.fo_create(depfile, 'w', encoding='utf-8') + outfile.write(depfile_contents) + + @staticmethod + def MakeDirectoriesTo(file): + '''Creates directories necessary to contain |file|.''' + dir = os.path.split(file)[0] + if not os.path.exists(dir): + os.makedirs(dir) diff --git a/tools/grit/grit/tool/build_unittest.py b/tools/grit/grit/tool/build_unittest.py new file mode 100644 index 0000000000..c4a2f2752b --- /dev/null +++ b/tools/grit/grit/tool/build_unittest.py @@ -0,0 +1,341 @@ +#!/usr/bin/env python +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Unit tests for the 'grit build' tool. +''' + +from __future__ import print_function + +import codecs +import os +import sys +if __name__ == '__main__': + sys.path.append(os.path.join(os.path.dirname(__file__), '../..')) + +import unittest + +from grit import util +from grit.tool import build + + +class BuildUnittest(unittest.TestCase): + + # IDs should not change based on whitelisting. + # Android WebView currently relies on this. + EXPECTED_ID_MAP = { + 'IDS_MESSAGE_WHITELISTED': 6889, + 'IDR_STRUCTURE_WHITELISTED': 11546, + 'IDR_STRUCTURE_IN_TRUE_IF_WHITELISTED': 11548, + 'IDR_INCLUDE_WHITELISTED': 15601, + } + + def testFindTranslationsWithSubstitutions(self): + # This is a regression test; we had a bug where GRIT would fail to find + # messages with substitutions e.g. "Hello [IDS_USER]" where IDS_USER is + # another . + output_dir = util.TempDir({}) + builder = build.RcBuilder() + class DummyOpts(object): + def __init__(self): + self.input = util.PathFromRoot('grit/testdata/substitute.grd') + self.verbose = False + self.extra_verbose = False + builder.Run(DummyOpts(), ['-o', output_dir.GetPath()]) + output_dir.CleanUp() + + def testGenerateDepFile(self): + output_dir = util.TempDir({}) + builder = build.RcBuilder() + class DummyOpts(object): + def __init__(self): + self.input = util.PathFromRoot('grit/testdata/depfile.grd') + self.verbose = False + self.extra_verbose = False + expected_dep_file = output_dir.GetPath('substitute.grd.d') + builder.Run(DummyOpts(), ['-o', output_dir.GetPath(), + '--depdir', output_dir.GetPath(), + '--depfile', expected_dep_file]) + + self.failUnless(os.path.isfile(expected_dep_file)) + with open(expected_dep_file) as f: + line = f.readline() + (dep_output_file, deps_string) = line.split(': ') + deps = deps_string.split(' ') + + self.failUnlessEqual("default_100_percent.pak", dep_output_file) + self.failUnlessEqual(deps, [ + util.PathFromRoot('grit/testdata/default_100_percent/a.png'), + util.PathFromRoot('grit/testdata/grit_part.grdp'), + util.PathFromRoot('grit/testdata/special_100_percent/a.png'), + ]) + output_dir.CleanUp() + + def testGenerateDepFileWithResourceIds(self): + output_dir = util.TempDir({}) + builder = build.RcBuilder() + class DummyOpts(object): + def __init__(self): + self.input = util.PathFromRoot('grit/testdata/substitute_no_ids.grd') + self.verbose = False + self.extra_verbose = False + expected_dep_file = output_dir.GetPath('substitute_no_ids.grd.d') + builder.Run(DummyOpts(), + ['-f', util.PathFromRoot('grit/testdata/resource_ids'), + '-o', output_dir.GetPath(), + '--depdir', output_dir.GetPath(), + '--depfile', expected_dep_file]) + + self.failUnless(os.path.isfile(expected_dep_file)) + with open(expected_dep_file) as f: + line = f.readline() + (dep_output_file, deps_string) = line.split(': ') + deps = deps_string.split(' ') + + self.failUnlessEqual("resource.h", dep_output_file) + self.failUnlessEqual(2, len(deps)) + self.failUnlessEqual(deps[0], + util.PathFromRoot('grit/testdata/substitute.xmb')) + self.failUnlessEqual(deps[1], + util.PathFromRoot('grit/testdata/resource_ids')) + output_dir.CleanUp() + + def testAssertOutputs(self): + output_dir = util.TempDir({}) + class DummyOpts(object): + def __init__(self): + self.input = util.PathFromRoot('grit/testdata/substitute.grd') + self.verbose = False + self.extra_verbose = False + + # Incomplete output file list should fail. + builder_fail = build.RcBuilder() + self.failUnlessEqual(2, + builder_fail.Run(DummyOpts(), [ + '-o', output_dir.GetPath(), + '-a', os.path.abspath( + output_dir.GetPath('en_generated_resources.rc'))])) + + # Complete output file list should succeed. + builder_ok = build.RcBuilder() + self.failUnlessEqual(0, + builder_ok.Run(DummyOpts(), [ + '-o', output_dir.GetPath(), + '-a', os.path.abspath( + output_dir.GetPath('en_generated_resources.rc')), + '-a', os.path.abspath( + output_dir.GetPath('sv_generated_resources.rc')), + '-a', os.path.abspath(output_dir.GetPath('resource.h'))])) + output_dir.CleanUp() + + def testAssertTemplateOutputs(self): + output_dir = util.TempDir({}) + class DummyOpts(object): + def __init__(self): + self.input = util.PathFromRoot('grit/testdata/substitute_tmpl.grd') + self.verbose = False + self.extra_verbose = False + + # Incomplete output file list should fail. + builder_fail = build.RcBuilder() + self.failUnlessEqual(2, + builder_fail.Run(DummyOpts(), [ + '-o', output_dir.GetPath(), + '-E', 'name=foo', + '-a', os.path.abspath(output_dir.GetPath('en_foo_resources.rc'))])) + + # Complete output file list should succeed. + builder_ok = build.RcBuilder() + self.failUnlessEqual(0, + builder_ok.Run(DummyOpts(), [ + '-o', output_dir.GetPath(), + '-E', 'name=foo', + '-a', os.path.abspath(output_dir.GetPath('en_foo_resources.rc')), + '-a', os.path.abspath(output_dir.GetPath('sv_foo_resources.rc')), + '-a', os.path.abspath(output_dir.GetPath('resource.h'))])) + output_dir.CleanUp() + + def _verifyWhitelistedOutput(self, + filename, + whitelisted_ids, + non_whitelisted_ids, + encoding='utf8'): + self.failUnless(os.path.exists(filename)) + whitelisted_ids_found = [] + non_whitelisted_ids_found = [] + with codecs.open(filename, encoding=encoding) as f: + for line in f.readlines(): + for whitelisted_id in whitelisted_ids: + if whitelisted_id in line: + whitelisted_ids_found.append(whitelisted_id) + if filename.endswith('.h'): + numeric_id = int(line.split()[2]) + expected_numeric_id = self.EXPECTED_ID_MAP.get(whitelisted_id) + self.assertEqual( + expected_numeric_id, numeric_id, + 'Numeric ID for {} was {} should be {}'.format( + whitelisted_id, numeric_id, expected_numeric_id)) + for non_whitelisted_id in non_whitelisted_ids: + if non_whitelisted_id in line: + non_whitelisted_ids_found.append(non_whitelisted_id) + self.longMessage = True + self.assertEqual(whitelisted_ids, + whitelisted_ids_found, + '\nin file {}'.format(os.path.basename(filename))) + non_whitelisted_msg = ('Non-Whitelisted IDs {} found in {}' + .format(non_whitelisted_ids_found, os.path.basename(filename))) + self.assertFalse(non_whitelisted_ids_found, non_whitelisted_msg) + + def testWhitelistStrings(self): + output_dir = util.TempDir({}) + builder = build.RcBuilder() + class DummyOpts(object): + def __init__(self): + self.input = util.PathFromRoot('grit/testdata/whitelist_strings.grd') + self.verbose = False + self.extra_verbose = False + whitelist_file = util.PathFromRoot('grit/testdata/whitelist.txt') + builder.Run(DummyOpts(), ['-o', output_dir.GetPath(), + '-w', whitelist_file]) + header = output_dir.GetPath('whitelist_test_resources.h') + rc = output_dir.GetPath('en_whitelist_test_strings.rc') + + whitelisted_ids = ['IDS_MESSAGE_WHITELISTED'] + non_whitelisted_ids = ['IDS_MESSAGE_NOT_WHITELISTED'] + self._verifyWhitelistedOutput( + header, + whitelisted_ids, + non_whitelisted_ids, + ) + self._verifyWhitelistedOutput( + rc, + whitelisted_ids, + non_whitelisted_ids, + encoding='utf16' + ) + output_dir.CleanUp() + + def testWhitelistResources(self): + output_dir = util.TempDir({}) + builder = build.RcBuilder() + class DummyOpts(object): + def __init__(self): + self.input = util.PathFromRoot('grit/testdata/whitelist_resources.grd') + self.verbose = False + self.extra_verbose = False + whitelist_file = util.PathFromRoot('grit/testdata/whitelist.txt') + builder.Run(DummyOpts(), ['-o', output_dir.GetPath(), + '-w', whitelist_file]) + header = output_dir.GetPath('whitelist_test_resources.h') + map_cc = output_dir.GetPath('whitelist_test_resources_map.cc') + map_h = output_dir.GetPath('whitelist_test_resources_map.h') + pak = output_dir.GetPath('whitelist_test_resources.pak') + + # Ensure the resource map header and .pak files exist, but don't verify + # their content. + self.failUnless(os.path.exists(map_h)) + self.failUnless(os.path.exists(pak)) + + whitelisted_ids = [ + 'IDR_STRUCTURE_WHITELISTED', + 'IDR_STRUCTURE_IN_TRUE_IF_WHITELISTED', + 'IDR_INCLUDE_WHITELISTED', + ] + non_whitelisted_ids = [ + 'IDR_STRUCTURE_NOT_WHITELISTED', + 'IDR_STRUCTURE_IN_TRUE_IF_NOT_WHITELISTED', + 'IDR_STRUCTURE_IN_FALSE_IF_WHITELISTED', + 'IDR_STRUCTURE_IN_FALSE_IF_NOT_WHITELISTED', + 'IDR_INCLUDE_NOT_WHITELISTED', + ] + for output_file in (header, map_cc): + self._verifyWhitelistedOutput( + output_file, + whitelisted_ids, + non_whitelisted_ids, + ) + output_dir.CleanUp() + + def testWriteOnlyNew(self): + output_dir = util.TempDir({}) + builder = build.RcBuilder() + class DummyOpts(object): + def __init__(self): + self.input = util.PathFromRoot('grit/testdata/substitute.grd') + self.verbose = False + self.extra_verbose = False + UNCHANGED = 10 + header = output_dir.GetPath('resource.h') + + builder.Run(DummyOpts(), ['-o', output_dir.GetPath()]) + self.failUnless(os.path.exists(header)) + first_mtime = os.stat(header).st_mtime + + os.utime(header, (UNCHANGED, UNCHANGED)) + builder.Run(DummyOpts(), + ['-o', output_dir.GetPath(), '--write-only-new', '0']) + self.failUnless(os.path.exists(header)) + second_mtime = os.stat(header).st_mtime + + os.utime(header, (UNCHANGED, UNCHANGED)) + builder.Run(DummyOpts(), + ['-o', output_dir.GetPath(), '--write-only-new', '1']) + self.failUnless(os.path.exists(header)) + third_mtime = os.stat(header).st_mtime + + self.assertTrue(abs(second_mtime - UNCHANGED) > 5) + self.assertTrue(abs(third_mtime - UNCHANGED) < 5) + output_dir.CleanUp() + + def testGenerateDepFileWithDependOnStamp(self): + output_dir = util.TempDir({}) + builder = build.RcBuilder() + class DummyOpts(object): + def __init__(self): + self.input = util.PathFromRoot('grit/testdata/substitute.grd') + self.verbose = False + self.extra_verbose = False + expected_dep_file_name = 'substitute.grd.d' + expected_stamp_file_name = expected_dep_file_name + '.stamp' + expected_dep_file = output_dir.GetPath(expected_dep_file_name) + expected_stamp_file = output_dir.GetPath(expected_stamp_file_name) + if os.path.isfile(expected_stamp_file): + os.remove(expected_stamp_file) + builder.Run(DummyOpts(), ['-o', output_dir.GetPath(), + '--depdir', output_dir.GetPath(), + '--depfile', expected_dep_file, + '--depend-on-stamp']) + self.failUnless(os.path.isfile(expected_stamp_file)) + first_mtime = os.stat(expected_stamp_file).st_mtime + + # Reset mtime to very old. + OLDTIME = 10 + os.utime(expected_stamp_file, (OLDTIME, OLDTIME)) + + builder.Run(DummyOpts(), ['-o', output_dir.GetPath(), + '--depdir', output_dir.GetPath(), + '--depfile', expected_dep_file, + '--depend-on-stamp']) + self.failUnless(os.path.isfile(expected_stamp_file)) + second_mtime = os.stat(expected_stamp_file).st_mtime + + # Some OS have a 2s stat resolution window, so can't do a direct comparison. + self.assertTrue((second_mtime - OLDTIME) > 5) + self.assertTrue(abs(second_mtime - first_mtime) < 5) + + self.failUnless(os.path.isfile(expected_dep_file)) + with open(expected_dep_file) as f: + line = f.readline() + (dep_output_file, deps_string) = line.split(': ') + deps = deps_string.split(' ') + + self.failUnlessEqual(expected_stamp_file_name, dep_output_file) + self.failUnlessEqual(deps, [ + util.PathFromRoot('grit/testdata/substitute.xmb'), + ]) + output_dir.CleanUp() + + +if __name__ == '__main__': + unittest.main() diff --git a/tools/grit/grit/tool/buildinfo.py b/tools/grit/grit/tool/buildinfo.py new file mode 100644 index 0000000000..7f8d1a3b04 --- /dev/null +++ b/tools/grit/grit/tool/buildinfo.py @@ -0,0 +1,78 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +"""Output the list of files to be generated by GRIT from an input. +""" + +from __future__ import print_function + +import getopt +import os +import sys + +from grit import grd_reader +from grit.node import structure +from grit.tool import interface + +class DetermineBuildInfo(interface.Tool): + """Determine what files will be read and output by GRIT. +Outputs the list of generated files and inputs used to stdout. + +Usage: grit buildinfo [-o DIR] + +The output directory is used for display only. +""" + + def __init__(self): + pass + + def ShortDescription(self): + """Describes this tool for the usage message.""" + return ('Determine what files will be needed and\n' + 'output by GRIT with a given input.') + + def Run(self, opts, args): + """Main method for the buildinfo tool.""" + self.output_directory = '.' + (own_opts, args) = getopt.getopt(args, 'o:', ('help',)) + for (key, val) in own_opts: + if key == '-o': + self.output_directory = val + elif key == '--help': + self.ShowUsage() + sys.exit(0) + if len(args) > 0: + print('This tool takes exactly one argument: the output directory via -o') + return 2 + self.SetOptions(opts) + + res_tree = grd_reader.Parse(opts.input, debug=opts.extra_verbose) + + langs = {} + for output in res_tree.GetOutputFiles(): + if output.attrs['lang']: + langs[output.attrs['lang']] = os.path.dirname(output.GetFilename()) + + for lang, dirname in langs.items(): + old_output_language = res_tree.output_language + res_tree.SetOutputLanguage(lang) + for node in res_tree.ActiveDescendants(): + with node: + if (isinstance(node, structure.StructureNode) and + node.HasFileForLanguage()): + path = node.FileForLanguage(lang, dirname, create_file=False, + return_if_not_generated=False) + if path: + path = os.path.join(self.output_directory, path) + path = os.path.normpath(path) + print('%s|%s' % ('rc_all', path)) + res_tree.SetOutputLanguage(old_output_language) + + for output in res_tree.GetOutputFiles(): + path = os.path.join(self.output_directory, output.GetFilename()) + path = os.path.normpath(path) + print('%s|%s' % (output.GetType(), path)) + + for infile in res_tree.GetInputFiles(): + print('input|%s' % os.path.normpath(infile)) diff --git a/tools/grit/grit/tool/buildinfo_unittest.py b/tools/grit/grit/tool/buildinfo_unittest.py new file mode 100644 index 0000000000..24e9ddf8d8 --- /dev/null +++ b/tools/grit/grit/tool/buildinfo_unittest.py @@ -0,0 +1,90 @@ +#!/usr/bin/env python +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +"""Unit tests for the 'grit buildinfo' tool. +""" + +from __future__ import print_function + +import os +import sys +import unittest + +# This is needed to find some of the imports below. +if __name__ == '__main__': + sys.path.append(os.path.join(os.path.dirname(__file__), '../..')) + +from six import StringIO + +# pylint: disable-msg=C6204 +from grit.tool import buildinfo + + +class BuildInfoUnittest(unittest.TestCase): + def setUp(self): + self.old_cwd = os.getcwd() + # Change CWD to make tests work independently of callers CWD. + os.chdir(os.path.dirname(__file__)) + os.chdir('..') + self.buf = StringIO() + self.old_stdout = sys.stdout + sys.stdout = self.buf + + def tearDown(self): + sys.stdout = self.old_stdout + os.chdir(self.old_cwd) + + def testBuildOutput(self): + """Find all of the inputs and outputs for a GRD file.""" + info_object = buildinfo.DetermineBuildInfo() + + class DummyOpts(object): + def __init__(self): + self.input = '../grit/testdata/buildinfo.grd' + self.print_header = False + self.verbose = False + self.extra_verbose = False + info_object.Run(DummyOpts(), []) + output = self.buf.getvalue().replace('\\', '/') + self.failUnless(output.count(r'rc_all|sv_sidebar_loading.html')) + self.failUnless(output.count(r'rc_header|resource.h')) + self.failUnless(output.count(r'rc_all|en_generated_resources.rc')) + self.failUnless(output.count(r'rc_all|sv_generated_resources.rc')) + self.failUnless(output.count(r'input|../grit/testdata/substitute.xmb')) + self.failUnless(output.count(r'input|../grit/testdata/pr.bmp')) + self.failUnless(output.count(r'input|../grit/testdata/pr2.bmp')) + self.failUnless( + output.count(r'input|../grit/testdata/sidebar_loading.html')) + self.failUnless(output.count(r'input|../grit/testdata/transl.rc')) + self.failUnless(output.count(r'input|../grit/testdata/transl1.rc')) + + def testBuildOutputWithDir(self): + """Find all the inputs and outputs for a GRD file with an output dir.""" + info_object = buildinfo.DetermineBuildInfo() + + class DummyOpts(object): + def __init__(self): + self.input = '../grit/testdata/buildinfo.grd' + self.print_header = False + self.verbose = False + self.extra_verbose = False + info_object.Run(DummyOpts(), ['-o', '../grit/testdata']) + output = self.buf.getvalue().replace('\\', '/') + self.failUnless( + output.count(r'rc_all|../grit/testdata/sv_sidebar_loading.html')) + self.failUnless(output.count(r'rc_header|../grit/testdata/resource.h')) + self.failUnless( + output.count(r'rc_all|../grit/testdata/en_generated_resources.rc')) + self.failUnless( + output.count(r'rc_all|../grit/testdata/sv_generated_resources.rc')) + self.failUnless(output.count(r'input|../grit/testdata/substitute.xmb')) + self.failUnlessEqual(0, + output.count(r'rc_all|../grit/testdata/sv_welcome_toast.html')) + self.failUnless( + output.count(r'rc_all|../grit/testdata/en_welcome_toast.html')) + + +if __name__ == '__main__': + unittest.main() diff --git a/tools/grit/grit/tool/count.py b/tools/grit/grit/tool/count.py new file mode 100644 index 0000000000..ab37f2ddb3 --- /dev/null +++ b/tools/grit/grit/tool/count.py @@ -0,0 +1,52 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Count number of occurrences of a given message ID.''' + +from __future__ import print_function + +import getopt +import sys + +from grit import grd_reader +from grit.tool import interface + + +class CountMessage(interface.Tool): + '''Count the number of times a given message ID is used.''' + + def __init__(self): + pass + + def ShortDescription(self): + return 'Count the number of times a given message ID is used.' + + def ParseOptions(self, args): + """Set this objects and return all non-option arguments.""" + own_opts, args = getopt.getopt(args, '', ('help',)) + for key, val in own_opts: + if key == '--help': + self.ShowUsage() + sys.exit(0) + return args + + def Run(self, opts, args): + args = self.ParseOptions(args) + if len(args) != 1: + print('This tool takes a single tool-specific argument, the message ' + 'ID to count.') + return 2 + self.SetOptions(opts) + + id = args[0] + res_tree = grd_reader.Parse(opts.input, debug=opts.extra_verbose) + res_tree.OnlyTheseTranslations([]) + res_tree.RunGatherers() + + count = 0 + for c in res_tree.UberClique().AllCliques(): + if c.GetId() == id: + count += 1 + + print("There are %d occurrences of message %s." % (count, id)) diff --git a/tools/grit/grit/tool/diff_structures.py b/tools/grit/grit/tool/diff_structures.py new file mode 100644 index 0000000000..d69e009b58 --- /dev/null +++ b/tools/grit/grit/tool/diff_structures.py @@ -0,0 +1,119 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''The 'grit sdiff' tool. +''' + +from __future__ import print_function + +import os +import getopt +import sys +import tempfile + +from grit.node import structure +from grit.tool import interface + +from grit import constants +from grit import util + +# Builds the description for the tool (used as the __doc__ +# for the DiffStructures class). +_class_doc = """\ +Allows you to view the differences in the structure of two files, +disregarding their translateable content. Translateable portions of +each file are changed to the string "TTTTTT" before invoking the diff program +specified by the P4DIFF environment variable. + +Usage: grit sdiff [-t TYPE] [-s SECTION] [-e ENCODING] LEFT RIGHT + +LEFT and RIGHT are the files you want to diff. SECTION is required +for structure types like 'dialog' to identify the part of the file to look at. +ENCODING indicates the encoding of the left and right files (default 'cp1252'). +TYPE can be one of the following, defaults to 'tr_html': +""" +for gatherer in structure._GATHERERS: + _class_doc += " - %s\n" % gatherer + + +class DiffStructures(interface.Tool): + __doc__ = _class_doc + + def __init__(self): + self.section = None + self.left_encoding = 'cp1252' + self.right_encoding = 'cp1252' + self.structure_type = 'tr_html' + + def ShortDescription(self): + return 'View differences without regard for translateable portions.' + + def Run(self, global_opts, args): + (opts, args) = getopt.getopt(args, 's:e:t:', + ('help', 'left_encoding=', 'right_encoding=')) + for key, val in opts: + if key == '-s': + self.section = val + elif key == '-e': + self.left_encoding = val + self.right_encoding = val + elif key == '-t': + self.structure_type = val + elif key == '--left_encoding': + self.left_encoding = val + elif key == '--right_encoding': + self.right_encoding == val + elif key == '--help': + self.ShowUsage() + sys.exit(0) + + if len(args) != 2: + print("Incorrect usage - 'grit help sdiff' for usage details.") + return 2 + + if 'P4DIFF' not in os.environ: + print("Environment variable P4DIFF not set; defaulting to 'windiff'.") + diff_program = 'windiff' + else: + diff_program = os.environ['P4DIFF'] + + left_trans = self.MakeStaticTranslation(args[0], self.left_encoding) + try: + try: + right_trans = self.MakeStaticTranslation(args[1], self.right_encoding) + + os.system('%s %s %s' % (diff_program, left_trans, right_trans)) + finally: + os.unlink(right_trans) + finally: + os.unlink(left_trans) + + def MakeStaticTranslation(self, original_filename, encoding): + """Given the name of the structure type (self.structure_type), the filename + of the file holding the original structure, and optionally the "section" key + identifying the part of the file to look at (self.section), creates a + temporary file holding a "static" translation of the original structure + (i.e. one where all translateable parts have been replaced with "TTTTTT") + and returns the temporary file name. It is the caller's responsibility to + delete the file when finished. + + Args: + original_filename: 'c:\\bingo\\bla.rc' + + Return: + 'c:\\temp\\werlkjsdf334.tmp' + """ + original = structure._GATHERERS[self.structure_type](original_filename, + extkey=self.section, + encoding=encoding) + original.Parse() + translated = original.Translate(constants.CONSTANT_LANGUAGE, False) + + fname = tempfile.mktemp() + with util.WrapOutputStream(open(fname, 'wb')) as writer: + writer.write("Original filename: %s\n=============\n\n" + % original_filename) + writer.write(translated) # write in UTF-8 + + return fname diff --git a/tools/grit/grit/tool/diff_structures_unittest.py b/tools/grit/grit/tool/diff_structures_unittest.py new file mode 100644 index 0000000000..a6d7585761 --- /dev/null +++ b/tools/grit/grit/tool/diff_structures_unittest.py @@ -0,0 +1,46 @@ +#!/usr/bin/env python +# Copyright 2020 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Unit tests for the 'grit newgrd' tool.''' + +from __future__ import print_function + +import os +import sys +if __name__ == '__main__': + sys.path.append(os.path.join(os.path.dirname(__file__), '../..')) + +import unittest + +from grit.tool import diff_structures + + +class DummyOpts(object): + """Options needed by NewGrd.""" + + +class DiffStructuresUnittest(unittest.TestCase): + + def testMissingFiles(self): + """Verify failure w/out file inputs.""" + tool = diff_structures.DiffStructures() + ret = tool.Run(DummyOpts(), []) + self.assertIsNotNone(ret) + self.assertGreater(ret, 0) + + ret = tool.Run(DummyOpts(), ['left']) + self.assertIsNotNone(ret) + self.assertGreater(ret, 0) + + def testTooManyArgs(self): + """Verify failure w/too many inputs.""" + tool = diff_structures.DiffStructures() + ret = tool.Run(DummyOpts(), ['a', 'b', 'c']) + self.assertIsNotNone(ret) + self.assertGreater(ret, 0) + + +if __name__ == '__main__': + unittest.main() diff --git a/tools/grit/grit/tool/interface.py b/tools/grit/grit/tool/interface.py new file mode 100644 index 0000000000..e923205223 --- /dev/null +++ b/tools/grit/grit/tool/interface.py @@ -0,0 +1,62 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Base class and interface for tools. +''' + +from __future__ import print_function + +class Tool(object): + '''Base class for all tools. Tools should use their docstring (i.e. the + class-level docstring) for the help they want to have printed when they + are invoked.''' + + # + # Interface (abstract methods) + # + + def ShortDescription(self): + '''Returns a short description of the functionality of the tool.''' + raise NotImplementedError() + + def Run(self, global_options, my_arguments): + '''Runs the tool. + + Args: + global_options: object grit_runner.Options + my_arguments: [arg1 arg2 ...] + + Return: + 0 for success, non-0 for error + ''' + raise NotImplementedError() + + # + # Base class implementation + # + + def __init__(self): + self.o = None + + def ShowUsage(self): + '''Show usage text for this tool.''' + print(self.__doc__) + + def SetOptions(self, opts): + self.o = opts + + def Out(self, text): + '''Always writes out 'text'.''' + self.o.output_stream.write(text) + + def VerboseOut(self, text): + '''Writes out 'text' if the verbose option is on.''' + if self.o.verbose: + self.o.output_stream.write(text) + + def ExtraVerboseOut(self, text): + '''Writes out 'text' if the extra-verbose option is on. + ''' + if self.o.extra_verbose: + self.o.output_stream.write(text) diff --git a/tools/grit/grit/tool/menu_from_parts.py b/tools/grit/grit/tool/menu_from_parts.py new file mode 100644 index 0000000000..fcec26c5b1 --- /dev/null +++ b/tools/grit/grit/tool/menu_from_parts.py @@ -0,0 +1,79 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''The 'grit menufromparts' tool.''' + +from __future__ import print_function + +import six + +from grit import grd_reader +from grit import util +from grit import xtb_reader +from grit.tool import interface +from grit.tool import transl2tc + +import grit.extern.tclib + + +class MenuTranslationsFromParts(interface.Tool): + '''One-off tool to generate translated menu messages (where each menu is kept +in a single message) based on existing translations of the individual menu +items. Was needed when changing menus from being one message per menu item +to being one message for the whole menu.''' + + def ShortDescription(self): + return ('Create translations of whole menus from existing translations of ' + 'menu items.') + + def Run(self, globopt, args): + self.SetOptions(globopt) + assert len(args) == 2, "Need exactly two arguments, the XTB file and the output file" + + xtb_file = args[0] + output_file = args[1] + + grd = grd_reader.Parse(self.o.input, debug=self.o.extra_verbose) + grd.OnlyTheseTranslations([]) # don't load translations + grd.RunGatherers() + + xtb = {} + def Callback(msg_id, parts): + msg = [] + for part in parts: + if part[0]: + msg = [] + break # it had a placeholder so ignore it + else: + msg.append(part[1]) + if len(msg): + xtb[msg_id] = ''.join(msg) + with open(xtb_file, 'rb') as f: + xtb_reader.Parse(f, Callback) + + translations = [] # list of translations as per transl2tc.WriteTranslations + for node in grd: + if node.name == 'structure' and node.attrs['type'] == 'menu': + assert len(node.GetCliques()) == 1 + message = node.GetCliques()[0].GetMessage() + translation = [] + + contents = message.GetContent() + for part in contents: + if isinstance(part, six.string_types): + id = grit.extern.tclib.GenerateMessageId(part) + if id not in xtb: + print("WARNING didn't find all translations for menu %s" % + (node.attrs['name'],)) + translation = [] + break + translation.append(xtb[id]) + else: + translation.append(part.GetPresentation()) + + if len(translation): + translations.append([message.GetId(), ''.join(translation)]) + + with util.WrapOutputStream(open(output_file, 'wb')) as f: + transl2tc.TranslationToTc.WriteTranslations(f, translations) diff --git a/tools/grit/grit/tool/newgrd.py b/tools/grit/grit/tool/newgrd.py new file mode 100644 index 0000000000..66a18e9c04 --- /dev/null +++ b/tools/grit/grit/tool/newgrd.py @@ -0,0 +1,85 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Tool to create a new, empty .grd file with all the basic sections. +''' + +from __future__ import print_function + +import getopt +import sys + +from grit.tool import interface +from grit import constants +from grit import util + +# The contents of the new .grd file +_FILE_CONTENTS = '''\ + + + + + + + + + + + + + + + + + + + + + + +''' % constants.ENCODING_CHECK + + +class NewGrd(interface.Tool): + '''Usage: grit newgrd OUTPUT_FILE + +Creates a new, empty .grd file OUTPUT_FILE with comments about what to put +where in the file.''' + + def ShortDescription(self): + return 'Create a new empty .grd file.' + + def ParseOptions(self, args): + """Set this objects and return all non-option arguments.""" + own_opts, args = getopt.getopt(args, '', ('help',)) + for key, val in own_opts: + if key == '--help': + self.ShowUsage() + sys.exit(0) + return args + + def Run(self, opts, args): + args = self.ParseOptions(args) + if len(args) != 1: + print('This tool requires exactly one argument, the name of the output ' + 'file.') + return 2 + filename = args[0] + with util.WrapOutputStream(open(filename, 'wb'), 'utf-8') as out: + out.write(_FILE_CONTENTS) + print("Wrote file %s" % filename) diff --git a/tools/grit/grit/tool/newgrd_unittest.py b/tools/grit/grit/tool/newgrd_unittest.py new file mode 100644 index 0000000000..f7c8831df5 --- /dev/null +++ b/tools/grit/grit/tool/newgrd_unittest.py @@ -0,0 +1,51 @@ +#!/usr/bin/env python +# Copyright 2020 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Unit tests for the 'grit newgrd' tool.''' + +from __future__ import print_function + +import os +import sys +if __name__ == '__main__': + sys.path.append(os.path.join(os.path.dirname(__file__), '../..')) + +import unittest + +from grit import util +from grit.tool import newgrd + + +class DummyOpts(object): + """Options needed by NewGrd.""" + + +class NewgrdUnittest(unittest.TestCase): + + def testNewFile(self): + """Create a new file.""" + tool = newgrd.NewGrd() + with util.TempDir({}) as output_dir: + output_file = os.path.join(output_dir.GetPath(), 'new.grd') + self.assertIsNone(tool.Run(DummyOpts(), [output_file])) + self.assertTrue(os.path.exists(output_file)) + + def testMissingFile(self): + """Verify failure w/out file output.""" + tool = newgrd.NewGrd() + ret = tool.Run(DummyOpts(), []) + self.assertIsNotNone(ret) + self.assertGreater(ret, 0) + + def testTooManyArgs(self): + """Verify failure w/too many outputs.""" + tool = newgrd.NewGrd() + ret = tool.Run(DummyOpts(), ['a', 'b']) + self.assertIsNotNone(ret) + self.assertGreater(ret, 0) + + +if __name__ == '__main__': + unittest.main() diff --git a/tools/grit/grit/tool/postprocess_interface.py b/tools/grit/grit/tool/postprocess_interface.py new file mode 100644 index 0000000000..4bb8c5871f --- /dev/null +++ b/tools/grit/grit/tool/postprocess_interface.py @@ -0,0 +1,29 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +''' Base class for postprocessing of RC files. +''' + +from __future__ import print_function + +class PostProcessor(object): + ''' Base class for postprocessing of the RC file data before being + output through the RC2GRD tool. You should implement this class if + you want GRIT to do specific things to the RC files after it has + converted the data into GRD format, i.e. change the content of the + RC file, and put it into a P4 changelist, etc.''' + + + def Process(self, rctext, rcpath, grdnode): + ''' Processes the data in rctext and grdnode. + Args: + rctext: string containing the contents of the RC file being processed. + rcpath: the path used to access the file. + grdtext: the root node of the grd xml data generated by + the rc2grd tool. + + Return: + The root node of the processed GRD tree. + ''' + raise NotImplementedError() diff --git a/tools/grit/grit/tool/postprocess_unittest.py b/tools/grit/grit/tool/postprocess_unittest.py new file mode 100644 index 0000000000..77fe228bbe --- /dev/null +++ b/tools/grit/grit/tool/postprocess_unittest.py @@ -0,0 +1,64 @@ +#!/usr/bin/env python +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Unit test that checks postprocessing of files. + Tests postprocessing by having the postprocessor + modify the grd data tree, changing the message name attributes. +''' + +from __future__ import print_function + +import os +import re +import sys +if __name__ == '__main__': + sys.path.append(os.path.join(os.path.dirname(__file__), '../..')) + +import unittest + +import grit.tool.postprocess_interface +from grit.tool import rc2grd + + +class PostProcessingUnittest(unittest.TestCase): + + def testPostProcessing(self): + rctext = '''STRINGTABLE +BEGIN + DUMMY_STRING_1 "String 1" + // Some random description + DUMMY_STRING_2 "This text was added during preprocessing" +END + ''' + tool = rc2grd.Rc2Grd() + class DummyOpts(object): + verbose = False + extra_verbose = False + tool.o = DummyOpts() + tool.post_process = 'grit.tool.postprocess_unittest.DummyPostProcessor' + result = tool.Process(rctext, '.\resource.rc') + + self.failUnless( + result.children[2].children[2].children[0].attrs['name'] == 'SMART_STRING_1') + self.failUnless( + result.children[2].children[2].children[1].attrs['name'] == 'SMART_STRING_2') + +class DummyPostProcessor(grit.tool.postprocess_interface.PostProcessor): + ''' + Post processing replaces all message name attributes containing "DUMMY" to + "SMART". + ''' + def Process(self, rctext, rcpath, grdnode): + smarter = re.compile(r'(DUMMY)(.*)') + messages = grdnode.children[2].children[2] + for node in messages.children: + name_attr = node.attrs['name'] + m = smarter.search(name_attr) + if m: + node.attrs['name'] = 'SMART' + m.group(2) + return grdnode + +if __name__ == '__main__': + unittest.main() diff --git a/tools/grit/grit/tool/preprocess_interface.py b/tools/grit/grit/tool/preprocess_interface.py new file mode 100644 index 0000000000..67974e704e --- /dev/null +++ b/tools/grit/grit/tool/preprocess_interface.py @@ -0,0 +1,25 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +''' Base class for preprocessing of RC files. +''' + +from __future__ import print_function + +class PreProcessor(object): + ''' Base class for preprocessing of the RC file data before being + output through the RC2GRD tool. You should implement this class if + you have specific constructs in your RC files that GRIT cannot handle.''' + + + def Process(self, rctext, rcpath): + ''' Processes the data in rctext. + Args: + rctext: string containing the contents of the RC file being processed + rcpath: the path used to access the file. + + Return: + The processed text. + ''' + raise NotImplementedError() diff --git a/tools/grit/grit/tool/preprocess_unittest.py b/tools/grit/grit/tool/preprocess_unittest.py new file mode 100644 index 0000000000..40b95cd6f8 --- /dev/null +++ b/tools/grit/grit/tool/preprocess_unittest.py @@ -0,0 +1,50 @@ +#!/usr/bin/env python +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Unit test that checks preprocessing of files. + Tests preprocessing by adding having the preprocessor + provide the actual rctext data. +''' + +from __future__ import print_function + +import os +import sys +if __name__ == '__main__': + sys.path.append(os.path.join(os.path.dirname(__file__), '../..')) + +import unittest + +import grit.tool.preprocess_interface +from grit.tool import rc2grd + + +class PreProcessingUnittest(unittest.TestCase): + + def testPreProcessing(self): + tool = rc2grd.Rc2Grd() + class DummyOpts(object): + verbose = False + extra_verbose = False + tool.o = DummyOpts() + tool.pre_process = 'grit.tool.preprocess_unittest.DummyPreProcessor' + result = tool.Process('', '.\resource.rc') + + self.failUnless( + result.children[2].children[2].children[0].attrs['name'] == 'DUMMY_STRING_1') + +class DummyPreProcessor(grit.tool.preprocess_interface.PreProcessor): + def Process(self, rctext, rcpath): + rctext = '''STRINGTABLE +BEGIN + DUMMY_STRING_1 "String 1" + // Some random description + DUMMY_STRING_2 "This text was added during preprocessing" +END + ''' + return rctext + +if __name__ == '__main__': + unittest.main() diff --git a/tools/grit/grit/tool/rc2grd.py b/tools/grit/grit/tool/rc2grd.py new file mode 100644 index 0000000000..3195b39000 --- /dev/null +++ b/tools/grit/grit/tool/rc2grd.py @@ -0,0 +1,418 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''The 'grit rc2grd' tool.''' + +from __future__ import print_function + +import os.path +import getopt +import re +import sys + +import six +from six import StringIO + +import grit.node.empty +from grit.node import include +from grit.node import structure +from grit.node import message + +from grit.gather import rc +from grit.gather import tr_html + +from grit.tool import interface +from grit.tool import postprocess_interface +from grit.tool import preprocess_interface + +from grit import grd_reader +from grit import lazy_re +from grit import tclib +from grit import util + + +# Matches files referenced from an .rc file +_FILE_REF = lazy_re.compile(r''' + ^(?P[A-Z_0-9.]+)[ \t]+ + (?P[A-Z_0-9]+)[ \t]+ + "(?P.*?([^"]|""))"[ \t]*$''', re.VERBOSE | re.MULTILINE) + + +# Matches a dialog section +_DIALOG = lazy_re.compile( + r'^(?P[A-Z0-9_]+)\s+DIALOG(EX)?\s.+?^BEGIN\s*$.+?^END\s*$', + re.MULTILINE | re.DOTALL) + + +# Matches a menu section +_MENU = lazy_re.compile(r'^(?P[A-Z0-9_]+)\s+MENU.+?^BEGIN\s*$.+?^END\s*$', + re.MULTILINE | re.DOTALL) + + +# Matches a versioninfo section +_VERSIONINFO = lazy_re.compile( + r'^(?P[A-Z0-9_]+)\s+VERSIONINFO\s.+?^BEGIN\s*$.+?^END\s*$', + re.MULTILINE | re.DOTALL) + + +# Matches a stringtable +_STRING_TABLE = lazy_re.compile( + (r'^STRINGTABLE(\s+(PRELOAD|DISCARDABLE|CHARACTERISTICS.+|LANGUAGE.+|' + r'VERSION.+))*\s*\nBEGIN\s*$(?P.+?)^END\s*$'), + re.MULTILINE | re.DOTALL) + + +# Matches each message inside a stringtable, breaking it up into comments, +# the ID of the message, and the (RC-escaped) message text. +_MESSAGE = lazy_re.compile(r''' + (?P(^\s+//.+?)*) # 0 or more lines of comments preceding the message + ^\s* + (?P[A-Za-z0-9_]+) # id + \s+ + "(?P.*?([^"]|""))"([^"]|$) # The message itself + ''', re.MULTILINE | re.DOTALL | re.VERBOSE) + + +# Matches each line of comment text in a multi-line comment. +_COMMENT_TEXT = lazy_re.compile(r'^\s*//\s*(?P.+?)$', re.MULTILINE) + + +# Matches a string that is empty or all whitespace +_WHITESPACE_ONLY = lazy_re.compile(r'\A\s*\Z', re.MULTILINE) + + +# Finds printf and FormatMessage style format specifiers +# Uses non-capturing groups except for the outermost group, so the output of +# re.split() should include both the normal text and what we intend to +# replace with placeholders. +# TODO(joi) Check documentation for printf (and Windows variants) and FormatMessage +_FORMAT_SPECIFIER = lazy_re.compile( + r'(%[-# +]?(?:[0-9]*|\*)(?:\.(?:[0-9]+|\*))?(?:h|l|L)?' # printf up to last char + r'(?:d|i|o|u|x|X|e|E|f|F|g|G|c|r|s|ls|ws)' # printf last char + r'|\$[1-9][0-9]*)') # FormatMessage + + +class Rc2Grd(interface.Tool): + '''A tool for converting .rc files to .grd files. This tool is only for +converting the source (nontranslated) .rc file to a .grd file. For importing +existing translations, use the rc2xtb tool. + +Usage: grit [global options] rc2grd [OPTIONS] RCFILE + +The tool takes a single argument, which is the path to the .rc file to convert. +It outputs a .grd file with the same name in the same directory as the .rc file. +The .grd file may have one or more TODO comments for things that have to be +cleaned up manually. + +OPTIONS may be any of the following: + + -e ENCODING Specify the ENCODING of the .rc file. Default is 'cp1252'. + + -h TYPE Specify the TYPE attribute for HTML structures. + Default is 'tr_html'. + + -u ENCODING Specify the ENCODING of HTML files. Default is 'utf-8'. + + -n MATCH Specify the regular expression to match in comments that will + indicate that the resource the comment belongs to is not + translateable. Default is 'Not locali(s|z)able'. + + -r GRDFILE Specify that GRDFILE should be used as a "role model" for + any placeholders that otherwise would have had TODO names. + This attempts to find an identical message in the GRDFILE + and uses that instead of the automatically placeholderized + message. + + --pre CLASS Specify an optional, fully qualified classname, which + has to be a subclass of grit.tool.PreProcessor, to + run on the text of the RC file before conversion occurs. + This can be used to support constructs in the RC files + that GRIT cannot handle on its own. + + --post CLASS Specify an optional, fully qualified classname, which + has to be a subclass of grit.tool.PostProcessor, to + run on the text of the converted RC file. + This can be used to alter the content of the RC file + based on the conversion that occured. + +For menus, dialogs and version info, the .grd file will refer to the original +.rc file. Once conversion is complete, you can strip the original .rc file +of its string table and all comments as these will be available in the .grd +file. + +Note that this tool WILL NOT obey C preprocessor rules, so even if something +is #if 0-ed out it will still be included in the output of this tool +Therefore, if your .rc file contains sections like this, you should run the +C preprocessor on the .rc file or manually edit it before using this tool. +''' + + def ShortDescription(self): + return 'A tool for converting .rc source files to .grd files.' + + def __init__(self): + self.input_encoding = 'cp1252' + self.html_type = 'tr_html' + self.html_encoding = 'utf-8' + self.not_localizable_re = re.compile('Not locali(s|z)able') + self.role_model = None + self.pre_process = None + self.post_process = None + + def ParseOptions(self, args, help_func=None): + '''Given a list of arguments, set this object's options and return + all non-option arguments. + ''' + (own_opts, args) = getopt.getopt(args, 'e:h:u:n:r', + ('help', 'pre=', 'post=')) + for (key, val) in own_opts: + if key == '-e': + self.input_encoding = val + elif key == '-h': + self.html_type = val + elif key == '-u': + self.html_encoding = val + elif key == '-n': + self.not_localizable_re = re.compile(val) + elif key == '-r': + self.role_model = grd_reader.Parse(val) + elif key == '--pre': + self.pre_process = val + elif key == '--post': + self.post_process = val + elif key == '--help': + if help_func is None: + self.ShowUsage() + else: + help_func() + sys.exit(0) + return args + + def Run(self, opts, args): + args = self.ParseOptions(args) + if len(args) != 1: + print('This tool takes a single tool-specific argument, the path to the\n' + '.rc file to process.') + return 2 + self.SetOptions(opts) + + path = args[0] + out_path = os.path.join(util.dirname(path), + os.path.splitext(os.path.basename(path))[0] + '.grd') + + rctext = util.ReadFile(path, self.input_encoding) + grd_text = six.text_type(self.Process(rctext, path)) + with util.WrapOutputStream(open(out_path, 'wb'), 'utf-8') as outfile: + outfile.write(grd_text) + + print('Wrote output file %s.\nPlease check for TODO items in the file.' % + (out_path,)) + + + def Process(self, rctext, rc_path): + '''Processes 'rctext' and returns a resource tree corresponding to it. + + Args: + rctext: complete text of the rc file + rc_path: 'resource\resource.rc' + + Return: + grit.node.base.Node subclass + ''' + + if self.pre_process: + preprocess_class = util.NewClassInstance(self.pre_process, + preprocess_interface.PreProcessor) + if preprocess_class: + rctext = preprocess_class.Process(rctext, rc_path) + else: + self.Out( + 'PreProcessing class could not be found. Skipping preprocessing.\n') + + # Start with a basic skeleton for the .grd file + root = grd_reader.Parse(StringIO( + ''' + + + + + + + + + '''), util.dirname(rc_path)) + includes = root.children[2].children[0] + structures = root.children[2].children[1] + messages = root.children[2].children[2] + assert (isinstance(includes, grit.node.empty.IncludesNode) and + isinstance(structures, grit.node.empty.StructuresNode) and + isinstance(messages, grit.node.empty.MessagesNode)) + + self.AddIncludes(rctext, includes) + self.AddStructures(rctext, structures, os.path.basename(rc_path)) + self.AddMessages(rctext, messages) + + self.VerboseOut('Validating that all IDs are unique...\n') + root.ValidateUniqueIds() + self.ExtraVerboseOut('Done validating that all IDs are unique.\n') + + if self.post_process: + postprocess_class = util.NewClassInstance(self.post_process, + postprocess_interface.PostProcessor) + if postprocess_class: + root = postprocess_class.Process(rctext, rc_path, root) + else: + self.Out( + 'PostProcessing class could not be found. Skipping postprocessing.\n') + + return root + + + def IsHtml(self, res_type, fname): + '''Check whether both the type and file extension indicate HTML''' + fext = fname.split('.')[-1].lower() + return res_type == 'HTML' and fext in ('htm', 'html') + + + def AddIncludes(self, rctext, node): + '''Scans 'rctext' for included resources (e.g. BITMAP, ICON) and + adds each included resource as an child node of 'node'.''' + for m in _FILE_REF.finditer(rctext): + id = m.group('id') + res_type = m.group('type').upper() + fname = rc.Section.UnEscape(m.group('file')) + assert fname.find('\n') == -1 + if not self.IsHtml(res_type, fname): + self.VerboseOut('Processing %s with ID %s (filename: %s)\n' % + (res_type, id, fname)) + node.AddChild(include.IncludeNode.Construct(node, id, res_type, fname)) + + + def AddStructures(self, rctext, node, rc_filename): + '''Scans 'rctext' for structured resources (e.g. menus, dialogs, version + information resources and HTML templates) and adds each as a + child of 'node'.''' + # First add HTML includes + for m in _FILE_REF.finditer(rctext): + id = m.group('id') + res_type = m.group('type').upper() + fname = rc.Section.UnEscape(m.group('file')) + if self.IsHtml(type, fname): + node.AddChild(structure.StructureNode.Construct( + node, id, self.html_type, fname, self.html_encoding)) + + # Then add all RC includes + def AddStructure(res_type, id): + self.VerboseOut('Processing %s with ID %s\n' % (res_type, id)) + node.AddChild(structure.StructureNode.Construct(node, id, res_type, + rc_filename, + encoding=self.input_encoding)) + for m in _MENU.finditer(rctext): + AddStructure('menu', m.group('id')) + for m in _DIALOG.finditer(rctext): + AddStructure('dialog', m.group('id')) + for m in _VERSIONINFO.finditer(rctext): + AddStructure('version', m.group('id')) + + + def AddMessages(self, rctext, node): + '''Scans 'rctext' for all messages in string tables, preprocesses them as + much as possible for placeholders (e.g. messages containing $1, $2 or %s, %d + type format specifiers get those specifiers replaced with placeholders, and + HTML-formatted messages get run through the HTML-placeholderizer). Adds + each message as a node child of 'node'.''' + for tm in _STRING_TABLE.finditer(rctext): + table = tm.group('body') + for mm in _MESSAGE.finditer(table): + comment_block = mm.group('comment') + comment_text = [] + for cm in _COMMENT_TEXT.finditer(comment_block): + comment_text.append(cm.group('text')) + comment_text = ' '.join(comment_text) + + id = mm.group('id') + text = rc.Section.UnEscape(mm.group('text')) + + self.VerboseOut('Processing message %s (text: "%s")\n' % (id, text)) + + msg_obj = self.Placeholderize(text) + + # Messages that contain only placeholders do not need translation. + is_translateable = False + for item in msg_obj.GetContent(): + if isinstance(item, six.string_types): + if not _WHITESPACE_ONLY.match(item): + is_translateable = True + + if self.not_localizable_re.search(comment_text): + is_translateable = False + + message_meaning = '' + internal_comment = '' + + # If we have a "role model" (existing GRD file) and this node exists + # in the role model, use the description, meaning and translateable + # attributes from the role model. + if self.role_model: + role_node = self.role_model.GetNodeById(id) + if role_node: + is_translateable = role_node.IsTranslateable() + message_meaning = role_node.attrs['meaning'] + comment_text = role_node.attrs['desc'] + internal_comment = role_node.attrs['internal_comment'] + + # For nontranslateable messages, we don't want the complexity of + # placeholderizing everything. + if not is_translateable: + msg_obj = tclib.Message(text=text) + + msg_node = message.MessageNode.Construct(node, msg_obj, id, + desc=comment_text, + translateable=is_translateable, + meaning=message_meaning) + msg_node.attrs['internal_comment'] = internal_comment + + node.AddChild(msg_node) + self.ExtraVerboseOut('Done processing message %s\n' % id) + + + def Placeholderize(self, text): + '''Creates a tclib.Message object from 'text', attempting to recognize + a few different formats of text that can be automatically placeholderized + (HTML code, printf-style format strings, and FormatMessage-style format + strings). + ''' + + try: + # First try HTML placeholderizing. + # TODO(joi) Allow use of non-TotalRecall flavors of HTML placeholderizing + msg = tr_html.HtmlToMessage(text, True) + for item in msg.GetContent(): + if not isinstance(item, six.string_types): + return msg # Contained at least one placeholder, so we're done + + # HTML placeholderization didn't do anything, so try to find printf or + # FormatMessage format specifiers and change them into placeholders. + msg = tclib.Message() + parts = _FORMAT_SPECIFIER.split(text) + todo_counter = 1 # We make placeholder IDs 'TODO_0001' etc. + for part in parts: + if _FORMAT_SPECIFIER.match(part): + msg.AppendPlaceholder(tclib.Placeholder( + 'TODO_%04d' % todo_counter, part, 'TODO')) + todo_counter += 1 + elif part != '': + msg.AppendText(part) + + if self.role_model and len(parts) > 1: # there are TODO placeholders + role_model_msg = self.role_model.UberClique().BestCliqueByOriginalText( + msg.GetRealContent(), '') + if role_model_msg: + # replace wholesale to get placeholder names and examples + msg = role_model_msg + + return msg + except: + print('Exception processing message with text "%s"' % text) + raise diff --git a/tools/grit/grit/tool/rc2grd_unittest.py b/tools/grit/grit/tool/rc2grd_unittest.py new file mode 100644 index 0000000000..6d53794c27 --- /dev/null +++ b/tools/grit/grit/tool/rc2grd_unittest.py @@ -0,0 +1,163 @@ +#!/usr/bin/env python +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +'''Unit tests for grit.tool.rc2grd''' + +from __future__ import print_function + +import os +import sys +if __name__ == '__main__': + sys.path.append(os.path.join(os.path.dirname(__file__), '../..')) + +import re +import unittest + +from six import StringIO + +from grit import grd_reader +from grit import util +from grit.node import base +from grit.tool import rc2grd + + +class Rc2GrdUnittest(unittest.TestCase): + def testPlaceholderize(self): + tool = rc2grd.Rc2Grd() + original = "Hello %s, how are you? I'm $1 years old!" + msg = tool.Placeholderize(original) + self.failUnless(msg.GetPresentableContent() == "Hello TODO_0001, how are you? I'm TODO_0002 years old!") + self.failUnless(msg.GetRealContent() == original) + + def testHtmlPlaceholderize(self): + tool = rc2grd.Rc2Grd() + original = "Hello [USERNAME], how are you? I'm [AGE] years old!" + msg = tool.Placeholderize(original) + self.failUnless(msg.GetPresentableContent() == + "Hello BEGIN_BOLDX_USERNAME_XEND_BOLD, how are you? I'm X_AGE_X years old!") + self.failUnless(msg.GetRealContent() == original) + + def testMenuWithoutWhitespaceRegression(self): + # There was a problem in the original regular expression for parsing out + # menu sections, that would parse the following block of text as a single + # menu instead of two. + two_menus = ''' +// Hyper context menus +IDR_HYPERMENU_FOLDER MENU +BEGIN + POPUP "HyperFolder" + BEGIN + MENUITEM "Open Containing Folder", IDM_OPENFOLDER + END +END + +IDR_HYPERMENU_FILE MENU +BEGIN + POPUP "HyperFile" + BEGIN + MENUITEM "Open Folder", IDM_OPENFOLDER + END +END + +''' + self.failUnless(len(rc2grd._MENU.findall(two_menus)) == 2) + + def testRegressionScriptWithTranslateable(self): + tool = rc2grd.Rc2Grd() + + # test rig + class DummyNode(base.Node): + def AddChild(self, item): + self.node = item + verbose = False + extra_verbose = False + tool.not_localizable_re = re.compile('') + tool.o = DummyNode() + + rc_text = '''STRINGTABLE\nBEGIN\nID_BINGO ""\nEND\n''' + tool.AddMessages(rc_text, tool.o) + self.failUnless(tool.o.node.GetCdata().find('Set As Homepage') != -1) + + # TODO(joi) Improve the HTML parser to support translateables inside + #