f1afbb56f2
- templates are expected to be found in INCLUDESDIR/templates/catalogue/searchresults/default.tmpl - Works with default Search.pm from cvs
95 lines
2.4 KiB
Perl
Executable file
95 lines
2.4 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
use HTML::Template;
|
|
use strict;
|
|
require Exporter;
|
|
use C4::Database;
|
|
use CGI;
|
|
use C4::Search;
|
|
|
|
my $query=new CGI;
|
|
|
|
|
|
my $language='french';
|
|
my $dbh=&C4Connect;
|
|
|
|
my %configfile;
|
|
open (KC, "/etc/koha.conf");
|
|
while (<KC>) {
|
|
chomp;
|
|
(next) if (/^\s*#/);
|
|
if (/(.*)\s*=\s*(.*)/) {
|
|
my $variable=$1;
|
|
my $value=$2;
|
|
# Clean up white space at beginning and end
|
|
$variable=~s/^\s*//g;
|
|
$variable=~s/\s*$//g;
|
|
$value=~s/^\s*//g;
|
|
$value=~s/\s*$//g;
|
|
$configfile{$variable}=$value;
|
|
}
|
|
}
|
|
my $includes=$configfile{'includes'};
|
|
($includes) || ($includes="/usr/local/www/hdl/htdocs/includes");
|
|
my $templatebase="$includes/templates/catalogue/searchresults/";
|
|
my $templatename=$query->param('template');
|
|
my $startfrom=$query->param('startfrom');
|
|
($startfrom) || ($startfrom=0);
|
|
($templatename) || ($templatename='default.tmpl');
|
|
$templatename=picktemplate($templatebase);
|
|
|
|
|
|
|
|
|
|
my $template = HTML::Template->new(filename => "$templatebase$templatename", die_on_bad_params => 0);
|
|
|
|
##my @results;
|
|
#my $sth=$dbh->prepare("select * from biblio where author like 's%' order by author limit $startfrom,20");
|
|
#$sth->execute;
|
|
#while (my $data=$sth->fetchrow_hashref){
|
|
# push @results, $data;
|
|
#}
|
|
|
|
my $env;
|
|
$env->{itemcount}=1;
|
|
my %search;
|
|
my $keyword='tree';
|
|
$search{'keyword'}=$keyword;
|
|
|
|
my ($count, @results) = &KeywordSearch($env, 'intra', \%search, 20, $startfrom);
|
|
|
|
|
|
my $resultsarray=\@results;
|
|
|
|
$template->param(startfrom => $startfrom+1);
|
|
$template->param(endat => $startfrom+20);
|
|
$template->param(numrecords => $count);
|
|
my $nextstartfrom=($startfrom+20<$count-20) ? ($startfrom+20) : ($count-20);
|
|
my $prevstartfrom=($startfrom-20>0) ? ($startfrom-20) : (0);
|
|
$template->param(nextstartfrom => $nextstartfrom);
|
|
$template->param(prevstartfrom => $prevstartfrom);
|
|
$template->param(template => $templatename);
|
|
$template->param(SEARCH_RESULTS => $resultsarray);
|
|
|
|
print "Content-Type: text/html\n\n", $template->output;
|
|
|
|
|
|
sub picktemplate {
|
|
my ($base) = @_;
|
|
my $templates;
|
|
opendir (D, $base);
|
|
my @dirlist=readdir D;
|
|
foreach (@dirlist) {
|
|
(next) unless (/\.tmpl$/);
|
|
$templates->{$_}=1;
|
|
}
|
|
my $sth=$dbh->prepare("select value from systempreferences where variable='template'");
|
|
$sth->execute;
|
|
my ($preftemplate) = $sth->fetchrow;
|
|
$preftemplate.='.tmpl';
|
|
if ($templates->{$preftemplate}) {
|
|
return $preftemplate;
|
|
} else {
|
|
return 'default.tmpl';
|
|
}
|
|
|
|
}
|