Помош со Извршникот на МедијаВики

Ова е самосоздадена документациска страница за извршникот на МедијаВики.

Документација и примери: https://www.mediawiki.org/wiki/API

list=allimages (ai)

(main | query | allimages)
  • За овој модул се потребни права на читање.
  • Овој модул може да се користи како создавач.
  • Извор: MediaWiki
  • Лиценца: GPL-2.0+

Enumerate all images sequentially.

Параметри:
aisort

Property to sort by.

Една вредност: name, timestamp
По основно: name
aidir

The direction in which to list.

Една вредност: ascending, descending, newer, older
По основно: ascending
aifrom

The image title to start enumerating from. Can only be used with aisort=name.

aito

The image title to stop enumerating at. Can only be used with aisort=name.

aicontinue

Употребете го ова за да продолжите кога има повеќе расположиви ставки.

aistart

The timestamp to start enumerating from. Can only be used with aisort=timestamp.

Тип: време и датум (допуштени формати)
aiend

The timestamp to end enumerating. Can only be used with aisort=timestamp.

Тип: време и датум (допуштени формати)
aiprop

Which file information to get:

timestamp
Adds timestamp for the uploaded version.
user
Adds the user who uploaded each file version.
userid
Add the ID of the user that uploaded each file version.
comment
Comment on the version.
parsedcomment
Parse the comment on the version.
canonicaltitle
Adds the canonical title of the file.
url
Gives URL to the file and the description page.
size
Adds the size of the file in bytes and the height, width and page count (if applicable).
dimensions
Alias for size.
sha1
Adds SHA-1 hash for the file.
mime
Adds MIME type of the file.
mediatype
Adds the media type of the file.
metadata
Lists Exif metadata for the version of the file.
commonmetadata
Lists file format generic metadata for the version of the file.
extmetadata
Lists formatted metadata combined from multiple sources. Results are HTML formatted.
bitdepth
Adds the bit depth of the version.
badfile
Adds whether the file is on the MediaWiki:Bad image list
Вредности (одделете ги со |): timestamp, user, userid, comment, parsedcomment, canonicaltitle, url, size, dimensions, sha1, mime, mediatype, metadata, commonmetadata, extmetadata, bitdepth, badfile
По основно: timestamp|url
aiprefix

Search for all image titles that begin with this value. Can only be used with aisort=name.

aiminsize

Limit to images with at least this many bytes.

Тип: цел број
aimaxsize

Limit to images with at most this many bytes.

Тип: цел број
aisha1

SHA1 hash of image. Overrides aisha1base36.

aisha1base36

SHA1 hash of image in base 36 (used in MediaWiki).

aiuser

Only return files uploaded by this user. Can only be used with aisort=timestamp. Cannot be used together with aifilterbots.

Тип: корисничко име
aifilterbots

How to filter files uploaded by bots. Can only be used with aisort=timestamp. Cannot be used together with aiuser.

Една вредност: all, bots, nobots
По основно: all
aimime

What MIME types to search for, e.g. image/jpeg.

Одделувајте ги вредностите со |. Највеќе допуштени вредности: 50 (500 за ботови).
ailimit

How many images in total to return.

Не се допушта повеќе од 500 (5.000 за ботови).
Тип: цел број или max
По основно: 10
Примери:
Прикажи список на податотеки што почнуваат со буквата B.
api.php?action=query&list=allimages&aifrom=B [open in sandbox]
Прикажи список на неодамна подигнати податотеки сличен на Special:NewFiles
api.php?action=query&list=allimages&aiprop=user|timestamp|url&aisort=timestamp&aidir=older [open in sandbox]
Show a list of files with MIME type image/png or image/gif
api.php?action=query&list=allimages&aimime=image/png|image/gif [open in sandbox]
Прикажи информации за околу 4 податотеки што почнуваат со буквата T.
api.php?action=query&generator=allimages&gailimit=4&gaifrom=T&prop=imageinfo [open in sandbox]