From 82084209b61a8fa111cee3cee35326bb7f0ee7ba Mon Sep 17 00:00:00 2001 From: Elena Razlogova Date: Sat, 15 Dec 2007 02:00:04 +0000 Subject: [PATCH] mapped artworkSize and history; added short form for genre --- chrome/content/zotero/xpcom/cite.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/chrome/content/zotero/xpcom/cite.js b/chrome/content/zotero/xpcom/cite.js index 71a3a613d..7fda6e688 100644 --- a/chrome/content/zotero/xpcom/cite.js +++ b/chrome/content/zotero/xpcom/cite.js @@ -1800,7 +1800,7 @@ Zotero.CSL.Item._zoteroFieldMap = { "issue":"issue", "number-of-volumes":"numberOfVolumes", "edition":"edition", - "genre":"type", + "genre":["type", "artworkSize", "history"], /* history should be a relation in hierarchical version; artworkSize should move to SQL mapping tables */ "medium":"medium", "archive":"repository", "archive_location":"archiveLocation", @@ -1815,7 +1815,8 @@ Zotero.CSL.Item._zoteroFieldMap = { }, "short":{ "title":["shortTitle", "title"], - "container-title":"journalAbbreviation" + "container-title":"journalAbbreviation", + "genre":["shortTitle", "type"] /* needed for subsequent citations of items with no title */ } }