blob: 1c15424bc15aa964ba25d53096134e27cd712bf4 [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-pb_type-attributes.xsl - | \
${XSLTPROC_CMD} ${TOP_DIR}/common/xml/convert-port-tag.xsl - | \
${XSLTPROC_CMD} ${TOP_DIR}/common/xml/convert-prefix-port.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