Ver código fonte

Some cosmetic stuff, and using MWParserFromHell's iterative equivalent when possible.

tags/v0.1^2
Ben Kurtovic 12 anos atrás
pai
commit
bbf6b61491
1 arquivos alterados com 2 adições e 3 exclusões
  1. +2
    -3
      earwigbot/wiki/page.py

+ 2
- 3
earwigbot/wiki/page.py Ver arquivo

@@ -76,7 +76,6 @@ class Page(CopyrightMixIn):
- :py:meth:`~earwigbot.wiki.copyvios.CopyrightMixIn.copyvio_compare`: - :py:meth:`~earwigbot.wiki.copyvios.CopyrightMixIn.copyvio_compare`:
checks the page like :py:meth:`copyvio_check`, but against a specific URL checks the page like :py:meth:`copyvio_check`, but against a specific URL
""" """

PAGE_UNKNOWN = 0 PAGE_UNKNOWN = 0
PAGE_INVALID = 1 PAGE_INVALID = 1
PAGE_MISSING = 2 PAGE_MISSING = 2
@@ -757,8 +756,8 @@ class Page(CopyrightMixIn):
username = username.lower() username = username.lower()
optouts = [optout.lower() for optout in optouts] if optouts else [] optouts = [optout.lower() for optout in optouts] if optouts else []


re_bots = "\{\{\s*(no)?bots\s*(\||\}\})"
filter = self.parse().filter_templates(matches=re_bots, recursive=True)
r_bots = "\{\{\s*(no)?bots\s*(\||\}\})"
filter = self.parse().ifilter_templates(matches=r_bots, recursive=True)
for template in filter: for template in filter:
if template.has_param("deny"): if template.has_param("deny"):
denies = parse_param(template, "deny") denies = parse_param(template, "deny")


Carregando…
Cancelar
Salvar