xsl-list
[Top] [All Lists]

Re: Preserve some tags, but ignore same

2005-09-12 23:17:56





Hi Matt,
    Please use the following stylesheet.


<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>

<xsl:output method="xml" indent="yes"/>

  <xsl:template match="/">
<xsl:apply-templates select="/html/div[1]" mode="nopreserve"/>
<xsl:apply-templates select="/html/div[not(position() = 1)]"/>

  </xsl:template>

<xsl:template match="div">
<xsl:text>
</xsl:text>
<xsl:apply-templates select="h1|p"/>
</xsl:template>

<xsl:template match="p">
<xsl:apply-templates select="i|b"/>
</xsl:template>

<xsl:template match="i">
<xsl:copy>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>

<xsl:template match="b">
<xsl:copy>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>

<xsl:template match="div" mode="nopreserve">


<xsl:apply-templates select="h1" mode="nopreserve"/>

  </xsl:template>

  <xsl:template match="h1" mode="nopreserve">

<xsl:apply-templates select="following-sibling::p[1]" mode="nopreserve"/>

  </xsl:template>

  <xsl:template match="p" mode="nopreserve">

<xsl:apply-templates select="i|b[not(preceding-sibling::br)]"
mode="nopreserve"/>
  </xsl:template>

<xsl:template match="i|b[ancestor::p]" mode="nopreserve">

<xsl:apply-templates  mode="nopreserve"/>

</xsl:template>


  </xsl:stylesheet>


cheers,
prakash



                                                                                
                                                
                      Matthew Fonda                                             
                                                
                      <mfonda(_at_)enotes(_dot_)c         To:      
xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com                                
         
                      om>                      cc:      (bcc: 
omprakash.v/Polaris)                                              
                                               Subject: [xsl] Preserve some 
tags, but ignore same                               
                      09/13/2005 04:42                                          
                                                
                      AM                                                        
                                                
                      Please respond                                            
                                                
                      to xsl-list                                               
                                                
                                                                                
                                                
                                                                                
                                                




I am having a problem figuring out how to do the following. I have
several xml documents, that are like as follows:

<div>
   <h1>...</h1>
   <p><i><b>Excerpt from </b></i><b>Journal of Theodore Upson</b><br/>
   <b>Written in April 1861; originally published in 1943</b></p>
   ....
</div>

there are multiple div's in each document, but only the first one
contains an h1, and the I am trying to get the text of the p following
the h1, but before the br in the p, so
<p><i><b>Excerpt from </b></i><b>Journal of Theodore
Upson</b><br/><b>Written in April 1861; originally published in
1943</b></p>
would become
<p>Excerpt from Journal of Theodore Upson</p>

Problem is I have other p's later on in the document that I need to
preserve the b and i tags in, how can I go about solving this?

Thanks,
-- Matt

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--





This e-Mail may contain proprietary and confidential information and is sent 
for the intended recipient(s) only. 
If by an addressing or transmission error this mail has been misdirected to 
you, you are requested to delete this mail immediately.
You are also hereby notified that any use, any form of reproduction, 
dissemination, copying, disclosure, modification,
distribution and/or publication of this e-mail message, contents or its 
attachment other than by its intended recipient/s is strictly prohibited.

Visit Us at http://www.polaris.co.in

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>