projects
/
irspy-moved-to-github.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c0f0e22
)
Remove hardwired "use lib" path -- now taken from Apache config.
author
Mike Taylor
<mike@indexdata.com>
Thu, 28 Sep 2006 16:03:08 +0000
(16:03 +0000)
committer
Mike Taylor
<mike@indexdata.com>
Thu, 28 Sep 2006 16:03:08 +0000
(16:03 +0000)
web/htdocs/chrome/layout.mc
patch
|
blob
|
history
diff --git
a/web/htdocs/chrome/layout.mc
b/web/htdocs/chrome/layout.mc
index
00db5f2
..
1b4dd20
100644
(file)
--- a/
web/htdocs/chrome/layout.mc
+++ b/
web/htdocs/chrome/layout.mc
@@
-1,11
+1,15
@@
-%# $Id: layout.mc,v 1.8 2006-09-26 09:30:28 mike Exp $
+%# $Id: layout.mc,v 1.9 2006-09-28 16:03:08 mike Exp $
<%args>
$debug => undef
$title
$component
</%args>
<%once>
-use lib "/usr/local/src/cvs/irspy/lib";
+BEGIN {
+ use vars qw($LIBDIR);
+ $LIBDIR = $r->dir_config("IRSpyLibDir");
+}
+use lib $LIBDIR;
use ZOOM::IRSpy::Web;
use ZOOM::IRSpy::Record qw(xml_encode);
</%once>