none
[openafs-wiki.git] / TWiki / TWikiPlugins.mdwn
1 <div>
2   <ul>
3     <li><a href="#TWiki Plugins"> TWiki Plugins</a><ul>
4         <li><a href="#Overview"> Overview</a></li>
5         <li><a href="#Preinstalled Plugins"> Preinstalled Plugins</a></li>
6         <li><a href="#Installing Plugins"> Installing Plugins</a><ul>
7             <li><a href="#On-Site Pretesting"> On-Site Pretesting</a></li>
8             <li><a href="#Checking that Plugins are Workin"> Checking that Plugins are Working on a Live Server</a></li>
9             <li><a href="#A Note on Plugin Performance"> A Note on Plugin Performance</a></li>
10           </ul>
11         </li>
12         <li><a href="#Managing Plugins"> Managing Plugins</a><ul>
13             <li><a href="#Setting Preferences"> Setting Preferences</a></li>
14             <li><a href="#Listing Active Plugins"> Listing Active Plugins</a></li>
15           </ul>
16         </li>
17         <li><a href="#The TWiki Plugin API"> The TWiki Plugin API</a><ul>
18             <li><a href="#Available Core Functions"> Available Core Functions</a></li>
19             <li><a href="#Predefined Hooks"> Predefined Hooks</a></li>
20             <li><a href="#Hints on Writing Fast Plugins"> Hints on Writing Fast Plugins</a></li>
21             <li><a href="#Plugin Version Detection"> Plugin Version Detection</a></li>
22           </ul>
23         </li>
24         <li><a href="#Creating Plugins"> Creating Plugins</a><ul>
25             <li><a href="#The _DefaultPlugin Alternative"> The DefaultPlugin Alternative</a></li>
26             <li><a href="#Anatomy of a Plugin"> Anatomy of a Plugin</a></li>
27             <li><a href="#Creating the Perl Module"> Creating the Perl Module </a></li>
28             <li><a href="#Writing the Documentation Topic"> Writing the Documentation Topic</a></li>
29             <li><a href="#Packaging for Distribution"> Packaging for Distribution</a></li>
30             <li><a href="#Publishing for Public Use"> Publishing for Public Use</a></li>
31           </ul>
32         </li>
33         <li><a href="#Recommended Storage of Plugin Da"> Recommended Storage of Plugin Data</a><ul>
34             <li><a href="#Where to store Plugin Internal D"> Where to store Plugin Internal Data</a></li>
35             <li><a href="#Where to Store Data for Topics u"> Where to Store Data for Topics using the Plugin</a></li>
36           </ul>
37         </li>
38       </ul>
39     </li>
40   </ul>
41 </div>
42
43 # <a name="TWiki Plugins"></a> TWiki Plugins
44
45 _Plug-in enhanced feature add-ons, with a Plugin API for developers_
46
47 ## <a name="Overview"></a> Overview
48
49 You can add Plugins to extend TWiki's functionality, without altering the core program code. A plug-in approach lets you:
50
51 - add virtually unlimited features while keeping the main TWiki code compact and efficient;
52 - heavily customize an installation and still do clean updates to new versions of TWiki;
53 - rapidly develop new TWiki functions in Perl using the Plugin API.
54
55 Everything to do with TWiki Plugins - demos, new releases, downloads, development, general discussion - is available at TWiki.org, in the ** TWiki:Plugins ** web.
56
57 ## <a name="Preinstalled Plugins"></a> Preinstalled Plugins
58
59 TWiki comes with a set of Plugins as part of the standard installation.
60
61 - [[DefaultPlugin]]: Optionally handles some legacy variables from older versions of TWiki. You can control this option from [[TWikiPreferences]]. (Perl programmers can also [[add rules|Main/WebHome#DefaultPluginAlt]] for simple custom processing.)
62 - [[EmptyPlugin]]: Is a fully functional module, minus active code; it does nothing and serves as a template for new Plugin development
63 - [[CommentPlugin]]: %COMMENTPLUGIN\_SHORTDESCRIPTION%
64 - [[InterwikiPlugin]]: Use it for shorthand linking to remote sites, ex: `TWiki:Plugins` expands to TWiki:Plugins on TWiki.org. You can edit the predefined set of of Wiki-related sites, and add your own
65 - [[EditTablePlugin]]: %EDITTABLEPLUGIN\_SHORTDESCRIPTION%
66 - [[RenderListPlugin]]: %RENDERLISTPLUGIN\_SHORTDESCRIPTION%
67 - [[SlideShowPlugin]]: %SLIDESHOWPLUGIN\_SHORTDESCRIPTION%
68 - [[SmiliesPlugin]]: %SMILIESPLUGIN\_SHORTDESCRIPTION%
69 - [[SpreadSheetPlugin]]: %SPREADSHEETPLUGIN\_SHORTDESCRIPTION%
70 - [[TablePlugin]]: %TABLEPLUGIN\_SHORTDESCRIPTION%
71
72 <a name="InstallPlugin"></a>
73
74 ## <a name="Installing Plugins"></a> Installing Plugins
75
76 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.
77
78 Most Plugins can be installed in three easy steps, with no programming skills required:
79
80 1. **Download** the zip file containing the Plugin, documentation, and any other required files, from TWiki:Plugins.
81 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.
82 3. **Check** the demo example on the Plugin topic: if it's working, the installation was fine!
83
84 **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.
85
86 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.
87
88 - **Doc page:** Read all available info about the Plugin; download the attached distribution files.
89 - **Dev page:** Post feature requests, bug reports and general dev comments; topic title ends in `Dev` (`SomePluginDev`).
90 - **User support:** Post installation, how to use type questions (and answers, if you have them) in the TWiki:Support web.
91
92 <a name="PreTesting"></a>
93
94 ### <a name="On-Site Pretesting"></a> On-Site Pretesting
95
96 To test new Plugins on your installation before making them public, you may want to use one of these two approaches:
97
98 - **Method 1:** Safely test on-the-fly by creating separate Production and Test branches in your live TWiki installation.
99   - **Duplicate** the `twiki/bin` and `twiki/lib` directories for the Test version, and adjust the paths in the new `lib/TWiki.cfg`. The following directories are shared: `twiki/data`, `twiki/templates` and `twiki/pub`.
100   - **Test** Plugins and other new features in the Test installation until you're satisfied.
101     - %X% If you modify topics using the new features, live users will likely see unfamiliar new META tags showing up on their pages - to avoid this, create and edit test-only topics to try out new features.
102   - **Copy** the modified files to the Production installation. You can update a TWiki installation live and users won't even notice.
103
104 - **Method 2:** List the Plugin being tested in the `DISABLEDPLUGINS` variable in [[TWikiPreferences]]. Redefine the `DISABLEDPLUGINS` variable in the `Sandbox` web and do the testing there.
105
106 ### <a name="Checking that Plugins are Workin"></a> Checking that Plugins are Working on a Live Server
107
108 [[InstalledPlugins]] shows which Plugins are: 1) installed, 2) loading properly and 3) what TWiki:Codev.PluginHandlers they invoke. Any failures are shown in the Errors section.
109
110 ### <a name="A Note on Plugin Performance"></a> A Note on Plugin Performance
111
112 The performance of the system depends on the number of Plugins installed and on the Plugin implementation. Some Plugins impose no measurable performance decrease, some do. For example, `outsidePREHandler` is an expensive callback function, or a Plugin might use many Perl libraries that need to be initialized with each page view (unless you run mod\_perl). It is recommended to measure the performance with and without a new Plugin. Example for Unix:%BR% `time wget -qO /dev/null http://www.dementia.org/twiki//view/TWiki/AbcPlugin`
113
114 In case you need to install an "expensive" Plugin and you need its functionality only in one web you can place the Plugin topic into that web. TWiki will initialize the Plugin only if the Plugin topic is found (which won't be the case for other webs.)
115
116 ## <a name="Managing Plugins"></a> Managing Plugins
117
118 When you finish [[installing a Plugin|Main/WebHome#InstallPlugin]], you should be able to read the user instructions and go. In fact, some Plugins require additional settings or offer extra options that you have to select. Also, you may want to make a Plugin available only in certain webs, or temporarily disable it. And may want to list all available Plugins in certain topics. You can handle all of these management tasks with simple procedures.
119
120 ### <a name="Setting Preferences"></a> Setting Preferences
121
122 Installed Plugins can be **toggled on or off**, site-wide or by web, through TWikiPreferences and individual WebPreferences:
123
124 - 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:
125   - `Set INSTALLEDPLUGINS = DefaultPlugin, ...`
126   - `Set DISABLEDPLUGINS = EmptyPlugin, ...`
127
128 **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.
129
130 **Plugin-specific settings** are done in individual Plugin topics. Two settings are standard for each Plugin:
131
132 1. One line description, used to form the bullets describing the Plugins in the [[TextFormattingRules]] topic:
133   - `Set SHORTDESCRIPTION = Blah blah woof woof.`
134 2. Debug Plugin, output can be seen in `data/debug.txt`. Set to 0=off or 1=on:
135   - `Set DEBUG = 0`
136
137 - The settings can be retrieved as Preferences variables like `%<pluginname>_<var>%`, ex: `%DEFAULTPLUGIN_SHORTDESCRIPTION%` shows the description of the DefaultPlugin.
138
139 ### <a name="Listing Active Plugins"></a> Listing Active Plugins
140
141 Plugin status variables let you list all active Plugins wherever needed. There are two list formats:
142
143 - The `%ACTIVATEDPLUGINS%` variable lists activated Plugins by name. (This variable is displayed in [[TWikiPreferences]] for debugging use.)
144 - 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]].
145
146 > **DEMO: Automatically List Active Plugins Using Variables**
147 >
148 > Using `%ACTIVATEDPLUGINS%`:<br /> On this TWiki site, the active Plugins are: [[SpreadSheetPlugin]], [[CommentPlugin]], [[EditTablePlugin]], [[InterwikiPlugin]], [[PreferencesPlugin]], [[SlideShowPlugin]], [[SmiliesPlugin]], [[TablePlugin]], [[TwistyPlugin]].
149 >
150 > Using <code>%PLUGINDESCRIPTIONS%</code>:<br /> You can use any of these active TWiki Plugins:
151 >
152 > - [[SpreadSheetPlugin]] <span>(any TWiki, 10197)</span>:
153 > - [[CommentPlugin]] <span>(Dakar, 11359)</span>: Allows users to quickly post comments to a page without an edit/preview/save cycle
154 > - [[EditTablePlugin]] <span>(any TWiki, 11646)</span>:
155 > - [[InterwikiPlugin]] <span>(Dakar, $Rev: 11935$)</span>:
156 > - [[PreferencesPlugin]] <span>(Dakar, 9839)</span>:
157 > - [[SlideShowPlugin]] <span>(Any TWiki, $Rev: 12847$)</span>:
158 > - [[SmiliesPlugin]] <span>(Dakar, 8154)</span>:
159 > - [[TablePlugin]] <span>(1.020, 12339)</span>:
160 > - [[TwistyPlugin]] <span>(1.2.0, $Rev: 12154$)</span>:
161
162 <a name="PluginAPI"></a>
163
164 ## <a name="The TWiki Plugin API"></a> The TWiki Plugin API
165
166 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 01-Sep-2001 release.
167
168 ### <a name="Available Core Functions"></a> Available Core Functions
169
170 The [[TWikiFuncModule]] (`lib/TWiki/Func.pm`) implements ALL official Plugin functions. Plugins should ONLY use functions published in this module.
171
172 %X% 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.
173
174 ### <a name="Predefined Hooks"></a> Predefined Hooks
175
176 In addition to TWiki core functions, Plugins can use **predefined hooks**, or **call backs**, listed in the `lib/TWiki/Plugins/EmptyPlugin.pm` module.
177
178 - All but the initPlugin are disabled. To enable a call back, remove `DISABLE_` from the function name.
179 - For best performance, enable only the functions you really need. NOTE: `outsidePREHandler` and `insidePREHandler` are particularly expensive.
180
181 Most Plugins use either the `commonTagsHandler` or `startRenderingHandler` for rendering tasks:
182
183 - `commonTagsHandler:` Use it to expand `%XYZPLUGIN%` and `%XYZPLUGIN{...}%` variables
184 - `startRenderingHandler:` Use it for your own rendering rules or to overload TWiki's internal rendering like `[[links]]`
185
186 TWiki:Codev/StepByStepRenderingOrder helps you decide which rendering handler to use.
187
188 ### <a name="Hints on Writing Fast Plugins"></a> Hints on Writing Fast Plugins
189
190 - Delay the Plugin initialization to the actual function which is handling the tag. This way all the expensive initialization is done only when needed.
191 - For example, use an `eval` block like:%BR% `eval { require IPC::Run }` %BR% `return "<font color=\"red\">SamplePlugin: Can't load required modules ($@)</font>" if $@;`
192 - You could return errors as strings to show what happened
193 - You can use a flag to avoid running the initialization twice
194
195 ### <a name="Plugin Version Detection"></a> Plugin Version Detection
196
197 To eliminate the incompatibility problems bound to arise from active open Plugin development, a Plugin versioning system is provided for automatic compatibility checking.
198
199 - All modules require a `$VERSION='0.000'` variable, beginning at `1.000`.
200
201 - The `initPlugin` handler should check all dependencies and return TRUE if the initialization is OK or FALSE if something went wrong.
202   - The Plugin initialization code does not register a Plugin that returns FALSE (or that has no `initPlugin` handler).
203
204 - `$TWiki::Plugins::VERSION` in the `TWiki::Plugins` module contains the TWiki Plugin API version, currently **1\.11**.
205   - You can also use the [[%PLUGINVERSION{}%|Main/TWikiVariables#VarPLUGINVERSION]] variable to query the Plugin API version or the version of installed Plugins.
206
207 <a name="CreatePlugins"></a>
208
209 ## <a name="Creating Plugins"></a> Creating Plugins
210
211 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.
212
213 <a name="DefaultPluginAlt"></a>
214
215 ### <a name="The _DefaultPlugin Alternative"></a> The DefaultPlugin Alternative
216
217 - **DefaultPlugin** can handle some outdated TWiki variables, found, for example, in sites recently updated from an old version. Settings are in [[DefaultPlugin]] topic. You can also add your own simple custom processing rules here, though in all but very simple cases, writing a new Plugin is preferable.
218
219 ### <a name="Anatomy of a Plugin"></a> Anatomy of a Plugin
220
221 A basic TWiki Plugin consists of two elements:
222
223 - a Perl module, ex: `MyFirstPlugin.pm`
224 - a documentation topic, ex: `MyFirstPlugin.txt`
225
226 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 `MyFirstPlugin` topic. Other needed Perl code is best placed in a `lib/TWiki/Plugins/MyFirstPlugin/` directory.
227
228 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.
229
230 ### <a name="Creating the Perl Module"></a> Creating the Perl Module
231
232 Copy file `lib/TWiki/Plugins/EmptyPlugin.pm` to `<name>Plugin.pm`. The `EmptyPlugin.pm` module contains mostly empty functions, 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.
233
234 If your Plugin uses its own modules and objects, you must include the name of the Plugin in the package name. For example, write `Package MyFirstPlugin::Attrs;` instead of just `Package Attrs;`. Then call it using:
235
236       use TWiki::Plugins::MyFirstPlugin::Attrs;
237       $var = MyFirstPlugin::Attrs->new();
238
239 <a name="CreatePluginTopic"></a>
240
241 ### <a name="Writing the Documentation Topic"></a> Writing the Documentation Topic
242
243 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:
244
245 1. **Copy** the Plugin topic template from TWiki.org. To copy the text, go to TWiki:Plugins/PluginPackage and:
246   - enter the Plugin name in the "How to Create a Plugin" section
247   - click Create
248   - select all in the Edit box &amp; copy
249   - Cancel the edit
250   - go back to your site to the TWiki web
251   - In the [[GoBox]] enter your Plugin name, for example `MyFirstPlugin`, press enter and create the new topic
252   - paste &amp; save new Plugin topic on your site
253 2. **Customize** your Plugin topic.
254   - In case you plan to publish your Plugin at TWiki.org, use Interwiki names for author names, like TWiki:Main/admin.
255 3. **Save** your topic, for use in [[packaging|Main/WebHome#CreatePluginPackage]] and [[publishing|Main/WebHome#PublishPlugin]] your Plugin.
256
257 > **OUTLINE: Doc Topic Contents**
258 >
259 > <br />
260 >
261 > Check the Plugins web on TWiki.org for the latest Plugin doc topic template. Here's a quick overview of what's covered:
262 >
263 > **Syntax Rules:** &lt;_Describe any special text formatting that will be rendered._&gt;"
264 >
265 > **Example:** &lt;_Include an example of the Plugin in action. Possibly include a static HTML version of the example to compare if the installation was a success!_&gt;"
266 >
267 > **Plugin Settings:** &lt;_Description and settings for custom Plugin %VARIABLES%, and those required by TWiki._&gt;"
268 >
269 > - **Plugins Preferences** &lt;_If user settings are needed, explain... Entering values works exactly like [[TWikiPreferences]] and [[WebPreferences]]: six (6) spaces and then:_&gt;"
270 >   - **Set &lt;_EXAMPLE = value added_&gt;**
271 >
272 > **Plugin Installation Instructions:** &lt;_Step-by-step set-up guide, user help, whatever it takes to install and run, goes here._&gt;"
273 >
274 > **Plugin Info:** &lt;_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._&gt;"
275
276 <a name="CreatePluginPackage"></a>
277
278 ### <a name="Packaging for Distribution"></a> Packaging for Distribution
279
280 A minimum Plugin release consists of a Perl module with a [[WikiName]] that ends in `Plugin`, ex: `MyFirstPlugin.pm`, and a documentation page with the same name(`MyFirstPlugin.txt`).
281
282 1. Distribute the Plugin files in a directory structure that mirrors TWiki. If your Plugin uses additional files, include them ALL:
283   - `lib/TWiki/Plugins/MyFirstPlugin.pm`
284   - `data/TWiki/MyFirstPlugin.txt`
285   - `pub/TWiki/MyFirstPlugin/uparrow.gif` [a required graphic]
286 2. Create a zip archive with the Plugin name (`MyFirstPlugin.zip`) and add the entire directory structure from Step 1. The archive should look like this:
287   - `lib/TWiki/Plugins/MyFirstPlugin.pm`
288   - `data/TWiki/MyFirstPlugin.txt`
289   - `pub/TWiki/MyFirstPlugin/uparrow.gif`
290
291 <a name="PublishPlugin"></a>
292
293 ### <a name="Publishing for Public Use"></a> Publishing for Public Use
294
295 You can release your tested, packaged Plugin to the TWiki community through the TWiki:Plugins web. All Plugins submitted to TWiki.org are available for download and further development in TWiki:Plugins/PluginPackage. Publish your Plugin in these steps:
296
297 1. **Post** the Plugin documentation topic in the TWiki:Plugins/PluginPackage:
298   - enter the Plugin name in the "How to Create a Plugin" section, for example `MyFirstPlugin`
299   - paste in the topic text from [[Creating Plugin Documentation|Main/WebHome#CreatePluginTopic]] and save
300 2. **Attach** the distribution zip file to the topic, ex: `MyFirstPlugin.zip`
301 3. **Link** from the doc page to a new, blank page named after the Plugin, and ending in `Dev`, ex: `MyFirstPluginDev`. This is the discussion page for future development. (User support for Plugins is handled in TWiki:Support.)
302 4. **Put** the Plugin into the CVS repository, see TWiki:Plugins/ReadmeFirst (optional)
303
304 Thank you very much for sharing your Plugin with the TWiki community :-)
305
306 <a name="RecommendedStorageOfPluginData"></a>
307
308 ## <a name="Recommended Storage of Plugin Da"></a> Recommended Storage of Plugin Data
309
310 Plugins sometimes need to store data. This can be Plugin internal data like cache data, or generated data for the browser like images. The following is a recommendation where to store the data.
311
312 ### <a name="Where to store Plugin Internal D"></a> Where to store Plugin Internal Data
313
314 In case the Plugin generates data just for internal use, or data which is not specific to a topic, store it in the Plugin's attachment directory.
315
316 - The Plugin's attachment directory is `pubdir/Installweb/FooBarPlugin`
317   - `Installweb` refers to the name of the web where the Plugin is installed
318 - The Plugin's attachment URL is `%PUBURL%/Installweb/FooBarPlugin`
319 - The filename should start with an underscore, followed by an identifier, e.g. `_any_name.ext`
320   - The leading underscore avoids a nameclash with files attached to the Plugin topic
321   - Use only alphanumeric characters, underscores and periods to avoid platform dependency issues and URL issues
322   - Do not use subdirectories (rename and delete would fail)
323 - Use Plugin API functions documented in [[TWikiFuncModule]] to ensure portability:
324   - Use `getPubDir()` to get the attachment root directory
325   - Use `getUrlHost()` and `getPubUrlPath()` to build the URL in case you create content for the browser
326   - Use `$installWeb` to get the name of the web where the Plugin is installed
327   - Create the web directory and topic attachment directory if needed
328 - Hint: Package the Plugin at least with one file attachment. This ensures that the attachment directory already exists
329
330 ### <a name="Where to Store Data for Topics u"></a> Where to Store Data for Topics using the Plugin
331
332 In case the Plugin generates data which is specific to a topic, store it in the topic's attachment directory.
333
334 - The topic's attachment directory is `pubdir/Webname/TopicName`
335 - The topic's attachment URL is `%PUBURL%/Webname/TopicName`
336 - The filename should start with an underscore, followed by the Plugin name, an underscore and an identifier, e.g. `_FooBarPlugin_any_name.ext`
337   - The leading underscore avoids a nameclash with files attached to the same topic
338   - Use only alphanumeric characters, underscores and periods to avoid platform dependency issues and URL issues
339   - Do not use subdirectories (rename and delete would fail)
340 - Use Plugin API functions documented in [[TWikiFuncModule]] to ensure portability:
341   - Use `getPubDir()` to get the attachment root directory
342   - Use `getUrlHost()` and `getPubUrlPath()` to build the URL in case you create content for the browser
343
344 Example code to build the file name:
345
346     sub _make_filename
347     {
348         my ( $web, $topic, $name ) = @_;
349
350         # Create web directory "pub/$web" if needed
351         my $dir = TWiki::Func::getPubDir() . "/$web";
352         unless( -e "$dir" ) {
353             umask( 002 );
354             mkdir( $dir, 0775 );
355         }
356         # Create topic directory "pub/$web/$topic" if needed
357         $dir .= "/$topic";
358         unless( -e "$dir" ) {
359             umask( 002 );
360             mkdir( $dir, 0775 );
361         }
362         return "$dir/_FooBarPlugin_$name";
363     }
364
365 -- TWiki:Main/PeterThoeny - 14 Aug 2004 %BR% -- TWiki:Main/AndreaSterbini - 29 May 2001 %BR% -- TWiki:Main/MikeMannix - 03 Dec 2001