Changeset 3447
Legend:
- Unmodified
- Added
- Removed
-
trunk/InterwikiPlugin/lib/Foswiki/Plugins/InterwikiPlugin.pm
r3444 r3447 44 44 our $RELEASE = '15 Apr 2009'; 45 45 our $NO_PREFS_IN_TOPIC = 1; 46 our $SHORTDESCRIPTION = 'Link ExternalSite:Page text to external sites based on aliases defined in a rules topic'; 46 47 47 48 our $interLinkFormat; -
trunk/PreferencesPlugin/data/System/PreferencesPlugin.txt
r3416 r3447 1 %META:TOPICINFO{author="ProjectContributor" date="1115527529" format="1.0" version="$Rev$"}%2 1 ---+!! <nop>%TOPIC% 3 2 … … 22 21 * =%<nop>EDITPREFERENCES{ "%<nop>SYSTEMWEB%.DefaultPreferencesForm" }%= 23 22 24 ---++ Plugin Settings 25 * One line description, shown in the %SYSTEMWEB%.TextFormattingRules topic: 23 <!-- 26 24 * Set SHORTDESCRIPTION = Allows editing of preferences using fields predefined in a form 25 --> 27 26 28 27 ---++ Plugin Installation Instructions … … 45 44 | 08 May 2005: | Add plugin preference to define default input length | 46 45 | 07 May 2005: | Initial version | 47 | Foswiki Dependency: | $Foswiki::Plugins::VERSION 1.026 |48 | CPAN Dependencies: | none |49 | Other Dependencies: | none |50 | Perl Version: | 5.008 |51 46 | Plugin Home: | http://foswiki.org/Extensions/%TOPIC% | 52 47 | Support: | http://foswiki.org/Support/%TOPIC% | -
trunk/PreferencesPlugin/lib/Foswiki/Plugins/PreferencesPlugin.pm
r1493 r3447 26 26 use strict; 27 27 28 require Foswiki::Func; # The plugins API 29 require Foswiki::Plugins; # For the API version 30 31 use vars qw( $VERSION $RELEASE @shelter ); 32 33 # This should always be $Rev$ so that Foswiki can determine the checked-in 34 # status of the plugin. It is used by the build automation tools, so 35 # you should leave it alone. 36 $VERSION = '$Rev$'; 37 38 # This is a free-form string you can use to "name" your own plugin version. 39 # It is *not* used by the build automation tools, but is reported as part 40 # of the version number in PLUGINDESCRIPTIONS. 41 $RELEASE = 'Foswiki-1.0'; 28 use Foswiki::Func (); # The plugins API 29 use Foswiki::Plugins (); # For the API version 30 31 use vars qw( @shelter ); 32 33 our $VERSION = '$Rev$'; 34 our $RELEASE = 'Foswiki-1.0'; 35 our $SHORTDESCRIPTION = 'Allows editing of preferences using fields predefined in a form'; 36 our $NO_PREFS_IN_TOPIC = 1; 42 37 43 38 my $MARKER = "\007"; … … 86 81 if ( $action eq 'edit' ) { 87 82 Foswiki::Func::setTopicEditLock( $web, $topic, 1 ); 88 83 89 84 # Replace setting values by form fields but not inside comments Item4816 90 85 my $outtext = ''; … … 102 97 } 103 98 $_[0] = $outtext; 104 99 105 100 $_[0] =~ s/%EDITPREFERENCES({.*?})?%/ 106 101 _generateControlButtons($web, $topic)/ge; -
trunk/SmiliesPlugin/lib/Foswiki/Plugins/SmiliesPlugin.pm
r3446 r3447 33 33 our $RELEASE = '03 Apr 2009'; 34 34 our $NO_PREFS_IN_TOPIC = 1; 35 our $SHORTDESCRIPTION = 'Render smilies like :-) as icons'; 35 36 36 37 sub initPlugin {
Note: See TracChangeset
for help on using the changeset viewer.
