From fa8b68c0436fe5870bf7155885aeb9a2d2004d45 Mon Sep 17 00:00:00 2001 From: rurban Date: Tue, 2 Jan 2007 13:25:44 +0000 Subject: [PATCH] add missing description page git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@5301 96ab9672-09ca-45d6-a79d-3d69d39ca109 --- pgsrc/Help%2FWikiFormRichPlugin | 115 ++++++++++++++++++++++++++++++++ 1 file changed, 115 insertions(+) create mode 100644 pgsrc/Help%2FWikiFormRichPlugin diff --git a/pgsrc/Help%2FWikiFormRichPlugin b/pgsrc/Help%2FWikiFormRichPlugin new file mode 100644 index 000000000..dfd3ca37f --- /dev/null +++ b/pgsrc/Help%2FWikiFormRichPlugin @@ -0,0 +1,115 @@ +Date: Fri, 29 Dec 2006 18:57:39 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.3.13) +X-Rcs-Id: $Id: Help%2FWikiFormRichPlugin,v 1.1 2007-01-02 13:25:44 rurban Exp $ +Content-Type: application/x-phpwiki; + pagename=Help%2FWikiFormRichPlugin; + pgsrc_version="2 $Revision: 1.1 $"; + flags=""; + markup=2; + charset=iso-8859-1 +Content-Transfer-Encoding: binary + +Create generic and enhanced forms, with various options: + + * - editbox[] name=.. value=.. text=.. autocomplete=0|1 + * - checkbox[] name=.. value=0|1 checked text=.. + * - radio[] name=.. value=.. text=.. + * - pulldown[] name=.. value=.. selected=.. text=.. autocomplete=0|1 + * - combobox[] name=.. value=.. text=.. method=.. args=.. + * - hidden[] name=.. value=.. + * - submit[] + * - action, submit buttontext, optional cancel button (bool) + * - method=get or post, Default: post. + +Valid arguments for pulldown and editbox: autocomplete=1, Default: 0
+If autocomplete=1, additional arguments method and args may be used. +autocomplete together with dyn-methods (see below) should be used to handle larger lists (> 500).
+If no method is given, value will be used to fill in the valid values.
+ + method="xmlrpc:name [optional args]" + method="dynxmlrpc:url [optional args]" + method="url:http://server/wiki/method" + method="dynurl:http://server/wiki/method" + method="array:jsvariable" + method="plugin:pluginname [optional args]" + + +The plugin must return a pagelist.
+args are optional arguments, space seperated, for the method.
+A combobox is a pulldown with autocomplete=1.
+ +Author: Reini Urban + +- Values which are constants are evaluated. +- The cancel button must be supported by the action. + (just some wikiadmin actions so far) +- improve layout by: nobr=1 +- some allow values as list from + +! Samples + + +---- + +---- + +---- + +---- + +---- + +---- + + ?> +---- + + submit[] + ?> +---- + + ?> +---- + +---- + +---- + + +------------- + +PhpWikiDocumentation Help:WikiPlugin -- 2.45.0