# # TWiki WikiClone ($wikiversion has version info) # # Copyright (C) 2000-2001 Andrea Sterbini, a.sterbini@flashnet.it # Copyright (C) 2001 Peter Thoeny, Peter@Thoeny.com # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details, published at # http://www.gnu.org/copyleft/gpl.html # # ========================= # # This is an empty TWiki plugin. Use it as a template # for your own plugins; see TWiki.TWikiPlugins for details. # # Each plugin is a package that contains the subs: # # initPlugin ( $topic, $web, $user, $installWeb ) # commonTagsHandler ( $text, $topic, $web ) # startRenderingHandler( $text, $web ) # outsidePREHandler ( $text ) # insidePREHandler ( $text ) # endRenderingHandler ( $text ) # # initPlugin is required, all other are optional. # For increased performance, all handlers except initPlugin are # disabled. To enable a handler remove the leading DISABLE_ from # the function name. # # NOTE: To interact with TWiki use the official TWiki functions # in the &TWiki::Func module. Do not reference any functions or # variables elsewhere in TWiki!! # ========================= package TWiki::Plugins::JobTicketPlugin; # change the package name!!! # ========================= use vars qw( $web $topic $user $installWeb $VERSION $debug $exampleCfgVar ); $VERSION = '1.000'; # ========================= sub initPlugin { ( $topic, $web, $user, $installWeb ) = @_; # check for Plugins.pm versions if( $TWiki::Plugins::VERSION < 1 ) { &TWiki::Func::writeWarning( "Version mismatch between JobTicketPlugin and Plugins.pm" ); return 0; } # Get plugin preferences, the variable defined by: * Set EXAMPLE = ... $exampleCfgVar = &TWiki::Prefs::getPreferencesValue( "JOBTICKETPLUGIN_EXAMPLE" ) || "default"; # Get plugin debug flag $debug = &TWiki::Func::getPreferencesFlag( "JOBTICKETPLUGIN_DEBUG" ); # Plugin correctly initialized &TWiki::Func::writeDebug( "- TWiki::Plugins::JobTicketPlugin::initPlugin( $web.$topic ) is OK" ) if $debug; return 1; } ######## CUSTOM ######### sub handleKeywords { my @keywords; my $linkreturn; my ( $attributes ) = @_; my $formtopic = &TWiki::extractNameValuePair( $attributes, "formtopic" ); my $formfield = &TWiki::extractNameValuePair( $attributes, "formfield" ); my $raw = &TWiki::Store::readTopicRaw( $web, $formtopic ); @lines = split( /\n/, $raw ); foreach $line ( @lines ) { if ($line =~ /$formfield/) { $line =~ s/^\s*\|//o ; # Remove first | on line my ( $title, $type, $size, $vals, $tooltip ) = split( /\|/, $line ); $keywords = $vals; } } @keywords = split(/,/,$keywords); foreach $val (@keywords) { $val =~ s/^\s+|\s+$//g; $valsafe = $val; $valsafe =~ s/\s/%20/g; $linktext .= "