]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/examples/apache/startup.pl
User activity tracking: ingress, auth.verify, and login agent
[Evergreen.git] / Open-ILS / examples / apache / startup.pl
1 #!/usr/bin/perl
2 use OpenSRF::AppSession;
3
4 # default ingress value for all Apache/mod_perl clients
5 OpenSRF::AppSession->ingress('apache'); 
6
7 use OpenILS::WWW::Exporter qw( /openils/conf/opensrf_core.xml );
8 use OpenILS::WWW::SuperCat qw( /openils/conf/opensrf_core.xml );
9 use OpenILS::WWW::AddedContent qw( /openils/conf/opensrf_core.xml );
10 use OpenILS::WWW::Proxy ('/openils/conf/opensrf_core.xml');
11 use OpenILS::WWW::Vandelay qw( /openils/conf/opensrf_core.xml );
12 use OpenILS::WWW::TemplateBatchBibUpdate qw( /openils/conf/opensrf_core.xml );
13 use OpenILS::WWW::EGWeb;
14 use OpenILS::WWW::PasswordReset ('/openils/conf/opensrf_core.xml');
15 use OpenILS::WWW::IDL2js ('/openils/conf/opensrf_core.xml');
16
17 # - Uncoment the following 2 lines to make use of the IP redirection code
18 # - The IP file should to contain a map with the following format:
19 # - actor.org_unit.shortname <start_ip> <end_ip>
20 # - e.g.  LIB123 10.0.0.1 10.0.0.254
21
22 #use OpenILS::WWW::Redirect qw(/openils/conf/opensrf_core.xml);
23 #OpenILS::WWW::Redirect->parse_ips_file('/openils/conf/lib_ips.txt');
24
25
26
27 1;
28