Fix accented characters at beginning of fields getting stripped in Refer/BibIX

This commit is contained in:
Dan Stillman 2008-02-03 20:39:27 +00:00
parent 29fd63c960
commit 5570352e74

View File

@ -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
</layout>
</bibliography>
</style>
');
');