Fix UTF-8 output in BibTeX translator in 1.0.9 (not yet pushed)

This commit is contained in:
Dan Stillman 2008-12-29 23:57:41 +00:00
parent 3122339d8a
commit dad0b3125f

View File

@ -8,7 +8,7 @@
"maxVersion":"", "maxVersion":"",
"priority":200, "priority":200,
"inRepository":true, "inRepository":true,
"lastUpdated":"2008-12-16 23:13:33" "lastUpdated":"2008-12-29 23:54:59"
} }
Zotero.configure("dataMode", "block"); Zotero.configure("dataMode", "block");
@ -1807,7 +1807,7 @@ function writeField(field, value, isMacro) {
// Case of words with uppercase characters in non-initial positions is preserved with braces. // Case of words with uppercase characters in non-initial positions is preserved with braces.
if(!isMacro) value = value.replace(/([^\s]+[A-Z][^\s]*)/g, "{$1}"); if(!isMacro) value = value.replace(/([^\s]+[A-Z][^\s]*)/g, "{$1}");
} }
if (!Zotero.getOption("UTF8")) { if (Zotero.getOption("exportCharset") != "UTF-8") {
value = value.replace(/[\u0080-\uFFFF]/g, mapAccent); value = value.replace(/[\u0080-\uFFFF]/g, mapAccent);
} }
Zotero.write(value); Zotero.write(value);