From 164c75269ceb4de6b2e97d55d5625ee4ca4943dd Mon Sep 17 00:00:00 2001 From: Martin Fischer Date: Sun, 17 Jul 2022 10:42:39 +0200 Subject: detect proposals without text as stubs --- proposals.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/proposals.py b/proposals.py index bd8c9ad..37e8ead 100755 --- a/proposals.py +++ b/proposals.py @@ -58,6 +58,19 @@ def is_stub(doc): # detect proposals without headings as stubs return True + if not any( + n + for n in doc.nodes + # any text + if isinstance(n, mwparserfromhell.nodes.text.Text) + # other than newlines + and n.strip() + # and "Please comment on the [[{{TALKPAGENAME}}|discussion page]]." + and n.strip() not in ('Please comment on the', '.') + ): + # detect proposals without text as stubs + return True + return False -- cgit v1.2.3