aboutsummaryrefslogtreecommitdiff
path: root/doc/todo/turn_edittemplate_verbosity_off_by_default.mdwn
diff options
context:
space:
mode:
Diffstat (limited to 'doc/todo/turn_edittemplate_verbosity_off_by_default.mdwn')
-rw-r--r--doc/todo/turn_edittemplate_verbosity_off_by_default.mdwn34
1 files changed, 34 insertions, 0 deletions
diff --git a/doc/todo/turn_edittemplate_verbosity_off_by_default.mdwn b/doc/todo/turn_edittemplate_verbosity_off_by_default.mdwn
new file mode 100644
index 000000000..14bb43782
--- /dev/null
+++ b/doc/todo/turn_edittemplate_verbosity_off_by_default.mdwn
@@ -0,0 +1,34 @@
+`edittemplate` replaces its directive with a note like "edittemplate person
+registered for people/*". It would be nice if this were dependent on
+a `verbose` parameter and default to off. I don't see the value in it, and by
+disabling the output, I can keep template registration as close as possible to
+the action as needed.
+
+I think this (untested) patch might just do the trick:
+
+ --- a/IkiWiki/Plugin/edittemplate.pm
+ +++ b/IkiWiki/Plugin/edittemplate.pm
+ @@ -46,8 +46,13 @@ sub preprocess (@) {
+
+ $pagestate{$params{page}}{edittemplate}{$params{match}}=$params{template};
+
+ - return sprintf(gettext("edittemplate %s registered for %s"),
+ - $params{template}, $params{match});
+ + if (yesno($params{verbose})) {
+ + return sprintf(gettext("edittemplate %s registered for %s"),
+ + $params{template}, $params{match});
+ + }
+ + else {
+ + return '';
+ + }
+ }
+
+ sub formbuilder (@) {
+
+--[[madduck]]
+
+[[!tags wishlist patch]]
+
+[[done]], though the patch I eventually applied uses "silent" as the
+parameter name. Sorry for forgetting about this patch until someone else
+implemented it too. --[[Joey]]