Module: MediaWiktory::Wikipedia::Modules::Categories
- Defined in:
- lib/mediawiktory/wikipedia/modules/categories.rb
Overview
List all categories the pages belong to.
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
-
#categories(*values) ⇒ self
Only list these categories.
-
#continue(value) ⇒ self
When more results are available, use this to continue.
-
#dir(value) ⇒ self
The direction in which to list.
-
#limit(value) ⇒ self
How many categories to return.
-
#prop(*values) ⇒ self
Which additional properties to get for each category:.
-
#show(*values) ⇒ self
Which kind of categories to show.
Instance Method Details
#categories(*values) ⇒ self
Only list these categories. Useful for checking whether a certain page is in a certain category.
67 68 69 |
# File 'lib/mediawiktory/wikipedia/modules/categories.rb', line 67 def categories(*values) values.inject(self) { |res, val| res._categories(val) } end |
#continue(value) ⇒ self
When more results are available, use this to continue.
59 60 61 |
# File 'lib/mediawiktory/wikipedia/modules/categories.rb', line 59 def continue(value) merge(clcontinue: value.to_s) end |
#dir(value) ⇒ self
The direction in which to list.
80 81 82 |
# File 'lib/mediawiktory/wikipedia/modules/categories.rb', line 80 def dir(value) _dir(value) or fail ArgumentError, "Unknown value for dir: #{value}" end |
#limit(value) ⇒ self
How many categories to return.
51 52 53 |
# File 'lib/mediawiktory/wikipedia/modules/categories.rb', line 51 def limit(value) merge(cllimit: value.to_s) end |
#prop(*values) ⇒ self
Which additional properties to get for each category:
25 26 27 |
# File 'lib/mediawiktory/wikipedia/modules/categories.rb', line 25 def prop(*values) values.inject(self) { |res, val| res._prop(val) or fail ArgumentError, "Unknown value for prop: #{val}" } end |
#show(*values) ⇒ self
Which kind of categories to show.
38 39 40 |
# File 'lib/mediawiktory/wikipedia/modules/categories.rb', line 38 def show(*values) values.inject(self) { |res, val| res._show(val) or fail ArgumentError, "Unknown value for show: #{val}" } end |