home *** CD-ROM | disk | FTP | other *** search
/ MacFormat UK 160 - Disc 2 / MF_UK_160_2.iso / pc / DiscContent / Trials / oxygen / samples / schematron / percent / percent.sch < prev   
Encoding:
Extensible Markup Language  |  2005-07-21  |  445 b   |  11 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--   Sample from Zvon Schematron tutorial (www.zvon.org)  
  3.     Description: The sum of values of all relevant elements equals 100.-->
  4. <schema xmlns="http://www.ascc.net/xml/schematron">
  5.      <pattern name="Sum equals 100%.">
  6.           <rule context="Total">
  7.                <assert test="sum(//Percent) = 100">The values do not sum to 100%. </assert>
  8.           </rule>
  9.      </pattern>
  10. </schema>
  11.