Ignore:
Timestamp:
04/16/09 10:19:19 (3 years ago)
Author:
CrawfordCurrie
Message:

Item1383: removed support for settings in the plugin topic

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/EditTablePlugin/lib/Foswiki/Plugins/EditTablePlugin.pm

    r3283 r3456  
    2323use strict; 
    2424 
    25 # This should always be $Rev$ so that Foswiki can determine the checked-in 
    26 # status of the plugin. It is used by the build automation tools, so 
    27 # you should leave it alone. 
    2825our $VERSION = '$Rev$'; 
    29  
    30 # This is a free-form string you can use to "name" your own plugin version. 
    31 # It is *not* used by the build automation tools, but is reported as part 
    32 # of the version number in PLUGINDESCRIPTIONS. 
    3326our $RELEASE = '4.21'; 
    3427 
     
    3730our $ENCODE_END   = '--EditTableEncodeEnd--'; 
    3831our $ASSET_URL    = '%PUBURL%/%SYSTEMWEB%/EditTablePlugin'; 
     32our $NO_PREFS_IN_TOPIC = 1; 
     33our $SHORTDESCRIPTION = 'Edit tables using edit fields, date pickers and drop down boxes'; 
    3934our $web; 
    4035our $topic; 
     
    6459    $debug = Foswiki::Func::getPreferencesFlag('EDITTABLEPLUGIN_DEBUG'); 
    6560    $usesJavascriptInterface = 
    66       Foswiki::Func::getPreferencesFlag('EDITTABLEPLUGIN_JAVASCRIPTINTERFACE'); 
     61      Foswiki::Func::getPreferencesFlag('EDITTABLEPLUGIN_JAVASCRIPTINTERFACE') 
     62          || 1; 
    6763    $viewModeHeaderDone = 0; 
    6864    $editModeHeaderDone = 0; 
Note: See TracChangeset for help on using the changeset viewer.