Module: MediaWiktory::Wikipedia::Modules::GAllrevisions
- Defined in:
- lib/mediawiktory/wikipedia/modules/g-allrevisions.rb
Overview
List all revisions. Generator module: for fetching pages corresponding to request.
The "submodule" (MediaWiki API term) is included in action after setting some param, providing additional tweaking for this param. Example (for Actions::Query and its submodules):
api.query # returns Actions::Query
.prop(:revisions) # adds prop=revisions to action URL, and includes Modules::Revisions into action
.limit(10) # method of Modules::Revisions, adds rvlimit=10 to URL
All submodule's parameters are documented as its public methods, see below.
Instance Method Summary collapse
-
#contentformat(value) ⇒ self
Serialization format used for arvdifftotext and expected for output of content.
-
#continue(value) ⇒ self
When more results are available, use this to continue.
-
#diffto(value) ⇒ self
Revision ID to diff each revision to.
-
#difftotext(value) ⇒ self
Text to diff each revision to.
-
#difftotextpst ⇒ self
Perform a pre-save transform on the text before diffing it.
-
#dir(value) ⇒ self
In which direction to enumerate:.
-
#end(value) ⇒ self
The timestamp to stop enumerating at.
-
#excludeuser(value) ⇒ self
Don't list revisions by this user.
-
#expandtemplates ⇒ self
Expand templates in revision content (requires arvprop=content).
-
#generatetitles ⇒ self
When being used as a generator, generate titles rather than revision IDs.
-
#generatexml ⇒ self
Generate XML parse tree for revision content (requires arvprop=content; replaced by arvprop=parsetree).
-
#limit(value) ⇒ self
Limit how many revisions will be returned.
-
#namespace(*values) ⇒ self
Only list pages in this namespace.
-
#parse ⇒ self
Parse revision content (requires arvprop=content).
-
#section(value) ⇒ self
Only retrieve the content of this section number.
-
#start(value) ⇒ self
The timestamp to start enumerating from.
-
#user(value) ⇒ self
Only list revisions by this user.
Instance Method Details
#contentformat(value) ⇒ self
Serialization format used for arvdifftotext and expected for output of content.
85 86 87 |
# File 'lib/mediawiktory/wikipedia/modules/g-allrevisions.rb', line 85 def contentformat(value) _contentformat(value) or fail ArgumentError, "Unknown value for contentformat: #{value}" end |
#continue(value) ⇒ self
When more results are available, use this to continue.
156 157 158 |
# File 'lib/mediawiktory/wikipedia/modules/g-allrevisions.rb', line 156 def continue(value) merge(garvcontinue: value.to_s) end |
#diffto(value) ⇒ self
Revision ID to diff each revision to. Use prev, next and cur for the previous, next and current revision respectively.
62 63 64 |
# File 'lib/mediawiktory/wikipedia/modules/g-allrevisions.rb', line 62 def diffto(value) merge(garvdiffto: value.to_s) end |
#difftotext(value) ⇒ self
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.
70 71 72 |
# File 'lib/mediawiktory/wikipedia/modules/g-allrevisions.rb', line 70 def difftotext(value) merge(garvdifftotext: value.to_s) end |
#difftotextpst ⇒ self
Perform a pre-save transform on the text before diffing it. Only valid when used with arvdifftotext.
77 78 79 |
# File 'lib/mediawiktory/wikipedia/modules/g-allrevisions.rb', line 77 def difftotextpst() merge(garvdifftotextpst: 'true') end |
#dir(value) ⇒ self
In which direction to enumerate:
135 136 137 |
# File 'lib/mediawiktory/wikipedia/modules/g-allrevisions.rb', line 135 def dir(value) _dir(value) or fail ArgumentError, "Unknown value for dir: #{value}" end |
#end(value) ⇒ self
The timestamp to stop enumerating at.
127 128 129 |
# File 'lib/mediawiktory/wikipedia/modules/g-allrevisions.rb', line 127 def end(value) merge(garvend: value.iso8601) end |
#excludeuser(value) ⇒ self
Don't list revisions by this user.
148 149 150 |
# File 'lib/mediawiktory/wikipedia/modules/g-allrevisions.rb', line 148 def excludeuser(value) merge(garvexcludeuser: value.to_s) end |
#expandtemplates ⇒ self
Expand templates in revision content (requires arvprop=content).
32 33 34 |
# File 'lib/mediawiktory/wikipedia/modules/g-allrevisions.rb', line 32 def () merge(garvexpandtemplates: 'true') end |
#generatetitles ⇒ self
When being used as a generator, generate titles rather than revision IDs.
163 164 165 |
# File 'lib/mediawiktory/wikipedia/modules/g-allrevisions.rb', line 163 def generatetitles() merge(garvgeneratetitles: 'true') end |
#generatexml ⇒ self
Generate XML parse tree for revision content (requires arvprop=content; replaced by arvprop=parsetree).
39 40 41 |
# File 'lib/mediawiktory/wikipedia/modules/g-allrevisions.rb', line 39 def generatexml() merge(garvgeneratexml: 'true') end |
#limit(value) ⇒ self
Limit how many revisions will be returned.
25 26 27 |
# File 'lib/mediawiktory/wikipedia/modules/g-allrevisions.rb', line 25 def limit(value) merge(garvlimit: value.to_s) end |
#namespace(*values) ⇒ self
Only list pages in this namespace.
106 107 108 |
# File 'lib/mediawiktory/wikipedia/modules/g-allrevisions.rb', line 106 def namespace(*values) values.inject(self) { |res, val| res._namespace(val) or fail ArgumentError, "Unknown value for namespace: #{val}" } end |
#parse ⇒ self
Parse revision content (requires arvprop=content). For performance reasons, if this option is used, arvlimit is enforced to 1.
46 47 48 |
# File 'lib/mediawiktory/wikipedia/modules/g-allrevisions.rb', line 46 def parse() merge(garvparse: 'true') end |
#section(value) ⇒ self
Only retrieve the content of this section number.
54 55 56 |
# File 'lib/mediawiktory/wikipedia/modules/g-allrevisions.rb', line 54 def section(value) merge(garvsection: value.to_s) end |
#start(value) ⇒ self
The timestamp to start enumerating from.
119 120 121 |
# File 'lib/mediawiktory/wikipedia/modules/g-allrevisions.rb', line 119 def start(value) merge(garvstart: value.iso8601) end |
#user(value) ⇒ self
Only list revisions by this user.
98 99 100 |
# File 'lib/mediawiktory/wikipedia/modules/g-allrevisions.rb', line 98 def user(value) merge(garvuser: value.to_s) end |