MediaWiki API help
This is an auto-generated MediaWiki API documentation page.
Documentation and examples: https://www.mediawiki.org/wiki/Special:MyLanguage/API:Main_page
prop=deletedrevisions (drv)
- Questo modulo richiede i diritti di lettura.
- Questo modulo può essere utilizzato come generatore.
- Fonte: MediaWiki
- Licenza: GPL-2.0-or-later
Get deleted revision information.
May be used in several ways:
- Get deleted revisions for a set of pages, by setting titles or pageids. Ordered by title and timestamp.
- Get data about a set of deleted revisions by setting their IDs with revids. Ordered by revision ID.
- drvprop
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. Se l'utente è stato cancellato dalla versione, sarà restituita una proprietà userhidden.
- userid
- ID utente dell'autore della versione. Se l'utente è stato cancellato dalla versione, sarà restituita una proprietà userhidden.
- size
- Length (bytes) of the revision.
- slotsize
- Length (bytes) of each revision slot.
- sha1
- SHA-1 (base 16) of the revision. If the content has been revision deleted, a sha1hidden property will be returned.
- slotsha1
- SHA-1 (base 16) of each revision slot. If the content has been revision deleted, a sha1hidden property will be returned.
- contentmodel
- Content model ID of each revision slot.
- comment
- Comment by the user for the revision. If the comment has been revision deleted, a commenthidden property will be returned.
- parsedcomment
- Parsed comment by the user for the revision. If the comment has been revision deleted, a commenthidden property will be returned.
- content
- Contenuto di ogni slot di versione. Se il contenuto è stato cancellato dalla versione, sarà restituita una proprietà texthidden. Per motivi di prestazioni, se viene utilizzata questa opzione, drvlimit viene applicato a 50.
- tags
- Etichette della versione.
- roles
- List content slot roles that exist in the revision.
- parsetree
- Deprecato. Use action=expandtemplates or action=parse instead. The XML parse tree of revision content (requires content model
wikitext
). For performance reasons, if this option is used, drvlimit is enforced to 50.
- Valori (separati da | o alternativa): comment, content, contentmodel, flags, ids, parsedcomment, roles, sha1, size, slotsha1, slotsize, tags, timestamp, user, userid, parsetree
- Default: ids|timestamp|flags|comment|user
- drvslots
Which revision slots to return data for, when slot-related properties are included in drvprops. If omitted, data from the main slot will be returned in a backwards-compatible format.
- Valori (separati da | o alternativa): main
- Per specificare tutti i valori, utilizza *.
- drvcontentformat-{slot}
Content serialization format used for output of content.
- This is a templated parameter. When making the request, {slot} in the parameter's name should be replaced with values of drvslots.
- Uno dei seguenti valori: application/json, application/octet-stream, application/unknown, application/x-binary, text/css, text/javascript, text/plain, text/unknown, text/x-wiki, unknown/unknown
- drvlimit
Limit how many revisions will be returned. If drvprop=content, drvprop=parsetree, drvdiffto or drvdifftotext is used, the limit is 50. If drvparse is used, the limit is 1.
- Tipo: intero o max
- The value must be between 1 and 500.
- drvexpandtemplates
- Deprecato.
Use action=expandtemplates instead. Expand templates in revision content (requires drvprop=content).
- Tipo: booleano (dettagli)
- drvgeneratexml
- Deprecato.
Use action=expandtemplates or action=parse instead. Generate XML parse tree for revision content (requires drvprop=content).
- Tipo: booleano (dettagli)
- drvparse
- Deprecato.
Use action=parse instead. Parse revision content (requires drvprop=content). For performance reasons, if this option is used, drvlimit is enforced to 1.
- Tipo: booleano (dettagli)
- drvsection
Only retrieve the content of the section with this identifier.
- drvdiffto
- Deprecato.
Use action=compare instead. Revision ID to diff each revision to. Use prev, next and cur for the previous, next and current revision respectively. For performance reasons, if this option is used, drvlimit is enforced to 50.
- drvdifftotext
- Deprecato.
Use action=compare instead. Text to diff each revision to. Only diffs a limited number of revisions. Overrides drvdiffto. If drvsection is set, only that section will be diffed against this text. For performance reasons, if this option is used, drvlimit is enforced to 50.
- drvdifftotextpst
- Deprecato.
Use action=compare instead. Perform a pre-save transform on the text before diffing it. Only valid when used with drvdifftotext.
- Tipo: booleano (dettagli)
- drvcontentformat
- Deprecato.
Serialization format used for drvdifftotext and expected for output of content.
- Uno dei seguenti valori: application/json, application/octet-stream, application/unknown, application/x-binary, text/css, text/javascript, text/plain, text/unknown, text/x-wiki, unknown/unknown
- drvstart
Il timestamp da cui iniziare l'elenco. Ignorato quando si elabora un elenco di ID versioni.
- Tipo: timestamp (formati consentiti)
- drvend
Il timestamp al quale interrompere l'elenco. Ignorato quando si elabora un elenco di ID versioni.
- Tipo: timestamp (formati consentiti)
- drvdir
In which direction to enumerate:
- newer
- List oldest first. Note: drvstart has to be before drvend.
- older
- List newest first (default). Note: drvstart has to be later than drvend.
- Uno dei seguenti valori: newer, older
- Default: older
- drvtag
Elenca solo le versioni etichettate con questa etichetta.
- drvuser
Elenca solo le versioni di questo utente.
- Tipo: utente, da uno qualsiasi nome utente, IP, Utente temporaneo, interwiki name (e.g. "prefix>ExampleName") e ID utente (ad esempio "#12345")
- drvexcludeuser
Non elencare le versioni di questo utente.
- Tipo: utente, da uno qualsiasi nome utente, IP, Utente temporaneo, interwiki name (e.g. "prefix>ExampleName") e ID utente (ad esempio "#12345")
- drvcontinue
Quando più risultati sono disponibili, usa questo per continuare. Informazioni più dettagliate su come continuare le query possono essere trovate su mediawiki.org.
- Elenca le informazioni per la versione cancellata 123456.
- api.php?action=query&prop=deletedrevisions&revids=123456 [apri in una sandbox]
- Elenca le versioni cancellate della pagina NetWiki e della sua pagina di discussione, con il contenuto.
- api.php?action=query&prop=deletedrevisions&titles=NetWiki|Discussione%3ANetWiki&drvslots=*&drvprop=user|comment|content [apri in una sandbox]