Newer
Older
Digital_Repository / OARiNZ / DIY / deb_package / eprints-3.0 / cgi / search
nstanger on 7 Jun 2007 2 KB - Added debian package source.
######################################################################
#
#  EPrints Simple Search Form
#
######################################################################
#
#  This file is part of GNU EPrints 2.
#  
#  Copyright (c) 2000-2004 University of Southampton, UK. SO17 1BJ.
#  
#  EPrints 2 is free software; you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation; either version 2 of the License, or
#  (at your option) any later version.
#  
#  EPrints 2 is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU General Public License for more details.
#  
#  You should have received a copy of the GNU General Public License
#  along with EPrints 2; if not, write to the Free Software
#  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
#
######################################################################

use EPrints;

use strict;
my $session = new EPrints::Session;
exit( 0 ) unless( defined $session );
# $session->get_database->set_debug( 1 );

my $path_info = $session->get_request->path_info;
# lose a leading slash
$path_info =~ s#^/##;
# we only want stuff up to the 2nd slash
$path_info =~ s#/.*$##;

my $searchid = $path_info;
if( $searchid eq "advsearch" )
{
	# cover the old systems sins...
	my $url = $session->get_repository->get_conf( "perl_url" ).
			"/search/advanced";
	if( defined $session->get_request->args )
	{
		$url .="?".$session->get_request->args;
	}
	$session->redirect( $url );
	$session->terminate;
	exit;
}
my $sconf = $session->get_repository->get_conf( "search", $searchid );
if( !defined $sconf )
{
	my $url = $session->get_repository->get_conf( "perl_url" ).
			"/search/simple";
	if( defined $session->get_request->args )
	{
		$url .="?".$session->get_request->args;
	}
	$session->redirect( $url );
	$session->terminate;
	exit;
}


EPrints::ScreenProcessor->process( 
	session => $session, 
	url => $session->get_repository->get_conf( "perl_url" )."/search/$searchid",
	sconf => $sconf,
	screenid => "Public::EPrintSearch",
);
$session->terminate;

exit;