Module: MediaWiktory::Wikipedia::Modules::Allrevisions
- Defined in:
- lib/mediawiktory/wikipedia/modules/allrevisions.rb
Overview
List all revisions.
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).
-
#prop(*values) ⇒ self
Which properties to get for each revision:.
-
#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.
98 99 100 |
# File 'lib/mediawiktory/wikipedia/modules/allrevisions.rb', line 98 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.
169 170 171 |
# File 'lib/mediawiktory/wikipedia/modules/allrevisions.rb', line 169 def continue(value) merge(arvcontinue: 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.
75 76 77 |
# File 'lib/mediawiktory/wikipedia/modules/allrevisions.rb', line 75 def diffto(value) merge(arvdiffto: 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.
83 84 85 |
# File 'lib/mediawiktory/wikipedia/modules/allrevisions.rb', line 83 def difftotext(value) merge(arvdifftotext: value.to_s) end |
#difftotextpst ⇒ self
Perform a pre-save transform on the text before diffing it. Only valid when used with arvdifftotext.
90 91 92 |
# File 'lib/mediawiktory/wikipedia/modules/allrevisions.rb', line 90 def difftotextpst() merge(arvdifftotextpst: 'true') end |
#dir(value) ⇒ self
In which direction to enumerate:
148 149 150 |
# File 'lib/mediawiktory/wikipedia/modules/allrevisions.rb', line 148 def dir(value) _dir(value) or fail ArgumentError, "Unknown value for dir: #{value}" end |
#end(value) ⇒ self
The timestamp to stop enumerating at.
140 141 142 |
# File 'lib/mediawiktory/wikipedia/modules/allrevisions.rb', line 140 def end(value) merge(arvend: value.iso8601) end |
#excludeuser(value) ⇒ self
Don't list revisions by this user.
161 162 163 |
# File 'lib/mediawiktory/wikipedia/modules/allrevisions.rb', line 161 def excludeuser(value) merge(arvexcludeuser: value.to_s) end |
#expandtemplates ⇒ self
Expand templates in revision content (requires arvprop=content).
45 46 47 |
# File 'lib/mediawiktory/wikipedia/modules/allrevisions.rb', line 45 def () merge(arvexpandtemplates: 'true') end |
#generatetitles ⇒ self
When being used as a generator, generate titles rather than revision IDs.
176 177 178 |
# File 'lib/mediawiktory/wikipedia/modules/allrevisions.rb', line 176 def generatetitles() merge(arvgeneratetitles: 'true') end |
#generatexml ⇒ self
Generate XML parse tree for revision content (requires arvprop=content; replaced by arvprop=parsetree).
52 53 54 |
# File 'lib/mediawiktory/wikipedia/modules/allrevisions.rb', line 52 def generatexml() merge(arvgeneratexml: 'true') end |
#limit(value) ⇒ self
Limit how many revisions will be returned.
38 39 40 |
# File 'lib/mediawiktory/wikipedia/modules/allrevisions.rb', line 38 def limit(value) merge(arvlimit: value.to_s) end |
#namespace(*values) ⇒ self
Only list pages in this namespace.
119 120 121 |
# File 'lib/mediawiktory/wikipedia/modules/allrevisions.rb', line 119 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.
59 60 61 |
# File 'lib/mediawiktory/wikipedia/modules/allrevisions.rb', line 59 def parse() merge(arvparse: 'true') end |
#prop(*values) ⇒ self
Which properties to get for each revision:
25 26 27 |
# File 'lib/mediawiktory/wikipedia/modules/allrevisions.rb', line 25 def prop(*values) values.inject(self) { |res, val| res._prop(val) or fail ArgumentError, "Unknown value for prop: #{val}" } end |
#section(value) ⇒ self
Only retrieve the content of this section number.
67 68 69 |
# File 'lib/mediawiktory/wikipedia/modules/allrevisions.rb', line 67 def section(value) merge(arvsection: value.to_s) end |
#start(value) ⇒ self
The timestamp to start enumerating from.
132 133 134 |
# File 'lib/mediawiktory/wikipedia/modules/allrevisions.rb', line 132 def start(value) merge(arvstart: value.iso8601) end |
#user(value) ⇒ self
Only list revisions by this user.
111 112 113 |
# File 'lib/mediawiktory/wikipedia/modules/allrevisions.rb', line 111 def user(value) merge(arvuser: value.to_s) end |