<?xml version='1.0'?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output encoding="windows-1250" indent="yes"/>

<xsl:template match="/">
	<GLOSSARY xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="glossary.xsd">
	<INFO>
		<NAME></NAME>
		<INTRO></INTRO>
		<STUDENTCANPOST></STUDENTCANPOST>
		<ALLOWDUPLICATEDENTRIES></ALLOWDUPLICATEDENTRIES>
		<DISPLAYFORMAT></DISPLAYFORMAT>
		<SHOWSPECIAL></SHOWSPECIAL>
		<SHOWALPHABET></SHOWALPHABET>
		<SHOWALL></SHOWALL>
		<ALLOWCOMMENTS></ALLOWCOMMENTS>
		<USEDYNALINK></USEDYNALINK>
		<DEFAULTAPPROVAL></DEFAULTAPPROVAL>
		<GLOBALGLOSSARY></GLOBALGLOSSARY>
		<ENTBYPAGE></ENTBYPAGE>
		<ENTRIES>
		<xsl:apply-templates select="root/row"/>
		</ENTRIES>
	</INFO>
</GLOSSARY>
</xsl:template>

<xsl:template match="row">
			<ENTRY>
				<CONCEPT><xsl:value-of select="concept"/></CONCEPT>
				<DEFINITION>
				<xsl:for-each select="field"><xsl:if test="position() > 1">: </xsl:if><xsl:value-of select="."/></xsl:for-each>
				</DEFINITION>
				<FORMAT></FORMAT>
				<USEDYNALINK></USEDYNALINK>
				<CASESENSITIVE></CASESENSITIVE>
				<FULLMATCH></FULLMATCH>
				<TEACHERENTRY></TEACHERENTRY>
				<ALIASES>
					<ALIAS>
						<NAME></NAME>
					</ALIAS>
				</ALIASES>
			</ENTRY>
</xsl:template>

</xsl:stylesheet><!-- Stylus Studio meta-information - (c) 2004-2005. Progress Software Corporation. All rights reserved.
<metaInformation>
<scenarios ><scenario default="yes" name="Scenario1" userelativepaths="yes" externalpreview="no" url="adapter:glosario.conv?file:///c:/temp/Glosario1.txt" htmlbaseurl="" outputurl="" processortype="internal" profilemode="0" profiledepth="" profilelength="" urlprofilexml="" commandline="" additionalpath="" additionalclasspath="" postprocessortype="none" postprocesscommandline="" postprocessadditionalpath="" postprocessgeneratedext=""/></scenarios><MapperMetaTag><MapperInfo srcSchemaPathIsRelative="yes" srcSchemaInterpretAsXML="no" destSchemaPath="" destSchemaRoot="" destSchemaPathIsRelative="yes" destSchemaInterpretAsXML="no"/><MapperBlockPosition></MapperBlockPosition></MapperMetaTag>
</metaInformation>
-->