blob: 2647c4c66ccdf6a0bb3b096b5ced1f5219e5214f [file]
#!/bin/bash
set -euo pipefail
TOP_DIR=$(git rev-parse --show-toplevel)
XSLTPROC_CMD="${XSLTPROC} --nomkdir --nonet --xinclude ${XSLTPROC_PARAMS}"
${XSLTPROC_CMD} ${TOP_DIR}/common/xml/identity.xsl "$@" | \
${XSLTPROC_CMD} ${TOP_DIR}/common/xml/convert-prefix-port.xsl - | \
${XSLTPROC_CMD} ${TOP_DIR}/common/xml/convert-port-tag.xsl - | \
${XSLTPROC_CMD} ${TOP_DIR}/common/xml/pack-patterns.xsl - | \
${XSLTPROC_CMD} ${TOP_DIR}/common/xml/remove-duplicate-models.xsl - | \
${XSLTPROC_CMD} ${TOP_DIR}/common/xml/attribute-fixes.xsl - | \
cat