< Extension:ProofreadPage
The ProofreadPage extension provides access to the pages in an index with the proofreadpagesinindex query module. The API prefix is prppii (ProofreadPage pages in index).
This API was deployed in MediaWiki 1.38.0-wmf.12.
Listing pages in an index
prppiititlethe index titleprppiilimitthe maximum number of pages to returnprppiicontinuecontinuation pointprppiipropproperties (default:id|title)title: page titleid: page ID
{
"action": "query",
"list": "proofreadpagesinindex",
"format": "json",
"formatversion": 2,
"prppiititle": "Index:Sandbox.djvu",
}
| Response |
|---|
{
"batchcomplete": "",
"continue": {
"prppiifrom": 101,
"continue": "-||"
},
"query": {
"proofreadpagesinindex": [
{
"number": 1,
"pageid": 23,
"title": "Page:Sandbox.djvu/1"
},
{
"number": 2,
"pageid": 28,
"title": "Page:Sandbox.djvu/2"
},
....
}
}
|
If more pages are returned than configured with prppiilmit or the API limits in general, use the continue.prppiifrom value as the prppiicontinue value of the next request.
As a generator
This module can be used as a generator, so it can also provide things like page quality:
{
"action": "query",
"format": "json",
"prop": "proofread",
"list": "",
"generator": "proofreadpagesinindex",
"formatversion": "2",
"gprppiititle": "Index:Sandbox.djvu"
}
| Response |
|---|
{
"batchcomplete": true,
"continue": {
"gprppiifrom": 101,
"continue": "gprppiifrom||"
},
"query": {
"pages": [
{
"ns": 250,
"title": "Page:Sandbox.djvu/8",
"missing": true
},
{
"pageid": 23,
"ns": 250,
"title": "Page:Sandbox.djvu/1",
"proofread": {
"quality": 3,
"quality_text": "Proofread"
}
},
...
]
}
}
|
This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.