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 30 31 32
|
<!-- rrdtool-xport.dtd -->
<!-- the attributes of the row and the t elements are used -->
<!-- in the examples/shared-demo.pl, but not in the output -->
<!-- of the native xport command. -->
<!-- wolfgang{dot}schrimm{at}urz{dot}uni-heidelberg{dot}de -->
<!-- root element -->
<!ELEMENT xport (meta, data)>
<!-- root's children -->
<!ELEMENT meta (start, step, end, rows, columns, legend)>
<!ELEMENT data (row+)>
<!-- meta's children -->
<!ELEMENT start (#PCDATA)>
<!ELEMENT step (#PCDATA)>
<!ELEMENT end (#PCDATA)>
<!ELEMENT rows (#PCDATA)>
<!ELEMENT columns (#PCDATA)>
<!ELEMENT legend (entry+)>
<!-- legend's children -->
<!ELEMENT entry (#PCDATA)>
<!-- data's children -->
<!ELEMENT row (t, v+)>
<!ATTLIST row id CDATA #IMPLIED>
<!-- row's children -->
<!ELEMENT t (#PCDATA)>
<!ATTLIST t is CDATA #IMPLIED>
<!ELEMENT v (#PCDATA)>
|