<?xml version="1.0" encoding="iso-8859-1"?>

<!-- file: xhtml-bdo-1.rng

     This is XHTML, a reformulation of HTML as a modular XML application.
     Copyright 1998-2010 W3C (MIT, ERCIM, Keio), All Rights Reserved.
     Revision: $Id: xhtml-bdo-1.rng,v 1.1 2010/12/12 23:24:10 smccarro Exp $

     This RelaxNG module is identified by URI:
        
        http://www.w3.org/MarkUp/RELAXNG/xhtml-bdo-1.rng
     .................................................................... -->
<!-- Bi-directional Module -->
<grammar xmlns="http://relaxng.org/ns/structure/1.0">

<define name="xhtml.bdo">
  <element name="bdo">
    <ref name="xhtml.bdo.attlist"/>
    <ref name="xhtml.Inline.model"/>
  </element>
</define>

<define name="xhtml.bdo.attlist">
  <ref name="xhtml.Core.attrib"/>
  <ref name="xhtml.lang.attrib"/>
  <ref name="xhtml.dir.attrib"/>
</define>

<define name="xhtml.dir.attrib">
  <attribute name="dir">
    <choice>
      <value>ltr</value>
      <value>rtl</value>
    </choice>
  </attribute>
</define>

<define name="xhtml.I18n.attrib" combine="interleave">
  <optional>
    <ref name="xhtml.dir.attrib"/>
  </optional>
</define>

<define name="xhtml.Inline.class" combine="choice">
  <ref name="xhtml.bdo"/>
</define>

</grammar>
