From 696a15816c3ff76e6de0f20d3c2df7c98c5f17bc Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Mon, 14 Jul 2025 21:32:18 -0400 Subject: [PATCH] =?UTF-8?q?More=20`chicago-note-bibliography`=20=E2=86=92?= =?UTF-8?q?=20`chicago-shortened-notes-bibliography`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- chrome/content/zotero/xpcom/server/server_localAPI.js | 2 +- test/tests/citeprocRsBridgeTest.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/chrome/content/zotero/xpcom/server/server_localAPI.js b/chrome/content/zotero/xpcom/server/server_localAPI.js index 2ddd9bd93b..0bca900251 100644 --- a/chrome/content/zotero/xpcom/server/server_localAPI.js +++ b/chrome/content/zotero/xpcom/server/server_localAPI.js @@ -857,7 +857,7 @@ async function citeprocToHTML(itemOrItems, searchParams, asCitationList) { // Filter out attachments, annotations, and notes, which we can't generate citations for items = items.filter(item => item.isRegularItem()); - let styleID = searchParams.get('style') || 'chicago-note-bibliography'; + let styleID = searchParams.get('style') || 'chicago-shortened-notes-bibliography'; let locale = searchParams.get('locale') || 'en-US'; let linkWrap = searchParams.get('linkwrap') == '1'; diff --git a/test/tests/citeprocRsBridgeTest.js b/test/tests/citeprocRsBridgeTest.js index af55676859..75065b7b30 100644 --- a/test/tests/citeprocRsBridgeTest.js +++ b/test/tests/citeprocRsBridgeTest.js @@ -1,7 +1,7 @@ "use strict"; describe("Zotero.CiteprocRs", function () { - var chicagoNoteStyleID = "http://www.zotero.org/styles/chicago-note-bibliography"; + var chicagoNoteStyleID = "http://www.zotero.org/styles/chicago-shortened-notes-bibliography"; var chicagoAuthorDateStyleID = "http://www.zotero.org/styles/chicago-author-date"; var style; function getCiteprocJSEngine(style) { @@ -106,7 +106,7 @@ describe("Zotero.CiteprocRs", function () { citeprocRS.free(); }); - describe('with chicago-note-bibliography.csl', function () { + describe('with chicago-shortened-notes-bibliography.csl', function () { before(function () { style = Zotero.Styles.get(chicagoNoteStyleID); });