2012-05-29 19:52:43 +04:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2007-09-20 13:34:33 +04:00
|
|
|
def test(mod, path, entity = None):
|
|
|
|
import re
|
2013-02-13 00:51:23 +04:00
|
|
|
# ignore anything but Firefox
|
2007-09-20 13:34:33 +04:00
|
|
|
if mod not in ("netwerk", "dom", "toolkit", "security/manager",
|
2017-08-03 17:57:19 +03:00
|
|
|
"devtools/client", "devtools/shared", "devtools/shim",
|
2016-03-08 00:32:26 +03:00
|
|
|
"browser",
|
2017-10-12 13:27:14 +03:00
|
|
|
"browser/extensions/formautofill",
|
2017-06-02 12:44:56 +03:00
|
|
|
"browser/extensions/onboarding",
|
2017-01-25 01:37:25 +03:00
|
|
|
"browser/extensions/webcompat-reporter",
|
2016-10-10 01:15:00 +03:00
|
|
|
"extensions/spellcheck",
|
2010-07-30 13:07:42 +04:00
|
|
|
"other-licenses/branding/firefox",
|
2011-04-13 11:58:13 +04:00
|
|
|
"browser/branding/official",
|
2016-10-10 01:15:00 +03:00
|
|
|
"services/sync"):
|
2013-09-11 16:12:05 +04:00
|
|
|
return "ignore"
|
2014-05-30 10:46:00 +04:00
|
|
|
if mod not in ("browser", "extensions/spellcheck"):
|
|
|
|
# we only have exceptions for browser and extensions/spellcheck
|
2013-09-11 16:12:05 +04:00
|
|
|
return "error"
|
2017-06-05 11:28:33 +03:00
|
|
|
if entity is None:
|
2016-11-01 05:09:00 +03:00
|
|
|
# the only files to ignore are spell checkers
|
2007-09-20 13:34:33 +04:00
|
|
|
if mod == "extensions/spellcheck":
|
2013-09-11 16:12:05 +04:00
|
|
|
return "ignore"
|
2014-06-13 06:14:00 +04:00
|
|
|
return "error"
|
2007-09-20 13:34:33 +04:00
|
|
|
if mod == "extensions/spellcheck":
|
|
|
|
# l10n ships en-US dictionary or something, do compare
|
2013-09-11 16:12:05 +04:00
|
|
|
return "error"
|
2007-09-20 13:34:33 +04:00
|
|
|
if path == "defines.inc":
|
2013-09-11 16:12:05 +04:00
|
|
|
return "ignore" if entity == "MOZ_LANGPACK_CONTRIBUTORS" else "error"
|
2007-09-20 13:34:33 +04:00
|
|
|
|
2013-09-11 16:12:05 +04:00
|
|
|
if mod == "browser" and path == "chrome/browser-region/region.properties":
|
2007-09-20 13:34:33 +04:00
|
|
|
# only region.properties exceptions remain, compare all others
|
2013-09-11 16:12:05 +04:00
|
|
|
return ("ignore"
|
|
|
|
if (re.match(r"browser\.search\.order\.[1-9]", entity) or
|
|
|
|
re.match(r"browser\.contentHandlers\.types\.[0-5]", entity) or
|
|
|
|
re.match(r"gecko\.handlerService\.schemes\.", entity) or
|
|
|
|
re.match(r"gecko\.handlerService\.defaultHandlersVersion", entity))
|
|
|
|
else "error")
|
|
|
|
return "error"
|