MediaWiki API 說明

此頁為自動產生的 MediaWiki API 說明文件頁面。

說明文件與範例:https://www.mediawiki.org/wiki/API

list=deletedrevs <pre>(dr) </pre>

(main | query | deletedrevs)
  • 此模組已停用。
  • 此模組需要讀取權限。

List deleted revisions.

Operates in three modes:

  1. List deleted revisions for the given titles, sorted by timestamp.
  2. List deleted contributions for the given user, sorted by timestamp (no titles specified).
  3. 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 PageTalk: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=