[[TOC]] = XSLT = XSLT and XPath are two key technologies used within Sahana Eden to allow easy importing and exporting of information in a wide variety of formats. Support for importing and exporting data is mostly managed via XSLT templates. == Sahana Data Models == The underlying data models in {{{models/}}} define the resulting structure that will be within the XML. == XSLT Library == Sahana XSLT/XPath capability is provided by [http://codespeak.net/lxml/ lxml]. Currently lxml only supports XSLT/XPath 1.0. A collection of useful reusable functions are stored in {{{static/formats/xml/commons.xsl}}} == Sahana XML Representation == See: [wiki:S3XRC/S3XML] There are 2 parameters which are passed in: * name (comes from the resourcename - e.g. 'sehlter') * xsltmode (passed in as a var on the URL - e.g. '&xsltmode=extended') == Exporting Data from Sahana == Sahana export templates are stored in: {{{static/formats/*/export.xsl}}} == Importing Data from Sahana == Sahana import templates are stored in: {{{static/formats/*/import.xsl}}} == Background Info and Resources == * [http://www.w3.org/TR/2007/REC-xslt20-20070123/ XSLT V2 reference] on W3C * [http://www.w3.org/TR/2007/REC-xpath20-20070123/ XPath V2 reference] on W3C * [http://www.w3schools.com/xsl/default.asp XSLT Tutorial] on w3schools * [http://www.w3schools.com/xpath/default.asp XPath Tutorial] on w3schools * [http://www.w3schools.com/xsl/tryxslt.asp?xmlfile=cdcatalog&xsltfile=cdcatalog interactive xslt environment] == Debugging == Debug the stylesheets outside Sahana using Xalan. Start by converting smaller extracts in debug mode: {{{ java -jar xalan.jar -param name shelter -param xsltmode extended -tt -tg -ts -in japanquake2011_shelter_extract.kml -xsl web2py\applications\eden\static\formats\kml\import.xsl -out shelters.xml }}} Then process the full thing in non-debug mode: {{{ java -jar xalan.jar -param name shelter -param xsltmode extended -in japanquake2011_shelter.kml -xsl web2py\applications\eden\static\formats\kml\import.xsl -out shelters.xml }}} For a graphical IDE (Java, so cross-platform), you can trial [http://editix.com EditX] ---- DeveloperGuidelines