blob: 6c1274e082ad521f35c3b48c60296587700ed6d2 (
plain)
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
|
namespace a = "http://relaxng.org/ns/compatibility/annotations/1.0"
##
## SVG 1.1 External Resources Attribute Module
## file: svg-extresources-attrib.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-extresources-attrib.rng,v 1.1 2003/07/15 07:11:10 dean Exp $
##
##
## External Resources Attribute
##
## externalResourcesRequired
##
## This module defines the External attribute set.
##
[ xml:lang = "en" ]
grammar {
SVG.externalResourcesRequired.attrib =
attribute externalResourcesRequired { Boolean.datatype }?
SVG.External.extra.attrib = empty
SVG.External.attrib &=
SVG.externalResourcesRequired.attrib, SVG.External.extra.attrib
}
|