>> English << | česky ZVON > Tutorials > XML Base Tutorial
>> Example 10 << | Prev | Next | Contents

XML Base and Relax NG "include" element


The xml:base attribute affects the value of the href attribute.


File f1.rng

     1 <grammar xml:base = "http://www.zvon.org/ZZZ/" xmlns="http://relaxng.org/ns/structure/1.0" >
           <include href = "f2.rng" />
      </grammar>
1Base URI of element grammar : http://www.zvon.org/ZZZ/
Link href : http://www.zvon.org/ZZZ/f2.rng


File f2.rng (URL: http://www.zvon.org/ZZZ/f2.rng)

      <grammar xmlns="http://relaxng.org/ns/structure/1.0" >
           <start >
                <element name = "BBB" >
                     <empty />
                </element>
           </start>
      </grammar>