A copyright violation detector running on Wikimedia Cloud Services https://tools.wmflabs.org/copyvios/
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 

115 righe
4.7 KiB

  1. <html lang="en">
  2. <head>
  3. <meta charset="utf-8">
  4. <title>Earwig's Copyvio Detector</title>
  5. <link rel="stylesheet" href="/static/style.css"><!-- TODO: add hash -->
  6. <style>
  7. /* TODO: add dynamic background style */
  8. </style>
  9. </head>
  10. <body style="background-image: url('{{ background.image_url }}');">
  11. <div id="container">
  12. <div id="container-inner">
  13. <header>
  14. <a id="a-home" href="/">
  15. Earwig's <strong>Copyvio Detector</strong></a>
  16. <a id="a-language" href="/language">Language</a>
  17. <a id="a-settings" href="/settings">Settings</a>
  18. </header>
  19. <p>This tool attempts to detect <a href="https://en.wikipedia.org/wiki/WP:COPYVIO">copyright violations</a> in Wikipedia articles. In <i>search mode</i>, it will check for similar content elsewhere on the web using <a href="https://developers.google.com/custom-search/">Google</a>, external links present in the page, or <a href="https://en.wikipedia.org/wiki/Wikipedia:Turnitin">Turnitin</a> (via <a href="https://en.wikipedia.org/wiki/User:EranBot">EranBot</a>), depending on the selected options. In <i>comparison mode</i>, the tool will compare the article to a specific webpage without making any searches, like the <a href="https://dupdet.toolforge.org/">Duplication Detector</a>.</p>
  20. <p>Be aware that other websites can copy from Wikipedia, so check the results carefully, especially for older or well-developed articles. Specific websites can be skipped by being added to the <a href="https://en.wikipedia.org/wiki/User:EarwigBot/Copyvios/Exclusions">excluded URL list</a>.</p>
  21. <form id="cv-form" action="/" method="get">
  22. <table id="cv-form-outer">
  23. <tr>
  24. <td style="width: 4em;">Site:</td>
  25. <td colspan="3">
  26. <select name="lang" style="width: 10em;">
  27. <option value="en" selected="selected">en (English)</option>
  28. </select>
  29. <select name="project" style="margin-left: 1em;">
  30. <option value="wikipedia" selected="selected">Wikipedia</option>
  31. </select>
  32. </td>
  33. </tr>
  34. <tr>
  35. <td id="cv-col1">Page:</td>
  36. <td id="cv-col2" colspan="3">
  37. <table class="cv-form-inner">
  38. <tr>
  39. <td style="width: 8em;">
  40. <label for="cv-page-title">Title:</label>
  41. </td>
  42. <td>
  43. <input class="cv-text" type="text" name="title" id="cv-page-title">
  44. </td>
  45. </tr>
  46. <tr>
  47. <td>
  48. <label for="cv-rev-id">or revision ID:</label>
  49. </td>
  50. <td>
  51. <input class="cv-text" type="text" name="oldid" id="cv-rev-id" style="width: 10em;">
  52. </td>
  53. </tr>
  54. </table>
  55. </td>
  56. </tr>
  57. <tr>
  58. <td>Action:</td>
  59. <td colspan="3">
  60. <table class="cv-form-inner">
  61. <tr>
  62. <td style="width: 12em;">
  63. <input id="action-search" type="radio" name="action" value="search" checked="checked" style="vertical-align: middle;">
  64. <label for="action-search" style="vertical-align: middle;">Copyvio search:</label>
  65. </td>
  66. <td id="cv-tmp1">
  67. <div class="cv-tmp2">
  68. <input type="hidden" name="use_engine" value="0">
  69. <input id="cv-cb-engine" class="cv-search" type="checkbox" name="use_engine" value="1" checked="checked">
  70. <label for="cv-cb-engine">Use search engine</label>
  71. </div>
  72. <div class="cv-tmp2">
  73. <input type="hidden" name="use_links" value="0">
  74. <input id="cv-cb-links" class="cv-search" type="checkbox" name="use_links" value="1" checked="checked">
  75. <label for="cv-cb-links">Use links in page</label>
  76. </div>
  77. <div class="cv-tmp2">
  78. <input type="hidden" name="turnitin" value="0">
  79. <input id="cv-cb-turnitin" class="cv-search" type="checkbox" name="turnitin" value="1">
  80. <label for="cv-cb-turnitin">Use Turnitin</label>
  81. </div>
  82. </td>
  83. </tr>
  84. <tr>
  85. <td>
  86. <input id="action-compare" type="radio" name="action" value="compare" style="vertical-align: middle;">
  87. <label for="action-compare" style="vertical-align: middle;">URL comparison:</label>
  88. </td>
  89. <td>
  90. <input class="cv-compare cv-text" type="text" name="url" disabled="">
  91. </td>
  92. </tr>
  93. </table>
  94. </td>
  95. </tr>
  96. <tr>
  97. <td colspan="4">
  98. <input type="submit">
  99. </td>
  100. </tr>
  101. </table>
  102. </form>
  103. </div>
  104. </div>
  105. <footer>
  106. <ul>
  107. <li>Maintained by <a href="https://en.wikipedia.org/wiki/User:The_Earwig">Ben Kurtovic</a></li>
  108. <li><a href="/api">API</a></li>
  109. <li><a href="https://github.com/earwig/copyvios">Source code</a></li>
  110. <li><a href="{{ background.source_url }}">Background image</a></li>
  111. </ul>
  112. </footer>
  113. </body>
  114. </html>