49 lines
1.5 KiB
XML
Executable File
49 lines
1.5 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"
|
|
xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd">
|
|
|
|
<!--
|
|
Attr: path
|
|
Type: string
|
|
Desc: Absolute path string to content.
|
|
-->
|
|
<key id="path" for="node" attr.name="path" attr.type="string" />
|
|
|
|
<!--
|
|
Attr: wildcard
|
|
Type: string
|
|
Desc: File search pattern (e.g. "*.*", "*.anim").
|
|
-->
|
|
<key id="wildcard" for="node" attr.name="wildcard" attr.type="string">
|
|
<default>*.*</default>
|
|
</key>
|
|
|
|
<!--
|
|
Attr: recursive
|
|
Type: boolean
|
|
Desc: Tells the pipeline whether ths directory search is recursive.
|
|
-->
|
|
<key id="recursive" for="node" attr.name="recursive" attr.type="boolean">
|
|
<default>false</default>
|
|
</key>
|
|
|
|
<!--
|
|
Attr: expression
|
|
Type: string
|
|
Desc: File search pattern (e.g. "a_c_.*").
|
|
-->
|
|
<key id="expression" for="node" attr.name="expression" attr.type="string">
|
|
<default>.*</default>
|
|
</key>
|
|
|
|
</graphml>
|