From d1be6b55df6ff34e3028e10a353e81a15beadf3f Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Thu, 19 Jul 2012 02:09:42 -0400 Subject: [PATCH] Replace the actual checker with a dummy. This allows us to play around with the interface without actually running checks just yet. --- pages/copyvios.mako | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pages/copyvios.mako b/pages/copyvios.mako index f5749e5..c77dab5 100644 --- a/pages/copyvios.mako +++ b/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):