xsl-list
[Top] [All Lists]

RE: [xsl] Wrapping two different elements in parent element.

2007-09-28 04:50:57
Hi, Bruno!
In case you are using XSL 1.0 you may find it helpful:

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

    <xsl:template match="something">
        <something_else>
            <usg>
                <xsl:apply-templates select="word_case"/>
            </usg>
        </something_else>
    </xsl:template>

    <xsl:template match="word_case">
        <xsl:variable name="node-index"
              select="count(preceding-sibling::word_case)+1"/>
        <form>
            <case><xsl:value-of select="."/></case>
            <orth>
                <xsl:value-of select="following-sibling::word_form[1]"/>
            </orth>
        </form>
    </xsl:template>
</xsl:stylesheet>

BTW, is it misprinting in your post or this is malformed source XML? I mean the 
following:

<word>G</word_case>
       ^--- wrong tag

<word>some_word_G</word_form>
       ^--- wrong tag


Respectfully,
Volodymyr Rodymyuk


-----Original Message-----
From: Bruno Nahod [mailto:bnahod(_at_)ihjj(_dot_)hr]
Sent: Friday, September 28, 2007 2:00 PM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: [xsl] Wrapping two different elements in parent element.

Hello,

I'm working on transforming xml export from a dictionary application;
witch is unbelievably unstructured into a well formed xml document
(based on TEI recommendations). My biggest problem is how to wrap two
(or more) elements into parent element. This is the simplified example
of what I have and what I'm hoping to get;

This I have (export)

<?xml version="1.0" encoding="UTF-8"?>

<something>

<word_case>N</word_case>

<word_form>some_word_N</word_form>

<word>G</word_case>

<word>some_word_G</word_form>

<word_case>D</word_case>

<word>some_word_D</word_form>

</something>

This I hope to get;

<?xml version="1.0" encoding="UTF-8"?>

<something_else>

<usg>

<form>

<case>N</case>

<orth>some_word_N</orth>

</form>

<form>

<case>G</case>

<orth>some_word_G</orth>

</form>

<form>

<case>D</case>

<orth>some_word_D</orth>

</form>

</usg>

</something_else>

Thank you very much

Bruno.


--~------------------------------------------------------------------
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>
--~--


--~------------------------------------------------------------------
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>