User:Christoph Jauera (WMDE)/Test
This extension is maintained by the Web team. |
Popups Release status: stable |
|
---|---|
Implementation | Skin |
Description | <> Displays popups when users hover over article links</> |
Author(s) | |
MediaWiki | 1.25+ |
PHP | 5.4+ |
Database changes | No |
License | GNU General Public License 2.0 or later |
Download | |
Translate the Christoph Jauera (WMDE)/Test extension if it is available at translatewiki.net | |
Issues | Open tasks · Report a bug |
The Popups extension displays page previews − summaries of an article's content when the user hovers over a link to that article.
This is an initiative of the Design team, inspired by the popular Navigation popups gadget. Currently this feature is available on all Wikipedias by default for logged-out users. A description of how the extension functions and more information on its use on Wikimedia projects is available at Page Previews. </>
<>
Dependencies
editThis extension has a hard dependency on Extension:TextExtracts and Extension:PageImages . There are also optional dependencies on Beta Features (without BetaFeatures, it loads for all users), and Extension:EventLogging and Extension:WikimediaEvents (for instrumentation).
Installation
edit- Install the dependencies.
</>
- Download and move the extracted
Christoph Jauera (WMDE)
folder to yourextensions/
directory.
Developers and code contributors should install the extension from Git instead, using:cd extensions/
git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/Christoph+Jauera+%28WMDE%29 - Add the following code at the bottom of your LocalSettings.php file:
wfLoadExtension( 'Christoph Jauera (WMDE)' );
- Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.
<>
- Enable the beta feature
</>
$wgPopupsBetaFeature = true;
<>
Example of final LocalSettings configuration for a non-testing site (regular wiki)
edit</>
wfLoadExtensions([
'TextExtracts',
'PageImages',
'Popups'
]);
$wgPopupsBetaFeature = false;
$wgPopupsExperiment = false;
$wgPopupsHideOptInOnPreferencesPage = true;
$wgPopupsOptInDefaultState = '1';
API
editEvery project is different, and what displays in your previews is highly dependent on the content inside your wiki.
Extension:Popups has been optimised to work with Wikipedia-like content (e.g. wikitext). If your wiki is using a different kind of content handler (for example as is the case for Wikibase) it will need to provide its own API.
The API can be written in any language, but the response of the API must match the spec defined here:
https://www.mediawiki.org/wiki/Specs/Summary/1.2.0
Defining new APIs is out of scope for the Popups extension.
Once defined, you can configure page previews to point to your API using $wgPopupsRestGatewayEndpoint configuration option.
<>
Configuration options
edit</>
<> Option</> | <> Default value</> | <> Useful for...</> | <> Documentation</> |
---|---|---|---|
$wgPopupsHideOptInOnPreferencesPage
|
false
|
sysadmins | <> Whether the option to enable/disable Page Previews should be hidden on Preferences page. Please note if PopupsBetaFeature is set to true this option will be always hidden. False by default</> |
$wgPopupsOptInDefaultState
|
0
|
sysadmins | <> Default Page Previews visibility. Has to be a string as a compatibility with beta feature settings</> |
$wgPopupsConflictingNavPopupsGadgetName
|
Navigation_popups
|
sysadmins | <> Navigation popups gadget name</> |
$wgPopupsGateway
|
mwApiPlain
|
sysadmins | <> Which gateway to use for fetching Popups data. Available options: [mwApiPlain|restbasePlain|restbaseHTML]. Full and always up to date list is available in src/gateway/index.js </>
|
$wgPopupsRestGatewayEndpoint | /api/rest_v1/page/summary/ | sysadmins | Specify a REST endpoint where summaries should be sourced from. Endpoint must meet the spec at https://www.mediawiki.org/wiki/Specs/Summary/1.2.0 |
$wgPopupsAnonsExperimentalGroupSize
|
0
|
sysadmins | <>
Defines the fraction of users that should be subject to an A/B test. When enabled half of users in this group will see page previews. The rest will be divided into one of two buckets where previews will not show and the control group size will match the enabled bucket. If undefined, or 0, no users will be subject to experimentation and previews will be enabled for everyone unless |
$wgPopupsEventLogging
|
false
|
sysadmins | <> Whether we should log events. This should be used carefully alongside PopupsAnonsExperimentalGroupSize. Note if this is enabled without using that variable events will be logged for all users. Be careful!</> |
$wgPopupsExperiment
|
true
|
sysadmins | <> Enables A/B experiments with Popups in desktop stable.</> |
$wgPopupsExperimentConfig
|
$wgPopupsExperimentConfig = [
'name' => 'Popups A/B Test - May, 2016',
'enabled' => true,
'buckets' => [
'control' => 0.5,
'A' => 0.5
],
];
|
sysadmins | <>
Configuration for Popups A/B test
|
$wgPopupsSchemaSamplingRate
|
0
|
sysadmins | <> Sampling rate for logging performance data to statsv</> |
$wgPopupsSurveyLink
|
sysadmins | <> URL for survey</> | |
$wgPopupsPageBlacklist
|
[ "Special:Userlogin", "Special:CreateAccount" ]
|
sysadmins | <> Blacklisted pages are subject to the HTML cache policy of the wiki. A purge on a blacklisted page maybe needed to see the effect of this configuration variable. Every blacklisted page should be defined by a canonical name, eg: Special:Userlogin </>
|
<>
Content
editThe popups show an image (if one is available), a small text excerpt and the timestamp of the last edit.
Image
editThe image comes from the Extension:PageImages which returns the single most appropriate thumbnail associated with an article. It ignores maintenance templates, stubs, flag icons etc.
Text
editPopups can be configured with any compatible API that is compatible with the Page content service summary endpoint using $wgPopupsRestGatewayEndpoint
. For third parties we encourage using the Page Content Service to enjoy using Popups with your local wiki.
You can also use the Extension:TextExtracts extension. This extension has various caveats and we do not actively support use of this API.
Renderers
editThis extensions currently has only one renderer, that is for ordinary pages.
New renderers for different kind of pages, or things like references can be easily added.
One needs to create a new object with the following methods: </>
- init
- createPopup
- getOffset
- getClasses
- processPopup
<> You can see details of these methods in ext.popups.renderer.article.js or this patch that adds a renderer for references.
Known problems
edit- Users of the Translate extension should note that Page Previews requests previews in the content language of the page. If the preview contains a complete translatable block, then it will be translated. If, however, the preview contains an incomplete translateable block – because a sentence is cut off, say – then it isn't translated and will be displayed in the content language of the page. If you are observing this behavior, then you should consider marking up individual sentences in your lead section.
- T167852 is for a technical audience but has more information on the underlying problem.
- Longer math formulas cutting off in preview - long math or chemical formulas (formulas wider than the preview width) display as truncated in previews. We were not able to add a gradient in order to indicate that the formula is continued on the article itself.
FAQ
editWhy can't I copy and paste text from a preview?
editAt time of writing, the cons of doing so outweigh the pros. Essentially it boils down to decreasing the touch area to read the article in full. Once Page Previews is deployed on English and German Wikipedia, feel free to reopen this task and reignite the discussion, but right now we have no plans.
How can I change the image that I see on preview?
editSee Extension:PageImages#Image choice.
How can I remove content from a page preview?
editAny element marked with the noexcerpt
class will be stripped from the summary.
Where do summaries come from?
editThese are provided by the Summary REST API.
Why are parenthetical stripped?
editThere's a good discussion going on in T91344 in Phabricator. If you have any views on this or see any problems relating to this, please let us know there.
Why don't I see Popups outside of content namespaces?
editPopups appear on links to pages in content namespaces only.</> <> This is a limitation of Popups; TextExtracts are available from other namespaces.</> <> You may workaround this by appending more namespaces into $wgContentNamespaces . </>
This skin is being used on one or more Wikimedia projects. This probably means that the skin is stable and works well enough to be used by such high-traffic websites. Look for this skin's name in Wikimedia's CommonSettings.php and InitialiseSettings.php configuration files to see where it's installed. A full list of the skins installed on a particular wiki can be seen on the wiki's Special:Version page. |