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"
|
||||
|
||||
count = 0
|
||||
page_raw = get_raw(page)
|
||||
page_html = @client.get_content(url_page(page))
|
||||
get_category_articles(category).each do |title|
|
||||
re = Regexp.new(Regexp.escape("[[" + title))
|
||||
if ! re.match(page_raw) && title != page
|
||||
re = Regexp.new(Regexp.escape("title=\"" + CGI.escapeHTML(title)))
|
||||
if ! re.match(page_html) && title != page
|
||||
body += "* [[" + title + "]]\n"
|
||||
count += 1
|
||||
end
|
||||
|
|
Reference in a new issue