TWikiPlugins 12 - 07 Sep 2001 - Main.MikeMannix
|
| | |
< < | TWiki Plugins | > > | TWiki Plugins | | Plugin use and development; about the Plugin API. | |
< < | Overview | > > | Overview | | You can add Plugins to greatly extend TWiki's functionality, without alering the program core. With a plug-in approach, you can: | | Everything to do with TWiki Plugins - demos, new releases, downloads, development, general discussion - is available at TWiki.org, in the TWiki.org Plugins web. | |
< < | Preinstalled Plugins | > > | Preinstalled Plugins | | TWiki comes with three Plugins as part of the standard installation. | |
- InterwikiPlugin is preinstalled but can be disabled or removed. Use it for quick linking to to remote sites:
TWiki:Plugins expands to TWiki:Plugins on TWiki.org. You can add your own shortcuts and URLs to the existing directory of Wiki-related and other probably useful sites.
| |
< < | Installing Plugins | > > | 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. | |
- Dev page: Post feature requests, bug reports and general dev comments; topic title ends in
Dev (SomePluginDev ).
- User support: Post installation, how to use type questions (and answers, if you have them) in the TWiki:Support web.
| |
< < | On-Site Pretesting | > > | On-Site Pretesting | | To test new Plugins on your installation before making them public, you may want to use one of these two approaches: | |
- 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.
| |
< < | Managing Plugins | > > | Managing Plugins | | Ideally, after you've installed a Plugin, 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. | |
< < | Setting Preferences | > > | Setting Preferences | | Installed Plugins can be toggled on or off, site-wide or by web, through TWikiPreferences and individual WebPreferences: | |
-
- The settings can be retrieved as Preferences variables like
%<pluginname>_<var>% , ex: %DEFAULTPLUGIN_SHORTDESCRIPTION% shows the description of the DefaultPlugin.
| |
< < | Listing Active Plugins | > > | Listing Active Plugins | | 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 TWiki Plugin API | > > | The 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. | |
< < | Available Core Functions | > > | Available Core Functions | | The lib/TWiki/Func.pm implements ALL official Plugin functions. Plugins should ONLY use functions published in this module. | |
- For best performance, enable only the functions you really need. NOTE:
outsidePREHandler and insidePREHandler are particularly expensive.
| |
< < | Predefined Hooks | > > | Predefined Hooks | | 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.
| |
< < | Plugin Version Detection | > > | Plugin Version Detection | | To eliminate the incompatibility problems bound to arise from active open Plugin development, a Plugin versioning system and an API GetVersion detection routine are provided for automatic compatibility checking. | |
-
$VERSION='1.000' is the current setting in TWiki::Plugins.pm and in the preinstalled system Plugins (DefaultPlugin? , EmptyPlugin, InterwikiPlugin).
| |
< < | | | | |
< < | Creating Plugins | > > | Creating 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 Plugins by providing a programming interface for TWiki. | |
< < | The DefaultPlugin Alternative | > > | The DefaultPlugin Alternative | |
- 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.
| |
< < | Anatomy of a Plugin | > > | Anatomy of a Plugin | | A basic TWiki Plugin consists of two elements: | | The Plugin API handles the details of connecting your Perl module with main TWiki code. When you're familiar with the Plugin API, you're ready to develop Plugins. | |
< < | Creating the Perl Module | > > | Creating the Perl Module | | Copy file (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 specs for more information.
| |
< < | Writing the Documentation Topic | > > | Writing the 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.) To create a documentation topic: | |
| |
< < | Packaging for Distribution | > > | Packaging for Distribution | | A minimum Plugin release consists of a Perl module with a WikiName that ends in Plugin , ex: YourPlugin.pm , and a documentation page with the same name(YourPlugin.txt ). | |
-
-
pub/TWiki/YourPlugin/uparrow.gif
| |
< < | Publishing for Public Use | > > | Publishing for Public Use | | 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: |
|
TWikiPlugins 11 - 02 Sep 2001 - Main.AndreaSterbini
|
|
TWiki Plugins | |
- All modules require a
$VERSION='0.000' variable, beginning at 1.000 .
| |
< < |
- The
initPlugin handler checks all dependencies and returns TRUE if the initialization is OK or FALSE if something went wrong.
| > > |
- The
initPlugin handler should check all dependencies and return TRUE if the initialization is OK or FALSE if something went wrong.
| |
-
- The Plugin initialization code does not register a Plugin that returns FALSE (or that has no
initPlugin handler).
-
$VERSION='1.000' is the current setting in TWiki::Plugins.pm and in the preinstalled system Plugins (DefaultPlugin? , EmptyPlugin, InterwikiPlugin).
| |
- 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. | |
> > | In particular, files that should be web-accessible (graphics, Java applets ...) are best placed as attachments of the YourPlugin topic. Other needed Perl code is best placed in a lib/TWiki/Plugins/YourPlugin/ directory. | | The Plugin API handles the details of connecting your Perl module with main TWiki code. When you're familiar with the Plugin API, you're ready to develop Plugins. |
|
TWikiPlugins 10 - 02 Sep 2001 - Main.MikeMannix
|
|
TWiki Plugins | |
< < | TWikiPlugins allow you to add new features to TWiki without changing the core program. Using a plug-in approach means that you can: | > > | Plugin use and development; about the Plugin API. | | | |
< < |
- add virtually unlimited features while keeping the main TWiki program compact and efficient;
| > > | Overview
You can add Plugins to greatly extend TWiki's functionality, without alering the program core. With a plug-in approach, you can:
- add virtually unlimited features while keeping the main TWiki code 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. | > > | Everything to do with TWiki Plugins - demos, new releases, downloads, development, general discussion - is available at TWiki.org, in the TWiki.org Plugins web.
Preinstalled 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 for simple custom processing.)
- EmptyPlug is a fully functional module, minus active code; it does nothing and serves as a template for new Plugin development.
- InterwikiPlugin is preinstalled but can be disabled or removed. Use it for quick linking to to remote sites:
TWiki:Plugins expands to TWiki:Plugins on TWiki.org. You can add your own shortcuts and URLs to the existing directory of Wiki-related and other probably useful sites.
| |
Installing Plugins | |
- 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.
- 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. | > > | Special Requests: Some Plugins need certain Perl modules to be preinstalled 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: SomePlugin ) and a separate development page. | > > | Each Plugin has a standard release page, located in the TWiki:Plugins web at TWiki.org. In addition to the documentation topic (SomePlugin ), there's 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 ).
| > > |
- Dev page: Post feature requests, bug reports and general dev comments; topic title ends in
Dev (SomePluginDev ).
| |
- User support: Post installation, how to use type questions (and answers, if you have them) in the TWiki:Support web.
| |
< < | Preinstalled Plugins | > > | On-Site Pretesting | | | |
< < | TWiki comes with three Plugins as part of the standard installation. | > > | To test new Plugins on your installation before making them public, you may want to use one of these two approaches: | | | |
< < |
- 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 for simple custom processing.)
| > > |
- Method 1: Create Production and a Test installation of TWiki.
- Duplicate the
twiki/bin and twiki/lib directories for the Test version, adjusting the paths in the new lib/TWiki.cfg , the twiki/data ; the twiki/templates and twiki/pub directories are shared.
- Test Plugins and other new features in the Test installation until you're satisfied.
- Copy the modified files to the Production installation. You can update a live TWiki installation and users won't even notice.
| | | |
< < |
- EmptyPlug is a fully functional Plugin module, minus any active code; it does nothing but serve as a template on demand.
| > > |
- 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.
| | | |
< < |
- 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 Plugins | | - SpreadSheetPlugin (any TWiki, 10197): Add spreadsheet calculation like
"$SUM( $ABOVE() )" to TWiki tables and other topic text - ActionTrackerPlugin (21 May 2007, $Rev: 14969 (20 Sep 2007) $): Adds support for action tags in topics, and automatic notification of action statuses
- AttachmentListPlugin (1.0.1, $Rev: 15921 (07 Dec 2007) $): Displays a formattable list of topic attachments, anywhere in a topic.
- BreadCrumbsPlugin (v1.00, $Rev: 13657 (08 May 2007) $): A flexible way to display breadcrumbs navigation
- CalendarPlugin (Dakar, 9113): Show a monthly calendar with highlighted events
- CommentPlugin (Dakar, 11359): Allows users to quickly post comments to a page without an edit/preview/save cycle
- CompareRevisionsAddonPlugin (Dakar, $Rev: 9808$):
- EditTablePlugin (any TWiki, 11646): Edit TWiki tables using edit fields, date pickers and drop down boxes
- FilterPlugin (1.40, $Rev: 15932 (07 Dec 2007) $): Substitute and extract information from content by using regular expressions
- FlexWebListPlugin (v1.21, $Rev: 16132 (03 Jan 2008) $): Flexible way to display hierarchical weblists
- FootNotePlugin (2.006): Footnotes are notes placed at the end of a topic.
- GluePlugin (2.00, $Rev: 15708 (23 Nov 2007) $): Enable markup to span multiple lines
- IfDefinedPlugin (v1.01, $Rev: 15157 (05 Oct 2007) $): Render content conditionally
- InterwikiPlugin (Dakar, $Rev: 11935$): Link
ExternalSite:Page text to external sites based on aliases defined in a rules topic - JQueryPlugin (v0.4, $Rev: 15608 (15 Nov 2007) $): jQuery JavaScript library for TWiki
- NatSkinPlugin (3.00-pre17, $Rev: 15581 (13 Nov 2007) $): Supplements the bare bones NatSkin theme for TWiki
- PreferencesPlugin (Dakar, 9839): Allows editing of preferences using fields predefined in a form
- RedDotPlugin (1.40, $Rev: 16137 (03 Jan 2008) $): Renders edit-links as little red dots
- RenderListPlugin (any TWiki, 1.034): Render bullet lists in a variety of formats
- SlideShowPlugin (Any TWiki, $Rev: 12847$): Create web based presentations based on topics with headings.
- SmiliesPlugin (Dakar, 8154): Render smilies as icons, like for
:-) or for = :eek:= - TablePlugin (1.020, 12339): Control attributes of tables and sorting of table columns
- TreeBrowserPlugin (v1.8): Renders a list as a collapsable/expandable tree.
- TreePlugin (1.7): Dynamic generation of TWiki topic trees
- TwistyPlugin (1.2.0, $Rev: 12154$): Twisty section JavaScript library to open/close content dynamically
- VotePlugin (1.33, $Rev: 14312 (01 Jul 2007) $): Simple way to count votes
- WysiwygPlugin (Dakar, 12422): Translator framework for Wysiwyg editors
| |
< < | TIP! To test new Plugins on your installation before making them public, you may want to use one of these two approaches: | > > |
The TWiki Plugin API | | | |
< < |
- Method 1: Create a Production and a Test installation of TWiki. The
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.
| > > | 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. | | | |
< < |
- 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.
| > > | Available Core Functions | | | |
< < |
Creating Plugins | > > | The lib/TWiki/Func.pm implements ALL official Plugin functions. Plugins should ONLY use functions published in this module. | | | |
< < | 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 Plugins by providing a programming interface for TWiki. | > > | 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. | | | |
< < | Anatomy of a Plugin | > > |
- For best performance, enable only the functions you really need. NOTE:
outsidePREHandler and insidePREHandler are particularly expensive.
| | | |
< < | A basic TWiki Plugin consists of two elements: | > > | Predefined Hooks | | | |
< < |
- a Perl module, ex:
YourPlugin.pm
- a documentation topic, ex:
YourPlugin.txt
| > > | In addition to TWiki core functions, Plugins can use predefined hooks, or call backs, listed in the lib/TWiki/Plugins/EmptyPlugin.pm module. | | | |
< < | 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. | > > |
- All but the initPlugin are disabled. To enable a call back, remove
DISABLE_ from the function name.
| | | |
< < | The Plugin API handles the details of connecting your Perl module with main TWiki code. When you're familiar with the Plugin API, you're ready to develop Plugins. | > > | Plugin Version Detection | | | |
< < |
TWiki Plugin API | > > | To eliminate the incompatibility problems bound to arise from active open Plugin development, a Plugin versioning system and an API GetVersion detection routine are provided for automatic compatibility checking. | | | |
< < | 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. | > > |
- All modules require a
$VERSION='0.000' variable, beginning at 1.000 .
| | | |
< < | The lib/TWiki/Func.pm implements ALL official Plugin functions. Plugins should ONLY use functions published in this module. | > > |
- The
initPlugin handler checks all dependencies and returns TRUE if the initialization is OK or FALSE if something went wrong.
- The Plugin initialization code does not register a Plugin that returns FALSE (or that has no
initPlugin handler).
| | | |
< < | 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. | > > |
-
$VERSION='1.000' is the current setting in TWiki::Plugins.pm and in the preinstalled system Plugins (DefaultPlugin? , EmptyPlugin, InterwikiPlugin).
| | | |
< < | 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.
| > > |
Creating Plugins | | | |
< < |
- For improve performance, enable only the functions you really need. NOTE:
outsidePREHandler and insidePREHandler are particularly expensive.
| > > | 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 Plugins by providing a programming interface for TWiki. | | The DefaultPlugin Alternative
- 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.
| |
> > | 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, you're ready to develop Plugins. | | Creating the Perl Module
Copy file (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 specs for more information. | |
- Attach the distribution zip file to the topic, ex:
YourPlugin.zip .
- 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.)
| |
< < | -- MikeMannix? - 26 Aug 2001 | > > | -- AndreaSterbini? - 29 May 2001
-- MikeMannix? - 01 Sep 2001 |
|
TWikiPlugins 9 - 01 Sep 2001 - Main.MikeMannix
|
|
TWiki Plugins | |
- 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 | > > | Preinstalled Plugins | | TWiki comes with three Plugins as part of the standard installation. | |
- 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 | > > | Managing Plugins | | Ideally, after you've installed a Plugin, 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 | > > | Setting Preferences | | Installed Plugins can be toggled on or off, site-wide or by web, through TWikiPreferences and individual WebPreferences: | |
-
- The settings can be retrieved as Preferences variables like
%<pluginname>_<var>% , ex: %DEFAULTPLUGIN_SHORTDESCRIPTION% shows the description of the DefaultPlugin.
| |
< < | List Active Plugins Automatically | > > | Listing Active Plugins | | 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.)
| |
- 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 | > > | Creating 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 Plugins by providing a programming interface for TWiki. | |
- For improve performance, enable only the functions you really need. NOTE:
outsidePREHandler and insidePREHandler are particularly expensive.
| |
< < | Customize the DefaultPlugin | > > | The DefaultPlugin Alternative | |
- 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 | > > | Creating the Perl Module | | Copy file (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 specs for more information.
| |
< < | Create a Plugin Documentation Topic | > > | Writing the 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.) To create a documentation topic: | |
| |
< < | Package a Plugin for Distribution | > > | Packaging for Distribution | | A minimum Plugin release consists of a Perl module with a WikiName that ends in Plugin , ex: YourPlugin.pm , and a documentation page with the same name(YourPlugin.txt ). | |
-
-
pub/TWiki/YourPlugin/uparrow.gif
| |
< < | Publish a Plugin for General Use | > > | Publishing for Public Use | | 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: |
|
TWikiPlugins 8 - 31 Aug 2001 - Main.MikeMannix
|
|
TWiki Plugins | |
< < | 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;
|
|
Revision 12 | r12 - 07 Sep 2001 - 10:11:02 - MikeMannix? |
Revision 11 | r11 - 02 Sep 2001 - 08:34:34 - AndreaSterbini? |
Revision 10 | r10 - 02 Sep 2001 - 01:11:03 - MikeMannix? |
Revision 9 | r9 - 01 Sep 2001 - 04:04:59 - MikeMannix? |
Revision 8 | r8 - 31 Aug 2001 - 06:05:43 - MikeMannix? |
Revision 7 | r7 - 27 Aug 2001 - 09:19:48 - MikeMannix? |
|
|
This site is powered by the TWiki collaboration platform. All material on this collaboration platform is the property of the contributing authors. All material marked as authored by Eben Moglen is available under the license terms CC-BY-SA version 4.
|
|