- Timestamp:
- 04/15/09 16:48:29 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SpreadSheetPlugin/lib/Foswiki/Plugins/SpreadSheetPlugin.pm
r3328 r3448 28 28 # ========================= 29 29 use vars qw( 30 $web $topic $user $installWeb $ VERSION $RELEASE $debug $skipInclude $doInit30 $web $topic $user $installWeb $debug $skipInclude $doInit 31 31 ); 32 32 33 # This should always be $Rev: 13748 $ 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: 13748 $'; 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 = '29 Mar 2009'; 33 our $VERSION = '$Rev: 13748 $'; 34 our $RELEASE = '29 Mar 2009'; 35 our $NO_PREFS_IN_TOPIC = 1; 42 36 43 37 $doInit = 0; … … 55 49 56 50 # Get plugin debug flag 57 $debug = Foswiki::Func::getPreferencesFlag( "SPREADSHEETPLUGIN_DEBUG" ) ;51 $debug = Foswiki::Func::getPreferencesFlag( "SPREADSHEETPLUGIN_DEBUG" ) || 0; 58 52 59 53 # Flag to skip calc if in include 60 $skipInclude = Foswiki::Func::getPreferencesFlag( "SPREADSHEETPLUGIN_SKIPINCLUDE" ) ;54 $skipInclude = Foswiki::Func::getPreferencesFlag( "SPREADSHEETPLUGIN_SKIPINCLUDE" ) || 1; 61 55 62 56 # Plugin correctly initialized
Note: See TracChangeset
for help on using the changeset viewer.
