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",
|
2014-05-30 10:46:00 +04:00
|
|
|
"browser", "webapprt",
|
2013-04-12 12:23:10 +04:00
|
|
|
"extensions/reporter", "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",
|
2010-07-30 13:07:42 +04: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"
|
2007-09-20 13:34:33 +04:00
|
|
|
if not entity:
|
2013-09-11 16:12:05 +04:00
|
|
|
# the only files to ignore are spell checkers and search
|
2007-09-20 13:34:33 +04:00
|
|
|
if mod == "extensions/spellcheck":
|
2013-09-11 16:12:05 +04:00
|
|
|
return "ignore"
|
2007-09-20 13:34:33 +04:00
|
|
|
# browser
|
2014-06-13 06:14:00 +04:00
|
|
|
if (re.match(r"searchplugins\/.+\.xml", path) or
|
|
|
|
path == "searchplugins/metrolist.txt"):
|
|
|
|
return "ignore"
|
|
|
|
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"
|