We have a lot of old customer forms dating back many years and running with orbeon 3.9. There are 100's that are hand crafted, mostly to enable the use of repeats.
We need to migrate these templates so they will work with Orbeon 4.10. The migrations could potentially be done on the fly using XSL transformations. For example, most of the hand crafted templates are missing the metadata instance
<xforms:instance id="fr-form-metadata" xxforms:readonly="true">
<metadata>
<application-name>CPF</application-name>
<form-name>My_eform_checkboxes</form-name>
<title xml:lang="en">Untitled Form</title>
<description xml:lang="en"/>
<author/>
<logo filename="" mediatype="" size=""/>
</metadata>
</xforms:instance>
This could be inserted on the fly if I can
a) get the form name and title and
b) configure orbeon to run an XSLT transformation on the form template when it is loaded.
There are other things we need to do as well but all should be doable via xsl transformations
Is there a way I could do this via configuration in properties-local.xml?