plugins/org.w3c.css/bin/org/w3c/css/util/xml/xhtml-modularization/xhtml-edit-1.mod
changeset 476 20536eb3b9ff
parent 475 77edd0cbdfe0
child 477 b616697678bf
equal deleted inserted replaced
475:77edd0cbdfe0 476:20536eb3b9ff
     1 <!-- ...................................................................... -->
       
     2 <!-- XHTML Editing Elements Module  ....................................... -->
       
     3 <!-- file: xhtml-edit-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-edit-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 Editing Markup 1.0//EN"
       
    12        SYSTEM "http://www.w3.org/TR/xhtml-modularization/DTD/xhtml-edit-1.mod"
       
    13 
       
    14      Revisions:
       
    15      (none)
       
    16      ....................................................................... -->
       
    17 
       
    18 <!-- Editing Elements
       
    19 
       
    20         ins, del
       
    21 
       
    22      This module declares element types and attributes used to indicate
       
    23      inserted and deleted content while editing a document.
       
    24 -->
       
    25 
       
    26 <!-- ins: Inserted Text  ............................... -->
       
    27 
       
    28 <!ENTITY % ins.element  "INCLUDE" >
       
    29 <![%ins.element;[
       
    30 <!ENTITY % ins.content
       
    31      "( #PCDATA | %Flow.mix; )*"
       
    32 >
       
    33 <!ENTITY % ins.qname  "ins" >
       
    34 <!ELEMENT %ins.qname;  %ins.content; >
       
    35 <!-- end of ins.element -->]]>
       
    36 
       
    37 <!ENTITY % ins.attlist  "INCLUDE" >
       
    38 <![%ins.attlist;[
       
    39 <!ATTLIST %ins.qname;
       
    40       %Common.attrib;
       
    41       cite         %URI.datatype;           #IMPLIED
       
    42       datetime     %Datetime.datatype;      #IMPLIED
       
    43 >
       
    44 <!-- end of ins.attlist -->]]>
       
    45 
       
    46 <!-- del: Deleted Text  ................................ -->
       
    47 
       
    48 <!ENTITY % del.element  "INCLUDE" >
       
    49 <![%del.element;[
       
    50 <!ENTITY % del.content
       
    51      "( #PCDATA | %Flow.mix; )*"
       
    52 >
       
    53 <!ENTITY % del.qname  "del" >
       
    54 <!ELEMENT %del.qname;  %del.content; >
       
    55 <!-- end of del.element -->]]>
       
    56 
       
    57 <!ENTITY % del.attlist  "INCLUDE" >
       
    58 <![%del.attlist;[
       
    59 <!ATTLIST %del.qname;
       
    60       %Common.attrib;
       
    61       cite         %URI.datatype;           #IMPLIED
       
    62       datetime     %Datetime.datatype;      #IMPLIED
       
    63 >
       
    64 <!-- end of del.attlist -->]]>
       
    65 
       
    66 <!-- end of xhtml-edit-1.mod -->