diff options
author | Michael Brauer <mib@openoffice.org> | 2000-12-08 15:02:21 +0000 |
---|---|---|
committer | Michael Brauer <mib@openoffice.org> | 2000-12-08 15:02:21 +0000 |
commit | ac84f1ddfc5e795ab4f4f78b53911095973bf528 (patch) | |
tree | 9dd3934f3fe30553a53a8e636ac9ed9bb5341ade /xmloff/dtd/drawing.mod | |
parent | b413364d4312ce098044d58350814b8c8de6d6a5 (diff) |
added DTD for contour
Diffstat (limited to 'xmloff/dtd/drawing.mod')
-rw-r--r-- | xmloff/dtd/drawing.mod | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/xmloff/dtd/drawing.mod b/xmloff/dtd/drawing.mod index 98ec717b39d4..5d330432e2c0 100644 --- a/xmloff/dtd/drawing.mod +++ b/xmloff/dtd/drawing.mod @@ -1,5 +1,5 @@ <!-- - $Id: drawing.mod,v 1.17 2000-12-05 18:22:15 cl Exp $ + $Id: drawing.mod,v 1.18 2000-12-08 16:02:21 mib Exp $ The Contents of this file are made available subject to the terms of either of the following licenses @@ -360,7 +360,7 @@ <!ATTLIST draw:text-box %draw-transform; > <!-- image --> -<!ELEMENT draw:image (svg:desc?)> +<!ELEMENT draw:image (svg:desc?,(draw:contour-polygon|draw:contour-path)?)> <!ATTLIST draw:image %draw-style-name;> <!ATTLIST draw:image draw:name %string; #IMPLIED> <!ATTLIST draw:image xlink:href %uriReference; #REQUIRED> @@ -378,6 +378,18 @@ <!ELEMENT svg:desc (#PCDATA)> +<!ELEMENT draw:contour-polygon EMPTY> +<!ATTLIST draw:contour-polygon svg:width %coordinate; #REQUIRED> +<!ATTLIST draw:contour-polygon svg:height %coordinate; #REQUIRED> +<!ATTLIST draw:contour-polygon %draw-viewbox;> +<!ATTLIST draw:contour-polygon svg:points %points; #REQUIRED> + +<!ELEMENT draw:contour-path EMPTY> +<!ATTLIST draw:contour-path svg:width %coordinate; #REQUIRED> +<!ATTLIST draw:contour-path svg:height %coordinate; #REQUIRED> +<!ATTLIST draw:contour-path %draw-viewbox;> +<!ATTLIST draw:contour-path svg:d %pathData; #REQUIRED> + <!-- hyperlink --> <!ELEMENT draw:a (draw:image|draw:text-box)> <!ATTLIST draw:a xlink:href %uriReference; #REQUIRED> |