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-core-attrib.mod @ 12762

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

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

File size: 1.3 KB
Line 
1<!-- ....................................................................... -->
2<!-- SVG 1.1 Core Attribute Module ......................................... -->
3<!-- file: svg-core-attrib.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-core-attrib.mod,v 1.3 2002/04/28 13:50:23 fujisawa Exp $
8
9     This DTD module is identified by the PUBLIC and SYSTEM identifiers:
10
11        PUBLIC "-//W3C//ENTITIES SVG 1.1 Core Attribute//EN"
12        SYSTEM "http://www.w3.org/Graphics/SVG/1.1/DTD/svg-core-attrib.mod"
13
14     ....................................................................... -->
15
16<!-- Core Attribute
17
18        id, xml:base, xml:lang, xml:space
19
20     This module defines the core set of attributes that can be present on
21     any element.
22-->
23
24<!ENTITY % SVG.id.attrib
25    "id ID #IMPLIED"
26>
27
28<!ENTITY % SVG.base.attrib
29    "xml:base %URI.datatype; #IMPLIED"
30>
31
32<!ENTITY % SVG.lang.attrib
33    "xml:lang %LanguageCode.datatype; #IMPLIED"
34>
35
36<!ENTITY % SVG.space.attrib
37    "xml:space ( default | preserve ) #IMPLIED"
38>
39
40<!ENTITY % SVG.Core.extra.attrib "" >
41
42<!ENTITY % SVG.Core.attrib
43    "%SVG.id.attrib;
44     %SVG.base.attrib;
45     %SVG.lang.attrib;
46     %SVG.space.attrib;
47     %SVG.Core.extra.attrib;"
48>
49
50<!-- end of svg-core-attrib.mod -->
Note: See TracBrowser for help on using the repository browser.