none
[openafs-wiki.git] / TWiki / TWikiPlugins.mdwn
index b86ccb9..0ab254d 100644 (file)
+<div>
+  <ul>
+    <li><a href="#TWiki Plugins"> TWiki Plugins</a><ul>
+        <li><a href="#About Plugins"> About Plugins</a></li>
+        <li><a href="#Installing Plugins"> Installing Plugins</a></li>
+        <li><a href="#Pre-Installed Plugins"> Pre-Installed Plugins</a></li>
+        <li><a href="#Managing Installed Plugins"> Managing Installed Plugins</a><ul>
+            <li><a href="#Set Preferences for Individual P"> Set Preferences for Individual Plugins</a></li>
+            <li><a href="#List Active Plugins Automaticall"> List Active Plugins Automatically </a></li>
+          </ul>
+        </li>
+        <li><a href="#Creating New Plugins"> Creating New Plugins</a><ul>
+            <li><a href="#Anatomy of a Plugin"> Anatomy of a Plugin</a></li>
+            <li><a href="#TWiki Plugin API"> TWiki Plugin API</a></li>
+            <li><a href="#Customize the _DefaultPlugin"> Customize the DefaultPlugin</a></li>
+            <li><a href="#Create a Plugin Module in Perl"> Create a Plugin Module in Perl</a></li>
+            <li><a href="#Create a Plugin Documentation To"> Create a Plugin Documentation Topic</a></li>
+            <li><a href="#Package a Plugin for Distributio"> Package a Plugin for Distribution</a></li>
+            <li><a href="#Publish a Plugin for General Use"> Publish a Plugin for General Use</a></li>
+          </ul>
+        </li>
+      </ul>
+    </li>
+  </ul>
+</div>
+
 ## <a name="TWiki Plugins"></a> TWiki Plugins
 
