neingeist
/
neinomaten
Archived
1
0
Fork 0

Use HTML output rather than raw wikitax, to badly support transclusions

master
neingeist 19 years ago
parent 01b2b8de56
commit e21743caa1

@ -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