← Index
NYTProf Performance Profile   « line view »
For ./view
  Run on Fri Jul 31 19:05:14 2015
Reported on Fri Jul 31 19:08:08 2015

Filename/var/www/foswiki11/bin/LocalLib.cfg
StatementsExecuted 4 statements in 98µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11128µs65µsFoswiki::::BEGIN@5Foswiki::BEGIN@5
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1# See bottom of file for license and copyright information
2#
3# LocalLib.cfg: local path settings for Foswiki
4
5293µs2101µs
# spent 65µs (28+36) within Foswiki::BEGIN@5 which was called: # once (28µs+36µs) by main::BEGIN@6 at line 5
use vars qw( $foswikiLibPath $CPANBASE );
# spent 65µs making 1 call to Foswiki::BEGIN@5 # spent 36µs making 1 call to vars::import
6
7#development and debugging settings
8#$ENV{FOSWIKI_ASSERTS} = 1;
9#$ENV{FOSWIKI_MONITOR} = 1;
10
11# -------------- Path to lib directory containing Foswiki.pm.
12#
13# REQUIRED
14# The absolute path to the 'lib' directory in your installation..
15
1611µs$foswikiLibPath = "/var/www/foswiki11/lib";
17
18
19# -------------- Extra path components to include in @INC
20# OPTIONAL
21# If you need to use perl modules that are not installed in the standard
22# directories (e.g. you have downloaded extra modules for use with plugins)
23# then you can add the absolute paths to those modules below. You can list
24# as many directories as you want, each directory within quotes, and
25# directories separated by commas.
26
27# @localPerlLibPath = ( '/path/to/dir', '/path/to/another/dir', );
28
29
30# OPTIONAL
31# If you want to remove some paths from Foswiki @INC (e.g. you put modules
32# in different locations and want to quickly move them away while not
33# changing e.g. $foswikiLibPath) then add absolute paths to be removed below.
34# Do not use this to remove a system wide perl installation in favor of a
35# complete local perl installation, but change the shebang line of scripts
36# in foswiki/bin and foswiki/tools (see foswiki/tools/rewriteshebang.pl).
37# Please note the exact behaviour of "no lib" as described under:
38# http://perldoc.perl.org/lib.html#Deleting-directories-from-@INC
39# You can list as many directories as you want, each directory within
40# quotes, and directories separated by commas.
41
42# no lib ( '/path/to/dir', '/path/to/another/dir', );
43
44
45# HINTS
46# If you prefer to have each path on a single line then you could add a
47# linebreak instead of the spaces between the parentheses e.g.:
48# <above OPTIONAL setting> (
49# '/path/to/dir',
50# '/path/to/another/dir',
51# );
52
53
54# http://www.perl.com/pub/a/2002/04/10/mod_perl.html?page=3 has good advice
55# on installing CPAN modules without superuser privileges.
56# http://sial.org/howto/perl/life-with-cpan/non-root/ also provides a good
57# overview and especially mentions additional modules interesting for
58# non-root installations (e.g. App::perlbrew, local::lib, App::FatPacker,
59# App::cpanminus and other tools).
60
61
6214µs1; # Required for successful module loading
63__END__