-
Notifications
You must be signed in to change notification settings - Fork 786
/
Copy pathPKP Catalog Systems.js
1455 lines (1423 loc) · 53.3 KB
/
PKP Catalog Systems.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"translatorID": "99b62ba4-065c-4e83-a5c0-d8cc0c75d388",
"label": "PKP Catalog Systems",
"creator": "Aurimas Vinckevicius and Abe Jellinek",
"target": "/(article|preprint|issue)/view/|/catalog/book/|/search/search|/index\\.php/default",
"minVersion": "2.1.9",
"maxVersion": "",
"priority": 200,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsibv",
"lastUpdated": "2024-03-21 19:10:24"
}
/*
***** BEGIN LICENSE BLOCK *****
Copyright © 2012-2021 Aurimas Vinckevicius and Abe Jellinek
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 detectWeb(doc, url) {
let generator = attr(doc, 'meta[name="generator"]', 'content')
|| text(doc, '#developedBy');
if (!generator && doc.body.id.includes('openJournalSystems')) {
generator = 'Open Journal Systems';
}
if (generator.startsWith('Open ')
&& (url.includes('/search/search')
|| doc.querySelector('.obj_issue_toc .cmp_article_list')
|| doc.querySelector('#content > .tocArticle'))) {
if (getSearchResults(doc, true)) {
return "multiple";
}
else {
return false;
}
}
if (generator.startsWith('Open Journal Systems')) {
return 'journalArticle';
}
if (generator.startsWith('Open Monograph Press')) {
return 'book';
}
if (generator.startsWith('Open Preprint Systems')) {
return 'preprint';
}
return false;
}
function getSearchResults(doc, checkOnly) {
var items = {};
var found = false;
var rows = doc.querySelectorAll('.title a[href*="/view/"], .title a[href*="/catalog/"], .tocTitle a[href*="/view/"], .tocTitle a[href*="/catalog/"]');
for (let row of rows) {
let href = row.href;
let title = ZU.trimInternal(row.textContent);
if (!href || !title) continue;
if (checkOnly) return true;
found = true;
items[href] = title;
}
return found ? items : false;
}
function doWeb(doc, url) {
if (detectWeb(doc, url) == "multiple") {
Zotero.selectItems(getSearchResults(doc, false), function (items) {
if (items) ZU.processDocuments(Object.keys(items), scrape);
});
}
else {
// In OJS 3, up to at least version 3.1.1-2, the PDF view does not
// include metadata, so we must get it from the article landing page.
var urlParts = url.match(/(.+\/[^/]+\/view\/)([^/]+)\/[^/]+/);
if (urlParts) { // PDF view
ZU.processDocuments(urlParts[1] + urlParts[2], scrape);
}
else { // Article view
scrape(doc, url);
}
}
}
function scrape(doc, url) {
// use Embeded Metadata
var trans = Zotero.loadTranslator('web');
trans.setTranslator('951c027d-74ac-47d4-a107-9c3069ab7b48');
trans.setDocument(doc);
trans.setHandler('itemDone', function (obj, item) {
if (!item.title) {
item.title = text(doc, '#articleTitle');
}
if (item.creators.length == 0) {
var authorString = doc.getElementById("authorString");
if (authorString) {
var authorsList = authorString.textContent.split(',');
for (let i = 0; i < authorsList.length; i++) {
item.creators.push(ZU.cleanAuthor(authorsList[i], "author"));
}
}
}
// OJS journal abbreviations are rarely correct. sometimes they're
// generated from the journal's URL slug, other times they're just the
// number "1", or the full name of the journal, or an abbreviation that
// isn't correct according to ISO 4 or the journal's editors
// (see MeteoHistory test).
delete item.journalAbbreviation;
var doiNode = doc.getElementById('pub-id::doi');
if (!doiNode) doiNode = doc.querySelector('.pubid .value');
if (!item.DOI && doiNode) {
item.DOI = doiNode.textContent;
}
if (item.itemType == 'journalArticle') {
// abstract is supplied in DC:description, so it ends up in extra
// abstractNote is pulled from description, which is same as title
item.abstractNote = item.extra;
item.extra = undefined;
}
// if we still don't have abstract, we can try scraping from page
if (!item.abstractNote) {
item.abstractNote = ZU.xpathText(doc, '//div[@id="articleAbstract"]/div[1]')
|| ZU.xpathText(doc, '//div[contains(@class, "main_entry")]/div[contains(@class, "abstract")]');
}
if (item.abstractNote) {
item.abstractNote = item.abstractNote.trim().replace(/^Abstract:?\s*/, '');
}
if (!item.abstractNote) {
item.abstractNote = attr(doc, 'meta[name="DC.Description"]', 'content');
}
if (!item.ISBN) {
item.ISBN = ZU.cleanISBN(text(doc, '.identification_code .value'));
}
if (item.date) {
item.date = ZU.strToISO(item.date);
}
else {
item.date = ZU.strToISO(
attr(doc, 'meta[name="DC.Date.modified"]', 'content')
|| attr(doc, 'meta[name="DC.Date.created"]', 'content')
);
}
if (item.volume == '0') {
item.volume = '';
}
if (item.institution) {
item.institution = '';
}
var pdfAttachment = false;
// some journals link to a PDF view page in the header, not the PDF itself
for (let i = 0; i < item.attachments.length; i++) {
if (item.attachments[i].mimeType == 'application/pdf') {
pdfAttachment = true;
item.attachments[i].url = item.attachments[i].url.replace('/view/', '/download/');
}
else if (item.attachments[i].title == 'Snapshot') {
item.attachments.splice(i--, 1); // delete it
}
}
var pdfUrl = doc.querySelector("a.pdf");
// add linked PDF if there isn't one listed in the header
if (!pdfAttachment && pdfUrl) {
pdfAttachment = true;
item.attachments.push({
title: "Full Text PDF",
mimeType: "application/pdf",
url: pdfUrl.href.replace('/view/', '/download/')
});
}
// add linked PDF if there isn't one listed in the header
if (!pdfAttachment) {
for (let link of doc.querySelectorAll("a.obj_galley_link")) {
if (link.textContent.includes('PDF')) {
pdfAttachment = true;
item.attachments.push({
title: "Full Text PDF",
mimeType: "application/pdf",
url: link.href.replace('/view/', '/download/')
});
break;
}
}
}
item.complete();
});
trans.getTranslatorObject(function (trans) {
trans.itemType = detectWeb(doc, url);
trans.doWeb(doc, url);
});
}
/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "http://journals.linguisticsociety.org/elanguage/dad/article/view/362.html",
"items": [
{
"itemType": "journalArticle",
"title": "On Incrementality in Dialogue: Evidence from Compound Contributions",
"creators": [
{
"firstName": "Christine",
"lastName": "Howes",
"creatorType": "author"
},
{
"firstName": "Matthew",
"lastName": "Purver",
"creatorType": "author"
},
{
"firstName": "Patrick G. T.",
"lastName": "Healey",
"creatorType": "author"
},
{
"firstName": "Gregory",
"lastName": "Mills",
"creatorType": "author"
},
{
"firstName": "Eleni",
"lastName": "Gregoromichelaki",
"creatorType": "author"
}
],
"date": "2011-05-11",
"DOI": "10.5087/d&d.v2i1.362",
"ISSN": "2152-9620",
"abstractNote": "Spoken contributions in dialogue often continue or complete earlier contributions by either the same or a different speaker. These compound contributions (CCs) thus provide a natural context for investigations of incremental processing in dialogue.\n\nWe present a corpus study which confirms that CCs are a key dialogue phenomenon: almost 20% of contributions fit our general definition of CCs, with nearly 3% being the cross-person case most often studied. The results suggest that processing is word-by-word incremental, as splits can occur within syntactic constituents; however, some systematic differences between same- and cross-person cases indicate important dialogue-specific pragmatic effects. An experimental study then investigates these effects by artificially introducing CCs into multi-party text dialogue. Results suggest that CCs affect peoples expectations about who will speak next and whether other participants have formed a coalition or party.\n\nTogether, these studies suggest that CCs require an incremental processing mechanism that can provide a resource for constructing linguistic constituents that span multiple contributions and multiple participants. They also suggest the need to model higher-level dialogue units that have consequences for the organisation of turn-taking and for the development of a shared context.",
"issue": "1",
"language": "en",
"libraryCatalog": "journals.linguisticsociety.org",
"pages": "279-311",
"publicationTitle": "Dialogue & Discourse",
"shortTitle": "On Incrementality in Dialogue",
"url": "http://journals.linguisticsociety.org/elanguage/dad/article/view/362.html",
"volume": "2",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "http://www.ijdc.net/index.php/ijdc/article/view/8.2.5/",
"items": [
{
"itemType": "journalArticle",
"title": "Disciplinary differences in faculty research data management practices and perspectives",
"creators": [
{
"firstName": "Katherine G.",
"lastName": "Akers",
"creatorType": "author"
},
{
"firstName": "Jennifer",
"lastName": "Doty",
"creatorType": "author"
}
],
"date": "2013-11-21",
"DOI": "10.2218/ijdc.v8i2.263",
"ISSN": "1746-8256",
"abstractNote": "Academic librarians are increasingly engaging in data curation by providing infrastructure (e.g., institutional repositories) and offering services (e.g., data management plan consultations) to support the management of research data on their campuses. Efforts to develop these resources may benefit from a greater understanding of disciplinary differences in research data management needs. After conducting a survey of data management practices and perspectives at our research university, we categorized faculty members into four research domains—arts and humanities, social sciences, medical sciences, and basic sciences—and analyzed variations in their patterns of survey responses. We found statistically significant differences among the four research domains for nearly every survey item, revealing important disciplinary distinctions in data management actions, attitudes, and interest in support services. Serious consideration of both the similarities and dissimilarities among disciplines will help guide academic librarians and other data curation professionals in developing a range of data-management services that can be tailored to the unique needs of different scholarly researchers.",
"issue": "2",
"language": "en",
"libraryCatalog": "www.ijdc.net",
"pages": "5-26",
"publicationTitle": "International Journal of Digital Curation",
"rights": "Copyright (c)",
"url": "http://www.ijdc.net/index.php/ijdc/article/view/8.2.5/",
"volume": "8",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [
{
"tag": "DCC"
},
{
"tag": "IJDC"
},
{
"tag": "International Journal of Digital Curation"
},
{
"tag": "curation"
},
{
"tag": "digital curation"
},
{
"tag": "digital preservation"
},
{
"tag": "preservation"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://journals.ub.uni-heidelberg.de/index.php/ip/article/view/31976/26301",
"items": [
{
"itemType": "journalArticle",
"title": "Anleitung zur Organisation von Webkonferenzen am Beispiel der “Bibcast”-Aktion zum Bibliothekskongress 2016",
"creators": [
{
"firstName": "Daniel",
"lastName": "Beucke",
"creatorType": "author"
},
{
"firstName": "Arvid",
"lastName": "Deppe",
"creatorType": "author"
},
{
"firstName": "Tracy",
"lastName": "Hoffmann",
"creatorType": "author"
},
{
"firstName": "Felix",
"lastName": "Lohmeier",
"creatorType": "author"
},
{
"firstName": "Christof",
"lastName": "Rodejohann",
"creatorType": "author"
},
{
"firstName": "Pascal Ngoc Phu",
"lastName": "Tu",
"creatorType": "author"
}
],
"date": "2016-08-16",
"DOI": "10.11588/ip.2016.2.31976",
"ISSN": "2297-3249",
"abstractNote": "Zwischen dem 7. und 11. März 2016 fand der erste Bibcast, eine Webcast-Serie zu bibliothekarisch relevanten Themen statt. Aus der Idee heraus entstanden, abgelehnten Einreichungen für den Bibliothekskongress ein alternatives Forum zu bieten, hat sich der Bibcast als interessantes, flexibles und innovatives Format herausgestellt, das die Landschaft der Präsenzkonferenzen zukünftig sinnvoll ergänzen kann. In diesem Praxisbeitrag soll über Entstehung und Ablauf berichtet, Mehrwerte und Stolpersteine veranschaulicht und damit zugleich eine Anleitung zur Organisation von Webkonferenzen gegeben werden.",
"issue": "2",
"language": "de",
"libraryCatalog": "journals.ub.uni-heidelberg.de",
"publicationTitle": "Informationspraxis",
"rights": "Copyright (c) 2016 Daniel Beucke, Arvid Deppe, Tracy Hoffmann, Felix Lohmeier, Christof Rodejohann, Pascal Ngoc Phu Tu",
"url": "https://journals.ub.uni-heidelberg.de/index.php/ip/article/view/31976",
"volume": "2",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "http://www.mediaesthetics.org/index.php/mae/article/view/50",
"items": [
{
"itemType": "journalArticle",
"title": "World War II in American Movie Theatres from 1942-45: On Images of Civilian and Military Casualties and the Negotiation of a Shared Experience",
"creators": [
{
"firstName": "David",
"lastName": "Gaertner",
"creatorType": "author"
}
],
"date": "2016-06-23",
"DOI": "10.17169/mae.2016.50",
"ISSN": "2567-9309",
"abstractNote": "This study deals with the question of genre cinema in terms of an aesthetic experience that also accounts for a shared experience. The focus will be on the historical framework that constituted the emotional mobilization of the American public during World War II when newsreels and fictional war films were screened together as part of the staple program in movie theaters. Drawing on existing concepts of cinema and public sphere as well as on a phenomenological theory of spectator engagement this study sets out to propose a definition of the term moviegoing experience. On these grounds a historiographical account of the institutional practice of staple programming shall be explored together with a theoretical conceptualization of the spectator within in the realm of genre cinema.Diese Studie befragt das Genrekino als Modus ästhetischer Erfahrung in Hinblick auf die konkrete geteilten Erfahrung des Kinosaals. Der Fokus liegt auf den historischen Rahmenbedingen der emotionalen Mobilisierung der US-amerikanischen Öffentlichkeit während des Zweiten Weltkriegs und der gemeinsamen Vorführung von Kriegsnachrichten und fiktionalen Kriegsfilmen in Kinoprogrammen. Dabei wird auf Konzepte des Kinos als öffentlichem Raum und auf phänomenologische Theorien der Zuschaueradressierung Bezug genommen und ein integrative Definition der moviegoing experience entworfen. Dadurch ist es möglich, historiographische Schilderungen der institutionalisierten Praktiken der Kinoprogrammierung mit theoretischen Konzeptualisierungen der Zuschauererfahrung und des Genrekinos ins Verhältnis zu setzen.David Gaertner, M.A. is currently writing his dissertation on the cinematic experience of World War II and is a lecturer at the division of Film Studies at Freie Universität Berlin. From 2011 to 2014 he was research associate in the project “Staging images of war as a mediated experience of community“. He is co-editor of the book “Mobilisierung der Sinne. Der Hollywood-Kriegsfilm zwischen Genrekino und Historie” (Berlin 2013). // David Gaertner, M.A. arbeitet an einer Dissertation zur Kinoerfahrung im Zweiten Weltkrieg und lehrt am Seminar für Filmwissenschaft an der Freien Universität Berlin. 2011 bis 2014 war er wissenschaftlicher Mitarbeiter im DFG-Projekt „Inszenierungen des Bildes vom Krieg als Medialität des Gemeinschaftserlebens“. Er ist Mitherausgeber des Sammelbands “Mobilisierung der Sinne. Der Hollywood-Kriegsfilm zwischen Genrekino und Historie” (Berlin 2013).",
"issue": "1",
"language": "en",
"libraryCatalog": "www.mediaesthetics.org",
"publicationTitle": "mediaesthetics – Journal of Poetics of Audiovisual Images",
"rights": "Copyright (c) 2016 David Gaertner",
"shortTitle": "World War II in American Movie Theatres from 1942-45",
"url": "http://www.mediaesthetics.org/index.php/mae/article/view/50",
"attachments": [],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://www.qualitative-research.net/index.php/fqs/article/view/2477",
"items": [
{
"itemType": "journalArticle",
"title": "Computer Analysis of Qualitative Data in Literature and Research Performed by Polish Sociologists",
"creators": [
{
"firstName": "Jakub",
"lastName": "Niedbalski",
"creatorType": "author"
},
{
"firstName": "Izabela",
"lastName": "Ślęzak",
"creatorType": "author"
}
],
"date": "2016-07-28",
"DOI": "10.17169/fqs-17.3.2477",
"ISSN": "1438-5627",
"abstractNote": "The application of computer-assisted qualitative data analysis software (CAQDAS) in the field of qualitative sociology is becoming more popular. However, in Polish scientific research, the use of computer software to aid qualitative data analysis is uncommon. Nevertheless, the Polish qualitative research community is turning to CAQDAS software increasingly often. One noticeable result of working with CAQDAS is an increase in methodological awareness, which is reflected in higher accuracy and precision in qualitative data analysis. Our purpose in this article is to describe the qualitative researchers' environment in Poland and to consider the use of computer-assisted qualitative data analysis. In our deliberations, we focus mainly on the social sciences, especially sociology.URN: http://nbn-resolving.de/urn:nbn:de:0114-fqs160344",
"issue": "3",
"language": "en",
"libraryCatalog": "www.qualitative-research.net",
"publicationTitle": "Forum Qualitative Sozialforschung / Forum: Qualitative Social Research",
"rights": "Copyright (c) 2016 Jakub Niedbalski, Izabela Ślęzak",
"url": "https://www.qualitative-research.net/index.php/fqs/article/view/2477",
"volume": "17",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [
{
"tag": "CAQDAS"
},
{
"tag": "Polish sociology"
},
{
"tag": "computer-assisted qualitative data analysis"
},
{
"tag": "qualitative research"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://heiup.uni-heidelberg.de/journals/index.php/transcultural/article/view/23541",
"items": [
{
"itemType": "journalArticle",
"title": "On the Threshold of the \"Land of Marvels:\" Alexandra David-Neel in Sikkim and the Making of Global Buddhism",
"creators": [
{
"firstName": "Samuel",
"lastName": "Thévoz",
"creatorType": "author"
}
],
"date": "2016-07-21",
"DOI": "10.17885/heiup.ts.23541",
"ISSN": "2191-6411",
"abstractNote": "Alexandra David-Neel had already been acquainted with the Himalayas for a long time before the visits to Tibet in 1924 that would make her a mainstream figure of modern Buddhism. In fact, her encounter with Tibet and Tibetan Buddhism can be linked with Sikkim, where she arrived in 1912 after visiting India. An exploration of her Sikkim stay invites us to reconsider the self-fashioning of David-Neel’s image as an explorer of what she called the “land of marvels.” This paper highlights her construction of Sikkim as the locality that helped her create her singular vision of Tibet. Her encounters with local Buddhists in Sikkim provided her with the lofty images of a spiritual Tibet that she contributed to publicizing in the wake of the globalization of Buddhism.",
"issue": "1",
"language": "en",
"libraryCatalog": "heiup.uni-heidelberg.de",
"pages": "149-186",
"publicationTitle": "The Journal of Transcultural Studies",
"rights": "Copyright (c) 2016 Samuel Thevoz",
"shortTitle": "On the Threshold of the \"Land of Marvels",
"url": "https://heiup.uni-heidelberg.de/journals/index.php/transcultural/article/view/23541",
"volume": "7",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [
{
"tag": "World Literature"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "http://www.zeitschrift-fuer-balkanologie.de/index.php/zfb/article/view/423",
"items": [
{
"itemType": "journalArticle",
"title": "Nachträge zur Bio-Bibliographie von Ármin(ius) Vámbéry [V]",
"creators": [
{
"firstName": "Michael",
"lastName": "Knüppel",
"creatorType": "author"
}
],
"date": "2016-03-18",
"ISSN": "0044-2356",
"abstractNote": "Der Verfasser setzt mit diesem Beitrag seine Serie, in der Ergänzungen und Korrekturen zur Bio-Bibliographie des großen ungarischen Reisenden und Entdeckers sowie Pioniers der Zentralasienforschung Á. Vámbéry (1832–1913) gegeben wurden, fort. Zudem findet sich im Anhang zum bio-bibliographischen Teil des Beitrags ein Brief Vámbérys an den Ethnologen und Geographen Richard Andree (1835–1912).",
"issue": "2",
"language": "de",
"libraryCatalog": "www.zeitschrift-fuer-balkanologie.de",
"publicationTitle": "Zeitschrift für Balkanologie",
"rights": "Copyright (c) 2016 Harrassowitz Verlag",
"url": "http://www.zeitschrift-fuer-balkanologie.de/index.php/zfb/article/view/423",
"volume": "51",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://journals.ub.uni-heidelberg.de/index.php/miradas/article/view/22445",
"items": [
{
"itemType": "journalArticle",
"title": "Un desafío a la construcción de la identidad en la fotografía de Carlos Ruiz-Valarino",
"creators": [
{
"firstName": "Laura Bravo",
"lastName": "López",
"creatorType": "author"
}
],
"date": "2015-07-21",
"DOI": "10.11588/mira.2015.0.22445",
"ISSN": "2363-8087",
"abstractNote": "La obra fotográfica del artista puertorriqueño Carlos Ruiz-Valarino plantea un marcado contraste con una de las tradiciones más arraigadas en la historia del arte de esta isla del Caribe, que es la representación de una identidad cultural construida a través de símbolos. Recurriendo a la parodia a través de tres géneros pictóricos, como son el paisaje, el retrato y el objeto (en el marco de la naturaleza muerta), Ruiz-Valarino cuestiona los símbolos que reiteradamente se emplean en la construcción de un concepto tan controvertido como es el de identidad, conversando para ello con la tradición iconográfica de la fotografía antropológica y etnográfica, así como la de la ilustración científica o la caricatura.",
"language": "es",
"libraryCatalog": "journals.ub.uni-heidelberg.de",
"pages": "36-49",
"publicationTitle": "Miradas - Zeitschrift für Kunst- und Kulturgeschichte der Amérikas und der iberischen Halbinsel",
"rights": "Copyright (c) 2015",
"url": "https://journals.ub.uni-heidelberg.de/index.php/miradas/article/view/22445",
"volume": "2",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://ojs.ub.uni-konstanz.de/ba/article/view/6175",
"items": [
{
"itemType": "journalArticle",
"title": "Was kann Plagiatserkennungs-Software?",
"creators": [
{
"firstName": "Ansgar",
"lastName": "Schäfer",
"creatorType": "author"
}
],
"date": "2015-05-17",
"abstractNote": "-",
"issue": "99",
"language": "de",
"libraryCatalog": "ojs.ub.uni-konstanz.de",
"publicationTitle": "Bibliothek aktuell",
"rights": "Copyright (c) 2015 Willkommen bei Bibliothek aktuell",
"url": "https://ojs.ub.uni-konstanz.de/ba/article/view/6175",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "http://www.querelles.de/index.php/qjb/article/view/29",
"items": [
{
"itemType": "journalArticle",
"title": "Anonymität nach dem Tod: Subjektive Deutungen anonymer Bestattung und genderbezogene Differenzen",
"creators": [
{
"firstName": "Nicole",
"lastName": "Sachmerda-Schulz",
"creatorType": "author"
},
{
"firstName": "Paul Sebastian",
"lastName": "Ruppel",
"creatorType": "author"
}
],
"date": "2014-04-10",
"DOI": "10.15461/29",
"ISSN": "2191-9127",
"abstractNote": "Anonyme Bestattungen haben in den letzten Jahrzehnten in Deutschland stark zugenommen. Damit hat sich neben traditionellen Formen der Bestattung und Grabgestaltung eine Beisetzungsform etablieren können, bei der das Grab nicht namentlich gekennzeichnet und daher für die Öffentlichkeit sowie häufig auch für Angehörige nicht auffindbar ist. Der Frage, was es bedeutet, bei der Grabwahl auf die Namensnennung und damit auf die Lokalisierung der persönlichen Grabstätte zu verzichten, wird im Beitrag anhand offener Leitfadeninterviews mit Personen, die sich für eine anonyme Bestattung entschieden haben, nachgegangen. In der Analyse der im Rahmen einer Grounded-Theory-Studie erhobenen und ausgewerteten Daten werden Aspekte deutlich, die sich zum Beispiel um Kontrollierbarkeit eigener Belange bis über den Tod hinaus, ein auf Inklusion und Exklusion abzielendes Handeln sowie scheinbar paradoxe Momente von Individualitätsstreben drehen. Zudem zeigen sich hier auffällige Differenzen zwischen Frauen und Männern: Die Präsentation bzw. Repräsentation von Weltanschauungen und Werthaltungen stellt für die Interviewpartner eine Triebfeder für die Entscheidung für eine Anonymbestattung dar. Aussagen der Interviewpartnerinnen indes verweisen darauf, dass diese Entscheidung primär einer pragmatischen und am sozialen Umfeld ausgerichteten Orientierung folgt.",
"issue": "0",
"language": "de",
"libraryCatalog": "www.querelles.de",
"publicationTitle": "QJB – Querelles. Jahrbuch für Frauen- und Geschlechterforschung",
"rights": "Copyright (c) 2014 Nicole Sachmerda-Schulz, Paul Sebastian Ruppel",
"shortTitle": "Anonymität nach dem Tod",
"url": "http://www.querelles.de/index.php/qjb/article/view/29",
"volume": "17",
"attachments": [],
"tags": [
{
"tag": "Anonymität"
},
{
"tag": "Bestattung"
},
{
"tag": "Genderdifferenzen"
},
{
"tag": "Säkularisierung"
},
{
"tag": "Tod"
},
{
"tag": "anonymity"
},
{
"tag": "burial"
},
{
"tag": "death"
},
{
"tag": "gender difference"
},
{
"tag": "secularisation"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://www.ajol.info/index.php/thrb/article/view/63347",
"items": [
{
"itemType": "journalArticle",
"title": "Knowledge, treatment seeking and preventive practices in respect of malaria among patients with HIV at the Lagos University Teaching Hospital",
"creators": [
{
"firstName": "Akinwumi A.",
"lastName": "Akinyede",
"creatorType": "author"
},
{
"firstName": "Alade",
"lastName": "Akintonwa",
"creatorType": "author"
},
{
"firstName": "Charles",
"lastName": "Okany",
"creatorType": "author"
},
{
"firstName": "Olufunsho",
"lastName": "Awodele",
"creatorType": "author"
},
{
"firstName": "Duro C.",
"lastName": "Dolapo",
"creatorType": "author"
},
{
"firstName": "Adebimpe",
"lastName": "Adeyinka",
"creatorType": "author"
},
{
"firstName": "Ademola",
"lastName": "Yusuf",
"creatorType": "author"
}
],
"date": "2011-10-17",
"DOI": "10.4314/thrb.v13i4.63347",
"ISSN": "1821-9241",
"abstractNote": "The synergistic interaction between Human Immunodeficiency virus (HIV) disease and Malaria makes it mandatory for patients with HIV to respond appropriately in preventing and treating malaria. Such response will help to control the two diseases. This study assessed the knowledge of 495 patients attending the HIV clinic, in Lagos University Teaching Hospital, Nigeria. Their treatment seeking, preventive practices with regards to malaria, as well as the impact of socio – demographic / socio - economic status were assessed. Out of these patients, 245 (49.5 %) used insecticide treated bed nets; this practice was not influenced by socio – demographic or socio – economic factors. However, knowledge of the cause, knowledge of prevention of malaria, appropriate use of antimalarial drugs and seeking treatment from the right source increased with increasing level of education (p < 0.05). A greater proportion of the patients, 321 (64.9 %) utilized hospitals, pharmacy outlets or health centres when they perceived an attack of malaria. Educational intervention may result in these patients seeking treatment from the right place when an attack of malaria fever is perceived.",
"issue": "4",
"language": "en",
"libraryCatalog": "www.ajol.info",
"publicationTitle": "Tanzania Journal of Health Research",
"rights": "Copyright (c)",
"url": "https://www.ajol.info/index.php/thrb/article/view/63347",
"volume": "13",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [
{
"tag": "HIV patients"
},
{
"tag": "Nigeria"
},
{
"tag": "knowledge"
},
{
"tag": "malaria"
},
{
"tag": "prevention"
},
{
"tag": "treatment"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://ejournals.library.vanderbilt.edu/index.php/ameriquests/article/view/220",
"items": [
{
"itemType": "journalArticle",
"title": "Canadian Literature in the Early Twenty-First Century: The Emergence of an Inter-American Perspective",
"creators": [
{
"firstName": "Earl E.",
"lastName": "Fitz",
"creatorType": "author"
}
],
"date": "2011-07-28",
"DOI": "10.15695/amqst.v8i1.220",
"ISSN": "1553-4316",
"abstractNote": "Historically, Canadian literature has been chary of entering too far into the new discipline of inter-American literary study. Rightly concerned about the danger of blurring its identity as a distinctive national literature (one made up, as is well known, of two great strands, the French and the English), Canadian writing has, however, come of age, both nationally and internationally. One dramatic aspect of this transformation is that we now have mounting evidence that both English and French Canadian writers are actively engaging with the literatures and cultures of their hemispheric neighbors. By extending the methodologies of Comparative Literature to the inter-American paradigm, Canadian writers, critics, and literary historians are finding ways to maintain their status as members of a unique and under-appreciated national literature while also entering into the kinds of comparative studies that demonstrate their New World ties as well.",
"issue": "1",
"language": "en",
"libraryCatalog": "ejournals.library.vanderbilt.edu",
"publicationTitle": "AmeriQuests",
"rights": "Copyright (c) 2015 AmeriQuests",
"shortTitle": "Canadian Literature in the Early Twenty-First Century",
"url": "https://ejournals.library.vanderbilt.edu/index.php/ameriquests/article/view/220",
"volume": "8",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "http://jms.uwinnipeg.ca/index.php/jms/article/view/1369",
"items": [
{
"itemType": "journalArticle",
"title": "Mennonites in Unexpected Places: Sociologist and Settler in Latin America",
"creators": [
{
"firstName": "Ben",
"lastName": "Nobbs-Thiessen",
"creatorType": "author"
}
],
"date": "2010",
"ISSN": "1918-610X",
"language": "en",
"libraryCatalog": "jms.uwinnipeg.ca",
"pages": "203-224",
"publicationTitle": "Journal of Mennonite Studies",
"rights": "Copyright (c)",
"shortTitle": "Mennonites in Unexpected Places",
"url": "http://jms.uwinnipeg.ca/index.php/jms/article/view/1369",
"volume": "28",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://journals.sfu.ca/jmde/index.php/jmde_1/article/view/100/115",
"items": [
{
"itemType": "journalArticle",
"title": "The Value of Evaluation Standards: A Comparative Assessment",
"creators": [
{
"firstName": "Robert",
"lastName": "Picciotto",
"creatorType": "author"
}
],
"date": "2005",
"ISSN": "1556-8180",
"issue": "3",
"language": "en",
"libraryCatalog": "journals.sfu.ca",
"pages": "30-59",
"publicationTitle": "Journal of MultiDisciplinary Evaluation",
"rights": "Copyright (c)",
"shortTitle": "The Value of Evaluation Standards",
"url": "https://journals.sfu.ca/jmde/index.php/jmde_1/article/view/100",
"volume": "2",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://jecs.pl/index.php/jecs/article/view/551",
"items": [
{
"itemType": "journalArticle",
"title": "PREPARING FUTURE LEADERS OF THEIR RACES -THE POLITICAL FUNCTION OF CHILDREN’S CHARACTERS IN CONTEMPORARY AFRICAN AMERICAN PICTURE-BOOKS",
"creators": [
{
"firstName": "Ewa",
"lastName": "Klęczaj-Siara",
"creatorType": "author"
}
],
"date": "2019-06-30",
"DOI": "10.15503/jecs20191.173.184",
"ISSN": "2081-1640",
"abstractNote": "Aim. The aim of the article is to analyse the ways African American children’s characters are constructed in selected picture-books and to determine whether they have any impact on the conduct of contemporary black youth facing discrimination in their own lives. It also argues that picture-books are one of the most influential media in the representation of racial problems.Methods. The subjects of the study are picture-books. The analysis pertains to the visual and the verbal narrative of the books, with a special emphasis being placed on the interplay between text and image as well as on the ways the meaning of the books is created. The texts are analysed using a number of existing research methods used for examining the picture-book format. Results. The article shows that the actions of selected children’s characters, whether real or imaginary, may serve as an incentive for contemporary youth to struggle for equal rights and contribute to the process of racial integration on a daily basis.Conclusions. The results can be considered in the process of establishing educational curricula for students from minority groups who need special literature that would empower them to take action and join in the efforts of adult members of their communities.",
"issue": "1",
"language": "en",
"libraryCatalog": "jecs.pl",
"pages": "173-184",
"publicationTitle": "Journal of Education Culture and Society",
"rights": "Copyright (c) 2019 Ewa Klęczaj-Siara",
"url": "https://jecs.pl/index.php/jecs/article/view/551",
"volume": "10",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [
{
"tag": "political agents"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://journal.meteohistory.org/index.php/hom/article/view/79",
"items": [
{
"itemType": "journalArticle",
"title": "Trajectories and reconversions of the Center for Weather Forecasting and Climate Studies (CPTEC): Forming the meteorological science elite in Brazil",
"creators": [
{
"firstName": "Thales de",
"lastName": "Andrade",
"creatorType": "author"
},
{
"firstName": "Paulo",
"lastName": "Escada",
"creatorType": "author"
}
],
"date": "2021-05-18",
"ISSN": "1555-5763",
"abstractNote": "The process that created the Center for Weather Forecasting and Climate Studies (CPTEC) in Brazil in the 1980s and 90s, which introduced Numerical Weather Prediction (NWP) models, was also a moment for reconversion of a meteorological science elite in the country. This double-sided process occurred in view of a series of favorable historical conditions, such as the institutionalization of space research, as well as of the implementation of new scientific policies in Brazil. CPTEC was formed by young scientists from the National Institute for Space Research (INPE) who had recently obtained their doctoral degrees abroad. While defending the modernization of Brazilian meteorology, through the creation of this new meteorological center, these scientists, based on their trajectories and attributes of scientific excellence, constituted a group of science elite. The introduction of research on climate change would be a new opportunity for recognition of part of these researchers as members of this elite. This study describes how the trajectories of certain scientists shaped their careers, producing what we call reconversion of science elites, as well as the scientific field in the implementation of the first NWP center in Brazil.",
"archiveLocation": "Brazil, 1970-2000",
"language": "en",
"libraryCatalog": "journal.meteohistory.org",
"pages": "1-23",
"publicationTitle": "History of Meteorology",
"rights": "Copyright (c) 2021 Thales de Andrade, Paulo Escada",
"shortTitle": "Trajectories and reconversions of the Center for Weather Forecasting and Climate Studies (CPTEC)",
"url": "https://journal.meteohistory.org/index.php/hom/article/view/79",
"volume": "10",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [
{
"tag": "scientific elites"
}