MediaWiki API 帮助
这是自动生成的MediaWiki API文档页面。
文档和例子:https://www.mediawiki.org/wiki/API:Main_page/zh
list=deletedrevs (dr)
- 此模块已弃用。
- 此模块需要读取权限。
List deleted revisions.
Operates in three modes:
- List deleted revisions for the given titles, sorted by timestamp.
- List deleted contributions for the given user, sorted by timestamp (no titles specified).
- List all deleted revisions in the given namespace, sorted by title and timestamp (no titles specified, druser not set).
Certain parameters only apply to some modes and are ignored in others.
参数:
- drstart
The timestamp to start enumerating from.
- 模式:1、2
- drend
The timestamp to stop enumerating at.
- 模式:1、2
- drdir
列举的方向:
- newer
- 最早的优先。注意:drstart应早于drend。
- older
- 最新的优先(默认)。注意:drstart应晚于drend。
- 模式:1、3
- 一个值:newer、older
- 默认:older
- drfrom
从此标题开始列出。
- 模式:3
- drto
列出至此标题为止。
- 模式:3
- drprefix
Search for all page titles that begin with this value.
- 模式:3
- drunique
List only one revision for each page.
- 模式:3
- drnamespace
只列出此名字空间的页面。
- 模式:3
- 一个值:0、1、2、3、4、5、6、7、8、9、10、11、12、13、14、15
- 默认:0
- drtag
Only list revisions tagged with this tag.
- druser
只列出此用户做出的修订。
- drexcludeuser
不要列出此用户做出的修订。
- drprop
Which properties to get:
- revid
- Adds the revision ID of the deleted revision.
- parentid
- Adds the revision ID of the previous revision to the page.
- user
- Adds the user who made the revision.
- userid
- Adds the user ID whom made the revision.
- comment
- Adds the comment of the revision.
- parsedcomment
- Adds the parsed comment of the revision.
- minor
- Tags if the revision is minor.
- len
- Adds the length (bytes) of the revision.
- sha1
- Adds the SHA-1 (base 16) of the revision.
- content
- Adds the content of the revision.
- token
- Deprecated. Gives the edit token.
- tags
- Tags for the revision.
- 值(以|分隔):revid、parentid、user、userid、comment、parsedcomment、minor、len、sha1、content、token、tags
- 默认:user|comment
- drlimit
The maximum amount of revisions to list.
- 不允许超过500个(对于机器人则是5,000个)。
- 默认:10
- drcontinue
当更多结果可用时,使用这个继续。
例子:
- 列出最近已删除的对页面Main Page和Talk:Main Page的贡献,带内容(模式1)。
- api.php?action=query&list=deletedrevs&titles=Main%20Page|Talk:Main%20Page&drprop=user|comment|content
- 列出由Bob作出的最近50次已删除贡献(模式2)。
- api.php?action=query&list=deletedrevs&druser=Bob&drlimit=50
- 列出前50次主名字空间已删除贡献(模式3)
- api.php?action=query&list=deletedrevs&drdir=newer&drlimit=50
- 列出前50次讨论名字空间已删除页面(模式3):
- api.php?action=query&list=deletedrevs&drdir=newer&drlimit=50&drnamespace=1&drunique=