From: Marc Cromme Date: Fri, 5 Jan 2007 11:28:48 +0000 (+0000) Subject: allowing any content in zeerex_explain filter X-Git-Tag: METAPROXY.1.0.8~47 X-Git-Url: http://lists.indexdata.com/cgi-bin?a=commitdiff_plain;h=c3109b75c0273692bb499855660a78ccf4013288;hp=ab6d1b138a82d09adac7e6a48a50b2ec198c47ee;p=metaproxy-moved-to-github.git allowing any content in zeerex_explain filter need to write a nice zeerex explain RelaxNG syntax, but not now .. --- diff --git a/xml/schema/metaproxy.rnc b/xml/schema/metaproxy.rnc index d6b6057..340221f 100644 --- a/xml/schema/metaproxy.rnc +++ b/xml/schema/metaproxy.rnc @@ -1,5 +1,5 @@ # Metaproxy XML config file schemas -# $Id: metaproxy.rnc,v 1.13 2007-01-02 15:35:36 marc Exp $ +# $Id: metaproxy.rnc,v 1.14 2007-01-05 11:28:48 marc Exp $ # # Copyright (c) 2005-2006, Index Data. # @@ -26,6 +26,8 @@ start |= metaproxy include "retrievalinfo.rnc" +any = (text | element * { attribute * { text }*, any })* + metaproxy = element mp:metaproxy { attribute version { "1.0" }, @@ -180,4 +182,10 @@ filter_z3950_client = filter_zeerex_explain = attribute type { "zeerex_explain" }, attribute id { xsd:NCName }?, - attribute name { xsd:NCName }? + attribute name { xsd:NCName }?, + element mp:database { + attribute name { xsd:NCName }, + any + }+ + + \ No newline at end of file