From 5570352e740e03a561a96bb967af66d9bf9fbecf Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Sun, 3 Feb 2008 20:39:27 +0000 Subject: [PATCH] Fix accented characters at beginning of fields getting stripped in Refer/BibIX --- scrapers.sql | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scrapers.sql b/scrapers.sql index 620db75b6..3e4307150 100644 --- a/scrapers.sql +++ b/scrapers.sql @@ -22,7 +22,7 @@ -- Set the following timestamp to the most recent scraper update date -REPLACE INTO version VALUES ('repository', STRFTIME('%s', '2008-02-01 21:00:00')); +REPLACE INTO version VALUES ('repository', STRFTIME('%s', '2008-02-03 21:00:00')); REPLACE INTO translators VALUES ('96b9f483-c44d-5784-cdad-ce21b984fe01', '1.0.0b4.r1', '', '2007-06-21 20:00:00', '1', '100', '4', 'Amazon.com', 'Sean Takats', '^https?://(?:www\.)?amazon', 'function detectWeb(doc, url) { @@ -16260,7 +16260,7 @@ function doExport() { } }'); -REPLACE INTO translators VALUES ('881f60f2-0802-411a-9228-ce5f47b64c7d', '1.0.0b4.r5', '', '2008-01-22 19:00:00', '1', '100', '3', 'Refer/BibIX', 'Simon Kornblith', 'txt', +REPLACE INTO translators VALUES ('881f60f2-0802-411a-9228-ce5f47b64c7d', '1.0.0b4.r5', '', '2008-02-03 21:00:00', '1', '100', '3', 'Refer/BibIX', 'Simon Kornblith', 'txt', 'Zotero.configure("dataMode", "line"); function detectImport() { @@ -16371,7 +16371,7 @@ var inputTypeMap = { var isEndNote = false; function processTag(item, tag, value) { - value = Zotero.Utilities.superCleanString(value); + value = Zotero.Utilities.trim(value); if(fieldMap[tag]) { item[fieldMap[tag]] = value; } else if(inputFieldMap[tag]) { @@ -22552,4 +22552,4 @@ REPLACE INTO csl VALUES ('http://www.zotero.org/styles/nlm', '2008-02-02 00:00:0 -'); \ No newline at end of file +');