File: rpc-method.dtd

package info (click to toggle)
librpc-xml-perl 0.82-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 1,352 kB
  • sloc: perl: 9,665; xml: 3,020; makefile: 17
file content (28 lines) | stat: -rw-r--r-- 1,522 bytes parent folder | download | duplicates (6)
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
<!--
    This is a very simple DTD for the specification of a published RPC
    method/procedure. This is here as a reference, and possibly for use
    with an XML editor in order to troubleshoot files.

    Copyright (c) 2001-2009, Randy J. Ray (rjray@blackperl.com)
    Freely usable and redistributable under the terms of the Artistic
    License 2.0 (http://www.opensource.org/licenses/artistic-license-2.0.php).
    This may be redistributed under either the Artistic License or the GNU
    Lesser General Public License (LGPL) version 2.1
    (http://www.opensource.org/licenses/lgpl-2.1.php).
-->

<!ENTITY % container    '(name, namespace?, version?, hidden?,
                          signature+, help?, package?, code)'        >

<!ELEMENT  proceduredef  %container;                                 >
<!ELEMENT  methoddef     %container;                                 >
<!ELEMENT  functiondef   %container;                                 >

<!ELEMENT  name          (#PCDATA)                                   >
<!ELEMENT  namespace     (#PCDATA)                                   >
<!ELEMENT  version       (#PCDATA)                                   >
<!ELEMENT  hidden        EMPTY                                       >
<!ELEMENT  signature     (#PCDATA)                                   >
<!ELEMENT  help          (#PCDATA)                                   >
<!ELEMENT  code          (#PCDATA)                                   >
<!ATTLIST  code          language  CDATA #IMPLIED                    >