RE: [xsl] XSL Transformation

Subject: RE: [xsl] XSL Transformation
From: "Michael Kay" <mhk@xxxxxxxxx>
Date: Mon, 15 Mar 2004 19:38:13 -0000
This is a straightforward grouping problem, with a grouping key consisting
of the first letter of the keyword (or description, it could be either from
your data). Look up Muenchian grouping in your favourite XSLT textbook or at
www.jenitennison.com/xslt/grouping.

Michael Kay

# -----Original Message-----
# From: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx [mailto:owner-xsl-
# list@xxxxxxxxxxxxxxxxxxxxxx] On Behalf Of Jim Han
# Sent: 15 March 2004 17:19
# To: XSL-List@xxxxxxxxxxxxxxxxxxxxxx
# Subject: [xsl] XSL Transformation
# 
# I've trying to work on this XSL transformation but I am running into a
# wall.
# Can some help me get started?
# 
# I need an xsl to conver this xml:
# 
# <XML>
# 	<row Key_ID="2" Keyword="A-10" Description="A-10 Warthog ARF w/
# Ducted Fans" Status="active"/>
# 	<row Key_ID="3" Keyword="Aerobird Challenger" Description="Aerobird
# Challenger RTF   " Status="active"/>
# 	<row Key_ID="5" Keyword="CARISMA" Description="CARISMA R/C CARS"
# Status="active"/>
# 	<row Key_ID="4" Keyword="Mech Warrior" Description="Mech Warrior:
# Fire For Effect Booster Pack   " Status="active"/>
# 	<row Key_ID="1" Keyword="Mini-T" Description="Mini-T RTR 1/18-Scale
# Off-Road Truck" Status="active"/>
# </XML>
# 
# 
# To:
# <?xml version="1.0" encoding="UTF-8"?>
# <Keywords xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
# 	<Keyword Letter="A">
# 		<Term>
# 			<Id>2</Id>
# 			<Name>A-10</Name>
# 			<Definition>A-10 Warthog ARF w/ Ducted
# Fans.</Definition>
# 			<status>active</status>
# 		</Term>
# 		<Term>
# 			<Id>3</Id>
# 			<Name>Aerobird Challenger</Name>
# 			<Definition>Aerobird Challenger RTF..</Definition>
# 			<status>active</status>
# 		</Term>
# 	</Keyword>
# 	<Keyword Letter="B">
# 	</Keyword>
# 	<Keyword Letter="C">
# 		<Term>
# 			<Id>5</Id>
# 			<Name>CARISMA</Name>
# 			<Definition>CARISMA R/C CARS</Definition>
# 			<status>active</status>
# 		</Term>
# 	</Keyword>
# 	<Keyword Letter="D"/>
# 	<Keyword Letter="E"/>
# 	<Keyword Letter="F"/>
# 	<Keyword Letter="G"/>
# 	<Keyword Letter="H"/>
# 	<Keyword Letter="I"/>
# 	<Keyword Letter="J"/>
# 	<Keyword Letter="K"/>
# 	<Keyword Letter="L"/>
# 	<Keyword Letter="M">
# 		<Term>
# 			<Id>4</Id>
# 			<Name>Mech Warrior</Name>
# 			<Definition>Mech Warrior: Fire For Effect Booster
# Pack</Definition>
# 			<status>active</status>
# 		</Term>
# 		<Term>
# 			<Id>1</Id>
# 			<Name>Mini-T</Name>
# 			<Definition>Mini-T RTR 1/18-Scale Off-Road
# Truck</Definition>
# 			<status>active</status>
# 		</Term>
# 	</Keyword>
# 	<Keyword Letter="N"/>
# 	<Keyword Letter="O"/>
# 	<Keyword Letter="P"/>
# 	<Keyword Letter="Q"/>
# 	<Keyword Letter="R"/>
# 	<Keyword Letter="S"/>
# 	<Keyword Letter="T"/>
# 	<Keyword Letter="U"/>
# 	<Keyword Letter="V"/>
# 	<Keyword Letter="W"/>
# 	<Keyword Letter="X"/>
# 	<Keyword Letter="Y"/>
# 	<Keyword Letter="Z"/>
# </Keywords>
# 
# 
# 
# 
# 
# 
# Jim
# 
# 
#  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



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


Current Thread