Skip to content

Instantly share code, notes, and snippets.

@nils-werner
Created December 22, 2011 17:00
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save nils-werner/1510998 to your computer and use it in GitHub Desktop.
Save nils-werner/1510998 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<html>
<head>
<link rel="stylesheet" href="workspace/assets/style.css"/>
</head>
<body>
<div id="head">
<h1>Title</h1>
</div>
<div id="package">
<div id="content">
<h2>Blog</h2>
<div datasource="blog-articles">
<div class="article">
<h3 value="title">Title</h3>
<p copy="body">
Lorem Ipsum
</p>
</div>
</div>
<div id="comments">
<h3>Comments</h3>
<div datasource="article-comments">
<p value="text">
Commenttext
</p>
</div>
</div>
<div id="sidebar">
<h3>
All Articles
</h3>
<ul>
<div datasource="blog-article-index">
<li value="title">Something</li>
</div>
</ul>
</div>
</div>
</div>
</body>
</html>
<?xml version="1.0" encoding="UTF-8"?>
<x:stylesheet version="1.0"
xmlns:x="http://www.w3.org/1999/XSL/Transform"
xmlns:xsl="http://www.w3.org/1999/XSL/TransformAlias">
<x:output method="xml"
encoding="UTF-8"
indent="yes" />
<x:namespace-alias stylesheet-prefix="xsl" result-prefix="x"/>
<x:template match="*">
<x:element name="{name()}">
<x:apply-templates select="* | @* | text()" />
</x:element>
</x:template>
<x:template match="@*">
<x:attribute name="{name()}">
<x:value-of select="."/>
</x:attribute>
</x:template>
<x:template match="@datasource | @value | @copy" />
<x:template match="/">
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/TransformAlias">
<xsl:output method="xml"
encoding="UTF-8"
indent="yes" />
<x:apply-templates />
<x:apply-templates select="//*[@datasource]" mode="templates" />
</xsl:stylesheet>
</x:template>
<x:template match="*[@datasource]">
<xsl:apply-templates select="{@datasource}/entry" />
</x:template>
<x:template match="*[@value]/text()">
<xsl:value-of select="{../@value}" />
</x:template>
<x:template match="*[@copy]">
<xsl:copy-of select="{@copy}/*" />
</x:template>
<x:template match="*[@datasource]" mode="templates">
<x:text>
</x:text>
<xsl:template match="{@datasource}/entry">
<x:apply-templates />
</xsl:template>
</x:template>
</x:stylesheet>
@nils-werner
Copy link
Author

To try this out simply download the code and run it using

xsltproc master.xsl master.xml

The returned XML is an XSLT stylesheet that can be used with any XSLT processor (including Symphony).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment