diff options
| author | Frederic Peters <fpeters@entrouvert.com> | 2005-04-22 09:04:13 +0000 |
|---|---|---|
| committer | Frederic Peters <fpeters@entrouvert.com> | 2005-04-22 09:04:13 +0000 |
| commit | 783d48eb0ba1f6e88b8ef79a162b934ea01f4186 (patch) | |
| tree | 81f419070ca995fd4d107e69f24f14ad3c99dbdb | |
| parent | fb47a30655865a516ae359c6cd2f4a80d319f9e9 (diff) | |
SNIPPET_LIST_NODES
<Parent>
<Value-1/>
<Value-2/>
<Value-n/>
</Parent>
[note: if there are no other nodes; it is possible to leave snippet name as
the empty string; nodes will then be constructed looking at their names and
namespaces (this is useful for xs:any)]
(from docs/reference/snippet-types.rst)
| -rw-r--r-- | lasso/xml/disco_insert_entry.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lasso/xml/disco_insert_entry.c b/lasso/xml/disco_insert_entry.c index da26aa6f..b9f51d9c 100644 --- a/lasso/xml/disco_insert_entry.c +++ b/lasso/xml/disco_insert_entry.c @@ -42,7 +42,7 @@ static struct XmlSnippet schema_snippets[] = { { "ResourceOffering", SNIPPET_NODE, G_STRUCT_OFFSET(LassoDiscoInsertEntry, ResourceOffering) }, - { "any", SNIPPET_LIST_NODES, G_STRUCT_OFFSET(LassoDiscoInsertEntry, any) }, + { "", SNIPPET_LIST_NODES, G_STRUCT_OFFSET(LassoDiscoInsertEntry, any) }, { NULL, 0, 0} }; |
