The tag inserts the SVG-Stream specified in the tag-body directly
in the resulting HTML page.
The SVG-Stream is saved in the ResourceManager for this purpose.
On the HTML-page, the following reference to the registered resource
is written (see example):
<object
data='/cc/session/svgresource.res'
width='100%'
height='200'
type='image/svg+xml'>
<embed
src='/cc/session/svgresource.res'
width='100%'
height='200'
type='image/svg+xml'
pluginspage='http://www.adobe.com/svg/viewer/install/'/>
</object>
The tag uses the Resource-Servlet of the CC-Framework.
There must be an SVG-Viewer installed on the client system.
Embedded a SVG-resource.
<%@ taglib uri="http://www.common-controls.com/cc/tags-svg" prefix="svg" %>
<svg:embed width="100%" height="200" name="svgresource">
<svg width="8cm" height="3cm" viewBox="0 0 800 300">
<rect id="RectElement" x="300" y="100" width="300" height="100" style="fill:rgb(255,255,0)">
<animate attributeName="x" attributeType="XML" begin="0s" dur="9s" fill="freeze" from="300" to="0"/>
<animate attributeName="y" attributeType="XML" begin="0s" dur="9s" fill="freeze" from="100" to="0"/>
<animate attributeName="width" attributeType="XML" begin="0s" dur="9s" fill="freeze" from="300" to="800"/>
<animate attributeName="height" attributeType="XML" begin="0s" dur="9s" fill="freeze" from="100" to="300"/>
</rect>
<g transform="translate(100,100)">
<text id="TextElement" x="0" y="0" style="font-family:Verdana; font-size:35.27; visibility:hidden">Embed SVG!
<set attributeName="visibility" attributeType="CSS" to="visible" begin="3s" dur="6s" fill="freeze"/>
<animateMotion path="M 0 0 L 0 100" begin="3s" dur="6s" fill="freeze"/>
<animateColor attributeName="fill" attributeType="CSS" from="rgb(0,0,255)" to="rgb(128,0,0)" begin="3s" dur="6s" fill="freeze"/>
<animateTransform attributeName="transform" attributeType="XML" type="rotate" from="-30" to="0" begin="3s" dur="6s" fill="freeze"/>
<animateTransform attributeName="transform" attributeType="XML" type="scale" from="1" to="3" additive="sum" begin="3s" dur="6s" fill="freeze"/>
</text>
</g>
</svg>
</svg:embed>