aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-10-13Expanded generation failure message to include error logHEADmasterAdrian Kummerlaender
* a failed call to "InputXSLT:generate" returns a full log of all errors and XSLT messages ** this log is very helpful for debugging purposes and is now included into BuildXSLT errors
2014-10-12Updated README.md to mention module supportAdrian Kummerlaender
2014-10-11Implemented module supportAdrian Kummerlaender
* module support aims to enable extraction of core static site generation functionality implemented for my personal blog into a separate project ** i.e. the detail transformations of repository [blog.kummerlaender.eu](https://github.com/KnairdA/blog.kummerlaender.eu/) * a BuildXSLT module is a simple XML file definining the transformations which make up the module * modules may be built using the newly implemented "module" task type ** this task requires a input and definition node *** the input node is resolved in the same way as "generate" input nodes *** the definition node currently only supports the file mode ** chained transformation links inside the definition are resolved relative to the definition files location *** this was enabled by commit `a4a7ee4` to InputXSLT * restructured task processing * transformations are now read by "InputXSLT:generate" instead of by "InputXSLT:read-file" ** this enables entities to be resolved against the transformation location ** this was enabled through filesystem context resolution changes in commit `3c166ed` to InputXSLT * added basic error handling based on terminating XSLT messages
2014-09-12Added MIT licenseAdrian Kummerlaender
2014-09-07Updated README.md to link to the correct example repositoryAdrian Kummerlaender
2014-09-05Implemented basic XSLT build systemAdrian Kummerlaender