37 lines
1.7 KiB
XML
Executable File
37 lines
1.7 KiB
XML
Executable File
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
Define Node and Edge Data GraphML Attributes
|
|
http://graphml.graphdrawing.org/primer/graphml-primer.html#AttributesDefinition
|
|
|
|
This document defines the node and edge GraphML attributes for the content system.
|
|
|
|
This document is meant to be an XInclude from a well-formed GraphML document.
|
|
-->
|
|
<graphml xmlns="http://graphml.graphdrawing.org/xmlns"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns:xi="http://www.w3.org/2003/XInclude"
|
|
xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd">
|
|
|
|
<!--
|
|
Attr: outfit_name
|
|
Type: string
|
|
Desc: The garmin's identifier and name. If not an outfit export "dlc_name" is used.
|
|
-->
|
|
<key id="outfit_name" for="node" attr.name="outfit_name" attr.type="string" />
|
|
|
|
<!--
|
|
Attr: dlc_name
|
|
Type: string
|
|
Desc: The characters identifier and name. gets overridden by "outfit_name" if the file is just for outfit exports.
|
|
-->
|
|
<key id="dlc_name" for="node" attr.name="dlc_name" attr.type="string" />
|
|
|
|
<!--
|
|
Attr: forced_ityp_dependencies
|
|
Type: semicolon separated strings. Example: <data key="forced_ityp_dependencies">int_mp_h_props</data> or <data key="forced_ityp_dependencies">int_mp_h_props;another_one;and_a_third_one</data>
|
|
Desc: that key is to force the merged props dependency into the RPF through the pipeline
|
|
-->
|
|
<key id="forced_ityp_dependencies" for="node" attr.name="forced_ityp_dependencies" attr.type="string">
|
|
<default></default>
|
|
</key>
|
|
</graphml> |