Feature #2202

Mis à jour par Matthieu Decorde il y a presque 5 ans

Add the possibility to define the synoptic editions columns order

h3. Solution

Document somewhere:
* the default editions (and their order) can be set in the "import.xml" file in the "editions@default" attribute (comma separated edition names, e.g "courante,ms-colonne")
* the available editions order can also be changed in the "import.xml" file in the "editions" sub-elements ("edition")

GRAAL corpus configuration:
<pre>
<editions default="courante,ms-colonne">

<edition mode="groovy"
name="fac-similaire"
script="org.txm.importer.xml/pager.groovy"/>
<edition mode="groovy"
name="courante"
script="org.txm.importer.xml/pager.groovy"/>
<edition mode="groovy"
name="diplomatique"
script="org.txm.importer.xml/pager.groovy"/>
<edition mode="groovy"
name="traduction"
script="org.txm.importer.xml/pager.groovy"/>
<edition mode="groovy"
name="ms-colonne"
script="org.txm.importer.xml/pager.groovy"/>
<edition mode="groovy"
name="ms-page"
script="org.txm.importer.xml/pager.groovy"/>
</editions>
</pre>

Retour