From c9366d83c80252e95d68b7b8c68c743701a49149 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Mon, 30 Jun 2014 21:17:25 -0400 Subject: [PATCH] Fix cookie name; remove beta note (for now). --- static/script.js | 6 +++--- templates/index.mako | 1 - 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/static/script.js b/static/script.js index 57fe64b..510d9a7 100644 --- a/static/script.js +++ b/static/script.js @@ -5,12 +5,12 @@ function copyvio_toggle_details(details) { if (link.innerHTML == "Show details:") { details.style.display = "block"; link.innerHTML = "Hide details:"; - set_cookie("CopyviosCVShowDetails", "True", 1095); + set_cookie("CopyviosShowDetails", "True", 1095); } else { details.style.display = "none"; link.innerHTML = "Show details:"; - if (get_cookie("CopyviosCVShowDetails")) { - delete_cookie("CopyviosCVShowDetails"); + if (get_cookie("CopyviosShowDetails")) { + delete_cookie("CopyviosShowDetails"); } } } diff --git a/templates/index.mako b/templates/index.mako index 9adb565..7f33922 100644 --- a/templates/index.mako +++ b/templates/index.mako @@ -23,7 +23,6 @@ %endif

This tool attempts to detect copyright violations in articles. Simply give the title of the page or ID of the revision you want to check and hit Submit. The tool will search for similar content elsewhere on the web using Yahoo! BOSS and then display a report if a match is found. If you give a URL, it will skip the search engine step and directly display a report comparing the article to that particular webpage, like the Duplication Detector.

Specific websites can be excluded from the check (for example, if their content is in the public domain) by being added to the excluded URL list.

-

Note: The tool is still in beta. You are completely welcome to use it and provide feedback, but be aware that it may produce strange or broken results.