Use HTML output rather than raw wikitax, to badly support transclusions
This commit is contained in:
parent
01b2b8de56
commit
e21743caa1
1 changed files with 3 additions and 3 deletions
|
@ -7,10 +7,10 @@ class WikiChecker < MediaWikiBot::WikiBot
|
||||||
body += "Unter [[#{page}]] fehlen folgende Artikel aus [[:#{category}]]:\n\n"
|
body += "Unter [[#{page}]] fehlen folgende Artikel aus [[:#{category}]]:\n\n"
|
||||||
|
|
||||||
count = 0
|
count = 0
|
||||||
page_raw = get_raw(page)
|
page_html = @client.get_content(url_page(page))
|
||||||
get_category_articles(category).each do |title|
|
get_category_articles(category).each do |title|
|
||||||
re = Regexp.new(Regexp.escape("[[" + title))
|
re = Regexp.new(Regexp.escape("title=\"" + CGI.escapeHTML(title)))
|
||||||
if ! re.match(page_raw) && title != page
|
if ! re.match(page_html) && title != page
|
||||||
body += "* [[" + title + "]]\n"
|
body += "* [[" + title + "]]\n"
|
||||||
count += 1
|
count += 1
|
||||||
end
|
end
|
||||||
|
|
Reference in a new issue