|
Summary: Make document upload optional
Priority (1<5) = 4
Raised by: hal
Description:
Answer Eprint tech list 23nov2005:
$c→{required_formats} = sub {
my( $session, $eprint ) = @_;
if( $eprint→get_value( ‘type’ ) eq “book” )
{
return [];
}
return [‘html’,’pdf’,’ps’,’ascii’];
};
Implemented $c→{required_formats} = sub {
my( $session, $eprint ) = @_;
if( $eprint→get_value( ‘type’ ) eq “researchprogramme” )
{
return [];
}
elsif( $eprint→get_value( ‘type’ ) eq “organization” )
{
return [];
}
elsif( $eprint→get_value( ‘type’ ) eq “project” )
{
return [];
}
elsif( $eprint→get_value( ‘type’ ) eq “facility” )
{
return [];
}
return
[
”html”,
”pdf”,
”ps”,
”ascii”,
”rtf”,
”source”,
”multimedia”,
”other”
];
};
|
New IssueOpen IssuesOrganic Eprints Wiki
Based on PmWiki |