aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAdrian Kummerländer2014-04-28 21:06:33 +0200
committerAdrian Kummerländer2014-04-28 21:06:33 +0200
commitd573e3160131e6776a9c148ca3a6754533378a76 (patch)
tree77ea394aeee43e0723f21649097f2caf0277b2b0 /README.md
parent22cbef9c75aeb58d6c88c9b736526cb9d52a52a2 (diff)
downloadInputXSLT-d573e3160131e6776a9c148ca3a6754533378a76.tar
InputXSLT-d573e3160131e6776a9c148ca3a6754533378a76.tar.gz
InputXSLT-d573e3160131e6776a9c148ca3a6754533378a76.tar.bz2
InputXSLT-d573e3160131e6776a9c148ca3a6754533378a76.tar.lz
InputXSLT-d573e3160131e6776a9c148ca3a6754533378a76.tar.xz
InputXSLT-d573e3160131e6776a9c148ca3a6754533378a76.tar.zst
InputXSLT-d573e3160131e6776a9c148ca3a6754533378a76.zip
Added basic README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..fc3d618
--- /dev/null
+++ b/README.md
@@ -0,0 +1,21 @@
+# InputXSLT
+
+... is a proof-of-concept implementation of external read-only file access functions for XSLT based on Apache [xalan](https://xalan.apache.org/) and [xerces](https://xerces.apache.org/).
+
+## Why?!
+
+Contrary to popular opinion I actually like XSLT as a content transformation language and have built - amongst other things - my personal website on top of it. While I used the XSLT based [Symphony CMS](http://www.getsymphony.com/) for that particular endeavour, the intention behind the experiment contained within this repository is to develop something like a static content management system based on XSLT.
+
+## Current features:
+
+- external `read-file` function for read-only access to text files
+- external `read-xml-file` function for read-only access to XML files
+- external `read-directory` function for read-only directory traversal
+
+## Requirements:
+
+- CMake
+- C++ compiler with C++11 support
+- Apache [Xalan](https://xalan.apache.org/) XSLT Processor
+- Apache [Xerces](https://xerces.apache.org/) XML Library
+- Boost [Filesystem](http://www.boost.org/doc/libs/1_55_0/libs/filesystem/doc/index.htm)