ycba-cia / blacklight-collections

1 stars 1 forks source link

Display ISBN for reference library materials #60

Closed mikeapp closed 8 years ago

mikeapp commented 8 years ago

Will also need ISBN for link to Google Books cover image API

mikeapp commented 8 years ago

Appears not to be in Solr. Could use https://github.com/ruby-marc/ruby-marc record['20']['a']

mikeapp commented 8 years ago

Need to modify MARC!!! In Vufind:

   // Also process the MARC record:
    $marc = trim($record['fullrecord']);
    $marc = preg_replace('/#31;/', "\x1F", $marc);
    $marc = preg_replace('/#30;/', "\x1E", $marc);
    $marc = new File_MARC($marc, File_MARC::SOURCE_STRING);
    $this->marcRecord = $marc->next();