From 3cdc12c6097527d2e8d3dd7866c2ebc802d0643b Mon Sep 17 00:00:00 2001 From: S Page Date: Tue, 7 Apr 2015 03:31:43 -0700 Subject: [PATCH] Better pageprops API example Change example query from non-existent Category:Foo to querying Main Page and MediaWiki, which exist on both enwiki and mediawiki.org (and have really interesting info on enwiki). To test, visit api.php?action=help&modules=query+pageprops and try the example URL. Change-Id: Ibad1e912bd2fa0f0f627025a60ec137f43a2abe4 --- includes/api/ApiQueryPageProps.php | 2 +- includes/api/i18n/en.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/api/ApiQueryPageProps.php b/includes/api/ApiQueryPageProps.php index 269afb147c..8c89a60ede 100644 --- a/includes/api/ApiQueryPageProps.php +++ b/includes/api/ApiQueryPageProps.php @@ -136,7 +136,7 @@ class ApiQueryPageProps extends ApiQueryBase { protected function getExamplesMessages() { return array( - 'action=query&prop=pageprops&titles=Category:Foo' + 'action=query&prop=pageprops&titles=Main%20Page|MediaWiki' => 'apihelp-query+pageprops-example-simple', ); } diff --git a/includes/api/i18n/en.json b/includes/api/i18n/en.json index 9d0663c448..a6d9d61a43 100644 --- a/includes/api/i18n/en.json +++ b/includes/api/i18n/en.json @@ -777,7 +777,7 @@ "apihelp-query+pageprops-description": "Get various properties defined in the page content.", "apihelp-query+pageprops-param-prop": "Only list these props. Useful for checking whether a certain page uses a certain page prop.", - "apihelp-query+pageprops-example-simple": "Get properties for Category:Foo.", + "apihelp-query+pageprops-example-simple": "Get properties for the pages Main Page and MediaWiki.", "apihelp-query+pageswithprop-description": "List all pages using a given page property.", "apihelp-query+pageswithprop-param-propname": "Page prop for which to enumerate pages.", -- 2.20.1