X-Git-Url: https://git.openafs.org/?p=openafs-wiki.git;a=blobdiff_plain;f=TWiki%2FTWikiPlugins.mdwn;h=72b0a3c7fda44b63efb0b885cd41b2fcd31b9bba;hp=55b8c2f89e77392829dd48f8cfa88b781d467dfd;hb=4c59331b14c0da2b60d1311391008f60b57e8c58;hpb=d5b8a8242f47752938c047a07bc149801a48a6e2 diff --git a/TWiki/TWikiPlugins.mdwn b/TWiki/TWikiPlugins.mdwn index 55b8c2f..72b0a3c 100644 --- a/TWiki/TWikiPlugins.mdwn +++ b/TWiki/TWikiPlugins.mdwn @@ -1,13 +1,224 @@ +
**SomePlugin**
) 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 **Dev**
(ex: **SomePluginDev**
).
+- **User support:** Post installation, how to use type questions (and answers, if you have them) in the TWiki:Support web.
+
+### 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: **TWiki:Plugins**
expands to TWiki:Plugins - on TWiki.org. You can add your own shortcuts and URLs to the existing directory of Wiki-related sites.
+
+### 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.
+
+#### 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 **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 than the %WIKITOOLNAME% web for the Plugin topics. Settings in [[TWikiPreferences]] are:
+ - **Set INSTALLEDPLUGINS = DefaultPlugin, ...**
+ - **Set DISABLEDPLUGINS = EmptyPlugin, ...**
+
+**Plugin execution order** in TWiki is determined by searching Plugin topics in a specific sequence: First, full **web.topicname**
name, if specified in **INSTALLEDPLUGINS**
; 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:
+ - **Set SHORTDESCRIPTION = Blah blah woof woof.**
+2. Debug Plugin, output can be seen in **data/debug.txt**
. Set to 0=off or 1=on:
+ - **Set DEBUG = 0**
+
+- The settings can be retrieved as Preferences variables like **%<pluginname>\_<var>%**
, ex: **%DEFAULTPLUGIN\_SHORTDESCRIPTION%**
shows the description of the DefaultPlugin.
+
+#### List Active Plugins Automatically
+
+Plugin status variables let you list all active Plugins wherever needed. There are two list formats:
+
+- The **%ACTIVATEDPLUGINS%**
variable lists activated Plugins by name. (This variable is displayed in [[TWikiPreferences]] for debugging use.)
+- The **%PLUGINDESCRIPTIONS%**
variable displays a bullet list with a one-line description of each active Plugins. This variable is based on the **%<plugin>\_SHORTDESCRIPTION%**
Preferences variables of individual topics and is shown in [[TextFormattingRules]].
+
+> **DEMO: Active Plugin Variables**
+>
+> **%ACTIVATEDPLUGINS%**
**%PLUGINDESCRIPTIONS%**
**twiki/data**
, **twiki/templates**
and **twiki/pub**
directories are shared, and the **twiki/bin**
and **twiki/lib**
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.
+
+
+
+### 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.
+
+#### Anatomy of a Plugin
+
+A basic TWiki Plugin consists of two elements:
+
+- a Perl module, ex: **YourPlugin.pm**
+- a documentation topic, ex: **YourPlugin.txt**
+
+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.
+
+
+
+#### 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 **lib/TWiki/Func.pm**
implements ALL official Plugin functions. Plugins should ONLY use functions published in this module.
+
+**DevALERT:** If you use functions not in **Func.pm**
, 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 **lib/TWiki/Plugins/EmptyPlugin.pm**
module.
+
+- All but the initPlugin are disabled. To enable a call back, remove **DISABLE\_**
from the function name.
+
+- For improve performance, enable only the functions you really need. NOTE: **outsidePREHandler**
and **insidePREHandler**
are particularly expensive.
+
+#### 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.
+
+#### Create a Plugin Module in Perl
+
+Copy file ([`EmptyPlugin.pm`](http://twiki.org/lib/TWiki/Plugins/EmptyPlugin.pm) to **<name>Plugin.pm**
**EmptyPlugin.pm**
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.
+
+
+
+#### Create a Plugin Documentation Topic
+
+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:
+
+1. **Copy** the Plugin topic template from **Plugin**
, ex: **YourPlugin.pm**
, and a documentation page with the same name(**YourPlugin.txt**
).
+
+1. Distribute your Plugin files in a directory structure that mirrors TWiki. If your Plugin uses additional files, include them ALL:
+ - **lib/TWiki/Plugins/YourPlugin.pm**
+ - **data/TWiki/YourPlugin.txt**
+ - **pub/TWiki/YourPlugin/uparrow.gif**
[a required graphic]
+2. Create a zip archive with the Plugin name (**YourPlugin.zip**
) and add the entire directory structure from Step 1. Your archive should look like this:
+ - **lib/TWiki/Plugins/YourPlugin.pm**
+ - **data/TWiki/YourPlugin.txt**
+ - **pub/TWiki/YourPlugin/uparrow.gif**
-### How to Create a Plugin
+
-under construction... ( check back at **YourPlugin.txt**
;
+ - paste in the topic text from [[Creating Plugin Documentation|Main/WebHome#CreatePluginTopic]] and Save.
+2. **Attach** the distribution zip file to the topic, ex: **YourPlugin.zip**
.
+3. **Link** from the doc page to a new, blank page named after the Plugin, and ending in **Dev**
, ex: **YourPluginDev**
. This is the discussion page for future development. (User support for Plugins is handled in TWiki:Support.)
--- [[PeterThoeny]] - 17 Feb 2001