blob: 50b42d1562742dad17eaa9668e2b5bb98cfd4ded (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
default namespace = "http://www.w3.org/2000/svg"
namespace a = "http://relaxng.org/ns/compatibility/annotations/1.0"
##
## SVG 1.1 Cursor Module
## file: svg-cursor.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-cursor.rng,v 1.1 2003/07/15 07:11:10 dean Exp $
##
##
## Cursor
##
## cursor
##
## This module declares markup to provide support for cursor.
##
##
## Datatypes
##
[ xml:lang = "en" ]
grammar {
CursorValue.datatype = xsd:string
a:documentation [ "\x{a}" ~ " SVG.Cursor.attrib\x{a}" ~ " " ]
SVG.Cursor.extra.attrib = empty
SVG.Cursor.attrib &=
attribute cursor { CursorValue.datatype }?,
SVG.Cursor.extra.attrib
a:documentation [ "\x{a}" ~ " SVG.Cursor.class\x{a}" ~ " " ]
SVG.Cursor.extra.class = notAllowed
SVG.Cursor.class |= cursor | SVG.Cursor.extra.class
a:documentation [ "\x{a}" ~ " cursor: Cursor Element\x{a}" ~ " " ]
SVG.cursor.content = SVG.Description.class*
cursor = element cursor { attlist.cursor, SVG.cursor.content }
attlist.cursor &=
SVG.Core.attrib,
SVG.Conditional.attrib,
SVG.XLinkRequired.attrib,
SVG.External.attrib,
attribute x { Coordinate.datatype }?,
attribute y { Coordinate.datatype }?
}
|