Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorModel/Resources/www.w3.org/Graphics.SVG.1.1.DTD/svg-basic-clip.mod @ 13495

Last change on this file since 13495 was 12762, checked in by aballeit, 9 years ago

#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)

File size: 3.2 KB
Line 
1<!-- ....................................................................... -->
2<!-- SVG 1.1 Basic Clip Module ............................................. -->
3<!-- file: svg-basic-clip.mod
4
5     This is SVG, a language for describing two-dimensional graphics in XML.
6     Copyright 2001, 2002 W3C (MIT, INRIA, Keio), All Rights Reserved.
7     Revision: $Id: svg-basic-clip.mod,v 1.4 2002/11/03 15:54:14 fujisawa Exp $
8
9     This DTD module is identified by the PUBLIC and SYSTEM identifiers:
10
11        PUBLIC "-//W3C//ELEMENTS SVG 1.1 Basic Clip//EN"
12        SYSTEM "http://www.w3.org/Graphics/SVG/1.1/DTD/svg-basic-clip.mod"
13
14     ....................................................................... -->
15
16<!-- Basic Clip
17
18        clipPath
19
20     This module declares markup to provide support for clipping.
21-->
22
23<!-- 'clip-path' property/attribute value (e.g., 'none', <uri>) -->
24<!ENTITY % ClipPathValue.datatype "CDATA" >
25
26<!-- Qualified Names (Default) ......................... -->
27
28<!ENTITY % SVG.clipPath.qname "clipPath" >
29
30<!-- Attribute Collections (Default) ................... -->
31
32<!ENTITY % SVG.Core.attrib "" >
33<!ENTITY % SVG.Conditional.attrib "" >
34<!ENTITY % SVG.Style.attrib "" >
35<!ENTITY % SVG.Text.attrib "" >
36<!ENTITY % SVG.TextContent.attrib "" >
37<!ENTITY % SVG.Font.attrib "" >
38<!ENTITY % SVG.Paint.attrib "" >
39<!ENTITY % SVG.Color.attrib "" >
40<!ENTITY % SVG.Opacity.attrib "" >
41<!ENTITY % SVG.Graphics.attrib "" >
42<!ENTITY % SVG.Mask.attrib "" >
43<!ENTITY % SVG.Filter.attrib "" >
44<!ENTITY % SVG.Cursor.attrib "" >
45<!ENTITY % SVG.External.attrib "" >
46
47<!-- SVG.Clip.class .................................... -->
48
49<!ENTITY % SVG.Clip.extra.class "" >
50
51<!ENTITY % SVG.Clip.class
52    "| %SVG.clipPath.qname; %SVG.Clip.extra.class;"
53>
54
55<!-- SVG.Clip.attrib ................................... -->
56
57<!ENTITY % SVG.Clip.extra.attrib "" >
58
59<!ENTITY % SVG.Clip.attrib
60    "clip-path %ClipPathValue.datatype; #IMPLIED
61     clip-rule %ClipFillRule.datatype; #IMPLIED
62     %SVG.Clip.extra.attrib;"
63>
64
65<!-- clipPath: Clip Path Element ....................... -->
66
67<!ENTITY % SVG.clipPath.extra.content "" >
68
69<!ENTITY % SVG.clipPath.element "INCLUDE" >
70<![%SVG.clipPath.element;[
71<!ENTITY % SVG.clipPath.content
72    "(( %SVG.Description.class; )*, (( %SVG.Animation.class; %SVG.Use.class;
73        %SVG.clipPath.extra.content; )*, ( %SVG.Animation.class; %SVG.Use.class;
74        %SVG.Shape.class; )?, ( %SVG.Animation.class; %SVG.Use.class;
75        %SVG.clipPath.extra.content; )*))"
76>
77<!ELEMENT %SVG.clipPath.qname; %SVG.clipPath.content; >
78<!-- end of SVG.clipPath.element -->]]>
79
80<!ENTITY % SVG.clipPath.attlist "INCLUDE" >
81<![%SVG.clipPath.attlist;[
82<!ATTLIST %SVG.clipPath.qname;
83    %SVG.Core.attrib;
84    %SVG.Conditional.attrib;
85    %SVG.Style.attrib;
86    %SVG.Text.attrib;
87    %SVG.TextContent.attrib;
88    %SVG.Font.attrib;
89    %SVG.Paint.attrib;
90    %SVG.Color.attrib;
91    %SVG.Opacity.attrib;
92    %SVG.Graphics.attrib;
93    %SVG.Clip.attrib;
94    %SVG.Mask.attrib;
95    %SVG.Filter.attrib;
96    %SVG.Cursor.attrib;
97    %SVG.External.attrib;
98    transform %TransformList.datatype; #IMPLIED
99    clipPathUnits ( userSpaceOnUse | objectBoundingBox ) #IMPLIED
100>
101<!-- end of SVG.clipPath.attlist -->]]>
102
103<!-- end of svg-basic-clip.mod -->
Note: See TracBrowser for help on using the repository browser.