<html><head>

<meta name="Generator" content="Novell Groupwise Client (Version 14.0.1  Build: 117118)">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head>
<body style="font: 10pt/normal Segoe UI; margin: 16px 16px 4px; font-size-adjust: none; font-stretch: normal;"><div class="GroupWiseMessageBody" id="GroupWiseSection_1441629193000_Simon.Jennings@lshtm.ac.uk_50E85B80182D0000820C000000000000_"><div>Hi Adam,</div><div><br></div><div>we have an autocomplete that stops duplicate titles and so we&nbsp;end up with a menu that's potentially thousands of records long. I thought it would be good to have a grouping on the menu screen based on the first letter, which then links to the list for that letter</div><div><br></div><div>I guess a custom render could be the way to go. I'll have a look at doing that.</div><div><br></div><div>Cheers,</div><div><br></div><div>Simon.</div><div><br></div><div><br></div><div class="GroupWiseMessageBody" id="GroupWiseSection_1441623607000_eprints-tech-request@ecs.soton.ac.uk"><span class="GroupwiseReplyHeader">&gt;&gt;&gt; &lt;eprints-tech-request@ecs.soton.ac.uk&gt; 07/09/2015 12:00 &gt;&gt;&gt;<br></span><div><div>Send Eprints-tech mailing list submissions to<br>&nbsp;&nbsp;&nbsp;&nbsp;eprints-tech@ecs.soton.ac.uk<br><br>To subscribe or unsubscribe via the World Wide Web, visit<br>&nbsp;&nbsp;&nbsp;&nbsp;<a href="http://mailman.ecs.soton.ac.uk/mailman/listinfo/eprints-tech">http://mailman.ecs.soton.ac.uk/mailman/listinfo/eprints-tech</a><br>or, via email, send a message with subject or body 'help' to<br>&nbsp;&nbsp;&nbsp;&nbsp;eprints-tech-request@ecs.soton.ac.uk<br><br>You can reach the person managing the list at<br>&nbsp;&nbsp;&nbsp;&nbsp;eprints-tech-owner@ecs.soton.ac.uk<br><br>When replying, please edit your Subject line so it is more specific<br>than "Re: Contents of Eprints-tech digest..."<br><br><br>Today's Topics:<br><br>&nbsp;&nbsp; 1. Re: Removing the menu step from a Title browse view (Field A.N.)<br>&nbsp;&nbsp; 2. Re: "Manage deposits" list not sorting (Field A.N.)<br><br><br>----------------------------------------------------------------------<br><br>Message: 1<br>Date: Mon, 7 Sep 2015 09:40:00 +0100<br>From: "Field A.N." &lt;af05v@ecs.soton.ac.uk&gt;<br>Subject: [EP-tech] Re: Removing the menu step from a Title browse view<br>To: eprints-tech@ecs.soton.ac.uk<br>Message-ID: &lt;E42A25D0-A728-463E-961C-B0FEF8D756F7@ecs.soton.ac.uk&gt;<br>Content-Type: text/plain; charset=us-ascii<br><br>Do you mean remove the list step?&nbsp; The menu is the page that lists all the unique values, and the list is the page that lists all the items.<br><br>You can build a custom menu renderer that links through to the abstract pages directly, but what would you do when you actually do have two items with the same title?<br><br>--<br>Adam Field<br>Business Relationship Manager and Community Lead<br>EPrints Services<br>+44 (0)23 8059 8814<br><br><br><br><br><br>On 4 Sep 2015, at 11:46, Simon Jennings wrote:<br><br>&gt; Hi everyone,<br>&gt; <br>&gt; I was wondering if anyone had tried to remove the menu step when creating a browse view for Title?<br>&gt; <br>&gt; The title is unique and therefore will always produce a separate group with one member. This makes the menu huge and also makes the extra step a bit redundant.<br>&gt; <br>&gt; It would be good to produce a menu that is similar to "date;res=year", but just have a grouping by first letter.<br>&gt; <br>&gt; Has anyone tried to implement something like this?<br>&gt; <br>&gt; Cheers,<br>&gt; <br>&gt; Simon.<br>&gt; <br>&gt; ---------------------------------------------<br>&gt; Simon Jennings<br>&gt; Research Data Management Software Developer<br>&gt; Library &amp; Archives Service<br>&gt; London School of Hygiene &amp; Tropical Medicine<br>&gt; Tel: +44 (0) 20 7927 2277<br>&gt; E-mail: simon.jennings@lshtm.ac.uk<br>&gt; Web: www.lshtm.ac.uk<br>&gt;&nbsp; <br>&gt; <br>&gt; *** Options: <a href="http://mailman.ecs.soton.ac.uk/mailman/listinfo/eprints-tech">http://mailman.ecs.soton.ac.uk/mailman/listinfo/eprints-tech</a><br>&gt; *** Archive: <a href="http://www.eprints.org/tech.php/">http://www.eprints.org/tech.php/</a><br>&gt; *** EPrints community wiki: <a href="http://wiki.eprints.org/">http://wiki.eprints.org/</a><br>&gt; *** EPrints developers Forum: <a href="http://forum.eprints.org/">http://forum.eprints.org/</a><br><br><br><br><br>------------------------------<br><br>Message: 2<br>Date: Mon, 7 Sep 2015 11:45:01 +0100<br>From: "Field A.N." &lt;af05v@ecs.soton.ac.uk&gt;<br>Subject: [EP-tech] Re: "Manage deposits" list not sorting<br>To: eprints-tech@ecs.soton.ac.uk<br>Message-ID: &lt;560D5413-8F13-49E9-B494-04399C8C792C@ecs.soton.ac.uk&gt;<br>Content-Type: text/plain; charset=windows-1252<br><br>I've seen this issue before -- in the case I examined, it looked like the _buffer_order parameter was somehow being lost.&nbsp; I managed to get it working with the following code in the Items plugin:<br><br>in the 'properties_from' function:<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; #af05v 20150512 Workaround for immediate solution to lack of ordering<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; my $order = $session-&gt;param('_buffer_order'); <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $self-&gt;{processor}-&gt;{af05v_order} = $order; <br><br><br>in the perform_search function:<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; my $list = $self-&gt;{session}-&gt;current_user-&gt;owned_eprints_list( %$search, <br># custom_order =&gt; $search-&gt;{order} <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; #af05v 20150512 Workaround for immediate solution to lack of ordering<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; custom_order =&gt; $self-&gt;{processor}-&gt;{af05v_order} <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ); <br><br>However, I didn't have time to figure out *why* this was happening.&nbsp; Anyone have any ideas?<br><br>--<br>Adam Field<br>Business Relationship Manager and Community Lead<br>EPrints Services<br>+44 (0)23 8059 8814<br><br><br><br><br><br>On 2 Sep 2015, at 17:48, Robin Sylvestre wrote:<br><br>&gt; Hello fellow EPrinters,<br>&gt;&nbsp; <br>&gt; Running version 3.3.14, we have noticed a strange behavior on the ?manage deposits? screen. Items do not sort at all, when clicking on the appropriate column title (see attached screen shots). Nothing changes, only the up/down arrow appears.<br>&gt;&nbsp; <br>&gt; The strange thing is that the ?revision? list is not affected by this bug, only the ?deposits? list.<br>&gt;&nbsp; <br>&gt; I have tried to do a ?epadmin reorder [archive] eprint? but that does not correct the problem. Both of our live and test versions have this problem.<br>&gt;&nbsp; <br>&gt; Did anyone notice a similar bug or has a solution to offer? Thanks!!<br>&gt;&nbsp; <br>&gt;&nbsp; <br>&gt; <br>&gt; Robin Sylvestre<br>&gt; Technicien en documentation<br>&gt; Biblioth?que - Services techniques et syst?mes informatis?s<br>&gt; ?cole Polytechnique de Montr?al<br>&gt; T?l.: 514-340-4711 poste 3743<br>&gt;&nbsp; <br>&gt; &lt;ScreenShot001.png&gt;&lt;ScreenShot003.png&gt;*** Options: <a href="http://mailman.ecs.soton.ac.uk/mailman/listinfo/eprints-tech">http://mailman.ecs.soton.ac.uk/mailman/listinfo/eprints-tech</a><br>&gt; *** Archive: <a href="http://www.eprints.org/tech.php/">http://www.eprints.org/tech.php/</a><br>&gt; *** EPrints community wiki: <a href="http://wiki.eprints.org/">http://wiki.eprints.org/</a><br>&gt; *** EPrints developers Forum: <a href="http://forum.eprints.org/">http://forum.eprints.org/</a><br><br><br><br><br>------------------------------<br><br>_______________________________________________<br>Eprints-tech mailing list<br>Eprints-tech@ecs.soton.ac.uk<br><a href="http://mailman.ecs.soton.ac.uk/mailman/listinfo/eprints-tech">http://mailman.ecs.soton.ac.uk/mailman/listinfo/eprints-tech</a><br><br><br>End of Eprints-tech Digest, Vol 84, Issue 17<br>********************************************<br></div></div></div></div></body></html>