1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
<!-- ====================================================================== -->
<!-- SMIL 3.0 Timing and Synchronization Modules ========================== -->
<!-- file: SMIL-timing.mod
This is SMIL 3.0.
Copyright: 1998-2008 W3C (MIT, ERCIM, Keio), All Rights
Reserved. See http://www.w3.org/Consortium/Legal/.
Editor for SMIL 3.0: Sjoerd Mullender, CWI
Editor for previous versions of SMIL: Jacco van Ossenbruggen,
Sjoerd Mullender.
$Revision: 1.7 $
$Date: 2008/09/07 20:36:50 $
This DTD module is identified by the PUBLIC and SYSTEM identifiers:
PUBLIC "-//W3C//ELEMENTS SMIL 3.0 Timing//EN"
SYSTEM "http://www.w3.org/2008/SMIL30/SMIL-timing.mod"
====================================================================== -->
<!-- ================== Timing Elements =================================== -->
<!ENTITY % SMIL.BasicTimeContainers.module "IGNORE">
<![%SMIL.BasicTimeContainers.module;[
<!ENTITY % SMIL.par.content "EMPTY">
<!ENTITY % SMIL.par.attrib "">
<!ENTITY % SMIL.par.qname "par">
<!ELEMENT %SMIL.par.qname; %SMIL.par.content;>
<!ATTLIST %SMIL.par.qname; %SMIL.par.attrib;
%SMIL.Core.attrib;
%SMIL.I18n.attrib;
%SMIL.Description.attrib;
>
<!ENTITY % SMIL.seq.content "EMPTY">
<!ENTITY % SMIL.seq.attrib "">
<!ENTITY % SMIL.seq.qname "seq">
<!ELEMENT %SMIL.seq.qname; %SMIL.seq.content;>
<!ATTLIST %SMIL.seq.qname; %SMIL.seq.attrib;
%SMIL.Core.attrib;
%SMIL.I18n.attrib;
%SMIL.Description.attrib;
>
]]> <!-- End of BasicTimeContainers.module -->
<!ENTITY % SMIL.BasicExclTimeContainers.module "IGNORE">
<![%SMIL.BasicExclTimeContainers.module;[
<!ENTITY % SMIL.excl.content "EMPTY">
<!ENTITY % SMIL.excl.attrib "">
<!ENTITY % SMIL.excl.qname "excl">
<!ELEMENT %SMIL.excl.qname; %SMIL.excl.content;>
<!ATTLIST %SMIL.excl.qname; %SMIL.excl.attrib;
%SMIL.Core.attrib;
%SMIL.I18n.attrib;
%SMIL.Description.attrib;
>
]]> <!-- End of BasicExclTimeContainers.module -->
<!ENTITY % SMIL.BasicPriorityClassContainers.module "IGNORE">
<![%SMIL.BasicPriorityClassContainers.module;[
<!ENTITY % SMIL.priorityClass.content "EMPTY">
<!ENTITY % SMIL.priorityClass.attrib "">
<!ENTITY % SMIL.priorityClass.qname "priorityClass">
<!ELEMENT %SMIL.priorityClass.qname; %SMIL.priorityClass.content;>
<!ATTLIST %SMIL.priorityClass.qname; %SMIL.priorityClass.attrib;
peers (stop|pause|defer|never) 'stop'
higher (stop|pause) 'pause'
lower (defer|never) 'defer'
pauseDisplay (disable|hide|show ) 'show'
%SMIL.Description.attrib;
%SMIL.Core.attrib;
%SMIL.I18n.attrib;
>
]]> <!-- End of BasicPriorityClassContainers.module -->
<!-- end of SMIL-timing.mod -->
|