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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
|
<?xml version="1.0" encoding="UTF-8"?>
<grammar xml:lang="en" ns="http://www.w3.org/2000/svg" xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0" xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
<a:documentation>
SVG 1.1 Gradient Module
file: svg-gradient.rng
This is SVG, a language for describing two-dimensional graphics in XML.
Copyright 2001, 2002 W3C (MIT, INRIA, Keio), All Rights Reserved.
$Id: svg-gradient.rng,v 1.1 2003/07/15 07:11:10 dean Exp $
</a:documentation>
<a:documentation>
Gradient
linearGradient, radialGradient, stop
This module declares markup to provide support for gradient fill.
</a:documentation>
<a:documentation>
Datatypes
</a:documentation>
<define name="NumberOrPercentage.datatype">
<data type="string"/>
</define>
<a:documentation>
SVG.Gradient.attrib
</a:documentation>
<define name="SVG.Gradient.extra.attrib">
<empty/>
</define>
<define name="SVG.Gradient.attrib" combine="interleave">
<optional>
<attribute name="stop-color">
<ref name="SVGColor.datatype"/>
</attribute>
</optional>
<optional>
<attribute name="stop-opacity">
<ref name="OpacityValue.datatype"/>
</attribute>
</optional>
<ref name="SVG.Gradient.extra.attrib"/>
</define>
<a:documentation>
SVG.Gradient.class
</a:documentation>
<define name="SVG.Gradient.extra.class">
<notAllowed/>
</define>
<define name="SVG.Gradient.class" combine="choice">
<choice>
<ref name="linearGradient"/>
<ref name="radialGradient"/>
<ref name="SVG.Gradient.extra.class"/>
</choice>
</define>
<a:documentation>
linearGradient: Linear Gradient Element
</a:documentation>
<define name="SVG.linearGradient.content">
<zeroOrMore>
<ref name="SVG.Description.class"/>
</zeroOrMore>
<zeroOrMore>
<choice>
<ref name="stop"/>
<ref name="animate"/>
<ref name="set"/>
<ref name="animateTransform"/>
</choice>
</zeroOrMore>
</define>
<define name="linearGradient">
<element name="linearGradient">
<ref name="attlist.linearGradient"/>
<ref name="SVG.linearGradient.content"/>
</element>
</define>
<define name="attlist.linearGradient" combine="interleave">
<ref name="SVG.Core.attrib"/>
<ref name="SVG.Style.attrib"/>
<ref name="SVG.Color.attrib"/>
<ref name="SVG.Gradient.attrib"/>
<ref name="SVG.XLink.attrib"/>
<ref name="SVG.External.attrib"/>
<optional>
<attribute name="x1">
<ref name="Coordinate.datatype"/>
</attribute>
</optional>
<optional>
<attribute name="y1">
<ref name="Coordinate.datatype"/>
</attribute>
</optional>
<optional>
<attribute name="x2">
<ref name="Coordinate.datatype"/>
</attribute>
</optional>
<optional>
<attribute name="y2">
<ref name="Coordinate.datatype"/>
</attribute>
</optional>
<optional>
<attribute name="gradientUnits">
<choice>
<value>userSpaceOnUse</value>
<value>objectBoundingBox</value>
</choice>
</attribute>
</optional>
<optional>
<attribute name="gradientTransform">
<ref name="TransformList.datatype"/>
</attribute>
</optional>
<optional>
<attribute name="spreadMethod">
<choice>
<value>pad</value>
<value>reflect</value>
<value>repeat</value>
</choice>
</attribute>
</optional>
</define>
<a:documentation>
radialGradient: Radial Gradient Element
</a:documentation>
<define name="SVG.radialGradient.content">
<zeroOrMore>
<ref name="SVG.Description.class"/>
</zeroOrMore>
<zeroOrMore>
<choice>
<ref name="stop"/>
<ref name="animate"/>
<ref name="set"/>
<ref name="animateTransform"/>
</choice>
</zeroOrMore>
</define>
<define name="radialGradient">
<element name="radialGradient">
<ref name="attlist.radialGradient"/>
<ref name="SVG.radialGradient.content"/>
</element>
</define>
<define name="attlist.radialGradient" combine="interleave">
<ref name="SVG.Core.attrib"/>
<ref name="SVG.Style.attrib"/>
<ref name="SVG.Color.attrib"/>
<ref name="SVG.Gradient.attrib"/>
<ref name="SVG.XLink.attrib"/>
<ref name="SVG.External.attrib"/>
<optional>
<attribute name="cx">
<ref name="Coordinate.datatype"/>
</attribute>
</optional>
<optional>
<attribute name="cy">
<ref name="Coordinate.datatype"/>
</attribute>
</optional>
<optional>
<attribute name="r">
<ref name="Length.datatype"/>
</attribute>
</optional>
<optional>
<attribute name="fx">
<ref name="Coordinate.datatype"/>
</attribute>
</optional>
<optional>
<attribute name="fy">
<ref name="Coordinate.datatype"/>
</attribute>
</optional>
<optional>
<attribute name="gradientUnits">
<choice>
<value>userSpaceOnUse</value>
<value>objectBoundingBox</value>
</choice>
</attribute>
</optional>
<optional>
<attribute name="gradientTransform">
<ref name="TransformList.datatype"/>
</attribute>
</optional>
<optional>
<attribute name="spreadMethod">
<choice>
<value>pad</value>
<value>reflect</value>
<value>repeat</value>
</choice>
</attribute>
</optional>
</define>
<a:documentation>
stop: Stop Element
</a:documentation>
<define name="SVG.stop.content">
<zeroOrMore>
<choice>
<ref name="animate"/>
<ref name="set"/>
<ref name="animateColor"/>
</choice>
</zeroOrMore>
</define>
<define name="stop">
<element name="stop">
<ref name="attlist.stop"/>
<ref name="SVG.stop.content"/>
</element>
</define>
<define name="attlist.stop" combine="interleave">
<ref name="SVG.Core.attrib"/>
<ref name="SVG.Style.attrib"/>
<ref name="SVG.Color.attrib"/>
<ref name="SVG.Gradient.attrib"/>
<attribute name="offset">
<ref name="NumberOrPercentage.datatype"/>
</attribute>
</define>
</grammar>
|