-
Notifications
You must be signed in to change notification settings - Fork 2
/
ds-templ.c
29 lines (26 loc) · 913 Bytes
/
ds-templ.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/** ds-templ.c - DirectoryScript template, used in code generation
** Copyright (c) 2007 Symlabs ([email protected]), All Rights Reserved.
** Author: Sampo Kellomaki ([email protected])
** This is confidential unpublished proprietary source code of the author.
** NO WARRANTY, not even implied warranties. Contains trade secrets.
** Distribution prohibited unless authorized in writing.
** Licensed under Apache License 2.0, see file COPYING.
** $Id: ds-templ.c,v 1.1 2007-08-10 17:44:49 sampo Exp $
**
** 6.6.2007, created, Sampo Kellomaki ([email protected])
**
** N.B: This template is meant to be processed by pd/xsd2sg.pl. Beware
** of special markers that xsd2sg.pl expects to find and understand.
**/
function parse_ELNAME(data, x) {
ATTRS_PARSE;
ELEMS_PARSE;
}
function build_ELNAME(data) {
attr = [];
body = [];
ATTRS_BUILD;
ELEMS_BUILD;
return TAG('ELNS:ELTAG', attr, body);
}
/* EOF */