aboutsummaryrefslogtreecommitdiff
path: root/process.xsl
AgeCommit message (Collapse)Author
2014-08-24Implemented basic generation summaryAdrian Kummerlaender
* "summarize.xsl" processes the result-tree of "process.xsl" and outputs a basic plain-text summary ** the plain-text summary is returned as the sole result of calling "make.xsl" * this approach should be easily extensible into i.e. a verbose version in the future * unraveled "make.xsl" structure into separate variables
2014-08-23Expanded output of task processingAdrian Kummerlaender
* partly copy "task" nodes ** augment with result of performing the task * executions of single transformations which expand into multiple target files are now grouped into tasks and subtasks ** a total result value is determined * this change was implemented to aid the implementation of a "generation-digest" view ** such a "view" summarizes the results of task processing and may be configured in e.g. verbosity and error output
2014-08-23Separated task planning and processing into separate transformationsAdrian Kummerlaender
* "plan.xsl" traverses the file-tree provided by "list.xsl" and determines the tasks to be executed * "process.xsl" executes the tasks planned by "plan.xsl" in a sensible order * this change was implemented to be able to e.g. schedule the linkage tasks for last ** performing them in tree-order caused problems when the generator tried to create symlinks inside non-existing directories ** additionally this further modularizes the processing chain