J-Stage Translator updated

The old J-Stage Translator can't catch the Title correctly, because there are two TI tags in the exported RIS text and alway imports the second Tag content. like this:
"TI - Studies of Mechanisms in Plasma Cholesterol-lowering Effect of Dietary Fiber and Taurine
TI - (Young Investigator Award of the 2007’s JSNFS)"
When the second TI is null, The title will also be nul. This is a problem.
see:
http://www.jstage.jst.go.jp/article/jsnfs/61/1/61_21/_article
http://www.jstage.jst.go.jp/article/jsnfs/61/1/61_11/_article

I updated the translator by adding:
var text = text.replace("TI - ","TIT - ").replace("TI - ","").replace("TIT - ","TI - ");
before:
var translator = Zotero.loadTranslator("import");

It will combine two TI content into one Title.
  • edited January 20, 2009
    Thanks, ticket created.
    https://www.zotero.org/trac/ticket/1300
  • It seems that another part of the problem is the spare nature of the content of the J-Stage RIS - metadata. It is without abstract, ISSN, DOI etc. Here is an example:
    ==
    Provider: Japan Science and Technology Agency
    Database: J-STAGE
    Content:text/plain; charset="utf-8"
    TY - JOUR
    TI - On a discrete optimal velocity model and its continuous and ultradiscrete relatives
    TI -
    AU - Takahashi,Daisuke
    AU - Matsukidaira,Junta
    JO - JSIAM Letters
    VL - 1
    IS -
    SP - 1
    EP - 4
    PY - 2009
    ER -
    ==
    I fear that a Web translator will be needed for anything other than a simple citation.
Sign In or Register to comment.