<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
	<xsl:output method="xml" version="1.0" indent="yes"/>

	<xsl:template match="/Project">
		<project type="cont" name="ImportedProject" expanded="yes" catalog="no" pluginOwner="-1">
			<xsl:apply-templates select="Folder|File"/>
		</project>
	</xsl:template>

	<xsl:template match="Folder">
		<project type="cont" name="{@FolderName}" expanded="no" catalog="no" pluginOwner="-1">
			<xsl:apply-templates select="Folder|File"/>
		</project>
	</xsl:template>

	<xsl:template match="File">
		<file URL="{@FilePath}" catalog="no">
			<xsl:attribute name="plugId">
				<xsl:choose>
					<xsl:when test="contains(@FilePath,'.xsl')">2</xsl:when>
					<xsl:otherwise>3</xsl:otherwise>
				</xsl:choose>
			</xsl:attribute>
			<queries/>
		</file>
	</xsl:template>
</xsl:stylesheet><!-- Stylus Studio meta-information - (c)1998-2004. Sonic Software Corporation. All rights reserved.
<metaInformation>
<scenarios ><scenario default="no" name="DataDesignProject.spp.xml" userelativepaths="yes" externalpreview="no" url="DataDesignProject.spp.xml" htmlbaseurl="" outputurl="" processortype="internal" profilemode="0" urlprofilexml="" commandline="" additionalpath="" additionalclasspath="" postprocessortype="none" postprocesscommandline="" postprocessadditionalpath="" postprocessgeneratedext=""/><scenario default="yes" name="Config" userelativepaths="yes" externalpreview="no" url="config.spp.xml" htmlbaseurl="" outputurl="" processortype="internal" profilemode="0" urlprofilexml="" commandline="" additionalpath="" additionalclasspath="" postprocessortype="none" postprocesscommandline="" postprocessadditionalpath="" postprocessgeneratedext=""/></scenarios><MapperInfo srcSchemaPathIsRelative="yes" srcSchemaInterpretAsXML="no" destSchemaPath="SelectOption.prj.xml" destSchemaRoot="project" destSchemaPathIsRelative="yes" destSchemaInterpretAsXML="no" ><SourceSchema srcSchemaPath="DataDesignProject.spp.xml" srcSchemaRoot="Project" AssociatedInstance=""/></MapperInfo>
</metaInformation>
-->