File: test.xml

package info (click to toggle)
xom 1.3.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 15,712 kB
  • sloc: xml: 68,724; java: 48,828; makefile: 17
file content (20 lines) | stat: -rw-r--r-- 438 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0"?>
<!-- comment before root -->
<!DOCTYPE test [
  <!ELEMENT test (latin1, test2)>
]>
<test xmlns:xinclude="http://www.w3.org/2001/XInclude">
  <latin1>
    <firstElement/>
    <xinclude:include href="utf8.xml" parse="text"/>  
    <insideChildren/>
    <another>
      <deeper>text</deeper>
    </another>
  </latin1>
  <test2>
    <xinclude:include href="test2.xml"/> 
  </test2>
</test>
<!-- comment after root -->