Extension:SimpleBatchUpload/ru

PW
The Professional Wiki team maintains this extension professionally.
Professional Wiki provides official support for MediaWiki LTS releases only. It may work with other MediaWiki releases.
Category:Extensions by Professional Wiki/ru Category:GPL licensed extensions/ru
Справка по расширениям MediaWiki
SimpleBatchUpload
Статус релиза: стабильноCategory:Stable extensions/ru
Реализация Служебная страница Category:Special page extensions/ru, Функция парсера Category:Parser function extensions/ru
Описание Allows for basic, no-frills uploading of multiple files
Автор(ы) Stephan Gambke (F.trottобсуждение)
Поддерживающий(ие) Professional Wiki
Последняя версия 2.0.1 (2023-12-07)
Политика совместимости В расширении есть соответствуюшая ветвь для каждого релиза MediaWiki, который является релизом долгосрочной поддержки (Long Term Support release).
MediaWiki 1.35+Category:Extensions with manual MediaWiki version
PHP 8.0+
Изменения в БД Нет
Composer mediawiki/simple-batch-uploadCategory:Extensions supporting Composer/ru
Лицензия GNU General Public License 2.0 или позднее
Скачать Category:Extensions in GitHub version control/ru Latest stable
README
release-notes
  • $wgSimpleBatchUploadMaxFilesPerBatch
Переведите расширение SimpleBatchUpload
Category:All extensions/ru

The SimpleBatchUpload extension allows for basic, no-frills uploading of multiple files to MediaWiki at "Special:BatchUpload", using the jQuery File Upload JavaScript library.

Загрузка

The recommended way to download this extension is by using Composer.

Add the following to the MediaWiki composer.local.json file and run php composer.phar update mediawiki/simple-batch-upload from the MediaWiki installation directory.

{
	"require": {
		"mediawiki/simple-batch-upload": "^2.0"
	}
}

To update the extension, run php composer.phar update mediawiki/simple-batch-upload again.

Alternatively, you can download a tarball or zip file from GitHub and extract it into the extensions directory of your MediaWiki installation.

Установка

Add the following line to your "LocalSettings.php" file:

wfLoadExtension( 'SimpleBatchUpload' );

To make sure that SimpleBatchUpload has been installed correctly, check that an entry for it exists at Special:Version and that Special:BatchUpload is working.

To use the extension the user needs the writeapi permission. This is the default MediaWiki setting for registered users, but it may have been changed during the configuration of the wiki.

Использование

There are four ways to upload files using this extension:

  • Go to Special:BatchUpload to get a plain upload page
  • Go to Special:BatchUpload/Foo to get an upload page that sets {{Foo}} as the wikitext of the uploaded file's page
  • Add {{#batchupload:}} to any wikipage to get a simple upload button
  • Add {{#batchupload:Foo|Bar|Baz}} to any wikipage to get an upload button that sets {{Foo|Bar|Baz}} as the wikitext of the uploaded file's page
  • Add {{#batchupload:Foo|+rename=!^(Qux-[./+]*)?!iu -->Qux-}} to get an upload page that sets {{Foo}} as the wikitext of the uploaded file's page and whose filenames are all given the prefix "Qux-".
The wikitext will only be set for newly uploaded files. If the file exists already, subsequent uploads of new versions of the file will not change the wikitext.

Настройка

It is possible to specify dedicated upload pages for specific file types by editing the MediaWiki:Simplebatchupload-parameters page. Each line of that page is considered as one set of parameters.

Available parameters are:

  • Name of the template to be stored as text on initial upload
  • Upload comment
  • Title line of the Special:BatchUpload/subpage page.

Parameters should be separated by pipes (|).

The line to be used is selected by appending the name of the template as the subpage to the URL of the Special:BatchUpload page.

Spaces in the name of your template will cause this process to fail.

Example:

Consider the parameter line

 Pics | These pics were uploaded using [[Extension:SimpleBatchUpload{{!}}SimpleBatchUpload]] | Upload some pics!
  • This can be selected by going to Special:BatchUpload/Pics.
  • The title of this page will be "Upload some pics!".
  • The comment for the upload will be "These pics were uploaded using SimpleBatchUpload".
  • If a file with that name is uploaded for the first time, it will have {{Pics}} as wikitext.

Конфигурация

$wgSimpleBatchUploadMaxFilesPerBatch

Array defining the maximum number of files that can be uploaded each time depending on the user group. When a user is trying to upload larger batches of files, an error message is displayed.

Default:

$wgSimpleBatchUploadMaxFilesPerBatch = [
	'*' => 1000,
];
Be aware that this is neither the correct setting to block file uploads nor to throttle them!

Users can still use the regular file upload or the MediaWiki API.

For selectively blocking uploads see Руководство:Настройка загрузки файлов. For throttling uploads see $wgRateLimits.

См. также

Category:Bulk upload/ru
Category:All extensions/ru Category:Bulk upload/ru Category:Extensions by Professional Wiki/ru Category:Extensions in GitHub version control/ru Category:Extensions included in Canasta/ru Category:Extensions included in Miraheze/ru Category:Extensions included in MyWikis/ru Category:Extensions included in ProWiki/ru Category:Extensions supporting Composer/ru Category:Extensions with manual MediaWiki version Category:GPL licensed extensions/ru Category:MakeGlobalVariablesScript extensions/ru Category:ParserFirstCallInit extensions/ru Category:Parser function extensions/ru Category:SetupAfterCache extensions/ru Category:Special page extensions/ru Category:Stable extensions/ru