aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-08-16 12:31:23 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-08-16 12:31:23 +0000
commit7cd5e0169712ba560b1d789decb5c56d0dc903ff (patch)
tree0709fd01b8ccd99281afd8d3bd8ebd9ee0c86d8e /doc
parent8b7e15f1c03f75c262fa1c97315edbb2c4cc201a (diff)
downloadikiwiki-7cd5e0169712ba560b1d789decb5c56d0dc903ff.tar
ikiwiki-7cd5e0169712ba560b1d789decb5c56d0dc903ff.tar.gz
web commit by http://jeremie.koenig.myopenid.com/: difficulties with a "show diff" button plugin
Diffstat (limited to 'doc')
-rw-r--r--doc/todo/preview_changes.mdwn59
1 files changed, 59 insertions, 0 deletions
diff --git a/doc/todo/preview_changes.mdwn b/doc/todo/preview_changes.mdwn
index 7bad95115..f927c6065 100644
--- a/doc/todo/preview_changes.mdwn
+++ b/doc/todo/preview_changes.mdwn
@@ -7,3 +7,62 @@ Some discussion from the main [[/index/discussion]] page:
>
>> It's doable, it could even be done by a [[todo/plugin]], I think.
>> --[[Joey]]
+
+---
+
+I need help with this. Supposedly, such a plugin would provide a `formbuilder_setup`
+hook which would add the button, and a cgi hook which would interecept
+"Show Diff" clicks. This would show a diff between
+`titlepage(possibly_foolish_untaint($form->field("page")))`
+and the provided `$form->field("editcontent")`.
+
+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?)
+
+<pre>
+Index: templates/editpage.tmpl
+===================================================================
+--- templates/editpage.tmpl (révision 4130)
++++ templates/editpage.tmpl (copie de travail)
+@@ -57,9 +57,7 @@
+ Optional comment about this change:<br />
+ <TMPL_VAR FIELD-COMMENTS><br />
+ </TMPL_IF>
+-<input id="_submit" name="_submit" type="submit" value="Save Page" />
+-<input id="_submit_2" name="_submit" type="submit" value="Preview" />
+-<input id="_submit_3" name="_submit" type="submit" value="Cancel" />
++<TMPL_VAR FORM-SUBMIT>
+ <TMPL_VAR HELPONFORMATTINGLINK>
+ <TMPL_VAR FORM-END>
+
+Index: IkiWiki/CGI.pm
+===================================================================
+--- IkiWiki/CGI.pm (révision 4130)
++++ IkiWiki/CGI.pm (copie de travail)
+@@ -304,6 +304,7 @@
+ eval q{use CGI::FormBuilder};
+ error($@) if $@;
+ my $form = CGI::FormBuilder->new(
++ title => "editpage",
+ fields => \@fields,
+ charset => "utf-8",
+ 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);
+</pre>
+
+--[[JeremieKoenig]] \ No newline at end of file