kerim | 7 Apr 2008 10:44
Picon

Download COINS data to bibliographic software


Hi, I recently switched from using Firefox to Safari on my Mac, and
the one extension I really miss is Zotero, with its ability to import
COINS data from so many websites right into its database. I was
wondering if there wasn't some way to mimic this behavior in Safari,
allowing me to import the software to my desktop bibliographic
software. I use Bookends, but there are several other options on Mac
OS X as well.

I have the GreaseKit plugin for Safari installed, which allows running
greasemonkey scrips in Safari, and I was able to run the Coins Browser
Extensions greasemonkey scripts from your webpage without any problem.
However, they are all designed to work with a university DOI server to
redirect you to the full text version of an article, when what I want
is to download the metadata to my bibliographic software.

Does anyone know if it is possible to do something like this in
greasemonkey? I don't have any javascript coding experience myself,
but it seems like this functionality would be useful even for Firefox
users who wish to use COINS data in EndNote or other bibliographic
software without having to install Zotero.

Thanks for your help!

kerim
____________________________________
P. Kerim Friedman, Ph.D.
Department of Indigenous Cultures
College of Indigenous Studies
National DongHwa University, TAIWAN
(Continue reading)

Godmar Back | 7 Apr 2008 14:17
Picon

Re: Download COINS data to bibliographic software


It should be possible to use a data: URL, which Safari supports.
It mainly depends on your bibliographic software.

For example, Endnote associates itself with a MIME type
"application/x-endnote-refer", hence a URL
"data:application/x-endnote-refer," + escape(refContent) will lead
Endnote to import "refContent" in the same way it would open a file
containing "refContent". This technique is used in MAJAX
(libx.org/majax)

If Bookends provides such as MIME type association, it should be
possible to write a Greasemonkey script that turns CoinS into the
required format.

 - Godmar

On Mon, Apr 7, 2008 at 4:44 AM, kerim <oxusnet@...> wrote:
>
>  Hi, I recently switched from using Firefox to Safari on my Mac, and
>  the one extension I really miss is Zotero, with its ability to import
>  COINS data from so many websites right into its database. I was
>  wondering if there wasn't some way to mimic this behavior in Safari,
>  allowing me to import the software to my desktop bibliographic
>  software. I use Bookends, but there are several other options on Mac
>  OS X as well.
>
>  I have the GreaseKit plugin for Safari installed, which allows running
>  greasemonkey scrips in Safari, and I was able to run the Coins Browser
>  Extensions greasemonkey scripts from your webpage without any problem.
(Continue reading)

Alf Eaton | 7 Apr 2008 15:04
Favicon

Re: Download COINS data to bibliographic software


Zotero has a parseContextObject Javascript function that you should be able to adapt:
https://www.zotero.org/svn/extension/trunk/chrome/content/zotero/xpcom/ingester.js

Godmar Back wrote:
> It should be possible to use a data: URL, which Safari supports.
> It mainly depends on your bibliographic software.
> 
> For example, Endnote associates itself with a MIME type
> "application/x-endnote-refer", hence a URL
> "data:application/x-endnote-refer," + escape(refContent) will lead
> Endnote to import "refContent" in the same way it would open a file
> containing "refContent". This technique is used in MAJAX
> (libx.org/majax)
> 
> If Bookends provides such as MIME type association, it should be
> possible to write a Greasemonkey script that turns CoinS into the
> required format.
> 
> On Mon, Apr 7, 2008 at 4:44 AM, kerim <oxusnet@...> wrote:
>>  Hi, I recently switched from using Firefox to Safari on my Mac, and
>>  the one extension I really miss is Zotero, with its ability to import
>>  COINS data from so many websites right into its database. I was
>>  wondering if there wasn't some way to mimic this behavior in Safari,
>>  allowing me to import the software to my desktop bibliographic
>>  software. I use Bookends, but there are several other options on Mac
>>  OS X as well.
>>
>>  I have the GreaseKit plugin for Safari installed, which allows running
>>  greasemonkey scrips in Safari, and I was able to run the Coins Browser
(Continue reading)


Gmane