chiark / gitweb /
Actually export relevant stuff from CommodsWeb to make it work
[ypp-sc-tools.web-live.git] / yarrg / CommodsWeb.pm
1 # This is part of ypp-sc-tools, a set of third-party tools for assisting
2 # players of Yohoho Puzzle Pirates.
3 #
4 # Copyright (C) 2009 Ian Jackson <ijackson@chiark.greenend.org.uk>
5 #
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 #
19 # Yohoho and Puzzle Pirates are probably trademarks of Three Rings and
20 # are used without permission.  This program is not endorsed or
21 # sponsored by Three Rings.
22
23 # This package is used by the Mason scripts in yarrg/web/.
24 # We look for a symlink DATA to the actual data to use, so that
25 # the data uploader and website displayer can use different code.
26
27 package CommodsWeb;
28
29 use strict;
30 use warnings;
31
32 use DBI;
33 use POSIX;
34
35 use Commods;
36 use CommodsDatabase;
37
38 BEGIN {
39     use Exporter ();
40     our ($VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS);
41     $VERSION     = 1.00;
42     @ISA         = qw(Exporter);
43     @EXPORT      = qw($dbh &db_setocean &db_connect &db_doall);
44     %EXPORT_TAGS = ( );
45
46     @EXPORT_OK   = qw();
47 }
48
49 for my $dir (@INC) {
50     if ($dir =~ m/\.perl-lib$/) {
51         db_setdatadir("$dir/DATA");
52         last;
53     }
54 }
55
56 1;