Extension:Scopus

Category:Unmaintained extensions#Scopus Category:Extensions without an imageCategory:Extensions without a compatibility policyCategory:GPL licensed extensions
MediaWiki extensions manual
Scopus
Release status: unmaintainedCategory:Unmaintained extensions
Implementation Parser function Category:Parser function extensions
Description Pulls data from the Scopus API into wiki pages
Author(s) Nischay Nahata (Nischayn22talk)
Latest version 0.1 (April 2018)
MediaWiki 1.25+Category:Extensions with manual MediaWiki version
PHP 5.3+
Database changes No
License GNU General Public License 2.0 or later
Download Category:Extensions in GitHub version control
$wgScopusApiKey
Category:All extensionsCategory:Extensions not in ExtensionJson

The Scopus extension uses parser functions to pull data from the Scopus API into wiki pages. Scopus is an academic reference manager.

Installation

  • Download and place the file(s) in a directory called Scopus in your extensions/ folder.
  • Add the following code at the bottom of your LocalSettings.php file:
    wfLoadExtension( 'Scopus' );
    $wgScopusApiKey = /* Scopus Application KEY GOES HERE */;
    
  • Yes Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.

Configuration parameters

$wgScopusApiKey
(Required) Your Application ID from Scopus

To get these values you need to Login and Register an application here: https://dev.elsevier.com/apikey/create

Usage

The scopus parser function takes two parameters, in the form of {{#scopus:doi=DOI|parameter=PARAMETER}}.

Where doi is required to identify the document and "parameter" is the name of the parameter that should be displayed. The full list of parameters is available here.

Examples

  • This example displays the citation count of a document:

{{#scopus:doi=10.1103/PhysRevA.20.1521|parameter=citedby-count}} → 519

Category:All extensions Category:Extensions in GitHub version control Category:Extensions not in ExtensionJson Category:Extensions with manual MediaWiki version Category:Extensions without a compatibility policy Category:Extensions without an image Category:GPL licensed extensions Category:LoadExtensionSchemaUpdates extensions Category:ParserFirstCallInit extensions Category:Parser function extensions Category:Unmaintained extensions