home | O'Reilly's CD bookshelfs | FreeBSD | Linux | Cisco | Cisco Exam  


Book HomeHTML & XHTML: The Definitive GuideSearch this book

15.6. Conditional Sections

As we mentioned earlier in this chapter, XML lets you include or ignore whole sections of your DTD so you may can tailor the language for alternative uses. The HTML DTD, for instance, defines transitional, strict, and frame-based versions of the language. DTD authors can select the portions of the DTD they plan to include or ignore by using XML conditional directives:

<![INCLUDE [
   ...any XML content...
]]>

or:

<![IGNORE [
   ...any XML content...
]]>

The XML processor will either include or ignore the contents, respectively. Conditional sections may be nested, with the caveat that all sections contained within an ignored section will be ignored, even if they are set to be included.

You will rarely see a DTD with the INCLUDE and IGNORE keywords spelled out. Instead, you'll see parameter entities that document why the section is being included or ignored. Suppose you are creating a DTD to exchange construction plans among builders. Since you have an international customer base, you build a DTD that can handle both U.S. and metric units. You might define two parameter entities thus:

<!ENTITY % English "INCLUDE">
<!ENTITY % Metric "IGNORE">

You would then place all the English-specific declarations in a conditional section and isolate the metric declarations similarly:

<![%English [
   ...English stuff here...
]]>
<![%Metric [
   ...Metric stuff here...
]]>

To use the DTD for English construction jobs, define %English as INCLUDE and %Metric as IGNORE, which causes your DTD to use the English declarations. For metric construction, reverse the two settings, ignoring the English section and including the metric section.



Library Navigation Links

Copyright © 2002 O'Reilly & Associates. All rights reserved.