aboutsummaryrefslogtreecommitdiff
path: root/source/99_result/archive.xsl
diff options
context:
space:
mode:
authorAdrian Kummerlaender2014-08-29 23:35:16 +0200
committerAdrian Kummerlaender2014-08-29 23:35:16 +0200
commit9c8d55ae5ee4b4d2dd8b5d69c4a635ac1b1236c6 (patch)
tree4f9ea668d3ea840dc83c211d4e50daee59533ee5 /source/99_result/archive.xsl
parentdc7c9280dabd9d2a512ddd4a1b00213367f81c3d (diff)
downloadblog.kummerlaender.eu-9c8d55ae5ee4b4d2dd8b5d69c4a635ac1b1236c6.tar
blog.kummerlaender.eu-9c8d55ae5ee4b4d2dd8b5d69c4a635ac1b1236c6.tar.gz
blog.kummerlaender.eu-9c8d55ae5ee4b4d2dd8b5d69c4a635ac1b1236c6.tar.bz2
blog.kummerlaender.eu-9c8d55ae5ee4b4d2dd8b5d69c4a635ac1b1236c6.tar.lz
blog.kummerlaender.eu-9c8d55ae5ee4b4d2dd8b5d69c4a635ac1b1236c6.tar.xz
blog.kummerlaender.eu-9c8d55ae5ee4b4d2dd8b5d69c4a635ac1b1236c6.tar.zst
blog.kummerlaender.eu-9c8d55ae5ee4b4d2dd8b5d69c4a635ac1b1236c6.zip
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
Diffstat (limited to 'source/99_result/archive.xsl')
-rw-r--r--source/99_result/archive.xsl6
1 files changed, 3 insertions, 3 deletions
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 @@
<xsl:include href="[utility/master.xsl]"/>
<xsl:variable name="meta">
- <datasource type="main" mode="full" source="target/03_meta/articles.xml" target="articles"/>
- <datasource type="support" mode="full" source="target/03_meta/meta.xml" target="meta"/>
- <datasource type="support" mode="full" source="source/00_content/microblog.xml" target="microblog"/>
+ <datasource type="main" mode="full" source="03_meta/articles.xml" target="articles"/>
+ <datasource type="support" mode="full" source="03_meta/meta.xml" target="meta"/>
+ <datasource type="support" mode="full" source="00_content/microblog.xml" target="microblog"/>
<target mode="plain" value="archive/index.html"/>
</xsl:variable>