Custom Locate button

Hi,

It would be great if Locate button is always active (not only for papers, books,...) and when you click on it a local web page is displayed at the browser

zotero://locator/6119/

containing a list of links to different URLs (Amazon, Google scholar, Google search, Library locator services, ...) where you can find the article, book, ...

Why?

To reach just in two clicks to extra information that is not in the bibliographic database (for instance, the cover image of a book, the number of citations a paper has, the price of a book, ...)

The links could depend on the kind of entry (patent, article, ...) and if you can customize somehow the zotero://locator page it would be more useful because people could integrate zotero within his organizations.

What I implemented (and it works pretty well) is the following:

I've defined a custom solver:

http://intranet.com/localzoterolocator.php

and when you push the Locate button the results is a web page with custom links to other sites:

Zotero local library locator service Here is the simple PHP script


// localzoterolocator.php script

<html>
<h3>Zotero local library locator service</h3>

<?php
$date_param=$_GET['rft_date'];
$author_param=$_GET['rft_aulast'];
$title_param=$_GET['rft_atitle'];
$ver_param=$_GET['url_ver'];
$year=$_GET['year'];
?>
<ul>
<li><a href='http://scholar.google.com/scholar?q="<?php echo $title_param; ?>\"'>Google Scholar</a></li>
<li><a href='http://127.0.0.1:4664/search&s=AWWKym96k5LY1l4XM5q1BDiuZTA?q=<?php echo $author_param;echo $year; ?>'>Local Google Desktop</a></li>
<li><a href="http://intranet.com/download.php?file=articles/article_a/article_anliker_speaker_separation_tracking_system_2006.pdf">Intranet Documentation</a></li>
</ul>
</body>
</html>
  • That's a clever solution, but, while we haven't formalized the details, we're planning to implement a Locate menu (as opposed to just a button) with support for OpenSearch plugins. This should allow the same level of extensibility using an open specification already supported by Firefox.
  • That's sound well. Thanks.
Sign In or Register to comment.