zotero/translators/Primo Normalized XML.js

871 lines
122 KiB
JavaScript
Raw Normal View History

2024-08-27 21:48:20 -05:00
{
"translatorID": "efd737c9-a227-4113-866e-d57fbc0684ca",
"translatorType": 1,
"label": "Primo Normalized XML",
"creator": "Philipp Zumstein",
"target": "xml",
"minVersion": "3.0",
"maxVersion": null,
"priority": 100,
"inRepository": true,
"configOptions": {
"dataMode": "xml/dom"
},
"lastUpdated": "2024-04-04 18:05:00"
}
/*
***** BEGIN LICENSE BLOCK *****
Copyright © 2018 Philipp Zumstein
This file is part of Zotero.
Zotero is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Zotero is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with Zotero. If not, see <http://www.gnu.org/licenses/>.
***** END LICENSE BLOCK *****
*/
function detectImport() {
var text = Zotero.read(1000);
return text.includes("http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib");
}
function doImport() {
var doc = Zotero.getXML();
var ns = {
p: 'http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib',
sear: 'http://www.exlibrisgroup.com/xsd/jaguar/search'
};
var item = new Zotero.Item();
var itemType = ZU.xpathText(doc, '//p:display/p:type', ns) || ZU.xpathText(doc, '//p:facets/p:rsrctype', ns) || ZU.xpathText(doc, '//p:search/p:rsrctype', ns);
if (!itemType) {
throw new Error('Could not locate item type');
}
switch (itemType.toLowerCase()) {
case 'book':
case 'buch':
case 'ebook':
case 'pbook':
case 'pbooks':
case 'print_book':
case 'books':
case 'score':
case 'journal': // as long as we don't have a periodical item type;
item.itemType = "book";
break;
case 'book_chapter':
item.itemType = "bookSection";
break;
case 'audio':
case 'sound_recording':
item.itemType = "audioRecording";
break;
case 'video':
case 'dvd':
item.itemType = "videoRecording";
break;
case 'computer_file':
item.itemType = "computerProgram";
break;
case 'report':
item.itemType = "report";
break;
case 'webpage':
item.itemType = "webpage";
break;
case 'article':
case 'review':
item.itemType = "journalArticle";
break;
case 'thesis':
case 'dissertation':
item.itemType = "thesis";
break;
case 'archive_manuscript':
case 'object':
item.itemType = "manuscript";
break;
case 'map':
item.itemType = "map";
break;
case 'reference_entry':
item.itemType = "encyclopediaArticle";
break;
case 'image':
item.itemType = "artwork";
break;
case 'newspaper_article':
item.itemType = "newspaperArticle";
break;
case 'conference_proceeding':
item.itemType = "conferencePaper";
break;
default:
item.itemType = "document";
var risType = ZU.xpathText(doc, '//p:addata/p:ristype', ns);
if (risType) {
switch (risType.toUpperCase()) {
case 'THES':
item.itemType = "thesis";
break;
}
}
}
item.title = ZU.xpathText(doc, '//p:display/p:title', ns);
if (item.title) {
item.title = ZU.unescapeHTML(item.title);
item.title = item.title.replace(/\s*:/, ":");
}
var creators = ZU.xpath(doc, '//p:display/p:creator', ns);
var contributors = ZU.xpath(doc, '//p:display/p:contributor', ns);
if (!creators.length && contributors.length) {
// <creator> not available using <contributor> as author instead
creators = contributors;
contributors = [];
}
// //addata/au is great because it lists authors in last, first format,
// but it can also have a bunch of junk. We'll use it to help split authors
var splitGuidance = {};
var addau = ZU.xpath(doc, '//p:addata/p:addau|//p:addata/p:au', ns);
for (let i = 0; i < addau.length; i++) {
var author = stripAuthor(addau[i].textContent);
if (author.includes(',')) {
var splitAu = author.split(',');
if (splitAu.length > 2) continue;
var name = splitAu[1].trim().toLowerCase() + ' '
+ splitAu[0].trim().toLowerCase();
splitGuidance[name.replace(/\./g, "")] = author;
}
}
fetchCreators(item, creators, 'author', splitGuidance);
fetchCreators(item, contributors, 'contributor', splitGuidance);
item.place = ZU.xpathText(doc, '//p:addata/p:cop', ns);
var publisher = ZU.xpathText(doc, '//p:addata/p:pub', ns);
if (!publisher) publisher = ZU.xpathText(doc, '//p:display/p:publisher', ns);
if (publisher) {
publisher = publisher.replace(/,\s*c?\d+|[()[\]]/g, "");
item.publisher = publisher.replace(/^\s*"|,?"\s*$/g, '');
var pubplace = ZU.unescapeHTML(publisher).split(" : ");
if (pubplace && pubplace[1]) {
var possibleplace = pubplace[0];
if (!item.place) {
item.publisher = pubplace[1].replace(/^\s*"|,?"\s*$/g, '');
item.place = possibleplace;
}
if (item.place && item.place == possibleplace) {
item.publisher = pubplace[1].replace(/^\s*"|,?"\s*$/g, '');
}
}
// sometimes the place is also part of the publisher string
// e.g. "Tübingen Mohr Siebeck"
if (item.place) {
var contained = item.publisher.indexOf(item.place);
if (contained === 0) {
item.publisher = item.publisher.substring(item.place.length);
}
}
}
var date = ZU.xpathText(doc, '//p:addata/p:date', ns)
|| ZU.xpathText(doc, '//p:addata/p:risdate', ns);
if (date && /\d\d\d\d\d\d\d\d/.test(date)) {
item.date = date.substring(0, 4) + '-' + date.substring(4, 6) + '-' + date.substring(6, 8);
}
else {
date = ZU.xpathText(doc, '//p:display/p:creationdate|//p:search/p:creationdate', ns);
var m;
if (date && (m = date.match(/\d+/))) {
item.date = m[0];
}
}
// the three letter ISO codes that should be in the language field work well:
item.language = ZU.xpathText(doc, '(//p:display/p:language|//p:facets/p:language)[1]', ns);
var pages = ZU.xpathText(doc, '//p:display/p:format', ns);
if (item.itemType == 'book' && pages && pages.search(/\d/) != -1) {
item.numPages = extractNumPages(pages);
}
item.series = ZU.xpathText(doc, '(//p:addata/p:seriestitle)[1]', ns);
if (item.series) {
let m = item.series.match(/^(.*);\s*(\d+)/);
if (m) {
item.series = m[1].trim();
item.seriesNumber = m[2];
}
}
var isbn = ZU.xpathText(doc, '//p:addata/p:isbn', ns);
var issn = ZU.xpathText(doc, '//p:addata/p:issn', ns);
if (isbn) {
item.ISBN = ZU.cleanISBN(isbn);
}
if (issn) {
item.ISSN = ZU.cleanISSN(issn);
}
// Try this if we can't find an isbn/issn in addata
// The identifier field is supposed to have standardized format, but
// the super-tolerant idCheck should be better than a regex.
// (although note that it will reject invalid ISBNs)
var locators = ZU.xpathText(doc, '//p:display/p:identifier', ns);
if (!(item.ISBN || item.ISSN) && locators) {
item.ISBN = ZU.cleanISBN(locators);
item.ISSN = ZU.cleanISSN(locators);
}
item.edition = ZU.xpathText(doc, '//p:display/p:edition', ns);
var subjects = ZU.xpath(doc, '//p:display/p:subject', ns);
if (!subjects.length) {
subjects = ZU.xpath(doc, '//p:search/p:subject', ns);
}
for (let i = 0, n = subjects.length; i < n; i++) {
let tagChain = ZU.trimInternal(subjects[i].textContent);
// Split chain of tags, e.g. "Deutschland / Gerichtsverhandlung / Schallaufzeichnung / Bildaufzeichnung"
for (let tag of tagChain.split(/ (?:\/|--|;) /)) {
item.tags.push(tag);
}
}
item.abstractNote = ZU.xpathText(doc, '//p:display/p:description', ns)
|| ZU.xpathText(doc, '//p:addata/p:abstract', ns);
if (item.abstractNote) item.abstractNote = ZU.unescapeHTML(item.abstractNote);
item.DOI = ZU.xpathText(doc, '//p:addata/p:doi', ns);
item.issue = ZU.xpathText(doc, '//p:addata/p:issue', ns);
item.volume = ZU.xpathText(doc, '//p:addata/p:volume', ns);
item.publicationTitle = ZU.xpathText(doc, '//p:addata/p:jtitle', ns);
if (item.itemType != 'book') {
item.bookTitle = ZU.xpathText(doc, '//p:addata/p:btitle', ns);
}
var startPage = ZU.xpathText(doc, '//p:addata/p:spage', ns);
var endPage = ZU.xpathText(doc, '//p:addata/p:epage', ns);
var overallPages = ZU.xpathText(doc, '//p:addata/p:pages', ns);
var pageRangeTypes = ["journalArticle", "magazineArticle", "newspaperArticle", "dictionaryEntry", "encyclopediaArticle", "conferencePaper"];
if (startPage && endPage) {
item.pages = startPage + '' + endPage;
}
else if (overallPages) {
if (pageRangeTypes.includes(item.itemType)) {
item.pages = overallPages;
}
else {
item.numPages = overallPages;
}
}
else if (startPage) {
item.pages = startPage;
}
else if (endPage) {
item.pages = endPage;
}
// these are actual local full text links (e.g. to google-scanned books)
// e.g http://solo.bodleian.ox.ac.uk/OXVU1:LSCOP_OX:oxfaleph013370702
var URL = ZU.xpathText(doc, '//p:links/p:linktorsrc', ns);
if (URL && URL.search(/\$\$U.+\$\$/) != -1) {
item.url = URL.match(/\$\$U(.+?)\$\$/)[1];
}
// add finding aids as links
var findingAid = ZU.xpathText(doc, '//p:links/p:linktofa', ns);
if (findingAid && findingAid.search(/\$\$U.+\$\$/) != -1) {
item.attachments.push({ url: findingAid.match(/\$\$U(.+?)\$\$/)[1], title: "Finding Aid", snapshot: false });
}
// get the best call Number; sequence recommended by Harvard University Library
var callNumber = ZU.xpath(doc, '//p:browse/p:callnumber', ns);
var callArray = [];
for (let i = 0; i < callNumber.length; i++) {
if (callNumber[i].textContent.search(/\$\$D.+\$/) != -1) {
callArray.push(callNumber[i].textContent.match(/\$\$D(.+?)\$/)[1]);
}
}
if (!callArray.length) {
callNumber = ZU.xpath(doc, '//p:display/p:availlibrary', ns);
for (let i = 0; i < callNumber.length; i++) {
if (callNumber[i].textContent.search(/\$\$2.+\$/) != -1) {
callArray.push(callNumber[i].textContent.match(/\$\$2\(?(.+?)(?:\s*\))?\$/)[1]);
}
}
}
if (callArray.length) {
// remove duplicate call numbers
callArray = dedupeArray(callArray);
item.callNumber = callArray.join(", ");
}
else {
ZU.xpathText(doc, '//p:enrichment/p:classificationlcc', ns);
}
// Harvard specific code, requested by Harvard Library:
// Getting the library abbreviation properly,
// so it's easy to implement custom code for other libraries, either locally or globally should we want to.
var library;
var source = ZU.xpathText(doc, '//p:control/p:sourceid', ns);
if (source) {
// The HVD library code is now preceded by $$V01 -- not seeing this in other catalogs like Princeton or UQAM
// so making it optional
library = source.match(/^(?:\$\$V)?(?:\d+)?(.+?)_/);
if (library) library = library[1];
}
// Z.debug(library)
if (library && library == "HVD") {
if (ZU.xpathText(doc, '//p:display/p:lds01', ns)) {
item.extra = "HOLLIS number: " + ZU.xpathText(doc, '//p:display/p:lds01', ns);
}
for (let lds03 of ZU.xpath(doc, '//p:display/p:lds03', ns)) {
if (lds03.textContent.match(/href="(.+?)"/)) {
item.attachments.push({
url: lds03.textContent.match(/href="(.+?)"/)[1],
title: "HOLLIS Permalink",
snapshot: false
});
}
}
}
// End Harvard-specific code
item.complete();
}
function stripAuthor(str) {
// e.g. Wheaton, Barbara Ketcham [former owner]$$QWheaton, Barbara Ketcham
str = str.replace(/^(.*)\$\$Q(.*)$/, "$2");
return str
// Remove year
.replace(/\s*,?\s*\(?\d{4}-?(\d{4}|\.{3})?\)?/g, '')
// Remove creator type like (illustrator)
.replace(/(\s*,?\s*[[(][^()]*[\])])+$/, '')
// The full "continuous" name uses no separators, which need be removed
// cf. "Luc, Jean André : de (1727-1817)"
.replace(/\s*:\s+/, " ")
// National Library of Russia adds metadata at the end of the author name,
// prefixed by 'NLR10::'. Remove it.
.replace(/\bNLR10::.*/, '')
// Austrian Libraries add authority data at the end of the author name,
// prefixed by '$$0'. Remove it.
.replace(/\$\$0.*/, '');
}
function fetchCreators(item, creators, type, splitGuidance) {
for (let i = 0; i < creators.length; i++) {
var creator = ZU.unescapeHTML(creators[i].textContent).split(/\s*;\s*/);
for (var j = 0; j < creator.length; j++) {
var c = stripAuthor(creator[j]).replace(/\./g, "");
c = ZU.cleanAuthor(
splitGuidance[c.toLowerCase()] || c,
type,
true
);
if (!c.firstName) {
delete c.firstName;
c.fieldMode = 1;
}
item.creators.push(c);
}
}
}
function extractNumPages(str) {
// Borrowed from Library Catalog (PICA). See #756
// make sure things like 2 partition don't match, but 2 p at the end of the field do
// f., p., and S. are "pages" in various languages
// For multi-volume works, we expect formats like:
// x-109 p., 510 p. and X, 106 S.; 123 S.
var numPagesRE = /\[?\b((?:[ivxlcdm\d]+[ \-,]*)+)\]?\s+[fps]\b/ig;
var numPages = [];
let m = numPagesRE.exec(str);
if (m) {
numPages.push(m[1].trim()
.replace(/[ \-,]+/g, '+')
.toLowerCase() // for Roman numerals
);
}
return numPages.join('; ');
}
function dedupeArray(names) {
// via http://stackoverflow.com/a/15868720/1483360
return names.reduce(function (a, b) {
if (!a.includes(b)) {
a.push(b);
}
return a;
}, []);
}
/** BEGIN TEST CASES **/
var testCases = [
{
"type": "import",
"input": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n <record xmlns=\"http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib\" xmlns:sear=\"http://www.exlibrisgroup.com/xsd/jaguar/search\">\n <control>\n <sourcerecordid>22248448</sourcerecordid>\n <sourceid>medline</sourceid>\n <recordid>TN_medline22248448</recordid>\n <sourceformat>XML</sourceformat>\n <sourcesystem>Other</sourcesystem>\n </control>\n <display>\n <type>article</type>\n <title>Water</title>\n <creator>Bryant, Robert G ; Johnson, Mark A ; Rossky, Peter J</creator>\n <ispartof>Accounts of chemical research, 17 January 2012, Vol.45(1), pp.1-2</ispartof>\n <identifier><![CDATA[<b>E-ISSN:</b> 1520-4898 ; <b>PMID:</b> 22248448 Version:1 ; <b>DOI:</b> 10.1021/ar2003286]]></identifier>\n <subject>Water -- Chemistry</subject>\n <language>eng</language>\n <source/>\n <version>2</version>\n <lds50>peer_reviewed</lds50>\n </display>\n <links>\n <openurl>$$Topenurl_article</openurl>\n <backlink>$$Uhttp://pubmed.gov/22248448$$EView_this_record_in_MEDLINE/PubMed</backlink>\n <openurlfulltext>$$Topenurlfull_article</openurlfulltext>\n <addlink>$$Uhttp://exlibris-pub.s3.amazonaws.com/aboutMedline.html$$EView_the_MEDLINE/PubMed_Copyright_Statement</addlink>\n </links>\n <search>\n <creatorcontrib>Bryant, Robert G</creatorcontrib>\n <creatorcontrib>Johnson, Mark A</creatorcontrib>\n <creatorcontrib>Rossky, Peter J</creatorcontrib>\n <title>Water.</title>\n <subject>Water -- chemistry</subject>\n <general>22248448</general>\n <general>English</general>\n <general>MEDLINE/PubMed (U.S. National Library of Medicine)</general>\n <general>10.1021/ar2003286</general>\n <general>MEDLINE/PubMed (NLM)</general>\n <sourceid>medline</sourceid>\n <recordid>medline22248448</recordid>\n <issn>15204898</issn>\n <issn>1520-4898</issn>\n <rsrctype>text_resource</rsrctype>\n <creationdate>2012</creationdate>\n <addtitle>Accounts of chemical research</addtitle>\n <searchscope>medline</searchscope>\n <searchscope>nlm_medline</searchscope>\n <searchscope>MEDLINE</searchscope>\n <scope>medline</scope>\n <scope>nlm_medline</scope>\n <scope>MEDLINE</scope>\n <lsr41>20120117</lsr41>\n <citation>pf 1 vol 45 issue 1</citation>\n <startdate>20120117</startdate>\n <enddate>20120117</enddate>\n </search>\n <sort>\n <title>Water</title>\n <author>Bryant, Robert G ; Johnson, Mark A ; Rossky, Peter J</author>\n <creationdate>20120117</creationdate>\n <lso01>20120117</lso01>\n </sort>\n <facets>\n <frbrgroupid>-1388435396316500619</frbrgroupid>\n <frbrtype>5</frbrtype>\n <newrecords>20180102</newrecords>\n <language>eng</language>\n <creationdate>2012</creationdate>\n <topic>WaterChemistry</topic>\n <collection>MEDLINE/PubMed (NLM)</collection>\n <rsrctype>text_resources</rsrctype>\n <creatorcontrib>Bryant, Robert G</creatorcontrib>\n <creatorcontrib>Johnson, Mark A</creatorcontrib>\n <creatorcontrib>Rossky, Peter J</creatorcontrib>\n <jtitle>Accounts Of Chemical Research</jtitle>\n <toplevel>peer_reviewed</toplevel>\n </facets>\n <delivery>\n <delcategory>Remote Search Resource</delcategory>\n <fulltext>fulltext</fulltext>\n </delivery>\n <addata>\n <aulast>Bryant</aul
"items": [
{
"itemType": "journalArticle",
"title": "Water",
"creators": [
{
"firstName": "Robert G.",
"lastName": "Bryant",
"creatorType": "author"
},
{
"firstName": "Mark A.",
"lastName": "Johnson",
"creatorType": "author"
},
{
"firstName": "Peter J.",
"lastName": "Rossky",
"creatorType": "author"
}
],
"date": "2012-01-17",
"DOI": "10.1021/ar2003286",
"ISSN": "1520-4898",
"issue": "1",
"language": "eng",
"pages": "1-2",
"publicationTitle": "Accounts of chemical research",
"volume": "45",
"attachments": [],
"tags": [
{
"tag": "Water"
},
{
"tag": "Chemistry"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "import",
"input": "<?xml version=\"1.0\" encoding=\"UTF-8\"?><record xmlns=\"http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib\" xmlns:sear=\"http://www.exlibrisgroup.com/xsd/jaguar/search\">\n <control>\n <sourcerecordid>002208563</sourcerecordid>\n <sourceid>HVD_ALEPH</sourceid>\n <recordid>HVD_ALEPH002208563</recordid>\n <originalsourceid>HVD01</originalsourceid>\n <ilsapiid>HVD01002208563</ilsapiid>\n <sourceformat>MARC21</sourceformat>\n <sourcesystem>Aleph</sourcesystem>\n </control>\n <display>\n <type>book</type>\n <title>Mastering the art of French cooking</title>\n <creator>Beck, Simone, 1904-1991. $$QBeck, Simone, 1904-1991.</creator>\n <contributor>Bertholle, Louisette.$$QBertholle, Louisette.</contributor>\n <contributor>Child, Julia.$$QChild, Julia.</contributor>\n <contributor>Wheaton, Barbara Ketcham [former owner]$$QWheaton, Barbara Ketcham</contributor>\n <contributor>DeVoto, Avis [former owner]$$QDeVoto, Avis</contributor>\n <edition>[1st ed.]</edition>\n <publisher>New York : Knopf, 1961-70.</publisher>\n <creationdate>1961-70</creationdate>\n <format>2 v. : ill. ; 26 cm.</format>\n <subject>Cooking, French.</subject>\n <description>Illustrates the ways in which classic French dishes may be created with American foodstuffs and appliances.</description>\n <language>eng</language>\n <source>HVD_ALEPH</source>\n <availlibrary>$$IHVD$$LHVD_SCH$$1Offsite Storage -- In-library use only$$2641.64 C53m, c.1$$Savailable$$32$$40$$5Y$$60$$XHVD50$$YSCH$$ZHD$$P78$$HHVD60003115849</availlibrary>\n <availlibrary>$$IHVD$$LHVD_SCH$$1Offsite Storage -- In-library use only$$2641.64 C53m, c. 3$$Savailable$$32$$40$$5Y$$61$$XHVD50$$YSCH$$ZHD$$P78$$HHVD60018187101</availlibrary>\n <availlibrary>$$IHVD$$LHVD_SCH$$1Offsite Storage -- In-library use only$$2641.64 C53m, c.5$$Savailable$$32$$40$$5Y$$60$$XHVD50$$YSCH$$ZHD$$P78$$HHVD60018770891</availlibrary>\n <availlibrary>$$IHVD$$LHVD_SCH$$1Offsite Storage -- In-library use only$$2641.64 C53m, c.6$$Savailable$$31$$40$$5Y$$60$$XHVD50$$YSCH$$ZHD$$P78$$HHVD60019421606</availlibrary>\n <availlibrary>$$IHVD$$LHVD_SCH$$1Offsite Storage -- In-library use only$$2641.64 C53m, c. 7$$Savailable$$32$$40$$5N$$60$$XHVD50$$YSCH$$ZHD$$P78$$HHVD60019730367</availlibrary>\n <availlibrary>$$IHVD$$LHVD_SCH$$1Offsite Storage -- In-library use only$$2641.64 C53m, c. 8$$Savailable$$31$$40$$5Y$$60$$XHVD50$$YSCH$$ZHD$$P78$$HHVD60019730395</availlibrary>\n <availlibrary>$$IHVD$$LHVD_SCH$$1Offsite Storage -- In-library use only$$2641.64 C53m, c.2$$Savailable$$31$$40$$5Y$$60$$XHVD50$$YSCH$$ZHD$$P78$$HHVD60016438903</availlibrary>\n <availlibrary>$$IHVD$$LHVD_SCH$$1Vault$$2641.64 C53m, c.4$$Savailable$$31$$40$$5N$$60$$XHVD50$$YSCH$$ZVAULT$$P78$$HHVD60018653989</availlibrary>\n <lds01>002208563</lds01>\n <lds02>567511</lds02>\n <lds03>&lt;a href=\"http://id.lib.harvard.edu/aleph/002208563/catalog\">http://id.lib.harvard.edu/aleph/002208563/catalog&lt;/a></lds03>\n <lds05>Knopf</lds05>\n <lds06>Vol. 1. Kitchen equipment -- Definitions -- Ingredients -- Measures -- Temperatures -- Cutting : chopping, slicing, dicing, and mincing -- Wines -- Soups -- Sauces -- Eggs -- Entrees and luncheon dishes -- Fish -- Poultry -- Meat -- Vegetables -- Cold buffet -- Desserts and cakes -- Vol. 2. Soups from the garden -- bisques and chowders from the sea -- Baking : breads, brioches, croissants, and pastries -- Meats : from country kitchen to haute cuisine -- Chickens, poached and sauced -- and a coq en pâte -- Charcuterie : sausages, salted pork and goose, pâtés and terrines -- A choice of vegetables -- Desserts :extending the repertoire -- Appendices : Stuffings -- Kitchen equipment
"items": [
{
"itemType": "book",
"title": "Mastering the art of French cooking",
"creators": [
{
"firstName": "Simone",
"lastName": "Beck",
"creatorType": "author"
},
{
"firstName": "Louisette",
"lastName": "Bertholle",
"creatorType": "contributor"
},
{
"firstName": "Julia",
"lastName": "Child",
"creatorType": "contributor"
},
{
"firstName": "Barbara Ketcham",
"lastName": "Wheaton",
"creatorType": "contributor"
},
{
"firstName": "Avis",
"lastName": "DeVoto",
"creatorType": "contributor"
}
],
"date": "1961",
"abstractNote": "Illustrates the ways in which classic French dishes may be created with American foodstuffs and appliances.",
"callNumber": "641.64 C53m, c.1, 641.64 C53m, c. 3, 641.64 C53m, c.4, 641.64 C53m, c.5, 641.64 C53m, c.6, 641.64 C53m, c. 7, 641.64 C53m, c. 8, 641.64 C53m, c.2",
"edition": "[1st ed.]",
"extra": "HOLLIS number: 002208563",
"language": "eng",
"place": "New York",
"publisher": "Knopf",
"attachments": [
{
"title": "HOLLIS Permalink",
"snapshot": false
}
],
"tags": [
{
"tag": "Cooking, French."
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "import",
"input": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<record xmlns=\"http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib\" xmlns:sear=\"http://www.exlibrisgroup.com/xsd/jaguar/search\">\n <control>\n <sourcerecordid>21126560510002561</sourcerecordid>\n <sourceid>MAN_ALMA</sourceid>\n <recordid>MAN_ALMA21126560510002561</recordid>\n <originalsourceid>MAN_INST</originalsourceid>\n <addsrcrecordid>KPLUS492418942</addsrcrecordid>\n <addsrcrecordid>BSZ118463411</addsrcrecordid>\n <addsrcrecordid>OCLC238724886</addsrcrecordid>\n <addsrcrecordid>OCLC62185846</addsrcrecordid>\n <sourceformat>MARC21</sourceformat>\n <sourcesystem>Alma</sourcesystem>\n <almaid>49MAN_INST:21126560510002561</almaid>\n </control>\n <display>\n <type>book</type>\n <title>Zur Medienöffentlichkeit der Dritten Gewalt rechtliche Aspekte des Zugangs der Medien zur Rechtsprechung im Verfassungsstaat des Grundgesetzes</title>\n <creator>Coelln, Christian von</creator>\n <contributor>Bethge, Herbert</contributor>\n <contributor>Söhn, Hartmut [Gutachter]</contributor>\n <publisher>Tübingen Mohr Siebeck</publisher>\n <creationdate>2005</creationdate>\n <format>XXX, 575 S. 24 cm</format>\n <identifier>$$CISBN$$V 3161486617</identifier>\n <subject>Conduct of court proceedings -- Germany; Constitutional law -- Germany; Freedom of information -- Germany; Hochschulschrift</subject>\n <subject>Deutschland / Rechtsprechende Gewalt / Öffentlichkeitsgrundsatz / Informationsfreiheit</subject>\n <subject>Deutschland / Gerichtsberichterstattung / Elektronische Medien / Verbot / Verfassungsmäßigkeit</subject>\n <subject>Deutschland / Gerichtsverhandlung / Schallaufzeichnung / Bildaufzeichnung</subject>\n <description>Zugl.: Passau, Univ., Habil.-Schr., 2004</description>\n <description>Christian von Coelln behandelt die rechtlichen, insbesondere die verfassungsrechtlichen Fragen des Zugangs der Medien zur Rechtsprechung. Neben generellen Erwägungen zur Bedeutung der Medienöffentlichkeit der Dritten Gewalt für Demokratie und Rechtsstaat befaßt er sich u.a. mit der Teilnahme von Journalisten an mündlichen Verhandlungen und mit der Problematik von Bild- und Tonaufnahmen in Gerichtsgebäuden.(Quelle: Verlag).</description>\n <language>ger</language>\n <relation>$$Cseries $$VIus publicum ; 138 ; 13800</relation>\n <source>MAN_ALMA</source>\n <availlibrary>$$IMAN$$LMANLS300$$1Lehrstuhl Müller-Terpitz$$2(341 PH 4520 C672 )$$Savailable$$X49MAN_INST$$YLS300$$Z341$$P1</availlibrary>\n <lds01>Mohr Siebeck</lds01>\n <lds27>121557006 Bethge, Herbert</lds27>\n <lds30>PG 430</lds30>\n <availinstitution>$$IMAN$$Savailable</availinstitution>\n <availpnx>available</availpnx>\n </display>\n <links>\n <openurl>$$Topenurl</openurl>\n <thumbnail>$$Tamazon_thumb</thumbnail>\n <thumbnail>$$Tgoogle_thumb</thumbnail>\n <addlink>$$Uhttp://www.gbv.de/dms/bsz/toc/bsz118463411inh.pdf$$DInhaltsverzeichnis 04</addlink>\n <addlink>$$Uhttp://d-nb.info/975503499/04$$D04</addlink>\n <addlink>$$Uhttp://swbplus.bsz-bw.de/bsz118463411inh.htm$$DInhaltsverzeichnis</addlink>\n <lln05>$$TSerial_Link$$ESerialLink$$1UP(DE-627)231976704</lln05>\n </links>\n <search>\n <creatorcontrib>Christian von Coelln</creatorcontrib>\n <creatorcontrib>Christian, Von Coelln</creatorcontrib>\n <creatorcontrib>Coelln, C</creatorcontrib>\n <creatorcontrib>Von Coelln, C</creatorcontrib>\n <creatorcontrib>Christian von Coelln</creatorcontrib>\n <creatorcontrib>Herbert Bethge</creatorcontrib>\n <creatorcontrib>Hartmut Söhn Gutachter</creatorcontrib>\n <creatorcontrib>Bethge, H</creatorcontrib>\n <creatorcontrib>Söhn, H</creatorcontrib>\n <creatorcontrib>Coelln, Christian von</creatorcontrib>\n <creatorcontrib>Coelln C</creatorcontrib>\n <creatorcontrib>Bethge, Herbert</creatorcontrib>\n <creatorcontrib>Söhn, Hartmut [Gutachter]</creatorcontrib>\n <title>Zur Medienöffentlichkeit der Dritten Gewalt rechtliche Aspekte des Zugangs der Medien zur
"items": [
{
"itemType": "book",
"title": "Zur Medienöffentlichkeit der Dritten Gewalt rechtliche Aspekte des Zugangs der Medien zur Rechtsprechung im Verfassungsstaat des Grundgesetzes",
"creators": [
{
"firstName": "Christian von",
"lastName": "Coelln",
"creatorType": "author"
},
{
"firstName": "Herbert",
"lastName": "Bethge",
"creatorType": "contributor"
},
{
"firstName": "Hartmut",
"lastName": "Söhn",
"creatorType": "contributor"
}
],
"date": "2005",
"ISBN": "3161486617",
"abstractNote": "Zugl.: Passau, Univ., Habil.-Schr., 2004, Christian von Coelln behandelt die rechtlichen, insbesondere die verfassungsrechtlichen Fragen des Zugangs der Medien zur Rechtsprechung. Neben generellen Erwägungen zur Bedeutung der Medienöffentlichkeit der Dritten Gewalt für Demokratie und Rechtsstaat befaßt er sich u.a. mit der Teilnahme von Journalisten an mündlichen Verhandlungen und mit der Problematik von Bild- und Tonaufnahmen in Gerichtsgebäuden.(Quelle: Verlag).",
"callNumber": "341 PH 4520 C672",
"language": "ger",
"numPages": "xxx+575",
"place": "Tübingen",
"publisher": "Mohr Siebeck",
"series": "Jus publicum",
"seriesNumber": "138",
"attachments": [],
"tags": [
{
"tag": "Bildaufzeichnung"
},
{
"tag": "Conduct of court proceedings"
},
{
"tag": "Deutschland"
},
{
"tag": "Deutschland"
},
{
"tag": "Deutschland"
},
{
"tag": "Elektronische Medien"
},
{
"tag": "Gerichtsberichterstattung"
},
{
"tag": "Gerichtsverhandlung"
},
{
"tag": "Germany; Constitutional law"
},
{
"tag": "Germany; Freedom of information"
},
{
"tag": "Germany; Hochschulschrift"
},
{
"tag": "Informationsfreiheit"
},
{
"tag": "Rechtsprechende Gewalt"
},
{
"tag": "Schallaufzeichnung"
},
{
"tag": "Verbot"
},
{
"tag": "Verfassungsmäßigkeit"
},
{
"tag": "Öffentlichkeitsgrundsatz"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "import",
"input": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<record xmlns=\"http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib\" xmlns:sear=\"http://www.exlibrisgroup.com/xsd/jaguar/search\">\n <control>\n <sourcerecordid>21150834900003766</sourcerecordid>\n <sourceid>01CTW_CC_ALMA</sourceid>\n <recordid>01CTW_CC_ALMA21150834900003766</recordid>\n <originalsourceid>01CTW_CC</originalsourceid>\n <sourceformat>MARC21</sourceformat>\n <sourcesystem>Alma</sourcesystem>\n <almaid>01CTW_CC/21150834900003766</almaid>\n <almaid>01CTW_CC:21150834900003766</almaid>\n </control>\n <display>\n <type>print_book</type>\n <title>The sea</title>\n <creator>John Crompton 1893-1972</creator>\n <publisher>New York, NY : Nick Lyons Books</publisher>\n <creationdate>1988</creationdate>\n <format>x, 233, [1] p. ; 21 cm..</format>\n <identifier>$$CISBN$$V0941130835 (pbk.) :</identifier>\n <subject>Marine biology</subject>\n <language>eng</language>\n <source>01CTW_CC_ALMA</source>\n <availlibrary>$$I01CTW_CC$$L01CTW_CC_CCSHAIN$$1CC - Main Book Collection (call numbers A-G level 2; H-Z level 3)$$2(QH91 C76 1988)$$Savailable$$X01CTW_CC$$YCCSHAIN$$ZCSTACKS$$P1</availlibrary>\n <notes>Bibliography: p. [234].</notes>\n <lds01>992232803503766</lds01>\n <lds02>01CTW_CC_ALMA21150834900003766</lds02>\n <lds03>Reprint. Originally published: New York : Doubleday, 1957. With new introd.</lds03>\n <lds03>Includes index.</lds03>\n <lds03>Armington Social Values Collection.</lds03>\n <lds07>Committed to retain for Eastern Academic Scholars' Trust</lds07>\n <availinstitution>$$I01CTW_CC$$Savailable</availinstitution>\n <availpnx>available</availpnx>\n </display>\n <links>\n <thumbnail>$$Tamazon_thumb</thumbnail>\n <thumbnail>$$Tgoogle_thumb</thumbnail>\n <linktouc>$$Tworldcat_isbn$$Eworldcat</linktouc>\n <uri>$$Aisbn$$V0941130835$$U(uri) http://www.isbnsearch.org/isbn/0941130835</uri>\n <uri>$$Aoclc_nr$$V(OCoLC)ocm17412356$$U(uri) http://www.worldcat.org/oclc/17412356</uri>\n <uri>$$Acreatorcontrib$$VCrompton, John$$U(uri) http://id.loc.gov/authorities/names/n85809864$$U(uri) http://viaf.org/viaf/sourceID/LC|n85809864</uri>\n <uri>$$Asubject$$VMarine biology$$U(uri) http://id.loc.gov/authorities/subjects/sh85081138</uri>\n </links>\n <search>\n <creatorcontrib>John, Crompton 1893-1972.</creatorcontrib>\n <creatorcontrib>John Battersby Crompton, Lamburn 1893-</creatorcontrib>\n <creatorcontrib>Crompton, J</creatorcontrib>\n <creatorcontrib>Lamburn, J</creatorcontrib>\n <creatorcontrib>John Crompton ; with 24 drawings by Denys Ovenden ; [introduction by Robert F. Jones].</creatorcontrib>\n <title>The sea /</title>\n <subject>Marine biology.</subject>\n <subject>Biological oceanography</subject>\n <subject>Ocean biology</subject>\n <subject>Oceanic biology</subject>\n <subject>Sea biology</subject>\n <general>Nick Lyons Books,</general>\n <general>Reprint. Originally published: New York : Doubleday, 1957. With new introd.</general>\n <general>Includes index.</general>\n <general>Armington Social Values Collection.</general>\n <sourceid>01CTW_CC_ALMA</sourceid>\n <recordid>01CTW_CC_ALMA21150834900003766</recordid>\n <isbn>0941130835</isbn>\n <rsrctype>print_book</rsrctype>\n <creationdate>1988</creationdate>\n <creationdate>1957</creationdate>\n <startdate>19880101</startdate>\n <enddate>19881231</enddate>\n <addsrcrecordid>992232803503766</addsrcrecordid>\n <searchscope>01CTW_CC_ALMA</searchscope>\n <searchscope>01CTW_CC</searchscope>\n <searchscope>CC_CC_P</searchscope>\n <searchscope>CC_WU_P</searchscope>\n <searchscope>CC_TC_P</searchscope>\n <scope>01CTW_CC_ALMA</scope>\n <scope>01CTW_CC</scope>\n <scope>CC_CC_P</scope>\n <scope>CC_WU_P</scope>\n <scope>CC_TC_P</scope>\n <lsr02>(OCoLC)ocm17412356</lsr02>\n <lsr02>(CtNlC)223280-conndb-Voyager</lsr02>\n </search>\n <sort>\n <title>sea /</title>\n <creationdate>1988</creationdate>\n
"items": [
{
"itemType": "book",
"title": "The sea",
"creators": [
{
"firstName": "John",
"lastName": "Crompton",
"creatorType": "author"
}
],
"date": "1988",
"ISBN": "0941130835",
"callNumber": "QH91 C76 1988",
"language": "eng",
"numPages": "1",
"place": "New York, NY",
"publisher": "Nick Lyons Books",
"attachments": [],
"tags": [
{
"tag": "Marine biology"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "import",
"input": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<record xmlns=\"http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib\">\n <control>\n <sourceid>springer</sourceid>\n <recordid>cdi_springer_books_10_1007_978_3_030_63396_7_25</recordid>\n <sourceformat>XML</sourceformat>\n <sourcesystem>Other</sourcesystem>\n <sourcerecordid>springer_books_10_1007_978_3_030_63396_7_25</sourcerecordid>\n <originalsourceid>FETCH-LOGICAL-s1418-315a6625e206432bee12b281c3f312135a36281cc7330c5908f38a100fa2a693</originalsourceid>\n <addsrcrecordid>eNpFkM1OwzAQhM2fRCl9Aw5-AcPaGzsJtyripygIJHq3Nq6DAk1c2by_cAuC02hnpNHOx9iVhGsJUN7UZSVQAIIwiLURpVX6iF1gdg5GfcxmsjJaSNTm5D_QcPoXFNU5W6T0AQCqUKgLOWNPb8ENtOXPfjMQX407cl88THzpaOPHwfFXH_sQR5qcv-WtTylMKSvFyW94H8PIGxp9DGG6ZGc9bZNf_Oqcre_v1s2jaF8eVs2yFUkWMq-QmoxR2iswBarOe6k6VUmHPUqV3yc0-9OViOB0DVWPFWUIPSkyNc6Z-qlNuzhM7z7aLoTPZCXYPSmbSVm0eb49gLF7UvgNXsVVHQ</addsrcrecordid>\n <sourcetype>Publisher</sourcetype>\n <isCDI>true</isCDI>\n <recordtype>book_chapter</recordtype>\n </control>\n <display>\n <type>book_chapter</type>\n <title>Social Media Impact on Academic Performance: Lessons Learned from Cameroon</title>\n <source>Springer Books</source>\n <source>Springer Computer Science eBooks 2020 English/International</source>\n <creator>Kuika Watat, Josue ; Jonathan, Gideon Mekonnen ; Ntsafack Dongmo, Frank Wilson ; Zine El Abidine, Nour El Houda</creator>\n <creatorcontrib>Kuika Watat, Josue ; Jonathan, Gideon Mekonnen ; Ntsafack Dongmo, Frank Wilson ; Zine El Abidine, Nour El Houda</creatorcontrib>\n <description>The continuously improving Internet penetration in the continent, coupled with the increasing number of smartphone users in Africa has been considered as the reasons for the adoption of social media among students and other adolescents. Even though this development has been recognizing in the literature, only a few studies have investigated the acceptance, use, and retention of social media for academic purposes. However, findings of prior studies suggest that the use of social media has an influence on academic performance. To address the lack of knowledge on the adoption of social media among students, this study aims to explore the factors that are related to students acceptance and use of social media. We attempt to extend the Technology Acceptance Model by integrating relational engagement, Perceived Satisfaction, as well as the Perspective of the Use of Social Media in Education. The proposed theoretical model was evaluated using quantitative data collected from 460 students in Cameroon. We applied PLS-SEM technique to test the hypotheses and the theoretical model. Implications of the findings, as well as future research directions, are presented.</description>\n <identifier>ISSN: 1865-1348</identifier>\n <identifier>ISBN: 3030633950</identifier>\n <identifier>ISBN: 9783030633950</identifier>\n <identifier>EISSN: 1865-1356</identifier>\n <identifier>EISBN: 3030633969</identifier>\n <identifier>EISBN: 9783030633967</identifier>\n <identifier>DOI: 10.1007/978-3-030-63396-7_25</identifier>\n <language>eng</language>\n <publisher>Cham: Springer International Publishing</publisher>\n <subject>Academic performance ; Africa ; Relational commitment ; Social media ; TAM</subject>\n <ispartof>Information Systems, 2020-11-21, p.370-379</ispartof>\n <rights>Springer Nature Switzerland AG 2020</rights>\n <orcidid>0000-0003-4673-3800 ; 0000-0001-6360-7641</orcidid>\n <relation>Lecture Notes in Business Information Processing</relation>\n </display>\n <links>\n <openurl>$$Topenurl_article</openurl>\n <openurlfulltext>$$Topenurlfull_article</openurlfulltext>\n <thumbnail>$$Usyndetics_thumb_exl</thumbnail>\n <linktopdf>$$Uhttps://link.springer.com/content/pdf/10.1007/978-3-030-63396-7_25$$EPDF$$P50$$Gspringer$$H</linktopdf>\n <linktohtml>$$Uhttps://link.springer.com/10.1007/978-3-030-63396-7_25$$EHTML$$P50$$Gspringer$$H</linktohtml>\n </links>\n <search>\n <creatorcontrib>Kuika Watat, Josue<
"items": [
{
"itemType": "bookSection",
"title": "Social Media Impact on Academic Performance: Lessons Learned from Cameroon",
"creators": [
{
"firstName": "Josue",
"lastName": "Kuika Watat",
"creatorType": "author"
},
{
"firstName": "Gideon Mekonnen",
"lastName": "Jonathan",
"creatorType": "author"
},
{
"firstName": "Frank Wilson",
"lastName": "Ntsafack Dongmo",
"creatorType": "author"
},
{
"firstName": "Nour El Houda",
"lastName": "Zine El Abidine",
"creatorType": "author"
}
],
"date": "2020",
"ISBN": "3030633950",
"abstractNote": "The continuously improving Internet penetration in the continent, coupled with the increasing number of smartphone users in Africa has been considered as the reasons for the adoption of social media among students and other adolescents. Even though this development has been recognizing in the literature, only a few studies have investigated the acceptance, use, and retention of social media for academic purposes. However, findings of prior studies suggest that the use of social media has an influence on academic performance. To address the lack of knowledge on the adoption of social media among students, this study aims to explore the factors that are related to students acceptance and use of social media. We attempt to extend the Technology Acceptance Model by integrating relational engagement, Perceived Satisfaction, as well as the Perspective of the Use of Social Media in Education. The proposed theoretical model was evaluated using quantitative data collected from 460 students in Cameroon. We applied PLS-SEM technique to test the hypotheses and the theoretical model. Implications of the findings, as well as future research directions, are presented.",
"bookTitle": "Information Systems",
"language": "eng",
"pages": "370379",
"place": "Cham",
"publisher": "Springer International Publishing",
"series": "Lecture Notes in Business Information Processing",
"attachments": [],
"tags": [
{
"tag": "Academic performance"
},
{
"tag": "Africa"
},
{
"tag": "Relational commitment"
},
{
"tag": "Social media"
},
{
"tag": "TAM"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "import",
"input": "<?xml version=\"1.0\" encoding=\"UTF-8\"?><record xmlns=\"http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib\" xmlns:sear=\"http://www.exlibrisgroup.com/xsd/jaguar/search\"><delivery><availabilityLinks>detailsgetit1</availabilityLinks><displayLocation>true</displayLocation><recordOwner>49KOBV_FUB</recordOwner><physicalServiceId>null</physicalServiceId><sharedDigitalCandidates>null</sharedDigitalCandidates><link><displayLabel>thumbnail</displayLabel><linkURL>https://proxy-eu.hosted.exlibrisgroup.com/exl_rewrite/books.google.com/books?bibkeys=ISBN:9781784744069,OCLC:,LCCN:&amp;jscmd=viewapi&amp;callback=updateGBSCover</linkURL><linkType>thumbnail</linkType><id>:_0</id></link><availability>unavailable</availability><additionalLocations>false</additionalLocations><digitalAuxiliaryMode>false</digitalAuxiliaryMode><holding><matchForHoldings><holdingRecord>852##b</holdingRecord><matchOn>MainLocation</matchOn></matchForHoldings><subLocationCode>EB/1</subLocationCode><volumeFilter>null</volumeFilter><ilsApiId>9959861162102883</ilsApiId><callNumberType>8</callNumberType><libraryCode>920</libraryCode><yearFilter>null</yearFilter><boundWith>false</boundWith><stackMapUrl>http://infosystem.philbib.de?sig={call_number}</stackMapUrl><isValidUser>true</isValidUser><mainLocation>Philologische Bibliothek</mainLocation><callNumber/><adaptorid>ALMA_01</adaptorid><organization>49KOBV_FUB</organization><holdingURL>OVP</holdingURL><availabilityStatus>unavailable</availabilityStatus><id>_:0</id><subLocation>Ebene 1</subLocation><holdId>221106260200002883</holdId><holKey>HoldingResultKey [mid=221106260200002883, libraryId=398792270002883, locationCode=EB/1, callNumber=null]</holKey><singleUnavailableItemProcessType>null</singleUnavailableItemProcessType><relatedTitle>null</relatedTitle></holding><bestlocation><matchForHoldings><holdingRecord>852##b</holdingRecord><matchOn>MainLocation</matchOn></matchForHoldings><subLocationCode>EB/1</subLocationCode><volumeFilter>null</volumeFilter><ilsApiId>9959861162102883</ilsApiId><callNumberType>8</callNumberType><libraryCode>920</libraryCode><yearFilter>null</yearFilter><boundWith>false</boundWith><stackMapUrl>http://infosystem.philbib.de?sig={call_number}</stackMapUrl><isValidUser>true</isValidUser><mainLocation>Philologische Bibliothek</mainLocation><callNumber/><adaptorid>ALMA_01</adaptorid><organization>49KOBV_FUB</organization><holdingURL>OVP</holdingURL><availabilityStatus>unavailable</availabilityStatus><id>_:0</id><subLocation>Ebene 1</subLocation><holdId>221106260200002883</holdId><holKey>HoldingResultKey [mid=221106260200002883, libraryId=398792270002883, locationCode=EB/1, callNumber=null]</holKey><singleUnavailableItemProcessType>null</singleUnavailableItemProcessType><relatedTitle>null</relatedTitle></bestlocation><electronicServices>null</electronicServices><feDisplayOtherLocations>false</feDisplayOtherLocations><hasD>null</hasD><hideResourceSharing>false</hideResourceSharing><hasFilteredServices>null</hasFilteredServices><physicalItemTextCodes>null</physicalItemTextCodes><quickAccessService>null</quickAccessService><recordInstitutionCode>null</recordInstitutionCode><displayedAvailability>null</displayedAvailability><deliveryCategory>Alma-P</deliveryCategory><serviceMode>ovp</serviceMode><filteredByGroupServices>null</filteredByGroupServices><GetIt1><links><isLinktoOnline>false</isLinktoOnline><displayText>null</displayText><inst4opac>49KOBV_FUB</inst4opac><getItTabText>service_getit</getItTabText><adaptorid>ALMA_01</adaptorid><ilsApiId>9959861162102883</ilsApiId><link>OVP</link><id>_:0</id></links><category>Alma-P</category></GetIt1></delivery><search><creationdate>2021</creationdate><creator>Galgut, Damon 1963-</creator><sort_journal_title>&lt;&lt;The&gt;&gt; promise /</sort_journal_title><sort_title>&lt;&lt;The&gt;&gt; promise / Damon Galgut.</sort_title><sort_creationdate_full>2021</sort_creationdate_full><subject>Fiktionale Darstellung</subject><subject>South Africa / Fiction</subject><isbn>9781473584464</isbn><isbn>1473584469</isbn><isbn>1784744077</isbn><isbn>978178474407
"items": [
{
"itemType": "book",
"title": "The promise / Damon Galgut.",
"creators": [
{
"firstName": "Damon",
"lastName": "Galgut",
"creatorType": "author"
}
],
"date": "2021",
"ISBN": "9781784744069",
"abstractNote": "\"The Promise charts the crash and burn of a white South African family, living on a farm outside Pretoria. The Swarts are gathering for Ma's funeral. The younger generation, Anton and Amor, detest everything the family stand for - not least the failed promise to the Black woman who has worked for them her whole life. After years of service, Salome was promised her own house, her own land ... yet somehow, as each decade passes, that promise remains unfulfilled.\" Klappentext, Cover: \"Shortlisted The 2021 Booker Prize\"",
"language": "eng",
"place": "London",
"publisher": "Chatto & Windus",
"attachments": [],
"tags": [
{
"tag": "Fiction"
},
{
"tag": "South Africa"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "import",
"input": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<record xmlns=\"http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib\" xmlns:sear=\"http://www.exlibrisgroup.com/xsd/jaguar/search\">\n <control>\n <sourcerecordid>005204170</sourcerecordid>\n <sourceid>07NLR_LMS</sourceid>\n <recordid>07NLR_LMS005204170</recordid>\n <originalsourceid>NLR01</originalsourceid>\n <ilsapiid>NLR01005204170</ilsapiid>\n <sourceformat>UNIMARC</sourceformat>\n <sourcesystem>Aleph</sourcesystem>\n </control>\n <display>\n <type>book</type>\n <title>Плавающий город : С рис.</title>\n <creator>Верн, Жюль (1828-1905) NLR10::RU\\NLR\\AUTH\\773453</creator>\n <publisher>Санкт-Петербург : С.В. Звонарев, 1872</publisher>\n <creationdate>1872</creationdate>\n <format>[2], 212, [2], 42 с., [14] л. ил. : ил. ; 22 см.</format>\n <language>rus</language>\n <source>07NLR_LMS</source>\n <availlibrary>$$I07NLR$$L07NLR_RFS$$2(18.104.6.29 )$$Savailable$$31$$40$$5N$$60$$XNLR50$$YRFS</availlibrary>\n <unititle>Восхождение на Монблан</unititle>\n <lds02>18.104.6.29</lds02>\n <lds05>Санкт-Петербург</lds05>\n <lds06>[2], 212, [2], 42 с., [14] л. ил.</lds06>\n <lds07>Верн Ж. Плавающий город : С рис / [Соч.] Жюля Верна ; Пер. под ред. Марка Вовчка [псевд.] С прил. Восхождение на Монблан Поля Верна Пер. Марка Вовчка [псевд.]. - Санкт-Петербург : С.В. Звонарев, 1872. - [2], 212, [2], 42 с., [14] л. ил. : ил. ; 22 см.</lds07>\n <lds08>[Соч.] Жюля Верна ; Пер. под ред. Марка Вовчка [псевд.] С прил. Восхождение на Монблан Поля Верна Пер. Марка Вовчка [псевд.]</lds08>\n <lds15>NLR01 005204170</lds15>\n <lds30>Вовчок, Марко (1834-1907) -- Редактор NLR10::RU\\NLR\\AUTH\\7716710</lds30>\n <availinstitution>$$I07NLR$$Savailable</availinstitution>\n <availpnx>available</availpnx>\n </display>\n <links>\n <openurl>$$Topenurl_journal</openurl>\n <backlink>$$Taleph_backlink$$DOPAC</backlink>\n <linktoholdings>$$Taleph_holdings</linktoholdings>\n <lln03>$$Tcatalogue_error$$Ecatalogueerror</lln03>\n <lln05>$$Trecord_view_format$$Erecordviewformat</lln05>\n <lln06>$$Tdownload_iso2709$$Edownloadiso2709</lln06>\n <lln04>$$Tscan_request$$Escanrequest</lln04>\n </links>\n <search>\n <creatorcontrib>Верн, Жюль (1828-1905) NLR10::RU\\NLR\\AUTH\\773453</creatorcontrib>\n <creatorcontrib>Верн Ж. Г. 1828-1905 Жюль Габриэль</creatorcontrib>\n <creatorcontrib>Вовчок М. 1834-1907 Марк</creatorcontrib>\n <creatorcontrib>Вовчек М. 1834-1907 Марко</creatorcontrib>\n <creatorcontrib>Маркович М. А. 1834-1907 Мария Александровна</creatorcontrib>\n <creatorcontrib>Вилинская М. А. 1834-1907 Мария Александровна</creatorcontrib>\n <creatorcontrib>Марко Вовчок 1834-1907</creatorcontrib>\n <creatorcontrib>Вилинская-Маркович М. А. 1834-1907 Мария Александровна</creatorcontrib>\n <creatorcontrib>Верн Ж. 1828-1905 Жюль</creatorcontrib>\n <title>Плавающий город С рис.</title>\n <general>rus</general>\n <general>С.В. Звонарев</general>\n <sourceid>07NLR_LMS</sourceid>\n <recordid>07NLR_LMS005204170</recordid>\n <rsrctype>book</rsrctype>\n <creationdate>1872</creationdate>\n <startdate>18720101</startdate>\n <enddate>18721231</enddate>\n <addtitle>Плавающий город С рис.</addtitle>\n <addtitle>Восхождение на Монблан</addtitle>\n <searchscope>07NLR_LMS</searchscope>\n <searchscope>MAIN_07NLR</searchscope>\n <searchscope>07NLR</searchscope>\n <scope>07NLR_LMS</scope>\n
"items": [
{
"itemType": "book",
"title": "Плавающий город: С рис.",
"creators": [
{
"firstName": "Жюль",
"lastName": "Верн",
"creatorType": "author"
}
],
"date": "1872",
"callNumber": "18.104.6.29",
"language": "rus",
"place": "Санкт-Петербург",
"publisher": "С.В. Звонарев",
"attachments": [],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "import",
"input": "<?xml version=\"1.0\" encoding=\"UTF-8\"?><record xmlns=\"http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib\" xmlns:sear=\"http://www.exlibrisgroup.com/xsd/jaguar/search\"><delivery><availabilityLinks>detailsgetit1</availabilityLinks><displayLocation>true</displayLocation><recordOwner>01ALLIANCE_NETWORK</recordOwner><physicalServiceId>null</physicalServiceId><sharedDigitalCandidates>null</sharedDigitalCandidates><link><displayLabel>thumbnail</displayLabel><linkURL>https://proxy-na.hosted.exlibrisgroup.com/exl_rewrite/books.google.com/books?bibkeys=ISBN:,OCLC:,LCCN:71093813&amp;jscmd=viewapi&amp;callback=updateGBSCover</linkURL><linkType>thumbnail</linkType><id>:_0</id></link><availability>available_in_library</availability><additionalLocations>false</additionalLocations><digitalAuxiliaryMode>false</digitalAuxiliaryMode><holding><matchForHoldings><holdingRecord>852##b</holdingRecord><matchOn>MainLocation</matchOn></matchForHoldings><subLocationCode>pgst1</subLocationCode><volumeFilter>null</volumeFilter><ilsApiId>9933348101867</ilsApiId><callNumberType>0</callNumberType><libraryCode>WHITMAN</libraryCode><yearFilter>null</yearFilter><boundWith>false</boundWith><stackMapUrl> https://penroselib-php.herokuapp.com/apps/map/locate.php?loc=pgst1&amp;callno=TD174+.D95&amp;title=Pollution+%2F+Leonard+B.+Dworsky+%3B+with+an+introduction+by+Stewart+L.+Udall.</stackMapUrl><isValidUser>true</isValidUser><translateRelatedTitle>null</translateRelatedTitle><mainLocation>Whitman College Library</mainLocation><callNumber>TD174 .D95</callNumber><adaptorid>ALMA_01</adaptorid><organization>01ALLIANCE_WHITC</organization><holdingURL>OVP</holdingURL><availabilityStatus>available</availabilityStatus><id>_:0</id><subLocation>1st Floor Books</subLocation><holdId>2288279530001867</holdId><holKey>HoldingResultKey [mid=2288279530001867, libraryId=170730510001867, locationCode=pgst1, callNumber=TD174 .D95]</holKey><singleUnavailableItemProcessType>null</singleUnavailableItemProcessType><relatedTitle>null</relatedTitle></holding><bestlocation><matchForHoldings><holdingRecord>852##b</holdingRecord><matchOn>MainLocation</matchOn></matchForHoldings><subLocationCode>pgst1</subLocationCode><volumeFilter>null</volumeFilter><ilsApiId>9933348101867</ilsApiId><callNumberType>0</callNumberType><libraryCode>WHITMAN</libraryCode><yearFilter>null</yearFilter><boundWith>false</boundWith><stackMapUrl> https://penroselib-php.herokuapp.com/apps/map/locate.php?loc=pgst1&amp;callno=TD174+.D95&amp;title=Pollution+%2F+Leonard+B.+Dworsky+%3B+with+an+introduction+by+Stewart+L.+Udall.</stackMapUrl><isValidUser>true</isValidUser><translateRelatedTitle>null</translateRelatedTitle><mainLocation>Whitman College Library</mainLocation><callNumber>TD174 .D95</callNumber><adaptorid>ALMA_01</adaptorid><organization>01ALLIANCE_WHITC</organization><holdingURL>OVP</holdingURL><availabilityStatus>available</availabilityStatus><id>_:0</id><subLocation>1st Floor Books</subLocation><holdId>2288279530001867</holdId><holKey>HoldingResultKey [mid=2288279530001867, libraryId=170730510001867, locationCode=pgst1, callNumber=TD174 .D95]</holKey><singleUnavailableItemProcessType>null</singleUnavailableItemProcessType><relatedTitle>null</relatedTitle></bestlocation><electronicServices>null</electronicServices><feDisplayOtherLocations>false</feDisplayOtherLocations><hasD>null</hasD><hideResourceSharing>false</hideResourceSharing><hasFilteredServices>null</hasFilteredServices><physicalItemTextCodes>null</physicalItemTextCodes><almaInstitutionsList><instId>1857</instId><instCode>01ALLIANCE_UPORT</instCode><availabilityStatus>available_in_institution</availabilityStatus><instName>University of Portland</instName><envURL/><getitLink><displayText>Alma-P</displayText><linkRecordId>99177171740001451</linkRecordId></getitLink></almaInstitutionsList><almaInstitutionsList><instId>1856</instId><instCode>01ALLIANCE_WOU</instCode><availabilityStatus>available_in_institution</availabilityStatus><instName>Western Oregon University</instName><envURL/><getitLink><displayText>Alma-P</displayText><linkRec
"items": [
{
"itemType": "book",
"title": "Pollution",
"creators": [
{
"firstName": "Leonard B.",
"lastName": "Dworsky",
"creatorType": "author"
}
],
"date": "1971",
"abstractNote": "Includes bibliographical references.",
"language": "eng",
"place": "New York",
"publisher": "Chelsea House Publishers",
"series": "Conservation in the United States",
"attachments": [],
"tags": [
{
"tag": "Air"
},
{
"tag": "Environmental law"
},
{
"tag": "Environmental policy"
},
{
"tag": "Pollution"
},
{
"tag": "Pollution"
},
{
"tag": "United States"
},
{
"tag": "United States"
},
{
"tag": "Water"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "import",
"input": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<record xmlns=\"http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib\" xmlns:sear=\"http://www.exlibrisgroup.com/xsd/jaguar/search\">\n <control>\n <sourcerecordid>2174645960003337</sourcerecordid>\n <sourceid>WUW_alma</sourceid>\n <recordid>WUW_alma2174645960003337</recordid>\n <addsrcrecordid>AC03437319</addsrcrecordid>\n <sourceformat>MARC21</sourceformat>\n <sourcesystem>Alma</sourcesystem>\n <almaid>43ACC_WUW:2174645960003337</almaid>\n </control>\n <display>\n <type>book</type>\n <title>Theory of economic dynamics : an essay on cyclical and long-run changes in capitalist economy</title>\n <creator>Kalecki, Michał [VerfasserIn]$$QKalecki, Michał$$0(DE-588)118559494$$G(uri)http://d-nb.info/gnd/118559494</creator>\n <edition>1. publ.</edition>\n <publisher>London : Allen &amp; Unwin</publisher>\n <creationdate>1954</creationdate>\n <format>178 S., graph. Darst.</format>\n <subject>Kapitalismus ; Konjunkturzyklus ; Wirtschaftsentwicklung</subject>\n <description>Hier auch spätere, unveränderte Nachdrucke (1956)</description>\n <language>eng</language>\n <source>WU Bibliothekskatalog</source>\n <availlibrary>$$IWUW$$LWUW_B_JHB$$1Closed Stacks$$2503328-G$$Savailable$$X43ACC_WUW$$YJHB$$ZMG$$P1</availlibrary>\n <availlibrary>$$IWUW$$LWUW_B_JHB$$1Level -2 Books$$2320083-M$$Savailable$$X43ACC_WUW$$YJHB$$ZMAG$$P2</availlibrary>\n <availlibrary>$$IWUW$$LWUW_B_JHB$$1Steindl Collection$$2S/335.5/K14 T3$$Savailable$$X43ACC_WUW$$YJHB$$ZSST$$P3</availlibrary>\n <lds14>503328-G</lds14>\n <lds14>320083-M</lds14>\n <lds14>S/335.5/K14 T3</lds14>\n <lds16>by M. Kalecki</lds16>\n <lds30>AC03437319</lds30>\n <lds33>https://permalink.obvsg.at/wuw/AC03437319</lds33>\n <lds53>Kapitalismus | Konjunkturzyklus | Wirtschaftsentwicklung</lds53>\n <lds55>Theory of economic dynamics: an essay on cyclical and long-run changes in capitalist economy</lds55>\n <lds56>Allen &amp; Unwin</lds56>\n <lds58>WU Bibliothekszentrum LC, Signatur: 503328-G</lds58>\n <lds58>WU Bibliothekszentrum LC, Signatur: 320083-M</lds58>\n <lds58>WU Bibliothekszentrum LC, Signatur: S/335.5/K14 T3</lds58>\n <lds60>eng</lds60>\n <lds61>Kalecki, Michał</lds61>\n <availinstitution>$$IWUW$$Savailable</availinstitution>\n <availpnx>available</availpnx>\n <version>2</version>\n </display>\n <search>\n <creatorcontrib>Kalecki, Michał [VerfasserIn]</creatorcontrib>\n <creatorcontrib>Michał</creatorcontrib>\n <creatorcontrib>Kalecki 1899-1970 VerfasserIn</creatorcontrib>\n <creatorcontrib>M.</creatorcontrib>\n <creatorcontrib>Kalecki 1899-1970</creatorcontrib>\n <creatorcontrib>Michal</creatorcontrib>\n <creatorcontrib>Kaletskii 1899-1970</creatorcontrib>\n <creatorcontrib>Michel</creatorcontrib>\n <creatorcontrib>http://d-nb.info/gnd/118559494</creatorcontrib>\n <creatorcontrib>Kalecki, Michał 1899-1970 VerfasserIn</creatorcontrib>\n <creatorcontrib>Kalecki, M. 1899-1970</creatorcontrib>\n <creatorcontrib>Kaletskii, Michal 1899-1970</creatorcontrib>\n <creatorcontrib>Kalecki, Michal 1899-1970</creatorcontrib>\n <creatorcontrib>Kalecki, Michel 1899-1970</creatorcontrib>\n <creatorcontrib>Kalecki, M</creatorcontrib>\n <creatorcontrib>Kaletskii, M</creatorcontrib>\n <creatorcontrib>(uri)http://d-nb.info/gnd/118559494</creatorcontrib>\n <title>Theory of economic dynamics an essay on cyclical and long-run changes in capitalist economy</title>\n <description>Hier auch spätere, unveränderte Nachdrucke (1956)</description>\n <subject>Kapitalismus ; Konjunkturzyklus ; Wirtschaftsentwicklung</subject>\n <subject>Kapitalismus</subject>\n <subject>Konjunkturzyklus</subject>\n <subject>Wirtschaftsentwicklung</subject>\n <subject>Wirtschaftliche Entwicklung</subject>\n <subject>Wirtschaftsdynamik</subject>\n <subject>Wirtschaftswandel</subject>\n <subject>Wirtschaftlicher Wandel</subject>\n <subject>Ökonomische Entwicklung</subjec
"items": [
{
"itemType": "book",
"title": "Theory of economic dynamics: an essay on cyclical and long-run changes in capitalist economy",
"creators": [
{
"firstName": "Michał",
"lastName": "Kalecki",
"creatorType": "author"
}
],
"date": "1954",
"abstractNote": "Hier auch spätere, unveränderte Nachdrucke (1956)",
"callNumber": "503328-G, 320083-M, S/335.5/K14 T3",
"edition": "1. publ.",
"language": "eng",
"numPages": "178",
"place": "London",
"publisher": "Allen & Unwin",
"attachments": [],
"tags": [
{
"tag": "Kapitalismus"
},
{
"tag": "Konjunkturzyklus"
},
{
"tag": "Wirtschaftsentwicklung"
}
],
"notes": [],
"seeAlso": []
}
]
}
]
/** END TEST CASES **/