<feed xmlns='http://www.w3.org/2005/Atom'>
<title>blog.kummerlaender.eu/template, branch master</title>
<subtitle>Static XSLT based implementation of my blog</subtitle>
<link rel='alternate' type='text/html' href='https://code.kummerlaender.eu/blog.kummerlaender.eu/'/>
<entry>
<title>Implemented new "layered" site generation architecture</title>
<updated>2014-07-20T14:44:30+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2014-07-20T14:44:30+00:00</published>
<link rel='alternate' type='text/html' href='https://code.kummerlaender.eu/blog.kummerlaender.eu/commit/?id=e3b6ddeea3e7fa568f1d9ecd1fbbed4773702fe4'/>
<id>e3b6ddeea3e7fa568f1d9ecd1fbbed4773702fe4</id>
<content type='text'>
* "source" directory contains layers as subdirectories
** ordered by their name
** e.g. layer 0 is "00_content" and contains the content alongside some metadata
* transformations contained within the "source" layers are processed sequentally
* transformations define their requirements in a "meta" variable
** the "meta" variable is interpreted by the core transformation "generate.xsl"
* requirements are currently datasources and target information
** every transformation may have one datasource of type "main"
*** this data source offers e.g. the option to iterate over it
** every transformation may have a arbitrary number of "support" datasources
*** e.g. "meta" is a support datasource
** the target node may provide a fixed target path or a Xpath to be evaluated
* the result of each transformation is written to the appropriate layer of the "result" directory
* this approach to XSLT based static site generation should be quite flexible and offer good expandability
** e.g. adding new datasource options and types
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* "source" directory contains layers as subdirectories
** ordered by their name
** e.g. layer 0 is "00_content" and contains the content alongside some metadata
* transformations contained within the "source" layers are processed sequentally
* transformations define their requirements in a "meta" variable
** the "meta" variable is interpreted by the core transformation "generate.xsl"
* requirements are currently datasources and target information
** every transformation may have one datasource of type "main"
*** this data source offers e.g. the option to iterate over it
** every transformation may have a arbitrary number of "support" datasources
*** e.g. "meta" is a support datasource
** the target node may provide a fixed target path or a Xpath to be evaluated
* the result of each transformation is written to the appropriate layer of the "result" directory
* this approach to XSLT based static site generation should be quite flexible and offer good expandability
** e.g. adding new datasource options and types
</pre>
</div>
</content>
</entry>
<entry>
<title>Reactivated basic page generation</title>
<updated>2014-07-19T12:32:15+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2014-07-19T12:32:15+00:00</published>
<link rel='alternate' type='text/html' href='https://code.kummerlaender.eu/blog.kummerlaender.eu/commit/?id=55639568a5c4f9f58d38d4f92bb6b8e7d760294e'/>
<id>55639568a5c4f9f58d38d4f92bb6b8e7d760294e</id>
<content type='text'>
* page template is called by the pages compiler
* modified master transformation to match new meta structure
* the context variable needed by the context transformation now has to be defined in every template using the transformation
** this is needed to accomodate different input DOM structures
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* page template is called by the pages compiler
* modified master transformation to match new meta structure
* the context variable needed by the context transformation now has to be defined in every template using the transformation
** this is needed to accomodate different input DOM structures
</pre>
</div>
</content>
</entry>
<entry>
<title>Implemented basic page compilation facilities</title>
<updated>2014-07-17T19:18:25+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2014-07-17T19:18:25+00:00</published>
<link rel='alternate' type='text/html' href='https://code.kummerlaender.eu/blog.kummerlaender.eu/commit/?id=e872033543129071469a0b100c0a36c18a6b519b'/>
<id>e872033543129071469a0b100c0a36c18a6b519b</id>
<content type='text'>
* templates in 'template/compiler' are automatically generated
** required datasources are extracted and merged automatically
** 'pages.xsl' is currently a dummy compiler
* moved context helper templates into context stylesheet
* added compiler directory to meta DOM
* modified generator and transformer helper templates to enable usage of DOM as input
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* templates in 'template/compiler' are automatically generated
** required datasources are extracted and merged automatically
** 'pages.xsl' is currently a dummy compiler
* moved context helper templates into context stylesheet
* added compiler directory to meta DOM
* modified generator and transformer helper templates to enable usage of DOM as input
</pre>
</div>
</content>
</entry>
<entry>
<title>Added datasource master template</title>
<updated>2014-07-16T18:56:36+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2014-07-16T18:56:36+00:00</published>
<link rel='alternate' type='text/html' href='https://code.kummerlaender.eu/blog.kummerlaender.eu/commit/?id=56e46331c3cb503baa2d3f8004dc0725baf51a0a'/>
<id>56e46331c3cb503baa2d3f8004dc0725baf51a0a</id>
<content type='text'>
* handles basic output structure
* provides XSLT standard template "text()/@*" redefinition to prevent unwanted output of unmatched elements
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* handles basic output structure
* provides XSLT standard template "text()/@*" redefinition to prevent unwanted output of unmatched elements
</pre>
</div>
</content>
</entry>
<entry>
<title>Restructured to enable automatic datasources</title>
<updated>2014-07-16T18:49:04+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2014-07-16T18:49:04+00:00</published>
<link rel='alternate' type='text/html' href='https://code.kummerlaender.eu/blog.kummerlaender.eu/commit/?id=a37f56cf3d6391536840c4f9389977e247e6cfc8'/>
<id>a37f56cf3d6391536840c4f9389977e247e6cfc8</id>
<content type='text'>
* i.e. first the content source is mapped
* after that every transformation in 'template/datasource/' is called using the content map as input
** the output of the datasource transformations is stored in 'datasource/'
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* i.e. first the content source is mapped
* after that every transformation in 'template/datasource/' is called using the content map as input
** the output of the datasource transformations is stored in 'datasource/'
</pre>
</div>
</content>
</entry>
<entry>
<title>Initial commit of basic generator structure</title>
<updated>2014-07-14T18:41:42+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2014-07-14T18:41:42+00:00</published>
<link rel='alternate' type='text/html' href='https://code.kummerlaender.eu/blog.kummerlaender.eu/commit/?id=f39407fd3946c5f3aa7883a1f3cc774ad5f7dd8a'/>
<id>f39407fd3946c5f3aa7883a1f3cc774ad5f7dd8a</id>
<content type='text'>
* including example data and current "/home/adrian" layout
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* including example data and current "/home/adrian" layout
</pre>
</div>
</content>
</entry>
</feed>
