Bug 418682: make the l10n comparison scripts ignore the optional gecko.handlerService.* prefs, r=pike, a=NPOTB

This commit is contained in:
gavin@gavinsharp.com 2008-03-03 03:47:41 -08:00
Родитель cdeb9ccbe5
Коммит e342d4ceab
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -24,5 +24,7 @@ def test(mod, path, entity = None):
# only region.properties exceptions remain, compare all others
return True
return not (re.match(r"browser\.search\.order.[1-9]", entity) or
re.match(r"browser\.contentHandlers\.types.[0-5]", entity))
return not (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))