# History: Theory and Culture # htc.pm: History: Theory and Culture # Copyright (c) 2003-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 # First written: 2003-04-06 package Selima::htc; 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::htc::Config; push @EXPORT, @Selima::htc::Config::EXPORT; use Selima::htc::DataVars qw(:all); push @EXPORT, @Selima::htc::DataVars::EXPORT_OK; use Selima::htc::HTML; push @EXPORT, @Selima::htc::HTML::EXPORT; use Selima::htc::Items; push @EXPORT, @Selima::htc::Items::EXPORT; use Selima::htc::Rebuild; push @EXPORT, @Selima::htc::Rebuild::EXPORT; # Import our site-specific classess use Selima::htc::Checker::Guestbook; use Selima::htc::Checker::Guestbook::Public; use Selima::htc::Checker::Newslet; use Selima::htc::Checker::NLIndex; use Selima::htc::Checker::NLArt; use Selima::htc::Form::Guestbook; use Selima::htc::Form::Guestbook::Public; use Selima::htc::Form::Newslet; use Selima::htc::Form::NLIndex; use Selima::htc::Form::NLArt; use Selima::htc::L10N; use Selima::htc::List::Guestbook; use Selima::htc::List::Guestbook::Public; use Selima::htc::List::Newslets; use Selima::htc::List::NLIndex; use Selima::htc::List::NLArts; use Selima::htc::List::Search; use Selima::htc::Processor::Guestbook::Public; use Selima::htc::Processor::Newslet; use Selima::htc::Processor::NLIndex; use Selima::htc::Processor::NLArt; # Import our common modules use Selima; push @EXPORT, @Selima::EXPORT; @EXPORT_OK = @EXPORT; return 1;