From 9c8d55ae5ee4b4d2dd8b5d69c4a635ac1b1236c6 Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Fri, 29 Aug 2014 23:35:16 +0200 Subject: Removed need for prefixing datasource source attribute * transformations contain one or more "datasource" meta nodes ** these nodes define the required datasources ** up until now it was required to define the whole path to the file to be loaded * the implementation of directory linkage in b942f8e removed the underlying need for providing the source / target prefix ** this commit now updates the generation transformations to match this change *** this simplifies the datasource definition process for the end-user *** additionally it makes the target / source directories easier to maintain * changed cleanage task implementation to remove the whole directory and recreate it from scratch ** otherwise directory linkage and in turn the whole generation failed when the target directory did not exist in the first place * removed task reordering in the process transformation ** tasks are now processed exactly as they were scheduled ** this was changed so that e.g. the "00_content" directory is linked before the first datasource is required --- plan.xsl | 5 +++ process.xsl | 58 ++++++++++++++++++---------------- source/02_data/articles.xsl | 2 +- source/02_data/pages.xsl | 2 +- source/02_data/tags.xsl | 2 +- source/03_meta/articles.xsl | 2 +- source/03_meta/categories.xsl | 4 +-- source/03_meta/meta.xsl | 4 +-- source/03_meta/paginated_articles.xsl | 2 +- source/03_meta/tags.xsl | 4 +-- source/99_result/archive.xsl | 6 ++-- source/99_result/article/article.xsl | 4 +-- source/99_result/atom.xsl | 4 +-- source/99_result/category/category.xsl | 4 +-- source/99_result/page/page.xsl | 4 +-- source/99_result/stream.xsl | 6 ++-- source/99_result/tag/tag.xsl | 4 +-- 17 files changed, 63 insertions(+), 54 deletions(-) diff --git a/plan.xsl b/plan.xsl index 2401019..57b808c 100644 --- a/plan.xsl +++ b/plan.xsl @@ -50,6 +50,11 @@ + + + + + diff --git a/process.xsl b/process.xsl index 29efc0e..595d617 100644 --- a/process.xsl +++ b/process.xsl @@ -30,7 +30,7 @@ @@ -87,13 +87,16 @@ + - + @@ -104,6 +107,7 @@ + @@ -112,6 +116,7 @@ + @@ -134,10 +139,9 @@ - - + - + @@ -147,36 +151,43 @@ - + - - - - + + + + + - + - - - - + + + + + - - - - + + + + + @@ -196,8 +207,7 @@ - - + @@ -232,10 +242,4 @@ - - - - - - diff --git a/source/02_data/articles.xsl b/source/02_data/articles.xsl index 7b951df..3a71cc2 100644 --- a/source/02_data/articles.xsl +++ b/source/02_data/articles.xsl @@ -11,7 +11,7 @@ - + diff --git a/source/02_data/pages.xsl b/source/02_data/pages.xsl index 30a14f8..2123dae 100644 --- a/source/02_data/pages.xsl +++ b/source/02_data/pages.xsl @@ -11,7 +11,7 @@ - + diff --git a/source/02_data/tags.xsl b/source/02_data/tags.xsl index 35c360e..b615213 100644 --- a/source/02_data/tags.xsl +++ b/source/02_data/tags.xsl @@ -7,7 +7,7 @@ - + diff --git a/source/03_meta/articles.xsl b/source/03_meta/articles.xsl index e9a54c3..8babed3 100644 --- a/source/03_meta/articles.xsl +++ b/source/03_meta/articles.xsl @@ -7,7 +7,7 @@ - + diff --git a/source/03_meta/categories.xsl b/source/03_meta/categories.xsl index a2945b3..f1c2f5e 100644 --- a/source/03_meta/categories.xsl +++ b/source/03_meta/categories.xsl @@ -10,8 +10,8 @@ - - + + diff --git a/source/03_meta/meta.xsl b/source/03_meta/meta.xsl index 91c09b3..2af78de 100644 --- a/source/03_meta/meta.xsl +++ b/source/03_meta/meta.xsl @@ -7,8 +7,8 @@ - - + + diff --git a/source/03_meta/paginated_articles.xsl b/source/03_meta/paginated_articles.xsl index 61439b8..e00ee51 100644 --- a/source/03_meta/paginated_articles.xsl +++ b/source/03_meta/paginated_articles.xsl @@ -7,7 +7,7 @@ - + diff --git a/source/03_meta/tags.xsl b/source/03_meta/tags.xsl index 7caf37f..9e399cd 100644 --- a/source/03_meta/tags.xsl +++ b/source/03_meta/tags.xsl @@ -7,8 +7,8 @@ - - + + diff --git a/source/99_result/archive.xsl b/source/99_result/archive.xsl index 4d459c4..a6e8bce 100644 --- a/source/99_result/archive.xsl +++ b/source/99_result/archive.xsl @@ -7,9 +7,9 @@ - - - + + + diff --git a/source/99_result/article/article.xsl b/source/99_result/article/article.xsl index bbde793..1a6d2eb 100644 --- a/source/99_result/article/article.xsl +++ b/source/99_result/article/article.xsl @@ -8,8 +8,8 @@ - - + + diff --git a/source/99_result/atom.xsl b/source/99_result/atom.xsl index da7f370..bfd038b 100644 --- a/source/99_result/atom.xsl +++ b/source/99_result/atom.xsl @@ -12,8 +12,8 @@ /> - - + + diff --git a/source/99_result/category/category.xsl b/source/99_result/category/category.xsl index e69640b..300b62f 100644 --- a/source/99_result/category/category.xsl +++ b/source/99_result/category/category.xsl @@ -9,8 +9,8 @@ - - + + diff --git a/source/99_result/page/page.xsl b/source/99_result/page/page.xsl index 4bf62ba..ccee1de 100644 --- a/source/99_result/page/page.xsl +++ b/source/99_result/page/page.xsl @@ -7,8 +7,8 @@ - - + + diff --git a/source/99_result/stream.xsl b/source/99_result/stream.xsl index 526b8db..4d93a2c 100644 --- a/source/99_result/stream.xsl +++ b/source/99_result/stream.xsl @@ -8,9 +8,9 @@ - - - + + + diff --git a/source/99_result/tag/tag.xsl b/source/99_result/tag/tag.xsl index fd79a3c..511a64f 100644 --- a/source/99_result/tag/tag.xsl +++ b/source/99_result/tag/tag.xsl @@ -7,8 +7,8 @@ - - + + -- cgit v1.2.3