Я давно программировал языки интерфейса, и я редко сталкивался с XSLT
в проекте. Ну, вот оно ... У нас в настоящее время есть некоторые функции в нашем файле XSLT, которые сравнивают узлы и испускают XML, который содержит что-то вроде previousValue="Old value"
. Эта функция помогает нашим пользователям понять, что изменилось при просмотре формы.
Глядя на XML (ниже), мне нужно сравнить <ns1:OtherEducationTypeDesc>
и правильно выдать XML, в котором указано, какое было старое значение.
Мне нужно, чтобы это выглядело примерно так:
<EducationTypes>
<EducationType Code="11">Engineering</EducationType>
<EducationType Code="12" Value="New Value" PrevValue="Old Value">Other</EducationType>
</EducationTypes>
Я пытался дать как можно больше информации, но если вам понадобится что-нибудь еще, дайте мне знать! Любая помощь приветствуется! Спасибо !!
XSLT
<EducationTypes xmlns="omitted">
<xsl:choose>
<xsl:when test="$has-updates">
<!--Get unchanged nodes-->
<xsl:variable name="unchanged-nodes">
<xsl:call-template name="intersection">
<xsl:with-param name="nodes1" select="$educationType-nodes[1]/ns1:Code"/>
<xsl:with-param name="nodes2" select="$educationType-nodes[last()]/ns1:Code"/>
</xsl:call-template>
</xsl:variable>
<xsl:call-template name="education-codes">
<xsl:with-param name="node-set" select="msxsl:node-set($unchanged-nodes)/ns1:Code"/>
<xsl:with-param name="otherText" select="$educationType-nodes[last()]/ancestor::ns1:ProgramInfo/ns1:OtherEducationTypeDesc"/>
</xsl:call-template>
<!--Get added nodes-->
<xsl:variable name="added-nodes">
<xsl:call-template name="difference">
<xsl:with-param name="nodes1" select="$educationType-nodes[last()]/ns1:Code"/>
<xsl:with-param name="nodes2" select="$educationType-nodes[1]/ns1:Code"/>
</xsl:call-template>
</xsl:variable>
<xsl:call-template name="education-codes">
<xsl:with-param name="node-set" select="msxsl:node-set($added-nodes)/ns1:Code"/>
<xsl:with-param name="otherText" select="$educationType-nodes[last()]/ancestor::ns1:ProgramInfo/ns1:OtherEducationTypeDesc"/>
<xsl:with-param name="status" select="'added'"/>
</xsl:call-template>
<!--Get deleted nodes-->
<xsl:variable name="deleted-nodes">
<xsl:call-template name="difference">
<xsl:with-param name="nodes1" select="$educationType-nodes[1]/ns1:Code"/>
<xsl:with-param name="nodes2" select="$educationType-nodes[last()]/ns1:Code"/>
</xsl:call-template>
</xsl:variable>
<xsl:call-template name="education-codes">
<xsl:with-param name="node-set" select="msxsl:node-set($deleted-nodes)/ns1:Code"/>
<xsl:with-param name="otherText" select="$educationType-nodes[last()]/ancestor::ns1:ProgramInfo/ns1:OtherEducationTypeDesc"/>
<xsl:with-param name="status" select="'deleted'"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="education-codes">
<xsl:with-param name="node-set" select="$educationType-nodes/ns1:Code" />
<xsl:with-param name="otherText" select="$educationType-nodes/ancestor::ns1:ProgramInfo/ns1:OtherEducationTypeDesc"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</EducationTypes>
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
<ns1:ProgramInfo>
<ns1:RecognizedDegrees>false</ns1:RecognizedDegrees>
<ns1:EducationCodes>
<ns1:Code>01</ns1:Code>
<ns1:Code>02</ns1:Code>
<ns1:Code>09</ns1:Code>
<ns1:Code>10</ns1:Code>
<ns1:Code>12</ns1:Code>
</ns1:EducationCodes>
<ns1:OtherEducationTypeDesc>Old Description</ns1:OtherEducationTypeDesc>
<ns1:DegreeCodes>
<ns1:Code>03</ns1:Code>
<ns1:Code>06</ns1:Code>
<ns1:Code>07</ns1:Code>
</ns1:DegreeCodes>
<ns1:OtherDegreeDesc></ns1:OtherDegreeDesc>
<ns1:EducationLevels>
<ns1:Code>08</ns1:Code>
</ns1:EducationLevels>
<ns1:OtherEducationLevelDesc></ns1:OtherEducationLevelDesc>
</ns1:ProgramInfo>
<ns1:ProgramInfo>
<ns1:RecognizedDegrees>false</ns1:RecognizedDegrees>
<ns1:EducationCodes>
<ns1:Code>01</ns1:Code>
<ns1:Code>02</ns1:Code>
<ns1:Code>09</ns1:Code>
<ns1:Code>10</ns1:Code>
<ns1:Code>12</ns1:Code>
</ns1:EducationCodes>
<ns1:OtherEducationTypeDesc>New Description</ns1:OtherEducationTypeDesc>
<ns1:DegreeCodes>
<ns1:Code>03</ns1:Code>
<ns1:Code>06</ns1:Code>
<ns1:Code>07</ns1:Code>
</ns1:DegreeCodes>
<ns1:OtherDegreeDesc></ns1:OtherDegreeDesc>
<ns1:EducationLevels>
<ns1:Code>08</ns1:Code>
</ns1:EducationLevels>
<ns1:OtherEducationLevelDesc></ns1:OtherEducationLevelDesc>
</ns1:ProgramInfo>