Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. tektipsjunkie

    XSL nested if statements

    I know I can do this:: <xsl:if test="ms:Person/ms:Name/@ms:first"> <xsl:if test="ms:Person/ms:Name/@ms:last"> </xsl:if> </xsl:if> BUT I would like to do this:: <xsl:if test="ms:Person/ms:Name/@ms:first" or test="ms:Person/ms:Name/@ms:last"> Is there a way to user and/or operators
  2. tektipsjunkie

    trying to comment out the results of XSL:COPY-OF in a XSL file...help

    <xsl:text disable-output-escaping="yes">&lt;</xsl:text><xsl:text disable-output-escaping="yes">![CDATA["</xsl:text> <xsl:copy-of select="$varRoot" ></xsl:copy-of> <xsl:text disable-output-escaping="yes">"]]</xsl:text><xsl:text disable-output-escaping="yes">&gt;</xsl:text> This is...
  3. tektipsjunkie

    trying to comment out the results of XSL:COPY-OF in a XSL file...help

    I ended up using CDATA instead. Broke it up in the text element like you did, and it worked. Thanks
  4. tektipsjunkie

    trying to comment out the results of XSL:COPY-OF in a XSL file...help

    Currently it not looking like it can be done. I got the comments in the output, but the way the html comments work, if there is any comment at all being copied over, the --> will stop all previous <!--. Does anybody have a solution? Please help! Greg
  5. tektipsjunkie

    trying to comment out the results of XSL:COPY-OF in a XSL file...help

    I guess I'm looking for an echo type command that would allow xsl:copy-of to run but comment out the output. echo "<!--" <xsl:copy-of select="$varRoot"></xsl:copy-of> echo "-->" How do you pull off the "echo" in XSL? My desired result... <!-- <ms:Resource attribute1="asdf" attibute2="qwerty"...
  6. tektipsjunkie

    trying to comment out the results of XSL:COPY-OF in a XSL file...help

    I am transforming an XML doc from Schema A to Schema B. These are two established standards, Schema A being newer. Schema A actually has more built in elements and can house more detailed information than Schema B, which is fine. THey try to describe the same thing. however, to not lose data...

Part and Inventory Search

Back
Top