[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: debugging source line numbers

Subject: Re: debugging source line numbers
From: S Woodside <sbwoodside@xxxxxxxxx>
Date: Wed, 22 Jan 2003 22:27:07 -0500
debug slow xsl
Dimitre - it works perfectly! Too bad it's so slow though (too slow for me to use). Please tell me, why should not this be equivalent?

<xsl:value-of select="count( (preceding::text() | preceding::comment() | preceding::processing-instruction())[contains(., '&#xA;')]) + 1"/>

simon

On Wednesday, January 22, 2003, at 03:36 AM, Dimitre Novatchev wrote:

Here's the transformation, which does what was initially intended:

<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:output method="text"/>

  <xsl:template match="*">
    <xsl:variable name="vPrevText">
      <x>
        <xsl:copy-of
        select="preceding::text()[contains(., '&#xA;')]"/>

        <xsl:for-each select="preceding::comment()
                                 [contains(., '&#xA;')]">
          <xsl:value-of select="."/>
        </xsl:for-each>

        <xsl:for-each
         select="preceding::processing-instruction()
                                  [contains(., '&#xA;')]">
          <xsl:value-of select="."/>
        </xsl:for-each>
      </x>
    </xsl:variable>

    <xsl:variable name="vLineNo"
     select="string-length($vPrevText) + 1
            -
             string-length(translate($vPrevText, '&#xA;', ''))"/>

    <xsl:value-of select="concat(name(),
                                 ' : line ',
                                 $vLineNo,
                                 '&#xA;')"/>

    <xsl:apply-templates/>
  </xsl:template>

  <xsl:template match="node()[not(self::*)]"/>
</xsl:stylesheet>

It also takes care of multiline comments / processing-instructions.

When applied on this source.xml:

<root>
  <item>1</item>
  <!-- -->
  <!--
        -->
  <item>5</item>
  <item>3</item>
  <item>2</item>
  <item>6</item>
  <item>4</item>
</root>

The result is:

root : line 1
item : line 2
item : line 6
item : line 7
item : line 8
item : line 9
item : line 10

---
www.simonwoodside.com


XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list



Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.