From f8e4bcf7f2f30b8f2b30401bb1c5a7b5803c8538 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Sun, 2 Mar 2008 02:39:05 -0500 Subject: [PATCH 1/2] web commit by bremner --- doc/todo/multiple_template_directories.mdwn | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 doc/todo/multiple_template_directories.mdwn diff --git a/doc/todo/multiple_template_directories.mdwn b/doc/todo/multiple_template_directories.mdwn new file mode 100644 index 000000000..f8b0aa697 --- /dev/null +++ b/doc/todo/multiple_template_directories.mdwn @@ -0,0 +1,8 @@ +It would be nice to be able to override a single template without keeping a +private copy of the entire template directory. + +a setup option like + + templatedirs => [ "my/dir", "/usr/share/ikiwiki/templates" ] + +ought to do the trick. From 7eeafb3ef95cada7fdff50a6aa0b3f83af96977e Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Sun, 2 Mar 2008 02:58:55 -0500 Subject: [PATCH 2/2] web commit by bremner --- doc/todo/multiple_template_directories.mdwn | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/todo/multiple_template_directories.mdwn b/doc/todo/multiple_template_directories.mdwn index f8b0aa697..c967e87a2 100644 --- a/doc/todo/multiple_template_directories.mdwn +++ b/doc/todo/multiple_template_directories.mdwn @@ -6,3 +6,7 @@ a setup option like templatedirs => [ "my/dir", "/usr/share/ikiwiki/templates" ] ought to do the trick. + +> Now that I look at the source, I see that ikiwiki already falls back to the > global dir when it cannot find a template. For me, this is good enough. +> And it is even documented in the man page. Sigh. I guess this could be +> considered done.