aboutsummaryrefslogtreecommitdiff
path: root/doc/todo/preview_changes.mdwn
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-08-16 15:59:28 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-08-16 15:59:28 +0000
commitcdb9e500de2037be6c7b53b61d8595f67feb3ff1 (patch)
tree5b77133bbfc15de64a75c7cc40efba23a0357c33 /doc/todo/preview_changes.mdwn
parent661a2bbadf952d1aebeba9fbf25305a9ca577ed1 (diff)
downloadikiwiki-cdb9e500de2037be6c7b53b61d8595f67feb3ff1.tar
ikiwiki-cdb9e500de2037be6c7b53b61d8595f67feb3ff1.tar.gz
web commit by http://jeremie.koenig.myopenid.com/: update
Diffstat (limited to 'doc/todo/preview_changes.mdwn')
-rw-r--r--doc/todo/preview_changes.mdwn31
1 files changed, 23 insertions, 8 deletions
diff --git a/doc/todo/preview_changes.mdwn b/doc/todo/preview_changes.mdwn
index 9533b993c..d04c32314 100644
--- a/doc/todo/preview_changes.mdwn
+++ b/doc/todo/preview_changes.mdwn
@@ -21,12 +21,12 @@ But:
* How could the case of concurrent editing be handled ?
Especially as (I think) only the RCS backend can know that
this has happened.
- * Doing the formbuilder trick for adding a button needs the following
- patch. (note that this is not the only template which has its submit
- buttons hardcoded; is this supposed to work around something?)
- * Coercing `editpage()` into showing the edit form again rather that
- saving the page would be tricky and hackish to do from a module;
- maybe this would better be implemented directly in `showpage`?
+ * May I hijack the `page_preview` template variable to show
+ my diff output? (the patch below assumes this).
+ * Using the formbuilder hook to add a button, and coerce `editpage()`
+ into showing the edit form again rather that saving the page needs
+ the following patch. (note that this is not the only template which has
+ its submit buttons hardcoded; is this supposed to work around something?)
<pre>
Index: templates/editpage.tmpl
@@ -58,14 +58,29 @@ Index: IkiWiki/CGI.pm
method => 'POST',
@@ -321,7 +322,8 @@
);
-
+
run_hooks(formbuilder_setup => sub {
- shift->(form => $form, cgi => $q, session => $session);
+ shift->(form => $form, cgi => $q, session => $session,
+ buttons => \@buttons);
});
-
+
decode_form_utf8($form);
+@@ -402,12 +404,12 @@
+ preprocess($page, $page,
+ filter($page, $page, $form->field('editcontent')), 0, 1))));
+ }
+- else {
++ elsif ($form->submitted eq "Save Page") {
+ $form->tmpl_param("page_preview", "");
+ }
+ $form->tmpl_param("page_conflict", "");
+
+- if (! $form->submitted || $form->submitted eq "Preview" ||
++ if ($form->submitted ne "Save Page" ||
+ ! $form->validate) {
+ if ($form->field("do") eq "create") {
+ my @page_locs;
</pre>
--[[JeremieKoenig]] \ No newline at end of file