]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/examples/apache/startup.pl
Template Toolkit OPAC
[working/Evergreen.git] / Open-ILS / examples / apache / startup.pl
1 #!/usr/bin/perl
2 use lib qw( /openils/lib/perl5 ); 
3 use OpenILS::WWW::Exporter qw( /openils/conf/opensrf_core.xml );
4 use OpenILS::WWW::SuperCat qw( /openils/conf/opensrf_core.xml );
5 use OpenILS::WWW::AddedContent qw( /openils/conf/opensrf_core.xml );
6 use OpenILS::WWW::Proxy ('/openils/conf/opensrf_core.xml');
7 use OpenILS::WWW::Vandelay qw( /openils/conf/opensrf_core.xml );
8 use OpenILS::WWW::TemplateBatchBibUpdate qw( /openils/conf/opensrf_core.xml );
9 use OpenILS::WWW::EGWeb ('/openils/conf/oils_web.xml');
10 use OpenILS::WWW::PasswordReset ('/openils/conf/opensrf_core.xml');
11 use OpenILS::WWW::IDL2js ('/openils/conf/opensrf_core.xml');
12
13 # - Uncoment the following 2 lines to make use of the IP redirection code
14 # - The IP file should to contain a map with the following format:
15 # - actor.org_unit.shortname <start_ip> <end_ip>
16 # - e.g.  LIB123 10.0.0.1 10.0.0.254
17
18 #use OpenILS::WWW::Redirect qw(/openils/conf/opensrf_core.xml);
19 #OpenILS::WWW::Redirect->parse_ips_file('/openils/conf/lib_ips.txt');
20
21
22
23 1;
24