Browse Source

Copyvios NG: Move legacy code to a subdirectory

copyvios-ng
Ben Kurtovic 10 months ago
parent
commit
b896b5343c
34 changed files with 20 additions and 63 deletions
  1. +1
    -9
      .gitignore
  2. +5
    -5
      LICENSE
  3. +5
    -49
      README.md
  4. +9
    -0
      legacy/.gitignore
  5. +0
    -0
      legacy/app.py
  6. +0
    -0
      legacy/build.py
  7. +0
    -0
      legacy/copyvios/__init__.py
  8. +0
    -0
      legacy/copyvios/api.py
  9. +0
    -0
      legacy/copyvios/attribution.py
  10. +0
    -0
      legacy/copyvios/background.py
  11. +0
    -0
      legacy/copyvios/checker.py
  12. +0
    -0
      legacy/copyvios/cookies.py
  13. +0
    -0
      legacy/copyvios/highlighter.py
  14. +0
    -0
      legacy/copyvios/misc.py
  15. +0
    -0
      legacy/copyvios/settings.py
  16. +0
    -0
      legacy/copyvios/sites.py
  17. +0
    -0
      legacy/copyvios/turnitin.py
  18. +0
    -0
      legacy/logs/.gitinclude
  19. +0
    -0
      legacy/schema.sql
  20. +0
    -0
      legacy/scripts/log_analyzer.py
  21. +0
    -0
      legacy/static/api.css
  22. +0
    -0
      legacy/static/api.min.css
  23. +0
    -0
      legacy/static/background.png
  24. +0
    -0
      legacy/static/script.js
  25. +0
    -0
      legacy/static/script.min.js
  26. +0
    -0
      legacy/static/style.css
  27. +0
    -0
      legacy/static/style.min.css
  28. +0
    -0
      legacy/static/toolinfo.json
  29. +0
    -0
      legacy/templates/api.mako
  30. +0
    -0
      legacy/templates/error.mako
  31. +0
    -0
      legacy/templates/index.mako
  32. +0
    -0
      legacy/templates/settings.mako
  33. +0
    -0
      legacy/templates/support/footer.mako
  34. +0
    -0
      legacy/templates/support/header.mako

+ 1
- 9
.gitignore View File

@@ -1,9 +1 @@
*.pyc
*.egg
*.egg-info
.DS_Store
__pycache__

.earwigbot
logs/*
!logs/.gitinclude
/target

+ 5
- 5
LICENSE View File

@@ -1,11 +1,11 @@
Copyright (c) 2009-2021 Ben Kurtovic <ben.kurtovic@gmail.com>
Copyright (c) 2009-2023 Ben Kurtovic <ben@benkurtovic.com>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.


+ 5
- 49
README.md View File

@@ -1,50 +1,6 @@
This is a [copyright violation](https://en.wikipedia.org/wiki/WP:COPYVIO)
detector running on [Wikimedia Cloud Services](https://copyvios.toolforge.org/).

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](https://benkurtovic.com/2014/08/20/copyvio-detector.html).

Dependencies
============

* [earwigbot](https://github.com/earwig/earwigbot) >= 0.1
* [flask](https://flask.palletsprojects.com/) >= 0.10.1
* [flask-mako](https://pythonhosted.org/Flask-Mako/) >= 0.3
* [mako](https://www.makotemplates.org/) >= 0.7.2
* [mwparserfromhell](https://github.com/earwig/mwparserfromhell) >= 0.3
* [oursql](https://pythonhosted.org/oursql/) >= 0.9.3.1
* [requests](https://requests.readthedocs.io/) >= 2.9.1
* [SQLAlchemy](https://www.sqlalchemy.org/) >= 0.9.6
* [apsw](https://github.com/rogerbinns/apsw) >= 3.26.0
* [uglifyjs](https://github.com/mishoo/UglifyJS) >= 3.12.6
* [cssnano](https://github.com/cssnano/cssnano) >= 4.1.10
* [postcss-cli](https://github.com/postcss/postcss-cli) >= 8.3.1

Running
=======

- If using Toolforge, you should clone the repository to `~/www/python/src`, or
otherwise symlink it to that directory. A
[virtualenv](https://virtualenv.pypa.io/) 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](https://github.com/earwig/earwigbot-plugins/blob/develop/tasks/schema/afc_copyvios.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:

_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`).
detector for Wikipedia articles, running on
[Wikimedia Cloud Services](https://en.wikipedia.org/wiki/Wikipedia:Wikimedia_Cloud_Services)
at [copyvios.toolforge.org](https://copyvios.toolforge.org/). It can search
the web for content similar to a given article, and graphically compare
an article to a specific URL.

+ 9
- 0
legacy/.gitignore View File

@@ -0,0 +1,9 @@
*.pyc
*.egg
*.egg-info
.DS_Store
__pycache__

.earwigbot
logs/*
!logs/.gitinclude

app.py → legacy/app.py View File


build.py → legacy/build.py View File


copyvios/__init__.py → legacy/copyvios/__init__.py View File


copyvios/api.py → legacy/copyvios/api.py View File


copyvios/attribution.py → legacy/copyvios/attribution.py View File


copyvios/background.py → legacy/copyvios/background.py View File


copyvios/checker.py → legacy/copyvios/checker.py View File


copyvios/cookies.py → legacy/copyvios/cookies.py View File


copyvios/highlighter.py → legacy/copyvios/highlighter.py View File


copyvios/misc.py → legacy/copyvios/misc.py View File


copyvios/settings.py → legacy/copyvios/settings.py View File


copyvios/sites.py → legacy/copyvios/sites.py View File


copyvios/turnitin.py → legacy/copyvios/turnitin.py View File


logs/.gitinclude → legacy/logs/.gitinclude View File


schema.sql → legacy/schema.sql View File


scripts/log_analyzer.py → legacy/scripts/log_analyzer.py View File


static/api.css → legacy/static/api.css View File


static/api.min.css → legacy/static/api.min.css View File


static/background.png → legacy/static/background.png View File


static/script.js → legacy/static/script.js View File


static/script.min.js → legacy/static/script.min.js View File


static/style.css → legacy/static/style.css View File


static/style.min.css → legacy/static/style.min.css View File


static/toolinfo.json → legacy/static/toolinfo.json View File


templates/api.mako → legacy/templates/api.mako View File


templates/error.mako → legacy/templates/error.mako View File


templates/index.mako → legacy/templates/index.mako View File


templates/settings.mako → legacy/templates/settings.mako View File


templates/support/footer.mako → legacy/templates/support/footer.mako View File


templates/support/header.mako → legacy/templates/support/header.mako View File


Loading…
Cancel
Save