A copyright violation detector running on Wikimedia Cloud Services https://tools.wmflabs.org/copyvios/
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
Ben Kurtovic 282b2d7485 Mostly finish Jinja refactoring 2 недель назад
logs Always have a log dir. 10 лет назад
scripts Initial Python 3 conversion 2 месяцев назад
src/copyvios Mostly finish Jinja refactoring 2 недель назад
.gitignore Initial Python 3 conversion 2 месяцев назад
.pre-commit-config.yaml More Python 3 conversion and heavy refactoring 1 месяц назад
LICENSE Initial Python 3 conversion 2 месяцев назад
Makefile More Python 3 conversion and heavy refactoring 1 месяц назад
README.md Mostly finish Jinja refactoring 2 недель назад
app.py Mostly finish Jinja refactoring 2 недель назад
pyproject.toml Mostly finish Jinja refactoring 2 недель назад
schema.sql More additions for sqlite support 5 лет назад

README.md

This is a copyright violation detector web tool for Wikipedia articles running on Wikimedia Cloud Services at copyvios.toolforge.org.

It can search the web for content similar to a given article, and graphically compare an article to specific URLs. Some technical details are expanded upon in a blog post, though much of it is outdated.

Installation

  • If using Toolforge, clone the repository to ~/www/python/src, or otherwise symlink it to that directory.

  • Create a virtual environment and install the dependencies. On Toolforge, this should be in ~/www/python/venv, otherwise it can be in a subdirectory of the git project named venv:

    python3 -m venv venv
    . venv/bin/activate
    pip install -e .
    
  • If you intend to modify CSS or JS, install the frontend dependencies:

    npm install -g uglify-js cssnano postcss postcss-cli
    
  • Create an SQL database with the tables defined by schema.sql.

  • 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:

    copyvios:
      oauth:
        consumer_token: <oauth consumer token>
        consumer_secret: <oauth consumer secret>
      sql:
        engine: mysql
        host: <hostname of database server>
        db: <name of database>
    

Running

  • Run make to minify JS and CSS files after making any frontend changes.

  • Start your WSGI server pointing to app:app. For production, uWSGI or Gunicorn are likely good options. For development, use flask run.