Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Review metadata mapping for some fields (identified by A.B) #19

Open
3 tasks
jesusbagpuss opened this issue Mar 1, 2024 · 3 comments
Open
3 tasks

Review metadata mapping for some fields (identified by A.B) #19

jesusbagpuss opened this issue Mar 1, 2024 · 3 comments

Comments

@jesusbagpuss
Copy link
Collaborator

From 5.27.3 testing:

In WRRO & Pure the title, journal & authors all appear.

BUT in WRRO the volume, issue, article number, page nos Do Not appear.

  • Check which item types this impacts
  • Create/find example records
  • Fix XSLT
@jesusbagpuss
Copy link
Collaborator Author

Example records on Pure dev:
94745750
82794596
94779103
76422104

@jesusbagpuss
Copy link
Collaborator Author

Record 76422104:
physicalDescription/extent contains number of bytes (unit="bytes"), but this currently gets mapped into the EP <pages> element.

@jesusbagpuss
Copy link
Collaborator Author

There can be two representations of the volume data:

  • in the main metadata fields:
<mods:part>
  <mods:detail type="volume">
    <mods:number>10</mods:number>
    <mods:caption>vol.</mods:caption>
  </mods:detail>
  <mods:detail type="issue">
    <mods:number>11</mods:number>
    <mods:caption>no.</mods:caption>
  </mods:detail>
</mods:part>
  • or in the 'series' metadata fields:
<mods:relatedItem type="series" xlink:type="simple" xlink:role="">
  <mods:titleInfo xlink:type="simple">
    <mods:title>Series of stuff</mods:title>
  </mods:titleInfo>
  <mods:originInfo>
    <mods:publisher>White Rose Libraries</mods:publisher>
  </mods:originInfo>
  <mods:part>
    <mods:detail type="issue">
      <mods:number>66</mods:number>
      <mods:caption>no.</mods:caption>
    </mods:detail>
    <mods:detail type="volume">
      <mods:number>55</mods:number>
      <mods:caption>vol.</mods:caption>
    </mods:detail>
  </mods:part>
</mods:relatedItem>

The latest default XSLT from Pure appears to try and handle both these data islands.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant