X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Frecord_conv.c;h=671342c3e50bc0e0f7a1467e88f1598c9e25ac1e;hp=5edc28bdfdcd863a54c3806c2804701294d9dff2;hb=6ee0d7c0404834a0a59547c3bd7e2686f838ce37;hpb=74aa3f7eb2b76108e21dd9d1ea8535387075fe59 diff --git a/src/record_conv.c b/src/record_conv.c index 5edc28b..671342c 100644 --- a/src/record_conv.c +++ b/src/record_conv.c @@ -195,7 +195,6 @@ static void *construct_xslt(const xmlNode *ptr, wrbuf_printf(wr_error, "Element : " "attribute 'stylesheet' expected"); nmem_destroy(nmem); - return 0; } else { @@ -241,7 +240,6 @@ static void *construct_xslt(const xmlNode *ptr, ")"); xmlFreeDoc(info->xsp_doc); nmem_destroy(info->nmem); - return 0; } else { @@ -390,6 +388,10 @@ static void *construct_marc(const xmlNode *ptr, if (!info->input_charset && info->output_charset) info->input_charset = "utf-8"; } + else if (!strcmp(input_format, "json")) + { + info->input_format_mode = YAZ_MARC_JSON; + } else { wrbuf_printf(wr_error, "Element : " @@ -433,6 +435,12 @@ static void *construct_marc(const xmlNode *ptr, if (info->input_charset && !info->output_charset) info->output_charset = "utf-8"; } + else if (!strcmp(output_format, "json")) + { + info->output_format_mode = YAZ_MARC_JSON; + if (info->input_charset && !info->output_charset) + info->output_charset = "utf-8"; + } else { wrbuf_printf(wr_error, "Element : "