├── .gitignore ├── index.html ├── README.md ├── config.php ├── run.php ├── COPYING └── run.sh /.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !run.php 3 | !run.sh 4 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 |
2 |Please click here to setup the tool
4 | 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # file-reuse-review 2 | 3 | Relates to http://github.com/wmde/file-reuse 4 | 5 | Running this tool requires you to have downloaded a composer.phar into the root of this repo! 6 | 7 | Can currently be found at http://tools.wmflabs.org/addshore-dev/ag/ 8 | -------------------------------------------------------------------------------- /config.php: -------------------------------------------------------------------------------- 1 | true, 4 | 'swiftmailer.transport' => Swift_SendmailTransport::newInstance('/usr/sbin/sendmail -bs'), 5 | 'feedback_email' => 'lizenzhinweisgenerator@wikimedia.de', // the email address that receives the feedback 6 | ]; 7 | -------------------------------------------------------------------------------- /run.php: -------------------------------------------------------------------------------- 1 | "; 3 | $message = shell_exec( __DIR__ . '/run.sh' ); 4 | if( $message === null ) { 5 | echo "Something went wrong!
"; 6 | } else { 7 | echo "All updated!
"; 8 | } 9 | echo "