Age | Commit message (Collapse) | Author |
|
* "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
|
|
* 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
|
|
* "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
|