浏览代码

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 年前
父节点
当前提交
d1be6b55df
共有 1 个文件被更改,包括 7 次插入1 次删除
  1. +7
    -1
      pages/copyvios.mako

+ 7
- 1
pages/copyvios.mako 查看文件

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


正在加载...
取消
保存