EPrints Technical Mailing List Archive
Message: #08561
< Previous (by date) | Next (by date) > | < Previous (in thread) | Next (in thread) > | Messages - Most Recent First | Threads - Most Recent First
Re: [EP-tech] View and Move Screen Plugins
- To: <eprints-tech@ecs.soton.ac.uk>, Yuri <yurj@alfa.it>
- Subject: Re: [EP-tech] View and Move Screen Plugins
- From: David R Newman <drn@ecs.soton.ac.uk>
- Date: Thu, 1 Apr 2021 11:13:00 +0100
Hi Yuri,
This is an odd one, as if the "Move to the Repository" button
does not actually do what it says when the setting is the default,
position = 100, then it seems extremely unlikely that this would
not have been identified as a bug by now, as this would likely
apply to all repositories running this version.
It is possible to reconfigure these values in the local archive's
configuration, (typically plugins.pl). It is worth checking there
to see if there is anything that relates to the EPrints::Move
screen plugin. It may also be worth checking you archive's phrase
files to see if the is a "Move to the repository" assigned to
another button other than the one from EPrints::Move. Beyond,
that all I can suggest is try setting the position to 101 rather
than 200 to see if this fixes the functionality of the button
without changing the ordering of buttons.
This sounds like one of the problems I would have difficultly
debugging even if the code was in front of me. So I am not overly
confident any one of my suggestions will fix your problem. If
this problem has only just occurred, I would be tempted to run a
find command over all your archive config and core EPrints
codebase files, to see if anything relevant has recently been
modified.
Regards
David Newman
CAUTION: This e-mail originated outside the University of Southampton.Context: Eprints 3.3.15
When I view an Eprints (as admin) I get the "Move to the repository", "Return Item (with notification)", "Delete Item (with notification)" buttons on top (eprint_actions_bar_buffer).
The standard config for "Move to the repository" ( perl_lib/EPrints/Plugin/Screen/EPrint/Move.pm ) is
{ place => "eprint_actions_bar_buffer", action => "move_archive", position => 100, },
The form render as:
<form method="post" accept-charset="utf-8" action="" enctype="multipart/form-data">
<input name="screen" id="screen" value="EPrint::View" type="hidden">
<input name="eprintid" id="eprintid" value="263" type="hidden">
<input class="ep_form_action_button" value="Move to Repository" name="_action_move_archive" type="submit">
</form>As you can see, the form points to EPrint::View instead of EPrint::Move.
If I change the config to:
{ place => "eprint_actions_bar_buffer", action => "move_archive", position => 200, },
It displays correctly EPrint::Move but "Return Item (with notification)" move to the first position and have the same issue, it renders with EPrint::View instead of EPrint::Move.
So the first button always get EPrint::View, the others EPrint::Move. Obviously the one with EPrint::View fails with "This screen (EPrint::View) does not know how to process this action: move_archive".
Any idea on how to solve this?
P.S: This is the full config for Move.pm (the standard one):
$self->{actions} = [qw/ move_inbox move_buffer move_archive move_deletion /];
$self->{appears} = [
{ place => "eprint_actions", action ="" "move_inbox", position => 600, },
{ place => "eprint_editor_actions", action ="" "move_archive", position => 400, },
{ place => "eprint_editor_actions", action ="" "move_buffer", position => 500, },
{ place => "eprint_editor_actions", action ="" "move_deletion", position => 700, },
{ place => "eprint_actions_bar_buffer", action ="" "move_archive", position => 100, },
{ place => "eprint_actions_bar_archive", action ="" "move_buffer", position => 100, },
{ place => "eprint_actions_bar_archive", action ="" "move_deletion", position => 100, },
{ place => "eprint_actions_bar_deletion", action ="" "move_archive", position => 100, },
{ place => "eprint_review_actions", action ="" "move_archive", postion => 200, }, # I've already correct postion -> position in the instance
];
*** Options: http://mailman.ecs.soton.ac.uk/mailman/listinfo/eprints-tech *** Archive: http://www.eprints.org/tech.php/ *** EPrints community wiki: http://wiki.eprints.org/
- References:
- [EP-tech] View and Move Screen Plugins
- From: Yuri <yurj@alfa.it>
- [EP-tech] View and Move Screen Plugins
- Prev by Date: [EP-tech] View and Move Screen Plugins
- Next by Date: Re: [EP-tech] View and Move Screen Plugins
- Previous by thread: [EP-tech] Sort view with creators_name and corp_creators
- Index(es):