Github mirror of MediaWiki extension UploadWizard - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
转到文件
Translation updater bot 5e6e3a32c7 Localisation updates from https://translatewiki.net.
Change-Id: Ifc676509b6cc658beb9ecb65eaeb91f6888a5a1e
2023-09-13 07:23:11 +02:00
.phan phan: Remove suppression for PhanParamTooMany 2019-10-04 12:10:24 +02:00
docs build: Updating dependencies 2021-01-26 06:14:23 +00:00
i18n Localisation updates from https://translatewiki.net. 2023-09-13 07:23:11 +02:00
includes Use namespaced EventLogging class 2022-03-06 16:14:48 +00:00
maintenance Minor cleanups in PHP code 2022-02-02 09:22:45 +01:00
resources transports: Fix internal "abort" on status checks during chunked upload 2022-03-08 21:06:16 +00:00
sql Correct schema drift between abstract and old non-abstract 2022-02-01 18:46:07 +01:00
tests Merge "Fix some ESLint warnings" 2022-02-03 15:24:15 +00:00
.eslintignore build: Migrate eslint exclusions to .eslintignore 2019-07-15 22:17:55 -04:00
.eslintrc.json Define documentable types in eslintrc instead of inline 2021-10-17 15:40:43 +01:00
.gitignore eslint: Enable reportUnusedDisableDirectives & cache 2019-03-14 16:35:09 +00:00
.gitreview Whoops, track not trace 2016-10-24 17:04:00 -07:00
.mailmap Update Legoktm's mailmap entry 2021-04-11 19:18:05 -07:00
.phpcs.xml Fix almost all PHPCS issues 2020-11-23 17:48:14 +01:00
.stylelintrc.json build: Updating dependencies 2021-09-02 03:30:11 +00:00
CODE_OF_CONDUCT.md build: Updating mediawiki/phan-taint-check-plugin to 1.4.0 2018-09-01 15:14:04 +00:00
composer.json build: Update mediawiki-phan-config to 0.11.1 2021-11-17 00:15:37 +01:00
COPYING Add COPYING 2014-01-22 22:10:58 +00:00
CREDITS Update authorship information 2016-11-21 16:01:02 +01:00
extension.json Avoid using User::getOption 2021-11-29 12:11:34 +02:00
Gruntfile.js build: Update eslint-config-wikimedia to 0.16.2 2020-06-26 12:11:14 +01:00
INSTALL Fix install instructions 2019-06-11 11:46:16 +02:00
package-lock.json build: Updating json5 to 2.2.2 2022-12-29 15:03:20 +00:00
package.json build: Updating npm dependencies 2022-05-24 07:38:14 +00:00
README Update authorship information 2016-11-21 16:01:02 +01:00
UploadWizard.alias.php Add special page aliases for Polish 2019-07-21 14:15:48 +02:00
UploadWizard.config.php build: Updating composer dependencies 2021-04-29 18:47:03 +00:00

UploadWizard is an extension for MediaWiki, which adds a more user-friendly wizard for uploading media files.

Although developed with Wikimedia Commons in mind, it should be useful for other users of MediaWiki as well.
However it has not been tested extensively with non-Wikimedia installations of MediaWiki. Your feedback will
help greatly.

UploadWizard is licensed under the same terms as MediaWiki itself.

If you are using UploadWizard in an environment where licenses are not used, you may want to add the
configuration below in LocalSettings.php. This will limit the license choices to a single default that
references the wiki's generic disclaimer. Note that there are many other configuration settings to add
depending on your use case.

$wgUploadWizardConfig = array(
    'licensing' => array(
            'ownWorkDefault' => 'own',
            'ownWork' => array(
                'type' => 'or',
                'template' => 'licensing', // this adds a link to Template:Licensing to the file info page
                'licenses' => array(
                     'generic',
                )
            ),
    ),

);

If you wish to modify the generic messages, you can modify them within the wiki at the following pages:
* MediaWiki:mwe-upwiz-source-ownwork
* MediaWiki:Mwe-upwiz-source-ownwork-assert-generic
* MediaWiki:Mwe-upwiz-source-ownwork-generic-explain