MediaWiki API 帮助

这是自动生成的MediaWiki API文档页面。

文档和例子:https://www.mediawiki.org/wiki/API:Main_page/zh

list=alldeletedrevisions (adr)

main | query | alldeletedrevisions
  • 此模块需要读取权限。
  • 此模块可作为发生器使用。

List all deleted revisions by a user or in a namespace.

参数:
adrprop

Which properties to get for each revision:

ids
The ID of the revision.
flags
Revision flags (minor).
timestamp
The timestamp of the revision.
user
User that made the revision.
userid
User ID of the revision creator.
size
Length (bytes) of the revision.
sha1
SHA-1 (base 16) of the revision.
contentmodel
Content model ID of the revision.
comment
Comment by the user for the revision.
parsedcomment
Parsed comment by the user for the revision.
content
Text of the revision.
tags
Tags for the revision.
值(以|分隔):ids、flags、timestamp、user、userid、size、sha1、contentmodel、comment、parsedcomment、content、tags
默认:ids|timestamp|flags|comment|user
adrlimit

限制返回多少修订。

不允许超过500个(对于机器人则是5,000个)。
adrexpandtemplates

Expand templates in revision content (requires adrprop=content).

adrgeneratexml

Generate XML parse tree for revision content (requires adrprop=content).

adrparse

Parse revision content (requires adrprop=content). For performance reasons, if this option is used, adrlimit is enforced to 1.

adrsection

Only retrieve the content of this section number.

adrdiffto

Revision ID to diff each revision to. Use prev, next and cur for the previous, next and current revision respectively.

adrdifftotext

Text to diff each revision to. Only diffs a limited number of revisions. Overrides adrdiffto. If adrsection is set, only that section will be diffed against this text

adrcontentformat

Serialization format used for adrdifftotext and expected for output of content.

一个值:text/x-wiki、text/javascript、application/json、text/css、text/plain
adruser

只列出此用户做出的修订。

adrnamespace

只列出此名字空间的页面。

值(以|分隔):0、1、2、3、4、5、6、7、8、9、10、11、12、13、14、15
adrstart

枚举的起始时间戳。

只可以与adruser一起使用。
adrend

枚举的结束时间戳。

只可以与adruser一起使用。
adrdir

列举的方向:

newer
最早的优先。注意:adrstart应早于adrend。
older
最新的优先(默认)。注意:adrstart应晚于adrend。
一个值:newer、older
默认:older
adrfrom

从此标题开始列出。

不能与adruser一起使用。
adrto

列出至此标题为止。

不能与adruser一起使用。
adrprefix

Search for all page titles that begin with this value.

不能与adruser一起使用。
adrexcludeuser

不要列出此用户做出的修订。

不能与adruser一起使用。
adrtag

只列出被此标签标记的修订。

adrcontinue

当更多结果可用时,使用这个继续。

adrgeneratetitles

When being used as a generator, generate titles rather than revision IDs.

例子:
列出由Example作出的最近50次已删除贡献。
api.php?action=query&list=alldeletedrevisions&adruser=Example&adrlimit=50
列出前50次已删除的主名字空间修订。
api.php?action=query&list=alldeletedrevisions&adrdir=newer&adrlimit=50