1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
|
<?xml version="1.0" encoding="UTF-8"?>
<xgf-defaults>
<compiler-engine name="xsltproc">
<description>
Command-line tool for Daniel Veillard's libxslt (default).
</description>
<template>
xsltproc --xinclude @params@ @outfile-t@ @xslt@ @xgf@
</template>
<param-template>
--stringparam @pname@ @arg@
</param-template>
<outfile-template>
--output @outfile@
</outfile-template>
<executable>
xsltproc
</executable>
</compiler-engine>
<compiler-engine name="saxon-6">
<description>
Michael Kay's Saxon processor for XSLT 1.0, written in Java.
</description>
<jar>
saxon.jar
</jar>
<template>
java -classpath @jar@ com.icl.saxon.StyleSheet -l @outfile-t@ @xgf@ @xslt@ @params@
</template>
<param-template>
@pname@=@arg@
</param-template>
<outfile-template>
-o @outfile@
</outfile-template>
</compiler-engine>
<compiler-engine name="saxon-9">
<description>
Michael Kay's Saxon processor for XSLT 2.0, written in Java.
</description>
<jar>
saxon9.jar
</jar>
<template>
java -classpath @jar@ net.sf.saxon.Transform -versionmsg:off -l:on @outfile-t@ -s:@xgf@ -xsl:@xslt@ @params@
</template>
<param-template>
@pname@=@arg@
</param-template>
<outfile-template>
-o:@outfile@
</outfile-template>
</compiler-engine>
<compiler-engine name="4xslt">
<description>
The XSLT processor for 4Suite, written in Python.
</description>
<template>
4xslt @params@ @outfile-t@ @xgf@ @xslt@
</template>
<param-template>
--define=@pname@=@arg@
</param-template>
<outfile-template>
--outfile=@outfile@
</outfile-template>
<executable>
4xslt
</executable>
</compiler-engine>
<compiler-engine name="xalan-j">
<description>
An XSLT processor from the Apache XML Project, written in Java.
</description>
<jar>
xalan2.jar
</jar>
<template>
java -classpath @jar@ org.apache.xalan.xslt.Process -l @outfile-t@ -in @xgf@ -xsl @xslt@ @params@
</template>
<param-template>
-param @pname@ @arg@
</param-template>
<outfile-template>
-out @outfile@
</outfile-template>
</compiler-engine>
<compiler-engine name="xalan-c">
<description>
An XSLT processor from the Apache XML Project, written in C++.
</description>
<template>
xalan @outfile-t@ -in @xgf@ -xsl @xslt@ @params@
</template>
<param-template>
-param @pname@ '@arg@'
</param-template>
<outfile-template>
-out @outfile@
</outfile-template>
<executable>
xalan
</executable>
</compiler-engine>
<validator name="xmllint">
<description>
The command-line validator for Daniel Veillard's libxml2.
</description>
<template>
xmllint --xinclude --noout --relaxng @schema@ @xgf@
</template>
<schema-type>
rng
</schema-type>
<executable>
xmllint
</executable>
</validator>
<validator name="jing">
<description>
James Clark's RELAX NG validator, written in Java.
</description>
<template>
java -jar @jar@ @schema@ @xgf@
</template>
<schema-type>
rng
</schema-type>
<jar>
jing.jar
</jar>
</validator>
<validator name="msv">
<description>
The Multi-Schema validator from Sun, written in Java.
</description>
<template>
java -jar @jar@ @schema@ @xgf@
</template>
<schema-type>
rng
</schema-type>
<jar>
msv.jar
</jar>
</validator>
<validator name="rnv">
<description>
David Tolpin's RELAX NG validator, written in ANSI C.
</description>
<template>
rnv @schema@ @xgf@
</template>
<schema-type>
rnc
</schema-type>
<executable>
rnv
</executable>
</validator>
<validator name="xmlstarlet">
<description>
Swiss Army Knife for XML: validator is a frontend for libxml2.
</description>
<template>
xmlstarlet val --err --relaxng @schema@ @xgf@
</template>
<schema-type>
rng
</schema-type>
<executable>
xmlstarlet
</executable>
</validator>
</xgf-defaults>
|