File: SAXBuilderTestEntity.xml

package info (click to toggle)
libjdom1-java 1.1.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,440 kB
  • ctags: 1,544
  • sloc: java: 10,084; xml: 731; sh: 41; perl: 31; makefile: 17
file content (17 lines) | stat: -rw-r--r-- 510 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" ?>
<!DOCTYPE internalentities [
	<!ELEMENT internalentites (#PCDATA)>
	<!ATTLIST internalentities 
		test (CDATA) #IMPLIED>
	<!ATTLIST internalentities a NOTATION (n1|n2) #IMPLIED>
	<!NOTATION n1 SYSTEM "http://www.w3.org/">
	<!NOTATION n2 SYSTEM "http://www.w3.org/">

	<!ENTITY simple 'simple entity' >
	<!ENTITY simple2 'another simple entity'>
	<!ENTITY anotation SYSTEM "http://www.foo.org/image.gif" NDATA n1 >

]>

<internalentities test="boo">&simple; &simple2;
</internalentities>