1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/bin/LocalLib.cfg.txt Sat Jan 26 15:50:53 2008 +0100
1.3 @@ -0,0 +1,42 @@
1.4 +# TWiki Enterprise Collaboration Platform, http://TWiki.org/
1.5 +#
1.6 +# This program is free software; you can redistribute it and/or
1.7 +# modify it under the terms of the GNU General Public License
1.8 +# as published by the Free Software Foundation; either version 2
1.9 +# of the License, or (at your option) any later version. For
1.10 +# more details read LICENSE in the root of this distribution.
1.11 +#
1.12 +# This program is distributed in the hope that it will be useful,
1.13 +# but WITHOUT ANY WARRANTY; without even the implied warranty of
1.14 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
1.15 +#
1.16 +# LocalLib.cfg: local path settings for TWiki
1.17 +
1.18 +use vars qw( $twikiLibPath $CPANBASE );
1.19 +
1.20 +#development and debugging settings
1.21 +#$ENV{TWIKI_ASSERTS} = 1;
1.22 +#$ENV{TWIKI_MONITOR} = 1;
1.23 +
1.24 +# -------------- Path to lib directory containing TWiki.pm.
1.25 +#
1.26 +# REQUIRED
1.27 +# The absolute path to the 'lib' directory in your installation..
1.28 +
1.29 +$twikiLibPath = "/absolute/path/to/your/lib";
1.30 +
1.31 +
1.32 +# -------------- Extra path components to include in @INC
1.33 +# OPTIONAL
1.34 +# If you need to use perl modules that are not installed in the standard
1.35 +# directories (e.g. you have downloaded extra modules for use with plugins)
1.36 +# then you can add the absolute paths to those modules below. You can list
1.37 +# as many directories as you want, separated by commas.
1.38 +
1.39 +# @localPerlLibPath = ( '/path/to/dir' );
1.40 +
1.41 +# http://www.perl.com/pub/a/2002/04/10/mod_perl.html?page=3 has good advice
1.42 +# on installing CPAN modules without superuser privileges.
1.43 +
1.44 +
1.45 +1; # Required for successful module loading