I have several different cores, each with its own circuit, but they all have the same field types. I would like to remove duplicate field type declarations and do something like this in my schema.xml files:
<?xml version="1.0" encoding="UTF-8" ?> <schema name="foo" version="1.5"> <fields> <field name="_version_" ... <field name="id" ... ... </fields> <uniqueKey>id</uniqueKey> <include "/path/to/field_types.xml"> </schema>
I do not see in the documents any mechanism for doing this. I found one post citing this:
<xi:include href="/path/to/field_types.xml" />
But it gives me a run error: The prefix "xi" for element "xi:include" is not bound.
Does anyone have an idea how to execute this type of raw?
source share