diff --git a/bouncer/embed_detector.py b/bouncer/embed_detector.py index 3eb770ca..33923a4f 100644 --- a/bouncer/embed_detector.py +++ b/bouncer/embed_detector.py @@ -10,8 +10,15 @@ # Patterns are shell-style wildcards ('*' matches any number of chars, '?' # matches a single char). PATTERNS = [ + # Hypothesis websites. "h.readthedocs.io/*", "web.hypothes.is/blog/*", + + # Publisher partners: + + # American Psychological Organization. + "psycnet.apa.org/fulltext/*", + "awspntest.apa.org/fulltext/*", ] COMPILED_PATTERNS = [re.compile(fnmatch.translate(pat)) for pat in PATTERNS]