A copyright violation detector running on Wikimedia Cloud Services https://tools.wmflabs.org/copyvios/
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
Chlod Alejandro 10add79574
Require OAuth for search engine checks
il y a 1 mois
copyvios Require OAuth for search engine checks il y a 1 mois
logs Always have a log dir. il y a 10 ans
scripts Random bugfixes il y a 3 mois
static Add OAuth flow il y a 1 mois
templates Add OAuth flow il y a 1 mois
.gitignore Add OAuth flow il y a 1 mois
LICENSE Clean up CSS/JS; new minify pipeline; rework footer il y a 3 ans
README.md Add OAuth flow il y a 1 mois
app.py Add OAuth flow il y a 1 mois
build.py Clean up CSS/JS; new minify pipeline; rework footer il y a 3 ans
schema.sql More additions for sqlite support il y a 5 ans

README.md

This is a copyright violation detector running on Wikimedia Cloud Services.

It can search the web for content similar to a given article, and graphically compare an article to a specific URL. Some technical details are expanded upon in a blog post.

Dependencies

Running

  • If using Toolforge, you should clone the repository to ~/www/python/src, or otherwise symlink it to that directory. A virtualenv should be created at ~/www/python/venv.

  • Install all dependencies listed above.

  • Create an SQL database with the cache and cache_data tables defined by earwigbot-plugins.

  • Create an earwigbot instance in .earwigbot (run earwigbot .earwigbot). In .earwigbot/config.yml, fill out the connection info for the database by adding the following to the wiki section:

      _copyviosSQL:
          host: <hostname of database server>
          db:   <name of database>
    

    If additional arguments are needed by oursql.connect(), like usernames or passwords, they should be added to the _copyviosSQL section.

  • Run ./build.py to minify JS and CSS files.

  • Start the web server (on Toolforge, webservice uwsgi-python start).