1Kwiki::Attachments(3) User Contributed Perl DocumentationKwiki::Attachments(3)
2
3
4
6 Kwiki::Attachments - Kwiki Page Attachments Plugin
7
9 1. Install Kwiki::Attachments
10 2. Run 'kwiki -add Kwiki::Attachments'
11
13 General
14
15 Kwiki::Attachments gives a Kwiki wiki the ability to upload, store and
16 manage file attachments on any page. By default, if you have an image
17 creation module such as Imager or Image::Magick installed, then a
18 thumbnail will be created for every supported image file type that is
19 uploaded. Thumbnails are displayed on the attachments page, and can
20 also be displayed on wiki pages via the wafl directives described in
21 the next paragraph. The thumbnail files have "thumb_" prepended to the
22 original filename and are not displayed separately in the attachment
23 page or widget. For this reason, you cannot upload files beginning with
24 "thumb_".
25
26 WAFL
27
28 This module provides 3 wafl tags which can be used to link to or dis‐
29 play attachments in a Kwiki page.
30
31 * "{file:[page/]filename}" creates a link to attachment filename.
32 * "{img:[page/]filename}" displays attachment filename.
33 * "{thumb:[page/]filename}" displays the thumbnail for attachment file‐
34 name.
35
36 Configuration Options
37
38 [kwiki_base_dir]/config/attachments.yaml
39
40 * attachments_skip: [regular_expression]
41 Kwiki::Attachments may be configured to reject the upload of files
42 with names matched by the given regular expression. By default, it
43 is set to reject files beginning with "thumb_" or "." and those
44 ending with "~" or ".bak".
45
46 * make_thumbnails: [on⎪off]
47 This flag controls whether thumbnails are created from uploaded
48 image files. It is set to 'on' by default.
49
50 * im_override: [on⎪off]
51 If both Imager.pm and Image::Magick.pm are available,
52 Kwiki::Attachments uses Imager, unless im_override is set to 'on'.
53 This parameter has no effect if only one of the two image manipula‐
54 tion modules is installed. It is set to 'off' by default.
55
57 Sue Spence <sue_cpan@pennine.com>
58
59 This module is based almost entirely on work by Eric Lowry
60 <eric@clubyo.com> and Brian Ingerson <INGY@cpan.org>
61
63 Copyright (c) 2005. Sue Spence. All rights reserved.
64
65 This program is free software; you can redistribute it and/or modify it
66 under the same terms as Perl itself.
67
68 See http://www.perl.com/perl/misc/Artistic.html
69
70
71
72perl v5.8.8 2005-09-11 Kwiki::Attachments(3)