RDF metadata in SVG collaborative work -


i can't find example of how annotate nested svg rdf. rough structure of document:

<svg> <title>main document</title> <metadata> needs title, publisher, date, cc:license, , cc:attributionurl. </metadata>   <svg>  <title>contribution 1</title>   needs title, date, , contributor 1.  </svg>   <svg>  <title>contribution 2</title>   needs title, date, , contributor 2.  </svg>  </svg> 

here first lines of svg document generated inkscape. put rdf in tag metadata.

<?xml version="1.0" encoding="utf-8" standalone="no"?> <svg    xmlns:dc="http://purl.org/dc/elements/1.1/"    xmlns:cc="http://creativecommons.org/ns#"    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"    xmlns:svg="http://www.w3.org/2000/svg"    xmlns="http://www.w3.org/2000/svg"    xmlns:xlink="http://www.w3.org/1999/xlink"    xmlns:sodipodi="http://sodipodi.sourceforge.net/dtd/sodipodi-0.dtd"    xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"    width="788.6123"    height="864.14807"    id="svg2"    sodipodi:version="0.32"    inkscape:version="0.46"    sodipodi:docname="jeter2.svg"    inkscape:output_extension="org.inkscape.output.svg.inkscape"    version="1.0">   <metadata      id="metadata129">     <rdf:rdf>       <cc:work          rdf:about="">         <dc:format>image/svg+xml</dc:format>         <dc:type            rdf:resource="http://purl.org/dc/dcmitype/stillimage" />       </cc:work>     </rdf:rdf>   </metadata>  <defs id="defs127"> 

Comments

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

windows - Python Service Installation - "Could not find PythonClass entry" -

Determine if a XmlNode is empty or null in C#? -