~ubuntu-branches/ubuntu/trusty/w3c-sgml-lib/trusty

« back to all changes in this revision

Viewing changes to htdocs/sgml-lib/REC-xhtml-modularization-20081008/xhtml-applet-1.mod

  • Committer: Bazaar Package Importer
  • Author(s): Nicholas Bamber
  • Date: 2010-08-21 11:15:42 UTC
  • Revision ID: james.westby@ubuntu.com-20100821111542-cklvls9be6wh2f2z
Tags: upstream-1.1
ImportĀ upstreamĀ versionĀ 1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!-- ...................................................................... -->
 
2
<!-- XHTML Java Applet Module  ............................................ -->
 
3
<!-- file: xhtml-applet-1.mod
 
4
 
 
5
     This is XHTML, a reformulation of HTML as a modular XML application.
 
6
     Copyright 1998-2005 W3C (MIT, ERCIM, Keio), All Rights Reserved.
 
7
     Revision: $Id: xhtml-applet-1.mod,v 4.0 2001/04/02 22:42:49 altheim Exp $ SMI
 
8
 
 
9
     This DTD module is identified by the PUBLIC and SYSTEM identifiers:
 
10
 
 
11
       PUBLIC "-//W3C//ELEMENTS XHTML Java Applets 1.0//EN"
 
12
       SYSTEM "http://www.w3.org/MarkUp/DTD/xhtml-applet-1.mod"
 
13
 
 
14
     Revisions:
 
15
#2001-02-20: added PCDATA to content model of applet
 
16
     ....................................................................... -->
 
17
 
 
18
<!-- Java Applets
 
19
 
 
20
        applet
 
21
 
 
22
     This module declares the applet element type and its attributes,
 
23
     used to provide support for Java applets. The 'alt' attribute is
 
24
     now required (as it is on images). One of either code or object
 
25
     attributes must be present. In the document, place param elements
 
26
     before other content within the <applet> element.
 
27
 
 
28
     Note that use of this module requires instantiation of the Param
 
29
     Element Module.
 
30
-->
 
31
 
 
32
<!-- applet: Java Applet ............................... -->
 
33
 
 
34
<!ENTITY % applet.element  "INCLUDE" >
 
35
<![%applet.element;[
 
36
<!ENTITY % applet.content
 
37
     "( #PCDATA | %param.qname; | %Flow.mix; )*"
 
38
>
 
39
<!ENTITY % applet.qname  "applet" >
 
40
<!ELEMENT %applet.qname;  %applet.content; >
 
41
<!-- end of applet.element -->]]>
 
42
 
 
43
<!ENTITY % applet.attlist  "INCLUDE" >
 
44
<![%applet.attlist;[
 
45
<!ATTLIST %applet.qname;
 
46
      %Core.attrib;
 
47
      alt          %Text.datatype;          #REQUIRED
 
48
      archive      CDATA                    #IMPLIED
 
49
      code         CDATA                    #IMPLIED
 
50
      codebase     %URI.datatype;           #IMPLIED
 
51
      object       CDATA                    #IMPLIED
 
52
      width        %Length.datatype;        #REQUIRED
 
53
      height       %Length.datatype;        #REQUIRED
 
54
>
 
55
<!-- end of applet.attlist -->]]>
 
56
 
 
57
<!-- end of xhtml-applet-1.mod -->