EPrints Technical Mailing List Archive
Message: #06831
< Previous (by date) | Next (by date) > | < Previous (in thread) | Next (in thread) > | Messages - Most Recent First | Threads - Most Recent First
Re: [EP-tech] Unknown entries in creator browse
- To: "eprints-tech@ecs.soton.ac.uk" <eprints-tech@ecs.soton.ac.uk>
- Subject: Re: [EP-tech] Unknown entries in creator browse
- From: Andrew Beeken <anbeeken@lincoln.ac.uk>
- Date: Tue, 12 Sep 2017 10:13:07 +0000
Okay, so I’ve gone back and taken a look at this. Adding in a max_items definition of any value into the creator browse values will generate the view of 9000 items at NULL.html. Which is nice! But the entry is still on the browse listing page with no link – I’m guessing that because it’s technically not empty, hideempty is doing nothing, however I would have thought allow_null would have suppressed it? Curious! From: eprints-tech-bounces@ecs.soton.ac.uk [mailto:eprints-tech-bounces@ecs.soton.ac.uk]
On Behalf Of Alan.Stiles And when you renamed it to bananas, did it have the various config listed and just give the same page about exceeding system limits? Can you add something like $c->{browse_views_max_items} = 3000; to your cfg.d file (outside of the $c->{browse_views} = [… ]; definitions) And you are restarting the apache server before rebuilding views? Have you tried a view rebuild from the commandline? ( <EPRINTS_HOME>/bin/generate_views <REPO_ID> --view=creators –verbose) add another verbose for more information. Is the cfg.d file where you are pushing the new definition alphabetically after anywhere else you are defining $c->{browse_views}? (e.g. views.pl) From:
eprints-tech-bounces@ecs.soton.ac.uk [mailto:eprints-tech-bounces@ecs.soton.ac.uk]
On Behalf Of Andrew Beeken Nggggh – no dice! I tried removing a few other elements from the view generation to see if that did anything but it’s not even affecting the page. I did do a test and renamed the view to “bananas” which worked (the view was accessible via
/bananas) but… Argh! Stupid thing! From:
eprints-tech-bounces@ecs.soton.ac.uk [mailto:eprints-tech-bounces@ecs.soton.ac.uk]
On Behalf Of Alan.Stiles Can you try adding max_items => 0, to your view definition e.g. { id => “creators”, max_items => 0, allow_null => 0, hideempty => 1, …. } Then rebuilding the view ? From:
eprints-tech-bounces@ecs.soton.ac.uk [mailto:eprints-tech-bounces@ecs.soton.ac.uk]
On Behalf Of Andrew Beeken That’s the problem – I get nothing except: The number of items (2001) for this view has exceeded system limits (2000). The system administrator either needs to increase "max_items" or apply
additional filters to this view. I’m about 90% sure that this is the Null items in the author table, where we have no internal id for non Lincoln authors and it just goes into the database as a Null, but the code suggests that should be suppressed? From:
eprints-tech-bounces@ecs.soton.ac.uk [mailto:eprints-tech-bounces@ecs.soton.ac.uk]
On Behalf Of Alan.Stiles Can you get to the admin edit view for any of the items you can see?
Do any of the creator (etc) entries look like they might have missing information? From:
eprints-tech-bounces@ecs.soton.ac.uk [mailto:eprints-tech-bounces@ecs.soton.ac.uk]
On Behalf Of Andrew Beeken It tells me that there is a cap of 2000 items per view. From:
eprints-tech-bounces@ecs.soton.ac.uk [mailto:eprints-tech-bounces@ecs.soton.ac.uk]
On Behalf Of Alan.Stiles And if you look at
http://<your.domain.name>/views/creators/NULL.html do you see the 9001 items, and what are their various contributor_internal_id fields, names, etc? From:
eprints-tech-bounces@ecs.soton.ac.uk [mailto:eprints-tech-bounces@ecs.soton.ac.uk]
On Behalf Of Andrew Beeken It must have crept in there somewhere (a lot of this is coming from me cleansing my data from a number of duct tape fixes that have been put in) but that’s a whole other kettle of fish! Your suggestion of looking at the source was helpful – it’s trying to link to NULL.html which suggests it’s generated a page for those nulls and is ignoring the rules in the view definition. Argh! From:
eprints-tech-bounces@ecs.soton.ac.uk [mailto:eprints-tech-bounces@ecs.soton.ac.uk]
On Behalf Of Alan.Stiles Presumably that ORCID / ISNI is in the internal ID field or is it out of the translation? How many things are in your repository? From:
eprints-tech-bounces@ecs.soton.ac.uk [mailto:eprints-tech-bounces@ecs.soton.ac.uk]
On Behalf Of Andrew Beeken I’m getting ID’s and translated names, but then I’m also getting this ? entry. Screenshot:
https://drive.google.com/file/d/0B67FaE28LeB-bkYxQkZzM0tfU2M/view?usp=sharing From:
eprints-tech-bounces@ecs.soton.ac.uk [mailto:eprints-tech-bounces@ecs.soton.ac.uk]
On Behalf Of Alan.Stiles Is your view just displaying the ids or is it translating to a name e.g. from the user table? Might it be not finding the id during the translation? From:
eprints-tech-bounces@ecs.soton.ac.uk [mailto:eprints-tech-bounces@ecs.soton.ac.uk]
On Behalf Of Andrew Beeken Yup. The exact definition is: push @{ $c->{browse_views} }, ( { id => "creators", allow_null => 0, hideempty => 1, menus => [ { fields => [ "creators_internalid", "contributors_internalid", "editors_internalid" ], new_column_at => [1, 1], mode => "sections", open_first_section => 1, group_range_function => "EPrints::Update::Views::cluster_ranges_30", grouping_function => "EPrints::Update::Views::group_by_a_to_z", }, ], order => "-date/title", variations => [ "type", "date;truncate=4,reverse", "DEFAULT", ], }); From:
eprints-tech-bounces@ecs.soton.ac.uk [mailto:eprints-tech-bounces@ecs.soton.ac.uk]
On Behalf Of Alan.Stiles Hi Andrew, Does your view definition in cfg.d have these parameters?
allow_null => 0, hideempty => 1, Alan From:
eprints-tech-bounces@ecs.soton.ac.uk [mailto:eprints-tech-bounces@ecs.soton.ac.uk]
On Behalf Of Andrew Beeken Hello all! So, I’ve implemented an “Internal ID” for the creator browse on our new repository as per David Newman’s guide here:
http://wiki.eprints.org/w/Using_Internal_IDs_for_Staff_Browse_Views This works fantastically and both clears up and exposes some issues with our data which is perfect – a large part of this was to ensure we can clean our data up appropriately. One thing it has done, however, is added a ? entry to the creator
browse – I’m assuming that this is picking up external authors on records who do not have internal ID’s set against them and do not have a user record. There are around 9001 of these although I cannot see them as the browse is not creating a page to show them,
merely showing the number in the listing. Is there an easy way to suppress this as it’s more of a visual issue? Many thanks! Andrew
-- The Open University is incorporated by Royal Charter (RC 000391), an exempt charity in England & Wales and a charity registered in Scotland
(SC 038302). The Open University is authorised and regulated by the Financial Conduct Authority in relation to its secondary activity of credit broking.
|
- References:
- Re: [EP-tech] Unknown entries in creator browse
- From: "Alan.Stiles" <alan.stiles@open.ac.uk>
- Re: [EP-tech] Unknown entries in creator browse
- From: Andrew Beeken <anbeeken@lincoln.ac.uk>
- Re: [EP-tech] Unknown entries in creator browse
- From: "Alan.Stiles" <alan.stiles@open.ac.uk>
- Re: [EP-tech] Unknown entries in creator browse
- From: Andrew Beeken <anbeeken@lincoln.ac.uk>
- Re: [EP-tech] Unknown entries in creator browse
- From: "Alan.Stiles" <alan.stiles@open.ac.uk>
- Re: [EP-tech] Unknown entries in creator browse
- Prev by Date: Re: [EP-tech] Unknown entries in creator browse
- Next by Date: Re: [EP-tech] Unknown entries in creator browse
- Previous by thread: Re: [EP-tech] Unknown entries in creator browse
- Next by thread: Re: [EP-tech] Unknown entries in creator browse
- Index(es):