######################################################################
#
#  EPrints Permissions Editor
#
######################################################################
#
#  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 strict;

use EPrints;

my $session = EPrints::Session->new();
exit( 0 ) unless( defined $session );

# Check we have privs
if( !$session->has_privilege( "EDIT_ARCHIVE_PRIVILEGES" ) )
{
	print "Permission denied";
	$session->terminate();
	exit( 0 );
}
my( $title, $page );

$session->build_page( 
	$session->html_phrase( "cgi/users/edit_permissions:intro_title" ),
	$session->html_phrase( "cgi/users/edit_permissions:intro_blurb" ),
	"edit_permissions_intro" ); 

$session->send_page();

$session->terminate();

exit;
