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

Re: Processing two documents, which order?

Subject: Re: Processing two documents, which order?
From: Dave Pawson <davep@xxxxxxxxxxxxx>
Date: Fri, 8 Apr 2011 09:52:25 +0100
Re:  Processing two documents
On Fri, 8 Apr 2011 08:17:15 +0100
Dave Pawson <davep@xxxxxxxxxxxxx> wrote:

Mixed solution.

Bash script


source dpFunctions.sh
cp sourc.xml op.xml
while read line
  do
  echo $line
  saxon op.xml markUpProperties.xsl op1.xml property=$line
  ckexit
  cp op1.xml op.xml
done

where saxon is another script to call up Saxon xslt 2 processor.

Then xslt as 

<xsl:param name="property" select="'nil'"/>
 <xsl:template match="/">
    <xsl:if test="$property='nil'">
      <xsl:message terminate='yes'>
	Parameter property not set, Quitting
      </xsl:message>
    </xsl:if>

 
        <xsl:apply-templates>
          <xsl:with-param name="property" select="$property"/>
	</xsl:apply-templates>
   
  </xsl:template>


  <xsl:template match="text()">
    <xsl:param name="property" as="xs:string"/>
    <xsl:analyze-string select="." regex="({$property})[\s\p{{P}}]">
      <xsl:matching-substring>
<xsl:message>match on [<xsl:value-of
  select='regex-group(1)'/>]</xsl:message> <property><xsl:value-of
  select="regex-group(1)"/></property><xsl:text> </xsl:text>
  </xsl:matching-substring> <xsl:non-matching-substring>
	  <xsl:value-of select="."/>
      </xsl:non-matching-substring>
    </xsl:analyze-string>
  </xsl:template>


<xsl:template match="*">
  <xsl:copy>
    <xsl:apply-templates select="@*" />
    <xsl:apply-templates >
   <xsl:with-param name="property" select="$property"/>
	</xsl:apply-templates>
  </xsl:copy>
</xsl:template>


<xsl:template match="@*">
  <xsl:copy-of select="." />
</xsl:template>





-- 

regards 

-- 
Dave Pawson
XSLT XSL-FO FAQ.
http://www.dpawson.co.uk

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.