From: Dennis Schafroth Date: Tue, 9 Mar 2010 12:48:14 +0000 (+0100) Subject: Removed duplicate variable for turbo marcxml (using_turbo_format). Now works in zooms... X-Git-Tag: v4.0.3~33^2~25 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=7b4adcc54d64c9196a8c19a7f69c850774b8776b;hp=45092b952efe25cbb98ff928da8047a3e141036c Removed duplicate variable for turbo marcxml (using_turbo_format). Now works in zoomsh: show 0 1 txml --- diff --git a/src/marcdisp.c b/src/marcdisp.c index 75e6d3c..1f00f41 100644 --- a/src/marcdisp.c +++ b/src/marcdisp.c @@ -91,7 +91,6 @@ struct yaz_marc_t_ { int output_format; int debug; int write_using_libxml2; - int turbo_format; enum yaz_collection_state enable_collection; yaz_iconv_t iconv_cd; char subfield_str[8]; @@ -697,9 +696,9 @@ static int yaz_marc_write_marcxml_ns(yaz_marc_t mt, WRBUF wr, int ret; xmlNode *root_ptr; - if (!mt->turbo_format) + if (yaz_marc_get_write_format(mt) == YAZ_MARC_MARCXML) ret = yaz_marc_write_xml(mt, &root_ptr, ns, format, type); - else + else // Check for Turbo XML ret = yaz_marc_write_turbo_xml(mt, &root_ptr, ns, format, type); if (ret == 0) { @@ -752,7 +751,7 @@ void add_marc_datafield_turbo_xml(yaz_marc_t mt, struct yaz_marc_node *n, xmlNod { xmlNode *ptr; struct yaz_marc_subfield *s; - int turbo = mt->turbo_format; + int turbo = mt->output_format == YAZ_MARC_TMARCXML; if (!turbo) { ptr = xmlNewChild(record_ptr, ns_record, BAD_CAST "datafield", 0); xmlNewProp(ptr, BAD_CAST "tag", BAD_CAST n->u.datafield.tag); @@ -844,7 +843,7 @@ int yaz_marc_write_turbo_xml(yaz_marc_t mt, xmlNode **root_ptr, xmlNode *record_ptr; xmlNsPtr ns_record; WRBUF wr_cdata = 0; - int turbo = mt->turbo_format; + int turbo = mt->output_format == YAZ_MARC_TMARCXML; for (n = mt->nodes; n; n = n->next) if (n->which == YAZ_MARC_LEADER) { @@ -1207,8 +1206,12 @@ int yaz_marc_get_read_format(yaz_marc_t mt) void yaz_marc_set_write_format(yaz_marc_t mt, int format) { - if (mt) + if (mt) { mt->output_format = format; + // Force using libxml2 + if (mt->output_format == YAZ_MARC_TMARCXML) + mt->write_using_libxml2 = 1; + } } int yaz_marc_get_write_format(yaz_marc_t mt) @@ -1224,8 +1227,7 @@ int yaz_marc_get_write_format(yaz_marc_t mt) */ void yaz_marc_xml(yaz_marc_t mt, int xmlmode) { - if (mt) - mt->output_format = xmlmode; + yaz_marc_set_write_format(mt, xmlmode); } @@ -1337,14 +1339,9 @@ void yaz_marc_write_using_libxml2(yaz_marc_t mt, int enable) mt->write_using_libxml2 = enable; } -void yaz_marc_write_turbo_format(yaz_marc_t mt, int enable) -{ - mt->turbo_format = enable; -} - int yaz_marc_is_turbo_format(yaz_marc_t mt) { - return mt->turbo_format; + return mt->output_format == YAZ_MARC_TMARCXML; }