Revision 20cb571d9ead142bc7675fe78d93a572014633fd authored by Ryan VanderMeulen on 21 May 2014, 00:56:27 UTC, committed by Ryan VanderMeulen on 21 May 2014, 00:56:27 UTC
1 parent 6bc5f2e
Raw File
filter.py
# 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/.


def test(mod, path, entity = None):
  import re
  # ignore anything but b2g and specific overloads from dom and toolkit
  if mod not in ("netwerk", "dom", "toolkit", "security/manager",
                 "mobile",
                 "b2g"):
    return "ignore"

  return "error"
back to top