Browse Source

Completely case-insensitive matching for signatures.

tags/v0.1^2
Ben Kurtovic 12 years ago
parent
commit
3d1ba6ef4a
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      earwigbot/tasks/drn_clerkbot.py

+ 3
- 3
earwigbot/tasks/drn_clerkbot.py View File

@@ -456,11 +456,11 @@ class DRNClerkBot(Task):

Signatures are returned as tuples of (editor, timestamp as datetime).
"""
regex = r"\[\[(?:[uU]ser(?:\stalk)?\:|[sS]pecial\:[cC]ontributions\/)"
regex = r"\[\[(?:User(?:\stalk)?\:|Special\:Contributions\/)"
regex += r"([^\n\[\]|]{,256}?)(?:\||\]\])"
regex += r"(?!.*?(?:[uU]ser(?:\stalk)?\:|[sS]pecial\:[cC]ontributions\/).*?)"
regex += r"(?!.*?(?:User(?:\stalk)?\:|Special\:Contributions\/).*?)"
regex += r".{,256}?(\d{2}:\d{2},\s\d{1,2}\s\w+\s\d{4}\s\(UTC\))"
matches = re.findall(regex, text, re.U)
matches = re.findall(regex, text, re.U|re.I)
signatures = []
for userlink, stamp in matches:
username = userlink.split("/", 1)[0].replace("_", " ").strip()


Loading…
Cancel
Save