>
Download This Plugin | |
Download Elegant Themes | |
Name | Mendeley Plugin |
Version | 1.0.8 |
Author | Michael Koch |
Rating | 60 |
Last updated | 2015-02-15 07:59:00 |
Downloads |
5247
|
Download Plugins Speed Test plugin for Wordpress |
Home page PageSpeed score has been degraded by 0%, while Post page PageSpeed score has been degraded by 0%
Mendeley Plugin plugin added 8 bytes of resources to the Home page and 4 bytes of resources to the sample Post page.
Mendeley Plugin plugin added 0 new host(s) to the Home page and 0 new host(s) to the sample Post page.
Great! Mendeley Plugin plugin ads no tables to your Wordpress blog database.Mendeley Plugin for WordPress is a plugin for displaying information from the Mendeley "shared bibliography system" (www.mendeley.com) in WordPress blogs.
Using the public API from Mendeley, meta-information on documents in personal, public or shared collections is loaded and formatted as bibliographic entries.
The lists can be included in posts or pages using WordPress shortcodes:
[mendeley type="folders" id="xxx" groupby="xxx"] [mendeley type="groups" id="xxx" groupby="xxx"] [mendeley type="groups" id="xxx" sortby="xxx" sortbyorder="xxx"] [mendeley type="groups" id="xxx" groupby="xxx" filter="author=Michael Koch"] [mendeley type="groups" id="xxx" groupby="xxx" filter="author=Michael Koch;type=journal"] [mendeley type="groups" id="xxx" groupby="xxx" filter="type=book_section"] [mendeley type="groups" id="xxx" groupby="xxx" csl="http://DOMAINNAME/csl/custom_style.csl"] - the attribute "type" can be set to "folders" or "groups" or "own" - the attribute "groupby" is optional; possible values currently are: "authors", "year" - the attribute "sortby" is optional; possible values currently are: "authors", "year" - the attributes "sortbyorder" and "groupbyorder" can have the values "asc" and "desc" - sorting on the sort key is done before grouping on the group key if both are provided - in "filter" one or more equal matches can be filtered for; if more than one filter rule is specified, than documents are displayed only when all filter rules match - possible attribute names to filter for are: type, title, year, author, editor, publisher, tag, keyword, abstract (when filtering for tag or keyword, a substring search is performed, so "blog" also matches "microblog") - possible values for attribute type: ['journal' or 'book' or 'generic' or 'book_section' or 'conference_proceedings' or 'working_paper' or 'report' or 'web_page' or 'thesis' or 'magazine_article' or 'statute' or 'patent' or 'newspaper_article' or 'computer_program' or 'hearing' or 'television_broadcast' or 'encyclopedia_article' or 'case' or 'film' or 'bill'] - the attribute "csl" is optional; the value must contain a valid URL with a .csl file
In v1.0 of the plugin there are some important changes due to support for the new Mendeley API.
The most important issue is that ids of groups and folders now have to be uuids - so, you have to look up the ids again - e.g. using the list feature in the settings page of the plugin in the Wordpress backend.
Additionally, some attribute names and possible values have been changed - so for example filters for type have to be changed.
We now also no longer support the outdated collection types "shared", "sharedcollections", "collections" - Only "groups" and "folders" are supported.
The current version of the plugin (v1.0) has one known problem with requesting and authorizing access tokens: When the activity is triggered in the backend using the Safari browser, the redirection to the Mendeley API site might not work (blank page) - If this is the case for you, please try with a different browser. For us Firefox has always worked.
If you do not specify a CSL stylesheet, full entries are formatted the following way - so, the style can be tailored using CSS.
<h2 class="wpmgrouptitle">grouptitle</h2> <p class="wpmref"> <span class="wpmauthors">$authors</span> <span class="wpmyear">($year)</span>: <span class="wpmtitle">$title</span> , <span class="wpmoutlet">$publication_outlet</span> <span class="wpmvolume">$volume</span><span class="wpmissue">($issue)</span> , <span class="wpmeditors">$editors</span> , <span class="wpmpages">$pages</span> , <span class="wpmpublisher">$city: $publisher</span> , <span class="wpmurl"><a target="_blank" href="$url"><span class="wpmurl$urltxt">$urltxt<>/span</a></span> </p>
By adding some lines in your style sheets, you can format the output according to your needs. One example:
.wpmref { } .wpmauthors { color: #666666; } .wpmyear:after{ content: ": "; } .wpmyear { color: #666666; } .wpmtitle:before{ content: "\""; } .wpmtitle:after{ content: "\""; } .wpmurlpdf:before { content: url("/image/pdf.gif"); } .wpmoutlet, .wpmvolume, .wpmissue, .wpmpages { font-style: italic; color: #336633; }
Additionally, there are widgets to display the content of collections or shared collections in widget areas of a theme (list of titles with links only). The output in the widgets is formatted the following way:
<ul class="wpmlist"> <li class="wpmlistref"> title (if url is defined, then this title is linked to url) </li> ... </ul>
The title will additionally be equipped with a div-tag including the full reference in the title attribute - which will in most browsers display the full reference when you are hoovering over the title with the mouse pointer.
You can use the plugin in non widgetized themes, just try
echo $mendeleyPlugin->formatWidget("groups", 763, 10, array ('author' => 'Michael Koch'));
For using the plugin you have to obtain an API key from Mendeley, enter this Customer Key in the configuration section of the plugin, and authorize the API. To do so the following steps have to be taken:
The document lists in the widgets only include the title of the document and a link. Per default the link is either the url attribute of the document - or if not set a link to the doi attribute in the document if set.
To present more details for those list entries without leaving the web site beginning in Version 0.8.1 you have two options:
1) if enabled in the configuration, the list items will include mouseover tooltips showing the full reference - this can be constructed in a simple default way or using CSL stylesheets.
2) if a details url is set in the configuration, all list items are linked to $DETAILSURL?docid=XXXX You can create a details page on your Wordpress installation in the following way: - create a page - insert the [mendeleydetails]...[/mendeleydetails] shortcode in the page - the text between the shortcodes is interpreted the following way: every tag "{attributename}" is replaced by the corresponding attribute in the Mendeley document - if you only use the simple shortcode [mendeleydetails] then the plugin looks for the file "mendeley-details-template.tpl" in the plugin directory and interprets the content of this file in the same way
In addition to all attributes returned from Mendeley (abstract, authors, doi, editors, translators, categories, identifiers, issue, keywords, mendeley_url, pages, producers, publication_outlet, published_in, tags, title, type, url, uuid, volume, year - also see the Mendeley API documentation at http://apidocs.mendeley.com/home/public-resources/search-details) you can use the special attribute "full_reference" to insert a full reference. The attribute can be annotated with a CSL url to do the formatting according to a CSL stylesheet: {full_reference,http://site/url.csl}
In version 0.7 we added the functionality to create a JSON data source - e.g. to be used as data source in Exhibit/Simile application.
For example the page http://www.kooperationssysteme.de/pub/cscm/ uses such a data source in an interactive JavaScript application to search the references.
The following line is used in the Exhibit/Simile application:
In the directory examples you find a file bibexhibit.tpl.php that can be placed in your Wordpress theme directory. Then you can create a new page with the Template BibExhibit that will show the application with the data source.
When you specify a CSL (citation style language) stylesheet via the csl parameter, the formatting specified in the stylesheet is used to generate details.
A .csl file must be a XML formatted file, containing the style tags defined by the citation Style language. For further information of CSL you should visit the citationstyles.org website. If you want to use an existing CSL style, you should browse the zotero style repository on zotero.org/styles. For creating your own CSL file, you can either write an XML-file or use a visual editor e.g. editor.citationstyles.org/visualEditor/.
We include some CSL files in the sub directory "style" - So, an easy way to try the functionality could be to link to one of those files - e.g. by an URL like the following: http://YOURDOMAIN/wp-content/plugins/mendeleyplugin/style/apa.csl
For formatting entries via CLS, we are relying on the CiteProc.php formatting engine by Ron Jerome, which usually is included in the plugins distribution. (See https://bitbucket.org/rjerome/citeproc-php for the original project.)
The library includes locale-files for adapting the output to different languages. We have only included the DE and EN locales here. Please load additional locales from https://bitbucket.org/rjerome/citeproc-php/src/ and add them in the locale folder in the plugin folder.
The source code of the plugin is more or less documented. Here some information about the overall structure:
The main function of the plugin is "formatCollection". This function is called from different places in order to create a formatted list of references. In this function
The following Mendeley API calls are used
Thanks for contributions to Rhodri Cusack and Matthias Budde.
Thanks for contributing to the CSL integration in V0.8 to Philipp Plagemann, Claudia Armbruster and Martin Wandtke. Thanks for contributing to the details display in V0.8.1 to Björn Trappe.