~ubuntu-branches/ubuntu/precise/w3c-sgml-lib/precise

« back to all changes in this revision

Viewing changes to htdocs/sgml-lib/REC-SVG11-20030114/svg-viewport-attrib.mod

  • Committer: Bazaar Package Importer
  • Author(s): Nicholas Bamber
  • Date: 2010-08-21 11:15:42 UTC
  • Revision ID: james.westby@ubuntu.com-20100821111542-cklvls9be6wh2f2z
Tags: upstream-1.1
ImportĀ upstreamĀ versionĀ 1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!-- ....................................................................... -->
 
2
<!-- SVG 1.1 Viewport Attribute Module ..................................... -->
 
3
<!-- file: svg-viewport-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-viewport-attrib.mod,v 1.2 2002/04/20 18:07:43 fujisawa Exp $
 
8
 
 
9
     This DTD module is identified by the PUBLIC and SYSTEM identifiers:
 
10
 
 
11
        PUBLIC "-//W3C//ENTITIES SVG 1.1 Viewport Attribute//EN"
 
12
        SYSTEM "http://www.w3.org/Graphics/SVG/1.1/DTD/svg-viewport-attrib.mod"
 
13
 
 
14
     ....................................................................... -->
 
15
 
 
16
<!-- Viewport Attribute
 
17
 
 
18
        clip, overflow
 
19
 
 
20
     This module defines the Viewport attribute set.
 
21
-->
 
22
 
 
23
<!-- 'clip' property/attribute value (e.g., 'auto', rect(...)) -->
 
24
<!ENTITY % ClipValue.datatype "CDATA" >
 
25
 
 
26
<!ENTITY % SVG.clip.attrib
 
27
    "clip %ClipValue.datatype; #IMPLIED"
 
28
>
 
29
 
 
30
<!ENTITY % SVG.overflow.attrib
 
31
    "overflow ( visible | hidden | scroll | auto | inherit ) #IMPLIED"
 
32
>
 
33
 
 
34
<!ENTITY % SVG.Viewport.extra.attrib "" >
 
35
 
 
36
<!ENTITY % SVG.Viewport.attrib
 
37
    "%SVG.clip.attrib;
 
38
     %SVG.overflow.attrib;
 
39
     %SVG.Viewport.extra.attrib;"
 
40
>
 
41
 
 
42
<!-- end of svg-viewport-attrib.mod -->