crs-tools / tracker

CRS Ticket Tracker
Apache License 2.0
18 stars 11 forks source link

empty XSLT file on creating encoding profiles #146

Closed a-tze closed 6 years ago

a-tze commented 6 years ago

/encoding/profile/create should prefill the text box with an empty but syntactically correct XSLT file.

jjeising commented 6 years ago

Could you suggest a default?

a-tze commented 6 years ago
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
        version="1.0"
        xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
        xmlns:exslt="http://exslt.org/common">

    <xsl:template match="//properties">
        <job>
            <tasks>

                <task type="encoding">
                </task>

                <task type="postencoding">
                </task>

            </tasks>
        </job>
    </xsl:template>
</xsl:stylesheet>