Difference between revisions of "GUI Submission with no Documents"
Line 22: | Line 22: | ||
$c->{required_formats} = | $c->{required_formats} = | ||
[ | [ | ||
+ | # "text/html", | ||
+ | # "application/pdf", | ||
+ | # "application/postscript", | ||
+ | # "text/plain" | ||
]; | ]; |
Revision as of 09:00, 19 December 2006
Submitting with no documents
I allow this as we may be adding documents in later after the information.
To allow a submission without a document, edit the file;
vi /var/lib/eprints3/archives/yourarchivename/cfg/cfg.d/document_upload.pl
And change the lines;
$c->{required_formats} = [ "text/html", "application/pdf", "application/postscript", "text/plain" ];
To :
$c->{required_formats} = [
- "text/html",
- "application/pdf",
- "application/postscript",
- "text/plain"
];