<feed xmlns='http://www.w3.org/2005/Atom'>
<title>blog.kummerlaender.eu/detail, 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>Extracted generation framework into StaticXSLT module</title>
<updated>2014-10-12T10:57:01+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2014-10-12T10:57:01+00:00</published>
<link rel='alternate' type='text/html' href='https://code.kummerlaender.eu/blog.kummerlaender.eu/commit/?id=22ed1ee6e63a496f1e56d8bd905542035d88ca2b'/>
<id>22ed1ee6e63a496f1e56d8bd905542035d88ca2b</id>
<content type='text'>
* i.e. the `detail` transformations were moved into a BuildXSLT module
* modified XML Makefile accordingly
* removed framework documentation from `README.md` and added usage documentation
* this was done to make it easier to use the basic static site generation framework in other projects
** the detail transformations were developed to enable the implementation of this blog but are generic enough to be used in other contexts
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* i.e. the `detail` transformations were moved into a BuildXSLT module
* modified XML Makefile accordingly
* removed framework documentation from `README.md` and added usage documentation
* this was done to make it easier to use the basic static site generation framework in other projects
** the detail transformations were developed to enable the implementation of this blog but are generic enough to be used in other contexts
</pre>
</div>
</content>
</entry>
<entry>
<title>Changed datasource stylesheet path from absolute to relative</title>
<updated>2014-10-11T22:10:31+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2014-10-11T22:10:31+00:00</published>
<link rel='alternate' type='text/html' href='https://code.kummerlaender.eu/blog.kummerlaender.eu/commit/?id=d9784669ec613d42d453c907921a9983a36518fb'/>
<id>d9784669ec613d42d453c907921a9983a36518fb</id>
<content type='text'>
* recent commits to both BuildXSLT and InputXSLT changed include entity handling to resolve against the stylesheet location
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* recent commits to both BuildXSLT and InputXSLT changed include entity handling to resolve against the stylesheet location
</pre>
</div>
</content>
</entry>
<entry>
<title>Simplified access to datasource in target resolution</title>
<updated>2014-09-06T19:39:49+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2014-09-06T19:39:49+00:00</published>
<link rel='alternate' type='text/html' href='https://code.kummerlaender.eu/blog.kummerlaender.eu/commit/?id=980a4068ab2c6ac4e933dfc4303888a34ca16e2d'/>
<id>980a4068ab2c6ac4e933dfc4303888a34ca16e2d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Changed make and summarization output method to text</title>
<updated>2014-09-05T12:51:27+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2014-09-05T12:51:27+00:00</published>
<link rel='alternate' type='text/html' href='https://code.kummerlaender.eu/blog.kummerlaender.eu/commit/?id=d6bd9dee26072f833f9263f04616b80887f08ce6'/>
<id>d6bd9dee26072f833f9263f04616b80887f08ce6</id>
<content type='text'>
* the summarization is generated as plain text and is the sole output of the make stylesheet
** i.e. the correct XSL output method is text, not xml
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* the summarization is generated as plain text and is the sole output of the make stylesheet
** i.e. the correct XSL output method is text, not xml
</pre>
</div>
</content>
</entry>
<entry>
<title>Removed square bracket syntax for includes in detail stylesheets</title>
<updated>2014-09-04T21:35:15+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2014-09-04T21:35:15+00:00</published>
<link rel='alternate' type='text/html' href='https://code.kummerlaender.eu/blog.kummerlaender.eu/commit/?id=9b398d0267271984b1e50dbcbbe5984ef9e4d03b'/>
<id>9b398d0267271984b1e50dbcbbe5984ef9e4d03b</id>
<content type='text'>
* a recent change to InputXSLT enables transformations passed to FunctionGenerate as DOM-trees to behave exactly as if they where located in the same directory as the calling transformation
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* a recent change to InputXSLT enables transformations passed to FunctionGenerate as DOM-trees to behave exactly as if they where located in the same directory as the calling transformation
</pre>
</div>
</content>
</entry>
<entry>
<title>Moved generation stage stylesheets into "detail" folder</title>
<updated>2014-09-04T19:31:20+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2014-09-04T19:31:20+00:00</published>
<link rel='alternate' type='text/html' href='https://code.kummerlaender.eu/blog.kummerlaender.eu/commit/?id=1921be28cc94764b2bd8c26e76d7171440b926ab'/>
<id>1921be28cc94764b2bd8c26e76d7171440b926ab</id>
<content type='text'>
* they are read by FunctionReadFile to and passed to FunctionGenerate as a DOM tree to execute them as if they where located in the parent directory
** this is required so they behave as expected without requiring all paths to be absolute
* this change was implemented to make it clear that "make.xsl" is the main generation stylesheet
** additionally this further separates the framework implementation from the site-specific stylesheets and contents
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* they are read by FunctionReadFile to and passed to FunctionGenerate as a DOM tree to execute them as if they where located in the parent directory
** this is required so they behave as expected without requiring all paths to be absolute
* this change was implemented to make it clear that "make.xsl" is the main generation stylesheet
** additionally this further separates the framework implementation from the site-specific stylesheets and contents
</pre>
</div>
</content>
</entry>
</feed>
