소스 검색

Clean up form submission with JS; copyedit.

pull/24/head
Ben Kurtovic 10 년 전
부모
커밋
65aafa8626
3개의 변경된 파일14개의 추가작업 그리고 4개의 파일을 삭제
  1. +10
    -0
      static/script.js
  2. +1
    -1
      static/style.css
  3. +3
    -3
      templates/index.mako

+ 10
- 0
static/script.js 파일 보기

@@ -97,6 +97,16 @@ $(document).ready(function() {
$(".cv-search").prop("disabled", true);
$(".cv-compare").prop("disabled", false);
});

if ($("#action-search" ).is(":checked")) $("#action-search" ).change();
if ($("#action-compare").is(":checked")) $("#action-compare").change();

$("#cv-form").submit(function() {
if ($("#action-search").is(":checked")) {
if ($("#cv-cb-engine").is(":checked"))
$(".cv-search[type='hidden'][name='use_engine'").prop("disabled", true);
if ($("#cv-cb-links").is(":checked"))
$(".cv-search[type='hidden'][name='use_links'").prop("disabled", true);
}
});
});

+ 1
- 1
static/style.css 파일 보기

@@ -58,7 +58,7 @@ table#heading {
width: 100%;
}

table#cv-form {
table#cv-form-outer {
width: 750px;
}



+ 3
- 3
templates/index.mako 파일 보기

@@ -44,11 +44,11 @@
</div>
% endif
%endif
<p>This tool attempts to detect <a href="//en.wikipedia.org/wiki/WP:COPYVIO">copyright violations</a> 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 <a href="//developer.yahoo.com/boss/search/">Yahoo! BOSS</a> and then display a report if a match is found. If you give a specific URL, it will skip the search engine step and directly display a report comparing the article to that particular webpage, like the <a href="//tools.wmflabs.org/dupdet/">Duplication Detector</a>.</p>
<p>This tool attempts to detect <a href="//en.wikipedia.org/wiki/WP:COPYVIO">copyright violations</a> in articles. In search mode, it will check for similar content elsewhere on the web using <a href="//developer.yahoo.com/boss/search/">Yahoo! BOSS</a> and/or external links present in the text of the page, depending on which options are selected. In comparison mode, the tool will skip the searching step and display a report comparing the article to the given webpage, like the <a href="//tools.wmflabs.org/dupdet/">Duplication Detector</a>.</p>
<p>Running a full check can take up to 45 seconds if other websites are slow. Please be patient. If you get a timeout, wait a moment and refresh the page.</p>
<p>Specific websites can be skipped (for example, if their content is in the public domain) by being added to the <a href="//en.wikipedia.org/wiki/User:EarwigBot/Copyvios/Exclusions">excluded URL list</a>.</p>
<form action="${request.script_root}" method="get">
<table id="cv-form">
<form id="cv-form" action="${request.script_root}" method="get">
<table id="cv-form-outer">
<tr>
<td>Site:</td>
<td colspan="3">


불러오는 중...
취소
저장