Module: MediaWiktory::Wikipedia::Modules::GEmbeddedin
- Defined in:
- lib/mediawiktory/wikipedia/modules/g-embeddedin.rb
Overview
Find all pages that embed (transclude) the given title. 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
-
#continue(value) ⇒ self
When more results are available, use this to continue.
-
#dir(value) ⇒ self
The direction in which to list.
-
#filterredir(value) ⇒ self
How to filter for redirects.
-
#limit(value) ⇒ self
How many total pages to return.
-
#namespace(*values) ⇒ self
The namespace to enumerate.
-
#pageid(value) ⇒ self
Page ID to search.
-
#title(value) ⇒ self
Title to search.
Instance Method Details
#continue(value) ⇒ self
When more results are available, use this to continue.
41 42 43 |
# File 'lib/mediawiktory/wikipedia/modules/g-embeddedin.rb', line 41 def continue(value) merge(geicontinue: value.to_s) end |
#dir(value) ⇒ self
The direction in which to list.
62 63 64 |
# File 'lib/mediawiktory/wikipedia/modules/g-embeddedin.rb', line 62 def dir(value) _dir(value) or fail ArgumentError, "Unknown value for dir: #{value}" end |
#filterredir(value) ⇒ self
How to filter for redirects.
75 76 77 |
# File 'lib/mediawiktory/wikipedia/modules/g-embeddedin.rb', line 75 def filterredir(value) _filterredir(value) or fail ArgumentError, "Unknown value for filterredir: #{value}" end |
#limit(value) ⇒ self
How many total pages to return.
88 89 90 |
# File 'lib/mediawiktory/wikipedia/modules/g-embeddedin.rb', line 88 def limit(value) merge(geilimit: value.to_s) end |
#namespace(*values) ⇒ self
The namespace to enumerate.
49 50 51 |
# File 'lib/mediawiktory/wikipedia/modules/g-embeddedin.rb', line 49 def namespace(*values) values.inject(self) { |res, val| res._namespace(val) or fail ArgumentError, "Unknown value for namespace: #{val}" } end |
#pageid(value) ⇒ self
Page ID to search. Cannot be used together with eititle.
33 34 35 |
# File 'lib/mediawiktory/wikipedia/modules/g-embeddedin.rb', line 33 def pageid(value) merge(geipageid: value.to_s) end |
#title(value) ⇒ self
Title to search. Cannot be used together with eipageid.
25 26 27 |
# File 'lib/mediawiktory/wikipedia/modules/g-embeddedin.rb', line 25 def title(value) merge(geititle: value.to_s) end |