Ticket #1197 (new clarification)

Opened 3 years ago

Last modified 3 years ago

unable to order volumes withing a journal

Reported by: npeterson Assigned to: npeterson
Priority: critical Milestone:
Component: ambra Version: 0.9.1_rc1
Keywords: Cc:
Blocking: Blocked By:

Description

There is no way to order the volumes within the journal.

The order of the volumes is the order in which they were created: 2009 being most recent, then 2007, then 2008. (see screenshot)

The existing admin center lets us re-order the volumes.(see screenshot)

Dependency Graph

Attachments

Manage+Virtual+Journals-novolumeordering.png (20.2 kB) - added by npeterson on 03/18/09 16:55:47.
Ambra-+Administration-+Manage+Virtual+Journals.png (16.8 kB) - added by npeterson on 03/18/09 16:55:57.

Change History

03/18/09 16:55:47 changed by npeterson

  • attachment Manage+Virtual+Journals-novolumeordering.png added.

03/18/09 16:55:57 changed by npeterson

  • attachment Ambra-+Administration-+Manage+Virtual+Journals.png added.

03/19/09 11:10:13 changed by rich

  • milestone changed from 0.9.2 to 0.9.3.

Requires an update to the volume/issue models and corresponding data migration. Moving to 0.9.3

03/19/09 13:17:00 changed by wtoconnor

  • owner changed from wtoconnor to rich.
  • type changed from defect to clarification.

We pitched that feature.

04/01/09 15:43:48 changed by rich

  • owner changed from rich to wtoconnor.
  • milestone deleted.

Enhancement request - removing from 0.9.3

04/28/09 14:13:10 changed by wtoconnor

From looking at the code they have never been able to order the volumes. Yes the field was available but in order for reordering to happen:

File: Journal.java

  @Predicate(uri = "plos:Journal/volumes")
  public void setVolumes(List<URI> volumes) {
    this.volumes= volumes;
  }

would need to be changed to

 @Predicate(uri = "plos:Journal/volumes", collectionType = CollectionType.RDFSEQ)
 public void setVolumes(List<URI> volumes) {
    this.volumes= volumes;

which will require a migration.

04/28/09 14:18:24 changed by wtoconnor

  • owner changed from wtoconnor to npeterson.