转到文件
WaitSpring d1dd7d50c9
Update URL
Signed-off-by: WaitSpring <me@waitspring.com>
2024-02-21 14:16:13 +08: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 Merge branch 'REL1_40' of https://git.qiuwen.net.cn/Mirror/mediawiki-extensions-UploadWizard 2024-02-05 19:28:23 +08:00
includes Merge branch 'REL1_40' of https://git.qiuwen.net.cn/Mirror/mediawiki-extensions-UploadWizard 2024-02-05 19:28:23 +08:00
maintenance Namespace extension 2022-10-07 00:38:09 +00:00
resources Fix broken parsing of decimal coordinates 2023-02-14 12:53:38 +00:00
sql Bump minimum required version for upgrade to 1.31 2022-06-10 23:50:54 +02:00
tests Merge "Fix broken parsing of decimal coordinates" 2023-02-14 13:23:27 +00:00
.eslintignore build: Migrate eslint exclusions to .eslintignore 2019-07-15 22:17:55 -04:00
.eslintrc.json build: Updating npm dependencies 2022-10-05 05:22:57 +00: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 npm dependencies 2023-03-12 13:13:24 +00:00
COPYING Add COPYING 2014-01-22 22:10:58 +00:00
CREDITS update credits 2022-05-30 11:42:30 +08:00
Gruntfile.js Squashed commit of the following: 2022-05-30 11:36:53 +08:00
INSTALL Fix install instructions 2019-06-11 11:46:16 +02:00
README Update authorship information 2016-11-21 16:01:02 +01:00
UploadWizard.alias.php Remove LEFT-TO-RIGHT MARK (U+200E) from comments 2022-08-27 18:52:26 +00:00
UploadWizard.config.php Update URL 2024-02-21 14:16:13 +08:00
composer.json build: Upgrade mediawiki/mediawiki-codesniffer from 40.0.1 to 41.0.0 2023-02-25 18:51:31 -05:00
extension.json Merge branch 'REL1_39' of https://git.qiuwen.wiki/Mirror/mediawiki-extensions-UploadWizard 2023-06-02 00:26:39 +08:00
package-lock.json Merge branch 'REL1_40' of https://git.qiuwen.net.cn/Mirror/mediawiki-extensions-UploadWizard 2024-02-05 19:28:23 +08:00
package.json build: Updating npm dependencies 2023-03-12 13:13:24 +00:00

README

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