The name attribute for the retrieval element is a glob-mask. This allows
a GFS server to accept a mask of element set names, e.g.
<retrieval syntax="xml" name="zebra::*"/>.
* Copyright (C) 2005-2007, Index Data ApS
* See the file LICENSE for details.
*
- * $Id: retrieval.c,v 1.21 2007-05-08 08:22:36 adam Exp $
+ * $Id: retrieval.c,v 1.22 2008-01-25 16:28:26 adam Exp $
*/
/**
* \file retrieval.c
#include <yaz/xmalloc.h>
#include <yaz/nmem.h>
#include <yaz/tpath.h>
+#include <yaz/match_glob.h>
#include <yaz/proto.h>
#include <yaz/oid_db.h>
schema_ok = 1;
else
{
- if (el->name && !strcmp(schema, el->name))
+ if (el->name && yaz_match_glob(el->name, schema))
schema_ok = 1;
if (el->identifier && !strcmp(schema, el->identifier))
schema_ok = 1;