Pomoc MediaWiki API
To jest automatycznie wygenerowana strona dokumentacji MediaWiki API. Dokumentacja i przykłady: https://www.mediawiki.org/wiki/API
prop=deletedrevisions (drv)
- Ten moduł wymaga praw odczytu.
- Ten moduł może być użyty jako generator.
- Źródło: MediaWiki
- Licencja: 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
- Identyfikator wersji.
- flags
- Znaczniki wersji (drobne).
- timestamp
- Znacznik czasu wersji.
- user
- Użytkownik, który utworzył wersję.
- userid
- User ID of the revision creator.
- size
- Długość wersji (w bajtach).
- sha1
- SHA-1 (base 16) wersji.
- 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
- Tekst wersji.
- tags
- Znaczniki wersji.
- parsetree
- Deprecated. Use action=expandtemplates or action=parse instead. The XML parse tree of revision content (requires content model
wikitext
).
- Wartości (oddziel za pomocą | lub alternatywy): ids, flags, timestamp, user, userid, size, sha1, contentmodel, comment, parsedcomment, content, tags, parsetree
- Domyślnie: ids|timestamp|flags|comment|user
- drvlimit
Ograniczenie na liczbę wersji, które będą zwrócone.
- Nie więcej niż 500 (5000 dla botów) dozwolone.
- Type: integer or max
- drvexpandtemplates
- Przestarzałe.
Use action=expandtemplates instead. Expand templates in revision content (requires drvprop=content).
- Typ: wartość logiczna (szczegóły)
- drvgeneratexml
- Przestarzałe.
Use action=expandtemplates or action=parse instead. Generate XML parse tree for revision content (requires drvprop=content).
- Typ: wartość logiczna (szczegóły)
- drvparse
- Przestarzałe.
Use action=parse instead. Parse revision content (requires drvprop=content). For performance reasons, if this option is used, drvlimit is enforced to 1.
- Typ: wartość logiczna (szczegóły)
- drvsection
Only retrieve the content of this section number.
- drvdiffto
- Przestarzałe.
Use action=compare instead. Revision ID to diff each revision to. Use prev, next and cur for the previous, next and current revision respectively.
- drvdifftotext
- Przestarzałe.
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.
- drvdifftotextpst
- Przestarzałe.
Use action=compare instead. Perform a pre-save transform on the text before diffing it. Only valid when used with drvdifftotext.
- Typ: wartość logiczna (szczegóły)
- drvcontentformat
Serialization format used for drvdifftotext and expected for output of content.
- Jedna z następujących wartości: text/x-wiki, text/javascript, application/json, text/css, text/plain
- drvstart
The timestamp to start enumerating from. Ignored when processing a list of revision IDs.
- Typ: znacznik czasu (dozwolone formaty)
- drvend
The timestamp to stop enumerating at. Ignored when processing a list of revision IDs.
- Typ: znacznik czasu (dozwolone formaty)
- 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.
- Jedna z następujących wartości: newer, older
- Domyślnie: older
- drvtag
Pokazuj tylko zmiany oznaczone tym znacznikiem.
- drvuser
Pokazuj tylko zmiany dokonane przez tego użytkownika.
- Typ: nazwa użytkownika
- drvexcludeuser
Nie pokazuj zmian dokonanych przez tego użytkownika.
- Typ: nazwa użytkownika
- drvcontinue
Gdy będzie dostępnych więcej wyników, użyj tego do kontynuowania.
- List the deleted revisions of the pages Main Page and Talk:Main Page, with content.
- api.php?action=query&prop=deletedrevisions&titles=Main%20Page|Talk:Main%20Page&drvprop=user|comment|content [otwórz w brudnopisie]
- List the information for deleted revision 123456.
- api.php?action=query&prop=deletedrevisions&revids=123456 [otwórz w brudnopisie]