mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-12 18:34:24 +00:00
With a schema for scenario XML files, we no longer need to duplicate the description, configurability and writeablity attributes in each XML file. This patch applies the following transformation to all scenario XML files in order to remove these attributes. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="@desc" /> <xsl:template match="@configurable | @multiselect | @readonly" /> <!-- The identity template --> <xsl:template match="@*|node()"> <xsl:copy> <xsl:apply-templates select="@*|node()"/> </xsl:copy> </xsl:template> </xsl:stylesheet> Tracked-On: #5644 Signed-off-by: Junjie Mao <junjie.mao@intel.com> |
||
---|---|---|
.. | ||
qemu.xml | ||
sdc.xml |