Extension:SimpleBatchUpload
SimpleBatchUpload リリースの状態: 安定 |
|
---|---|
実装 | 特別ページ , パーサー関数 |
説明 | Allows for basic, no-frills uploading of multiple files |
作者 | Stephan Gambke (F.trottトーク) |
メンテナー | Professional Wiki |
最新バージョン | 2.0.1 (2023-12-07) |
互換性の方針 | 長期間サポート リリースであるすべての MediaWiki リリースについて、拡張機能に対応するブランチが存在します。 |
MediaWiki | 1.35+ |
PHP | 8.0+ |
データベースの変更 | いいえ |
Composer | mediawiki/simple-batch-upload |
ライセンス | GNU 一般公衆利用許諾書 2.0 以降 |
ダウンロード |
Latest stable README release-notes |
|
|
SimpleBatchUpload 拡張機能の翻訳にご協力ください | |
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"
}
}
Just run php composer to update the extension.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.
使用法
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
カスタマイズ
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
.
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,
];
Users can still use the regular file upload or the MediaWiki API.
For selectively blocking uploads see Manual:ファイルのアップロードの設定 . For throttling uploads see $wgRateLimits .
関連項目
この拡張機能は以下のウィキ ファーム/ウィキ ホスト/パッケージに含まれています: これは正式な一覧ではありません。 一部のウィキ ファーム/ウィキ ホスト/パッケージは、ここに記載されていなくてもこの拡張機能を含んでいる場合があります。 必ずご利用のウィキ ファーム、ウィキ ホスト、バンドルで確認してください。 |
- Extensions by Professional Wiki/ja
- Stable extensions/ja
- Special page extensions/ja
- Parser function extensions/ja
- Extensions supporting Composer/ja
- GPL licensed extensions/ja
- Extensions in GitHub version control/ja
- ParserFirstCallInit extensions/ja
- MakeGlobalVariablesScript extensions/ja
- SetupAfterCache extensions/ja
- All extensions/ja
- Extensions included in Canasta/ja
- Extensions included in Miraheze/ja
- Extensions included in MyWikis/ja
- Extensions included in ProWiki/ja
- Bulk upload/ja