X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;ds=sidebyside;f=include%2Fyaz%2Fnfaxml.h;h=75694b4077a193e229bb68872c1a0c1fa71a48b7;hb=964580242e2e0b2e570f652afa58bfb90ad0bb5e;hp=6c7436dfdf1adfb7d7cca1a24d960374f1a9d896;hpb=fc42e0dc251df1d80ffc4c9279478d64d8a7027c;p=yaz-moved-to-github.git diff --git a/include/yaz/nfaxml.h b/include/yaz/nfaxml.h index 6c7436d..75694b4 100644 --- a/include/yaz/nfaxml.h +++ b/include/yaz/nfaxml.h @@ -1,7 +1,30 @@ -/* Copyright (C) 2006, Index Data ApS - * See the file LICENSE for details. - * $Id: nfaxml.h,v 1.4 2006-07-06 13:10:29 heikki Exp $ +/* + * Copyright (c) 1995-2006, Index Data + * All rights reserved. + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * Neither the name of Index Data nor the names of its contributors + * may be used to endorse or promote products derived from this + * software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY + * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY + * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +/* $Id: nfaxml.h,v 1.6 2006-10-09 21:02:41 adam Exp $ */ /** * \file nfaxml.h @@ -10,7 +33,7 @@ * The xml file is something like this (using round brakcets * on tags, not to confuse our documentation tools) * (?xml ...) - * (charmap) + * (ruleset) * (rule) * (fromstring) FOO (/fromstring) * (tostring) BAR (/tostring) @@ -48,7 +71,7 @@ YAZ_BEGIN_CDECL /** \brief Parse the NFA from a XML document * * \param doc the xml tree to parse - * \param error_info will be filled in case of errors + * \param filename used for info in error messages * * \returns either the NFA, or null in case of errors * @@ -62,7 +85,7 @@ YAZ_BEGIN_CDECL * logged in yazlog. * */ -yaz_nfa *yaz_nfa_parse_xml_doc(xmlDocPtr doc); +yaz_nfa *yaz_nfa_parse_xml_doc(xmlDocPtr doc, const char *filename); /** \brief Parse the NFA from a file @@ -102,7 +125,7 @@ yaz_nfa *yaz_nfa_parse_xml_file(const char *filepath); * logged in yazlog. * */ -yaz_nfa *yaz_nfa_parse_xml_memory(const char *xmlbuff); +yaz_nfa *yaz_nfa_parse_xml_memory(const char *xmlbuff, const char *filename); YAZ_END_CDECL