-Plugins allow you to extend the syntax or functionality of TWiki. ...
+### <a name="About Plugins"></a> About Plugins
+
+TWikiPlugins allow you to add new features to TWiki without changing the core program. Using a plug-in approach means that you can:
+
+- add virtually unlimited features while keeping the main TWiki program compact and efficient;
+- heavily customize an installation and still do clean updates to new versions of TWiki;
+- rapidly develop new TWiki functions in Perl using the Plugin API.
+
+Everything to do with TWiki Plugins - including demos, new releases, downloads, and discussion - is available at TWiki.org, in the ** [TWiki.org Plugins web](http://twiki.org/cgi-bin/view/Plugins)**.
+
+<a name="InstallPlugin"></a>
+
+### <a name="Installing Plugins"></a> Installing Plugins
+
+Each TWikiPlugin comes with full documentation: step-by-step installation instructions, a detailed description of any special requirements, version details, and a working example for testing.
+
+Most Plugins can be installed in three easy steps, with no programming skills required:
+
+1. **Download** the zip file containing the Plugin, documentation, and any other required files, from TWiki:Plugins.
+2. **Distribute** the files to their proper locations - unzip the zip archive in your TWiki installation directory - if have a standard TWiki installation, this will distribute automatically. Otherwise, place the files according to the directory paths listed on the Plugin top in TWiki:Plugins.
+3. **Check** the demo example on the Plugin topic: if it's working, the installation was fine!
+
+Some Plugins need certain Perl modules to be pre-installed on the host system. Plugins may also use other resources, like graphics, other modules, applications, templates. In these cases, detailed instructions are in the Plugin documentation.
+
+TWikiPlugin documentation pages are located at TWiki.org, in TWiki:Plugins web. Each Plugin has an doc topic (ex: <code>**SomePlugin**</code>) and a separate development page.
+
+- **Doc page:** Read all available info about the Plugin; download the attached distribution files.
+- **Dev page:** Post feature requests, bug reports and general dev comments; topic title ends in <code>**Dev**</code> (ex: <code>**SomePluginDev**</code>).
+- **User support:** Post installation, how to use type questions (and answers, if you have them) in the TWiki:Support web.
+
+### <a name="Pre-Installed Plugins"></a> Pre-Installed Plugins
+
+TWiki comes with three Plugins as part of the standard installation.
+
+- **DefaultPlugin** handles some legacy TWiki variables that may be present in long-established sites. This option can be controlled from [[TWikiPreferences]]. (Perl programmers can also [[add rules|Main/WebHome#Customize_the_DefaultPlugin]] for simple custom processing.)
+
+- **EmptyPlug** is a fully functional Plugin module, minus any active code; it does nothing but serve as a template on demand.
+
+- **InterwikiPlugin** is included but can be disabled or removed. Use it for quick linking to frequently linked to remote sites. Ex: <code>**TWiki:Plugins**</code> expands to TWiki:Plugins - on TWiki.org. You can add your own shortcuts and URLs to the existing directory of Wiki-related sites.
+
+### <a name="Managing Installed Plugins"></a> Managing Installed Plugins
+
+Ideally, after you've [[installed a Plugin|Main/WebHome#InstallPlugin]], just read the instructions and you're set. In fact, some Plugins require additional settings or offer extra options that you can modify on Preferences pages. You may want to make a Plugin available only in certain webs, or temporarily disable it. And having to list all available Plugins will probably come up. You can handle all of these with simple procedures.
+
+#### <a name="Set Preferences for Individual P"></a> Set Preferences for Individual Plugins
+
+Installed Plugins can be **toggled on or off**, site-wide or by web, through [[TWikiPreferences]] and individual [[WebPreferences]]:
+
+- All Plugin modules present in the <code>**lib/TWiki/Plugins**</code> directory are activated automatically unless disabled by the <code>**DISABLEDPLUGINS**</code> Preferences variable in TWikiPreferences. You can optionally list the installed Plugins in the <code>**INSTALLEDPLUGINS**</code> Preferences variable. This is useful to define the sequence of Plugin execution, or to specify other webs than the %WIKITOOLNAME% web for the Plugin topics. Settings in [[TWikiPreferences]] are:
+  - <code>**Set INSTALLEDPLUGINS = DefaultPlugin, ...**</code>
+  - <code>**Set DISABLEDPLUGINS = EmptyPlugin, ...**</code>
+
+**Plugin execution order** in TWiki is determined by searching Plugin topics in a specific sequence: First, full <code>**web.topicname**</code> name, if specified in <code>**INSTALLEDPLUGINS**</code>; next, the TWiki web is searched; and finally, the current web.
+
+**Plugin-specific settings** are done in individual Plugin topics. Two settings are standard for each Plugin:
+
+1. One line description, used to form the bullets describing the Plugins in the [[TextFormattingRules]] topic:
+  - <code>**Set SHORTDESCRIPTION = Blah blah woof woof.**</code>
+2. Debug Plugin, output can be seen in <code>**data/debug.txt**</code>. Set to 0=off or 1=on:
+  - <code>**Set DEBUG = 0**</code>
+
+- The settings can be retrieved as Preferences variables like <code>**%&lt;pluginname&gt;\_&lt;var&gt;%**</code>, ex: <code>**%DEFAULTPLUGIN\_SHORTDESCRIPTION%**</code> shows the description of the DefaultPlugin.
+
+#### <a name="List Active Plugins Automaticall"></a> List Active Plugins Automatically
+
+Plugin status variables let you list all active Plugins wherever needed. There are two list formats:
+
+- The <code>**%ACTIVATEDPLUGINS%**</code> variable lists activated Plugins by name. (This variable is displayed in [[TWikiPreferences]] for debugging use.)
+- The <code>**%PLUGINDESCRIPTIONS%**</code> variable displays a bullet list with a one-line description of each active Plugins. This variable is based on the <code>**%&lt;plugin&gt;\_SHORTDESCRIPTION%**</code> Preferences variables of individual topics and is shown in [[TextFormattingRules]].
+
+> <span><font> **DEMO: Active Plugin Variables** </font></span>
+>
+> <code>**%ACTIVATEDPLUGINS%**</code><br /> On this TWiki site, the active Plugins are: [[SpreadSheetPlugin]], [[CommentPlugin]], [[EditTablePlugin]], [[InterwikiPlugin]], [[PreferencesPlugin]], [[SlideShowPlugin]], [[SmiliesPlugin]], [[TablePlugin]], [[TwistyPlugin]].
+>
+> <code>**%PLUGINDESCRIPTIONS%**</code><br /> You can use any of these active TWiki Plugins:
+>
+> - [[SpreadSheetPlugin]] <span>(any TWiki, 10197)</span>:
+> - [[CommentPlugin]] <span>(Dakar, 11359)</span>: Allows users to quickly post comments to a page without an edit/preview/save cycle
+> - [[EditTablePlugin]] <span>(any TWiki, 11646)</span>:
+> - [[InterwikiPlugin]] <span>(Dakar, $Rev: 11935$)</span>:
+> - [[PreferencesPlugin]] <span>(Dakar, 9839)</span>:
+> - [[SlideShowPlugin]] <span>(Any TWiki, $Rev: 12847$)</span>:
+> - [[SmiliesPlugin]] <span>(Dakar, 8154)</span>:
+> - [[TablePlugin]] <span>(1.020, 12339)</span>:
+> - [[TwistyPlugin]] <span>(1.2.0, $Rev: 12154$)</span>:
+
+**TIP! To test new Plugins** on your installation before making them public, you may want to use one of these two approaches:
+
+- **Method 1:** Create a Production and a Test installation of TWiki. The <code>**twiki/data**</code>, <code>**twiki/templates**</code> and <code>**twiki/pub**</code> directories are shared, and the <code>**twiki/bin**</code> and <code>**twiki/lib**</code> directories are separate. Do all tests of Plugins and other new features in the Test installation. When everything works, copy the modified files over to the Production installation. This way, you can update a live TWiki installation and users won't even notice.
+
+- **Method 2:** List the Plugin under test in the DISABLEDPLUGINS variable in [[TWikiPreferences]]. Redefine the DISABLEDPLUGINS variable in the test web and do the testing there.
+
+<a name="CreatePlugins"></a>
+
+### <a name="Creating New Plugins"></a> Creating New Plugins
+
+With a reasonable knowledge of the Perl scripting language, you can create new Plugins or modify and extend existing ones. Basic plug-in architecture uses an Application Programming Interface (API), a set of software instructions that allow external code to interact with the main program. The [[TWiki Plugin API|Main/WebHome#PluginAPI]] Plugins by providing a programming interface for TWiki.
+
+#### <a name="Anatomy of a Plugin"></a> Anatomy of a Plugin
+
+A basic TWiki Plugin consists of two elements:
+
+- a Perl module, ex: <code>**YourPlugin.pm**</code>
+- a documentation topic, ex: <code>**YourPlugin.txt**</code>
+
+The Perl module can be a block of code that connects with TWiki alone, or it can include other elements, like other Perl modules (including other Plugins), graphics, TWiki templates, external applications (ex: a Java applet), or just about anything else it can call.
+
+The Plugin API handles the details of connecting your Perl module with main TWiki code. When you're familiar with the [[Plugin API|Main/WebHome#PluginAPI]], you're ready to develop Plugins.
+
+<a name="PluginAPI"></a>
+
+#### <a name="TWiki Plugin API"></a> TWiki Plugin API
+
+The Application Programming Interface (API) for TWikiPlugins provides the specifications for hooking into the core TWiki code from your external Perl Plugin module. The Plugin API is new to the Production version of TWiki with the TWikiReleaseSpring2001.
+
+The <code>**lib/TWiki/Func.pm**</code> implements ALL official Plugin functions. Plugins should ONLY use functions published in this module.
+
+<span><font>**DevALERT:**</font></span> If you use functions not in <code>**Func.pm**</code>, you run the risk of creating security holes. Also, your Plugin will likely break and require updating when you upgrade to a new version of TWiki.
+
+In addition to TWiki core functions, Plugins can use **predefined hooks**, or **call backs**, listed in the <code>**lib/TWiki/Plugins/EmptyPlugin.pm**</code> module.
+
+- All but the initPlugin are disabled. To enable a call back, remove <code>**DISABLE\_**</code> from the function name.
+
+- For improve performance, enable only the functions you really need. NOTE: <code>**outsidePREHandler**</code> and <code>**insidePREHandler**</code> are particularly expensive.
+
+#### <a name="Customize the _DefaultPlugin"></a> Customize the DefaultPlugin
+
+- **DefaultPlugin** can handle some outdated TWiki variables, found, for example, in sites recently updated from an old version. Settings are in [[TWikiPreferences]]. You can also add your own simple custom processing rules here, though in all but very simple cases, writing a new Plugin is preferable.
+
+#### <a name="Create a Plugin Module in Perl"></a> Create a Plugin Module in Perl
+
+Copy file ([`EmptyPlugin.pm`](http://twiki.org/lib/TWiki/Plugins/EmptyPlugin.pm) to <code>**&lt;name&gt;Plugin.pm**</code> <code>**EmptyPlugin.pm**</code> contains no executable code, so it does nothing, but it's ready to be used. Customize it. Refer to the [[Plugin API|Main/WebHome#PluginAPI]] specs for more information.
+
+<a name="CreatePluginTopic"></a>
+
+#### <a name="Create a Plugin Documentation To"></a> Create a Plugin Documentation Topic
 
-[[TWikiPreferences]] has the list of installed plugins and activated plugins.
+The Plugin documentation topic contains usage instructions and version details. It serves the Plugin files as [[FileAttachments]] for downloading. (The doc topic is also included _in_ the [[distribution package|Main/WebHome#CreatePluginPackage]].) To create a documentation topic:
 
-### <a name="How to Create a Plugin"></a> How to Create a Plugin
+1. **Copy** the Plugin topic template from <http://TWiki.org/cgi-bin/view/TWiki/EmptyPlugin>. To copy the text, go to the page and:
+  - click Edit
+  - select all in the Edit box &amp; copy
+  - Cancel the edit
+  - paste &amp; save as a text file or new topic on your site
+2. **Customize** the template for your Plugin; you'll probably want to post a working version on your local TWiki site.
+3. **Save** your topic as a text file, for use in [[packaging|Main/WebHome#CreatePluginPackage]] and [[publishing|Main/WebHome#PublishPlugin]] your Plugin.
 
-under construction... ( check back at <http://TWiki.org/cgi-bin/view/TWiki/TWikiPlugins> )
+> <span><font>**OUTLINE:** Doc Topic Contents </font></span>
+>
+> <br />
+>
+> Check
+>
+> [EmptyPlugin](http://TWiki.org/cgi-bin/view/TWiki/EmptyPlugin)
+>
+> on TWiki.org for the latest Plugin doc topic template. Here's a quick overview of what's covered:
+>
+> **Syntax Rules:** **_explanation coming up_**
+>
+> **YourPlugin Settings:** Description and settings for your custom Plugin %VARIABLES%, and those required by TWiki.
+>
+> Plugins Preferences work exactly like [[TWikiPreferences]] and [[WebPreferences]]: six (6) spaces and then:
+>
+> - - Set EXAMPLE = got it!
+>
+> **How-to Instructions:** Step-by-step set-up guide, user help, whatever it takes to install and run, goes here.
+>
+> **Test Example:** Include an example of the Plugin in action: if it works, the installation was a success!
+>
+> **Plugin Info:** Version, credits, history, requirements - entered in a form, displayed as a table. Both are automatically generated when you create or edit a page in the TWiki:Plugins web.
 
-### <a name="How to Install a Plugin"></a> How to Install a Plugin
+<a name="CreatePluginPackage"></a>
 
-under construction... ( check back at <http://TWiki.org/cgi-bin/view/TWiki/TWikiPlugins> )
+#### <a name="Package a Plugin for Distributio"></a> Package a Plugin for Distribution
 
-### <a name="Plugins under the hood"></a> Plugins under the hood
+A minimum Plugin release consists of a Perl module with a [[WikiName]] that ends in <code>**Plugin**</code>, ex: <code>**YourPlugin.pm**</code>, and a documentation page with the same name(<code>**YourPlugin.txt**</code>).
 
-- All plugin modules that exist in the `lib/TWiki/Plugins` directory are activated automatically unless disabled by the `DISABLEDPLUGINS` preferences variable in [[TWikiPreferences]]. You can optionally list the installed plugins in the `INSTALLEDPLUGINS` preferences variable. This is useful to define the sequence of plugin execution, or to specify other webs then the %WIKITOOLNAME% web for the plugin topics. Settings in [[TWikiPreferences]]:
-  - `Set INSTALLEDPLUGINS = DefaultPlugin, ...`
-  - `Set DISABLEDPLUGINS = EmptyPlugin, ...`
+1. Distribute your Plugin files in a directory structure that mirrors TWiki. If your Plugin uses additional files, include them ALL:
+  - <code>**lib/TWiki/Plugins/YourPlugin.pm**</code>
+  - <code>**data/TWiki/YourPlugin.txt**</code>
+  - <code>**pub/TWiki/YourPlugin/uparrow.gif**</code> [a required graphic]
+2. Create a zip archive with the Plugin name (<code>**YourPlugin.zip**</code>) and add the entire directory structure from Step 1. Your archive should look like this:
+  - <code>**lib/TWiki/Plugins/YourPlugin.pm**</code>
+  - <code>**data/TWiki/YourPlugin.txt**</code>
+  - <code>**pub/TWiki/YourPlugin/uparrow.gif**</code>
 
-- The `%ACTIVATEDPLUGINS%` variable shows all currently activated plugins. This variable is shown in [[TWikiPreferences]] for debug reasons.
+<a name="PublishPlugin"></a>
 
-- Search order for plugin topics: Full `web.topicname` name is used if specified in `INSTALLEDPLUGINS`, then the TWiki web is searched, then the current web.
+#### <a name="Publish a Plugin for General Use"></a> Publish a Plugin for General Use
 
-- Plugin specific settings are done in individual plugin topics. Two settings are standard for each plugin:
-  - One line description, used to form the bullets describing the plugins in the [[TextFormattingRules]] topic:
-    - `Set SHORTDESCRIPTION = Blah blah.`
-  - Debug plugin, output can be seen in `data/debug.txt`: (Se to 0 or 1)
-    - `Set DEBUG = 0`
-  - The settings can be retrieved as preferences variables like `%<pluginname>_<var>%`, i.e. `%DEFAULTPLUGIN_SHORTDESCRIPTION%` shows the description of the DefaultPlugin.
+You can release your tested, packaged Plugin to the TWiki community through the TWiki:Plugins web, where all Plugins submitted to TWiki.org are available for download and further development discussion. Publish your Plugin in three steps:
 
-- The `%PLUGINDESCRIPTIONS%` variable shows a bullet list with descriptions of all currently activated plugins. This variable is based on `%<plugin>_SHORTDESCRIPTION%` preferences variables of individual topics and is shown in [[TextFormattingRules]].
+1. **Post** the Plugin documentation topic in the TWiki:Plugins web:
+  - create a new topic using the Plugin name, ex: <code>**YourPlugin.txt**</code>;
+  - paste in the topic text from [[How to Create the Plugin Documentation Topic|Main/WebHome#CreatePluginTopic]] and Save.
+2. **Attach** the distribution zip file to the topic, ex: <code>**YourPlugin.zip**</code>.
+3. **Link** from the doc page to a new, blank page named after the Plugin, and ending in <code>**Dev**</code>, ex: <code>**YourPluginDev**</code>. This is the discussion page for future development. (User support for Plugins is handled in TWiki:Support.)
 
--- [[PeterThoeny]] - 14 Jul 2001 <br />
+-- [[MikeMannix]] - 26 Aug 2001