2012-05-29 08:52:43 -07: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 02:34:33 -07:00
|
|
|
def test(mod, path, entity = None):
|
|
|
|
import re
|
2013-02-12 12:51:23 -08:00
|
|
|
# ignore anything but Firefox
|
2007-09-20 02:34:33 -07:00
|
|
|
if mod not in ("netwerk", "dom", "toolkit", "security/manager",
|
2014-05-29 23:46:00 -07:00
|
|
|
"browser", "webapprt",
|
2013-04-12 01:23:10 -07:00
|
|
|
"extensions/reporter", "extensions/spellcheck",
|
2010-07-30 02:07:42 -07:00
|
|
|
"other-licenses/branding/firefox",
|
2011-04-13 00:58:13 -07:00
|
|
|
"browser/branding/official",
|
2010-07-30 02:07:42 -07:00
|
|
|
"services/sync"):
|
2013-09-11 05:12:05 -07:00
|
|
|
return "ignore"
|
2014-05-29 23:46:00 -07:00
|
|
|
if mod not in ("browser", "extensions/spellcheck"):
|
|
|
|
# we only have exceptions for browser and extensions/spellcheck
|
2013-09-11 05:12:05 -07:00
|
|
|
return "error"
|
2007-09-20 02:34:33 -07:00
|
|
|
if not entity:
|
2013-09-11 05:12:05 -07:00
|
|
|
# the only files to ignore are spell checkers and search
|
2007-09-20 02:34:33 -07:00
|
|
|
if mod == "extensions/spellcheck":
|
2013-09-11 05:12:05 -07:00
|
|
|
return "ignore"
|
2007-09-20 02:34:33 -07:00
|
|
|
# browser
|
2014-06-12 19:14:00 -07:00
|
|
|
if (re.match(r"searchplugins\/.+\.xml", path) or
|
|
|
|
path == "searchplugins/metrolist.txt"):
|
|
|
|
return "ignore"
|
|
|
|
return "error"
|
2007-09-20 02:34:33 -07:00
|
|
|
if mod == "extensions/spellcheck":
|
|
|
|
# l10n ships en-US dictionary or something, do compare
|
2013-09-11 05:12:05 -07:00
|
|
|
return "error"
|
2007-09-20 02:34:33 -07:00
|
|
|
if path == "defines.inc":
|
2013-09-11 05:12:05 -07:00
|
|
|
return "ignore" if entity == "MOZ_LANGPACK_CONTRIBUTORS" else "error"
|
2007-09-20 02:34:33 -07:00
|
|
|
|
2013-09-11 05:12:05 -07:00
|
|
|
if mod == "browser" and path == "chrome/browser-region/region.properties":
|
2007-09-20 02:34:33 -07:00
|
|
|
# only region.properties exceptions remain, compare all others
|
2013-09-11 05:12:05 -07: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"
|