MediaWiki API help

This is an auto-generated MediaWiki API documentation page.

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

list=allrevisions (arv)

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

Elenco di tutte le versioni.

Parametri:
arvprop

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
arvlimit

Limit how many revisions will be returned.

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

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

Tipo: booleano (dettagli)
arvgeneratexml
Deprecato.

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

Tipo: booleano (dettagli)
arvparse

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

Tipo: booleano (dettagli)
arvsection

Only retrieve the content of this section number.

arvdiffto

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

arvdifftotext

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

arvdifftotextpst

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

Tipo: booleano (dettagli)
arvcontentformat

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

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

Elenca solo le versioni di questo utente.

Tipo: nome utente
arvnamespace

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
arvstart

Il timestamp da cui iniziare l'elenco.

Tipo: timestamp (formati consentiti)
arvend

Il timestamp al quale interrompere l'elenco.

Tipo: timestamp (formati consentiti)
arvdir

In which direction to enumerate:

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

Non elencare le versioni di questo utente.

Tipo: nome utente
arvcontinue

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

arvgeneratetitles

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

Tipo: booleano (dettagli)
Esempi:
Elenca gli ultimi 50 contributi dell'utente Example.
api.php?action=query&list=allrevisions&arvuser=Example&arvlimit=50 [apri in una sandbox]
Elenca solo le prime 50 versioni nel namespace principale.
api.php?action=query&list=allrevisions&arvdir=newer&arvlimit=50 [apri in una sandbox]