plugins/org.w3c.css/bin/org/w3c/css/util/xml/xhtml-modularization/xhtml-link-1.mod
changeset 476 20536eb3b9ff
parent 475 77edd0cbdfe0
child 477 b616697678bf
equal deleted inserted replaced
475:77edd0cbdfe0 476:20536eb3b9ff
     1 <!-- ...................................................................... -->
       
     2 <!-- XHTML Link Element Module  ........................................... -->
       
     3 <!-- file: xhtml-link-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      Revision: $Id: xhtml-link-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 Link Element 1.0//EN"
       
    12        SYSTEM "http://www.w3.org/TR/xhtml-modularization/DTD/xhtml-link-1.mod"
       
    13 
       
    14      Revisions:
       
    15      (none)
       
    16      ....................................................................... -->
       
    17 
       
    18 <!-- Link element
       
    19 
       
    20         link
       
    21 
       
    22      This module declares the link element type and its attributes,
       
    23      which could (in principle) be used to define document-level links
       
    24      to external resources such as:
       
    25 
       
    26      a) for document specific toolbars/menus, e.g. start, contents,
       
    27         previous, next, index, end, help
       
    28      b) to link to a separate style sheet (rel="stylesheet")
       
    29      c) to make a link to a script (rel="script")
       
    30      d) by style sheets to control how collections of html nodes are
       
    31         rendered into printed documents
       
    32      e) to make a link to a printable version of this document
       
    33         e.g. a postscript or pdf version (rel="alternate" media="print")
       
    34 -->
       
    35 
       
    36 <!-- link: Media-Independent Link ...................... -->
       
    37 
       
    38 <!ENTITY % link.element  "INCLUDE" >
       
    39 <![%link.element;[
       
    40 <!ENTITY % link.content  "EMPTY" >
       
    41 <!ENTITY % link.qname  "link" >
       
    42 <!ELEMENT %link.qname;  %link.content; >
       
    43 <!-- end of link.element -->]]>
       
    44 
       
    45 <!ENTITY % link.attlist  "INCLUDE" >
       
    46 <![%link.attlist;[
       
    47 <!ATTLIST %link.qname;
       
    48       %Common.attrib;
       
    49       charset      %Charset.datatype;       #IMPLIED
       
    50       href         %URI.datatype;           #IMPLIED
       
    51       hreflang     %LanguageCode.datatype;  #IMPLIED
       
    52       type         %ContentType.datatype;   #IMPLIED
       
    53       rel          %LinkTypes.datatype;     #IMPLIED
       
    54       rev          %LinkTypes.datatype;     #IMPLIED
       
    55       media        %MediaDesc.datatype;     #IMPLIED
       
    56 >
       
    57 <!-- end of link.attlist -->]]>
       
    58 
       
    59 <!-- end of xhtml-link-1.mod -->