diff options
author | Martin Fischer <martin@push-f.com> | 2022-07-17 12:39:27 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2022-07-17 12:45:20 +0200 |
commit | 6c5e3f8cc8f288aa40de391a0b66f9ca983cdbbb (patch) | |
tree | fa40059a1df38bf88c34cdfa031f362b63977c38 | |
parent | 164c75269ceb4de6b2e97d55d5625ee4ca4943dd (diff) |
find proposals via embeddedin instead of categories
More reliable. The template doesn't add the categories when name
is an empty string because [[Category:Foo|{{{name}}}]] for some
reason breaks in MediaWiki when name is given as an empty string.
Also avoids the problem that if categories are added manually
pages might be in multiple categories.
-rwxr-xr-x | proposals.py | 28 |
1 files changed, 8 insertions, 20 deletions
diff --git a/proposals.py b/proposals.py index 37e8ead..157e727 100755 --- a/proposals.py +++ b/proposals.py @@ -12,25 +12,6 @@ osmwiki = pywikiapi.Site(OSMWIKI_ENDPOINT) # https://wiki.openstreetmap.org/w/index.php?title=Template:Proposal_page&action=edit -CATEGORIES = ( - 'Category:Proposed features under way', - 'Category:Proposals without post-vote cleanup', - 'Category:Active features', - 'Category:Inactive features', -) - - -def find_proposals(): - for cat in CATEGORIES: - yield from osmwiki.query_pages( - generator='categorymembers', - gcmtitle=cat, - gcmlimit='max', - prop='revisions', - rvprop='content', - rvslots='main', - ) - def get_template_val(tpl, name): param = tpl.get(name, None) @@ -74,7 +55,14 @@ def is_stub(doc): return False -for page in find_proposals(): +for page in osmwiki.query_pages( + generator='embeddedin', + geititle='Template:Proposal Page', + geilimit='max', + prop='revisions', + rvprop='content', + rvslots='main', +): page_title = page['title'] text = page['revisions'][0]['slots']['main']['content'] doc = mwparserfromhell.parse(text) |