summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/stex/schema/rnc/svg/svg11-tiny.rnc
blob: 40ff52469a1b800e43c8669ec61cdc9fae359738 (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
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
namespace a = "http://relaxng.org/ns/compatibility/annotations/1.0"
namespace ns1 = "http://www.w3.org/2000/svg"
namespace xlink = "http://www.w3.org/1999/xlink"


## 
##     RELAX NG schema for SVG 1.1 Tiny
##     file: svg11-tiny.rng
## 
##     This is SVG Tiny, a proper subset of SVG.
## 
##     The Scalable Vector Graphics (SVG)
##     Copyright 2001, 2002 World Wide Web Consortium
##        (Massachusetts Institute of Technology, Institut National de
##         Recherche en Informatique et en Automatique, Keio University).
##         All Rights Reserved.
## 
##     Permission to use, copy, modify and distribute this RELAX NG schema
##     for SVG and its accompanying documentation for any purpose and without
##     fee is hereby granted in perpetuity, provided that the above copyright
##     notice and this paragraph appear in all copies.  The copyright holders
##     nor the author make no representation about the suitability of this
##     RELAX NG schema for any purpose.
## 
##     It is provided "as is" without expressed or implied warranty.
## 
##         Author: Masayasu Ishikawa (mimasa@w3.org)
##         $Id: svg11-tiny.rng,v 1.1 2003/07/15 07:11:10 dean Exp $
## 
##     This is the driver file for version 1.1 of the SVG Tiny RELAX NG schema.
## 
##     The DTD version is identified by the PUBLIC and SYSTEM identifiers:
## 
##         PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN"
##         SYSTEM "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd"
## 
##     Use this URI to identify the default namespace:
## 
##         "http://www.w3.org/2000/svg"
##   
[ xml:lang = "en" ]
grammar {
  
  ## 
  ##       Paint Attribute Module
  ##     
  include "svg-paint-attrib.rnc" inherit = ns1
  
  ## 
  ##       Basic Graphics Attribute Module
  ##     
  include "svg-basic-graphics-attrib.rnc" inherit = ns1
  
  ## 
  ##       Document Events Attribute Module
  ##     
  include "svg-docevents-attrib.rnc" inherit = ns1
  
  ## 
  ##       Graphical Element Events Attribute Module
  ##     
  include "svg-graphevents-attrib.rnc" inherit = ns1
  
  ## 
  ##       Animation Events Attribute Module
  ##     
  include "svg-animevents-attrib.rnc" inherit = ns1
  
  ## 
  ##       XLink Attribute Module
  ##     
  include "svg-xlink-attrib.rnc" inherit = ns1
  
  ## 
  ##       External Resources Attribute Module
  ##     
  include "svg-extresources-attrib.rnc" inherit = ns1
  
  ## 
  ##       Basic Structure Module (required)
  ##     
  include "svg-basic-structure.rnc" inherit = ns1
  
  ## 
  ##       Conditional Processing Module
  ##     
  include "svg-conditional.rnc" inherit = ns1
  
  ## 
  ##       Image Module
  ##     
  include "svg-image.rnc" inherit = ns1
  
  ## 
  ##       Style Module
  ##     
  include "svg-style.rnc" inherit = ns1
  
  ## 
  ##       Shape Module
  ##     
  include "svg-shape.rnc" inherit = ns1
  
  ## 
  ##       Basic Text Module
  ##     
  include "svg-basic-text.rnc" inherit = ns1
  
  ## 
  ##       Hyperlinking Module
  ##     
  include "svg-hyperlink.rnc" inherit = ns1
  
  ## 
  ##       View Module
  ##     
  include "svg-view.rnc" inherit = ns1
  
  ## 
  ##       Scripting Module
  ##     
  include "svg-script.rnc" inherit = ns1
  
  ## 
  ##       Animation Module
  ##     
  include "svg-animation.rnc" inherit = ns1
  
  ## 
  ##       Basic Font Module
  ##     
  include "svg-basic-font.rnc" inherit = ns1
  
  ## 
  ##       Extensibility Module
  ##     
  include "svg-extensibility.rnc" inherit = ns1
}