MediaWiki API help

This is an auto-generated MediaWiki API documentation page.

Documentation and examples: https://www.mediawiki.org/wiki/API

list=alldeletedrevisions (adr)

(main | query | alldeletedrevisions)
  • Questo modulo richiede i diritti di lettura.
  • Questo modulo può essere utilizzato come generatore.
  • Fonte: MediaWiki
  • Licenza: GPL-2.0+

Elenca tutte le versioni cancellate da un utente o in un namespace.

Parametri:
adrprop

Which properties to get for each revision:

ids
L'ID della versione.
flags
Revision flags (minor).
timestamp
Il timestamp della versione.
user
Utente che ha effettuato la versione.
userid
ID utente dell'autore della versione.
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
Testo della versione.
tags
Etichette della versione.
parsetree
The XML parse tree of revision content (requires content model wikitext).
Valori (separati da |): ids, flags, timestamp, user, userid, size, sha1, contentmodel, comment, parsedcomment, content, tags, parsetree
Predefinito: ids|timestamp|flags|comment|user
adrlimit

Limit how many revisions will be returned.

Non più di 500 (5 000 per bot) consentito.
Tipo: intero o max
adrexpandtemplates

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

Tipo: booleano (dettagli)
adrgeneratexml
Deprecato.

Generate XML parse tree for revision content (requires adrprop=content; replaced by adrprop=parsetree).

Tipo: booleano (dettagli)
adrparse

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

Tipo: booleano (dettagli)
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.

adrdifftotextpst

Perform a pre-save transform on the text before diffing it. Only valid when used with adrdifftotext.

Tipo: booleano (dettagli)
adrcontentformat

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

Uno dei seguenti valori: text/x-wiki, text/javascript, application/json, text/css, text/plain
adruser

Elenca solo le versioni di questo utente.

Tipo: nome utente
adrnamespace

Elenca solo le pagine in questo namespace.

Valori (separati da |): 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 100, 101, 102, 103, 104, 105, 106, 107, 110, 111
adrstart

Il timestamp da cui iniziare l'elenco.

Può essere utilizzato solo con adruser.
Tipo: timestamp (formati consentiti)
adrend

Il timestamp al quale interrompere l'elenco.

Può essere utilizzato solo con adruser.
Tipo: timestamp (formati consentiti)
adrdir

In which direction to enumerate:

newer
List oldest first. Note: adrstart has to be before adrend.
older
List newest first (default). Note: adrstart has to be later than adrend.
Uno dei seguenti valori: newer, older
Predefinito: older
adrfrom

Inizia elenco a questo titolo.

Non può essere utilizzato con adruser.
adrto

Interrompi elenco a questo titolo.

Non può essere utilizzato con adruser.
adrprefix

Ricerca per tutti i titoli delle pagine che iniziano con questo valore.

Non può essere utilizzato con adruser.
adrexcludeuser

Non elencare le versioni di questo utente.

Non può essere utilizzato con adruser.
Tipo: nome utente
adrtag

Only list revisions tagged with this tag.

adrcontinue

Quando più risultati sono disponibili, usa questo per continuare.

adrgeneratetitles

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

Tipo: booleano (dettagli)
Esempi:
Elenca gli ultimi 50 contributi cancellati dell'utente Example.
api.php?action=query&list=alldeletedrevisions&adruser=Example&adrlimit=50 [apri in una sandbox]
Elenca le prime 50 versioni cancellate nel namespace principale.
api.php?action=query&list=alldeletedrevisions&adrdir=newer&adrlimit=50 [apri in una sandbox]