71 lines
2.1 KiB
Perl
71 lines
2.1 KiB
Perl
# Mandy Wu's Website
|
|
# emandy.pm: Mandy Wu's Website.
|
|
|
|
# Copyright (c) 2006-2018 imacat.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# Author: imacat <imacat@mail.imacat.idv.tw>
|
|
# First written: 2006-11-14
|
|
|
|
package Selima::emandy;
|
|
use 5.008;
|
|
use strict;
|
|
use warnings;
|
|
use base qw(Exporter);
|
|
use vars qw(@EXPORT @EXPORT_OK);
|
|
@EXPORT = qw();
|
|
|
|
# Import our site-specific subroutines
|
|
use Selima::emandy::Config;
|
|
push @EXPORT, @Selima::emandy::Config::EXPORT;
|
|
use Selima::emandy::DataVars qw(:all);
|
|
push @EXPORT, @Selima::emandy::DataVars::EXPORT_OK;
|
|
use Selima::emandy::HTML;
|
|
push @EXPORT, @Selima::emandy::HTML::EXPORT;
|
|
use Selima::emandy::Items;
|
|
push @EXPORT, @Selima::emandy::Items::EXPORT;
|
|
use Selima::emandy::Rebuild;
|
|
push @EXPORT, @Selima::emandy::Rebuild::EXPORT;
|
|
|
|
# Import our site-specific classess
|
|
use Selima::emandy::Checker::Book;
|
|
use Selima::emandy::Checker::Legend;
|
|
use Selima::emandy::Checker::MtrlType;
|
|
use Selima::emandy::Checker::Material;
|
|
use Selima::emandy::Form::Book;
|
|
use Selima::emandy::Form::Legend;
|
|
use Selima::emandy::Form::MtrlType;
|
|
use Selima::emandy::Form::Material;
|
|
use Selima::emandy::L10N;
|
|
use Selima::emandy::List::Books;
|
|
use Selima::emandy::List::Books::NotToBorrow;
|
|
use Selima::emandy::List::Books::ToBorrow;
|
|
use Selima::emandy::List::Legend;
|
|
use Selima::emandy::List::Legend::Public;
|
|
use Selima::emandy::List::MtrlType;
|
|
use Selima::emandy::List::Material;
|
|
use Selima::emandy::List::Search;
|
|
use Selima::emandy::Processor::Book;
|
|
use Selima::emandy::Processor::Legend;
|
|
use Selima::emandy::Processor::MtrlType;
|
|
use Selima::emandy::Processor::Material;
|
|
|
|
# Import our common modules
|
|
use Selima;
|
|
push @EXPORT, @Selima::EXPORT;
|
|
|
|
@EXPORT_OK = @EXPORT;
|
|
|
|
return 1;
|