Browse Source

Replace the actual checker with a dummy.

This allows us to play around with the interface without actually
running checks just yet.
pull/24/head
Ben Kurtovic 12 years ago
parent
commit
d1be6b55df
1 changed files with 7 additions and 1 deletions
  1. +7
    -1
      pages/copyvios.mako

+ 7
- 1
pages/copyvios.mako View File

@@ -24,10 +24,16 @@

page = site.get_page(title)
conn = open_sql_connection(bot)
if not query.get("nocache"):
"""if not query.get("nocache"):
result = get_cached_results(page, conn)
if query.get("nocache") or not result:
result = get_fresh_results(page, conn)
"""
mc1 = __import__("earwigbot").wiki.copyvios.MarkovChain(page.get())
mc2 = __import__("earwigbot").wiki.copyvios.MarkovChain("This is some random textual content for a page.")
mci = __import__("earwigbot").wiki.copyvios.MarkovChainIntersection(mc1, mc2)
result = __import__("earwigbot").wiki.copyvios.CopyvioCheckResult(
True, 0.67123, "http://example.com/", 7, mc1, (mc2, mci))
return page, result

def open_sql_connection(bot):


Loading…
Cancel
Save