X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fservice_xslt.c;h=e654232b4a52b62e511fa171db17d4b28271cd4d;hb=817e3ec506c4095bc4fcc1923cee36153ef4ee43;hp=3ef5b55deeffd3d4a09213e960b91b567ae02322;hpb=c7ce18b91b4b542af4f02ad9fa3f86f12b92f3d1;p=pazpar2-moved-to-github.git diff --git a/src/service_xslt.c b/src/service_xslt.c index 3ef5b55..e654232 100644 --- a/src/service_xslt.c +++ b/src/service_xslt.c @@ -1,5 +1,5 @@ /* This file is part of Pazpar2. - Copyright (C) 2006-2012 Index Data + Copyright (C) Index Data Pazpar2 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free @@ -42,7 +42,7 @@ struct service_xslt xsltStylesheetPtr xsp; struct service_xslt *next; }; - + xsltStylesheetPtr service_xslt_get(struct conf_service *service, const char *id) { @@ -94,12 +94,12 @@ int service_xslt_config(struct conf_service *service, xmlNode *n) yaz_log(YLOG_FATAL, "Multiple xslt with id=%s", id); return -1; } - + sx = nmem_malloc(service->nmem, sizeof(*sx)); sx->id = nmem_strdup(service->nmem, id); sx->next = service->xslt_list; service->xslt_list = sx; - + xsp_doc = xmlNewDoc(BAD_CAST "1.0"); xmlDocSetRootElement(xsp_doc, xmlCopyNode(root, 1)); sx->xsp = xsltParseStylesheetDoc(xsp_doc);