English | >> česky << ZVON > Tutorials > XML Base Tutorial
>> Příklad 10 << | Předešlý | Následující | Obsah

XML Base a Relax NG: element "include"


Atribut xml:base ovlivňuje hodnotu atributu href elementu "include".


Dokument f1.rng

     1 <grammar xml:base = "http://www.zvon.org/ZZZ/" xmlns="http://relaxng.org/ns/structure/1.0" >
           <include href = "f2.rng" />
      </grammar>
1Základní URI elementu grammar : http://www.zvon.org/ZZZ/
Link href : http://www.zvon.org/ZZZ/f2.rng


Dokument 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>