plugins/org.w3c.css/bin/org/w3c/css/util/xml/xhtml-modularization/xhtml-image-1.mod
changeset 476 20536eb3b9ff
parent 475 77edd0cbdfe0
child 477 b616697678bf
equal deleted inserted replaced
475:77edd0cbdfe0 476:20536eb3b9ff
     1 <!-- ...................................................................... -->
       
     2 <!-- XHTML Images Module  ................................................. -->
       
     3 <!-- file: xhtml-image-1.mod
       
     4 
       
     5      This is XHTML, a reformulation of HTML as a modular XML application.
       
     6      Copyright 1998-2001 W3C (MIT, INRIA, Keio), All Rights Reserved.
       
     7      Rovision: $Id: xhtml-image-1.mod,v 1.1 2004-02-23 16:11:21 ylafon Exp $ SMI
       
     8 
       
     9      This DTD module is identified by the PUBLIC and SYSTEM identifiers:
       
    10 
       
    11        PUBLIC "-//W3C//ELEMENTS XHTML Images 1.0//EN"
       
    12        SYSTEM "http://www.w3.org/TR/xhtml-modularization/DTD/xhtml-image-1.mod"
       
    13 
       
    14      Revisions:
       
    15      (none)
       
    16      ....................................................................... -->
       
    17 
       
    18 <!-- Images
       
    19 
       
    20         img
       
    21 
       
    22      This module provides markup to support basic image embedding.
       
    23 -->
       
    24 
       
    25 <!-- To avoid problems with text-only UAs as well as to make
       
    26      image content understandable and navigable to users of
       
    27      non-visual UAs, you need to provide a description with
       
    28      the 'alt' attribute, and avoid server-side image maps.
       
    29 -->
       
    30 
       
    31 <!ENTITY % img.element  "INCLUDE" >
       
    32 <![%img.element;[
       
    33 <!ENTITY % img.content  "EMPTY" >
       
    34 <!ENTITY % img.qname  "img" >
       
    35 <!ELEMENT %img.qname;  %img.content; >
       
    36 <!-- end of img.element -->]]>
       
    37 
       
    38 <!ENTITY % img.attlist  "INCLUDE" >
       
    39 <![%img.attlist;[
       
    40 <!ATTLIST %img.qname;
       
    41       %Common.attrib;
       
    42       src          %URI.datatype;           #REQUIRED
       
    43       alt          %Text.datatype;          #REQUIRED
       
    44       longdesc     %URI.datatype;           #IMPLIED
       
    45       height       %Length.datatype;        #IMPLIED
       
    46       width        %Length.datatype;        #IMPLIED
       
    47 >
       
    48 <!-- end of img.attlist -->]]>
       
    49 
       
    50 <!-- end of xhtml-image-1.mod -->