X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=retrieval%2Fd1_write.c;h=87892706a4427512232896ca3c8baa141d32b0bc;hb=751fc8b0c5b555a41feb9d8c0bf8ac71d5707d25;hp=b93a1e7da61331ffd2bf525a93e14dcbb42299b2;hpb=d9dfda0bf340a35a062c42d566a2390c1f5bc447;p=yaz-moved-to-github.git diff --git a/retrieval/d1_write.c b/retrieval/d1_write.c index b93a1e7..8789270 100644 --- a/retrieval/d1_write.c +++ b/retrieval/d1_write.c @@ -3,7 +3,7 @@ * See the file LICENSE for details. * Sebastian Hammer, Adam Dickmeiss * - * $Id: d1_write.c,v 1.12 2002-05-21 07:43:16 adam Exp $ + * $Id: d1_write.c,v 1.13 2002-07-03 10:04:04 adam Exp $ */ #include @@ -31,7 +31,29 @@ static int nodetoidsgml(data1_node *n, int select, WRBUF b, int col) { char *tag; - if (c->which == DATA1N_tag) + if (c->which == DATA1N_preprocess) + { + data1_xattr *p; + + sprintf (line, "%*su.preprocess.target); + for (p = c->u.preprocess.attributes; p; p = p->next) + { + wrbuf_putc (b, ' '); + wrbuf_puts (b, p->name); + wrbuf_putc (b, '='); + wrbuf_putc (b, '"'); + wrbuf_puts (b, p->value); + wrbuf_putc (b, '"'); + } + if (c->child) + wrbuf_puts(b, " "); + if (nodetoidsgml(c, select, b, (col > 40) ? 40 : col+2) < 0) + return -1; + wrbuf_puts (b, "?>\n"); + } + else if (c->which == DATA1N_tag) { if (select && c->u.tag.node_selected) continue; @@ -125,13 +147,15 @@ static int nodetoidsgml(data1_node *n, int select, WRBUF b, int col) break; case DATA1I_num: wrbuf_write(b, c->u.data.data, c->u.data.len); + wrbuf_write(b, "\n", 1); break; case DATA1I_oid: wrbuf_write(b, c->u.data.data, c->u.data.len); + wrbuf_write(b, "\n", 1); } if (c->which == DATA1N_comment) { - wrbuf_write (b, "-->", 3); + wrbuf_write (b, "-->\n", 4); } } } @@ -141,16 +165,11 @@ static int nodetoidsgml(data1_node *n, int select, WRBUF b, int col) char *data1_nodetoidsgml (data1_handle dh, data1_node *n, int select, int *len) { WRBUF b = data1_get_wrbuf (dh); - char line[1024]; wrbuf_rewind(b); - sprintf(line, "<%s>\n", n->u.root.type); - wrbuf_write(b, line, strlen(line)); if (nodetoidsgml(n, select, b, 0)) return 0; - sprintf(line, "\n", n->u.root.type); - wrbuf_write(b, line, strlen(line)); *len = wrbuf_len(b); return wrbuf_buf(b); }