aboutsummaryrefslogtreecommitdiff
path: root/source/00_content/pages/projects/build_xslt.md
diff options
context:
space:
mode:
authorAdrian Kummerlaender2017-02-12 15:14:05 +0100
committerAdrian Kummerlaender2017-02-12 15:14:05 +0100
commit62690da3d1c74083f5f190e84582322413de2b1d (patch)
treeb9b39844d6c8957dbc99517593dbaed3bbcf0950 /source/00_content/pages/projects/build_xslt.md
parent8440bad90b844eb0ae0d46496d6b9cb3c045111f (diff)
downloadblog.kummerlaender.eu-62690da3d1c74083f5f190e84582322413de2b1d.tar
blog.kummerlaender.eu-62690da3d1c74083f5f190e84582322413de2b1d.tar.gz
blog.kummerlaender.eu-62690da3d1c74083f5f190e84582322413de2b1d.tar.bz2
blog.kummerlaender.eu-62690da3d1c74083f5f190e84582322413de2b1d.tar.lz
blog.kummerlaender.eu-62690da3d1c74083f5f190e84582322413de2b1d.tar.xz
blog.kummerlaender.eu-62690da3d1c74083f5f190e84582322413de2b1d.tar.zst
blog.kummerlaender.eu-62690da3d1c74083f5f190e84582322413de2b1d.zip
Remove page, category functionality as it is now provided by `tree.kummerlaender.eu`
Diffstat (limited to 'source/00_content/pages/projects/build_xslt.md')
-rw-r--r--source/00_content/pages/projects/build_xslt.md48
1 files changed, 0 insertions, 48 deletions
diff --git a/source/00_content/pages/projects/build_xslt.md b/source/00_content/pages/projects/build_xslt.md
deleted file mode 100644
index 83ce4e6..0000000
--- a/source/00_content/pages/projects/build_xslt.md
+++ /dev/null
@@ -1,48 +0,0 @@
-# BuildXSLT
-
-…is a simple XSLT build system for InputXSLT based applications.
-
-It aims to provide a foundation for building more complex applications such as a fully fledged [static site generator] by enabling users to define _XML Makefiles_ instead of manually calling single [InputXSLT] transformations.
-
-The source code of _BuildXSLT_ is available on both my [Github] profile and [cgit].
-
-## Current features
-
-* processing tasks contained within _XML Makefiles_
-* generating single transformations
-* generating chained transformations
-* using external modules such as [StaticXSLT]
-* using files or embedded XML-trees as transformation input
-
-## Usage example
-
-While _BuildXSLT_ offers enough flexibility for all kinds of different XSLT based generation tasks it was specifically built to cater for the requirements of the [static site generator] this site is built with. As such its module definition file and the _XML Makefile_ used to call it makes for the best demonstration of what one can do with _BuildXSLT_:
-
-```xsl
-<transformation mode="chain">
- <link>src/steps/list.xsl</link>
- <link>src/steps/plan.xsl</link>
- <link>src/steps/process.xsl</link>
- <link>src/steps/summarize.xsl</link>
-</transformation>
-```
-
-```xsl
-<task type="module">
- <input mode="embedded">
- <datasource>
- <meta>
- <source>source</source>
- <target>target</target>
- </meta>
- </datasource>
- </input>
- <definition mode="file">[StaticXSLT.xml]</definition>
-</task>
-```
-
-[InputXSLT]: /page/input_xslt/
-[static site generator]: /page/static_xslt/
-[StaticXSLT]: /page/static_xslt/
-[Github]: https://github.com/KnairdA/BuildXSLT/
-[cgit]: http://code.kummerlaender.eu/BuildXSLT/