This repository has been archived by the owner on Jan 3, 2020. It is now read-only.
forked from zotero/translators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWiley Online Library.js
1220 lines (1159 loc) · 47.2 KB
/
Wiley Online Library.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": "fe728bc9-595a-4f03-98fc-766f1d8d0936",
"label": "Wiley Online Library",
"creator": "Sean Takats, Michael Berkowitz, Avram Lyon and Aurimas Vinckevicius",
"target": "^https?://onlinelibrary\\.wiley\\.com[^\\/]*/(?:book|doi|advanced/search|search-web/cochrane|cochranelibrary/search|o/cochrane/(clcentral|cldare|clcmr|clhta|cleed|clabout)/articles/.+/sect0.html)",
"minVersion": "3.1",
"maxVersion": "",
"priority": 100,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsib",
"lastUpdated": "2015-06-04 16:47:36"
}
/*
Wiley Online Translator
Copyright (C) 2011 CHNM, Avram Lyon and Aurimas Vinckevicius
This program 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.
This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*/
function fixCase(authorName) {
if(typeof authorName != 'string') return authorName;
if(authorName.toUpperCase() == authorName ||
authorName.toLowerCase() == authorName) {
return ZU.capitalizeTitle(authorName, true);
}
return authorName;
}
function addCreators(item, creatorType, creators) {
if( typeof(creators) == 'string' ) {
creators = [creators];
} else if( !(creators instanceof Array) ) {
return;
}
for(var i=0, n=creators.length; i<n; i++) {
item.creators.push(ZU.cleanAuthor(fixCase(creators[i]),
creatorType, false));
}
}
function getAuthorName(text) {
//lower case words at the end of a name are probably not part of a name
text = text.replace(/(\s+[a-z]+)+\s*$/,'');
text = text.replace(/(^|[\s,])(PhD|MA|Prof|Dr)(\.?|(?=\s|$))/gi,''); //remove salutations
return fixCase(text.trim());
}
function scrapeBook(doc, url, pdfUrl) {
var title = doc.getElementById('productTitle');
if( !title ) return false;
var newItem = new Zotero.Item('book');
newItem.title = ZU.capitalizeTitle(title.textContent, true);
var data = ZU.xpath(doc, '//div[@id="metaData"]/p');
var dataRe = /^(.+?):\s*(.+?)\s*$/;
var match;
var isbn = new Array();
for( var i=0, n=data.length; i<n; i++) {
match = dataRe.exec(data[i].textContent);
if(!match) continue;
switch(match[1].trim().toLowerCase()) {
case 'author(s)':
addCreators(newItem, 'author', match[2].split(', '));
break;
case 'series editor(s)':
addCreators(newItem, 'seriesEditor', match[2].split(', '));
break;
case 'editor(s)':
addCreators(newItem, 'editor', match[2].split(', '));
break;
case 'published online':
var date = ZU.strToDate(match[2]);
date.part = null;
newItem.date = ZU.formatDate(date);
break;
case 'print isbn':
case 'online isbn':
isbn.push(match[2]);
break;
case 'doi':
newItem.DOI = match[2];
break;
case 'book series':
newItem.series = match[2];
}
}
newItem.ISBN = isbn.join(', ');
newItem.rights = ZU.xpathText(doc, '//div[@id="titleMeta"]/p[@class="copyright"]');
newItem.url = url;
newItem.abstractNote = ZU.trimInternal(
ZU.xpathText(doc, '//div[@id="homepageContent"]\
/h6[normalize-space(text())="About The Product"]\
/following-sibling::p', null, "\n") || "");
newItem.accessDate = 'CURRENT_TIMESTAMP';
newItem.complete();
}
function scrapeEM(doc, url, pdfUrl) {
var itemType = detectWeb(doc, url);
//fetch print publication date
var date = ZU.xpathText(doc, '//meta[@name="citation_date"]/@content');
//remove duplicate meta tags
var metas = ZU.xpath(doc,
'//head/link[@media="screen,print"]/following-sibling::meta');
for(var i=0, n=metas.length; i<n; i++) {
metas[i].parentNode.removeChild(metas[i]);
}
var translator = Zotero.loadTranslator('web');
//use Embedded Metadata
translator.setTranslator("951c027d-74ac-47d4-a107-9c3069ab7b48");
translator.setDocument(doc);
translator.setHandler('itemDone', function(obj, item) {
if( itemType == 'bookSection' ) {
//add authors if we didn't get them from embedded metadata
if(!item.creators.length) {
var authors = ZU.xpath(doc, '//ol[@id="authors"]/li/node()[1]');
for(var i=0, n=authors.length; i<n; i++) {
item.creators.push(
ZU.cleanAuthor( getAuthorName(authors[i].textContent),
'author',false) );
}
}
//editors
var editors = ZU.xpath(doc, '//ol[@id="editors"]/li/node()[1]');
for(var i=0, n=editors.length; i<n; i++) {
item.creators.push(
ZU.cleanAuthor( getAuthorName(editors[i].textContent),
'editor',false) );
}
item.rights = ZU.xpathText(doc, '//p[@id="copyright"]');
//this is not great for summary, but will do for now
item.abstractNote = ZU.xpathText(doc, '//div[@id="abstract"]/div[@class="para"]//p', null, "\n");
} else {
var keywords = ZU.xpathText(doc, '//meta[@name="citation_keywords"]/@content');
if(keywords) {
item.tags = keywords.split(', ');
}
item.rights = ZU.xpathText(doc, '//div[@id="titleMeta"]//p[@class="copyright"]');
item.abstractNote = ZU.xpathText(doc, '//div[@id="abstract"]/div[@class="para"]', null, "\n");
}
//set correct print publication date
if(date) item.date = date;
//remove pdf attachments
for(var i=0, n=item.attachments.length; i<n; i++) {
if(item.attachments[i].mimeType == 'application/pdf') {
item.attachments.splice(i,1);
i--;
n--;
}
}
//fetch pdf url. There seems to be some magic value that must be sent
// with the request
if(!pdfUrl) {
var u = ZU.xpathText(doc, '//meta[@name="citation_pdf_url"]/@content');
if(u) {
ZU.doGet(u, function(text) {
var m = text.match(/<iframe id="pdfDocument"[^>]+?src="([^"]+)"/i);
if(m) {
m[1] = ZU.unescapeHTML(m[1]);
Z.debug(m[1]);
item.attachments.push({url: m[1], title: 'Full Text PDF', mimeType: 'application/pdf'});
} else {
Z.debug('Could not determine PDF URL.');
m = text.match(/<iframe[^>]*>/i);
if(m) Z.debug(m[0]);
}
item.complete();
});
} else {
item.complete();
}
} else {
item.attachments.push({url: pdfUrl, title: 'Full Text PDF', mimeType: 'application/pdf'});
item.complete();
}
});
translator.getTranslatorObject(function(em) {
em.itemType = itemType;
em.doWeb(doc, url);
});
}
function scrapeBibTeX(doc, url, pdfUrl) {
var doi = ZU.xpathText(doc, '(//meta[@name="citation_doi"])[1]/@content')
|| ZU.xpathText(doc, '(//input[@name="publicationDoi"])[1]/@value');
if(!doi) {
doi = ZU.xpathText(doc, '(//p[@id="doi"])[1]');
if(doi) doi = doi.replace(/^\s*doi:\s*/i, '');
}
if(!doi) {
scrapeEM(doc, url, pdfUrl);
return;
}
var postUrl = '/documentcitationdownloadformsubmit';
var body = 'doi=' + encodeURIComponent(doi) +
'&fileFormat=REFERENCE_MANAGER' +
'&hasAbstract=CITATION_AND_ABSTRACT';
ZU.doPost(postUrl, body, function(text) {
//Z.debug(text)
var translator = Zotero.loadTranslator('import');
//use RIS
translator.setTranslator("32d59d2d-b65a-4da4-b0a3-bdd3cfb979e7");
translator.setString(text);
translator.setHandler('itemDone', function(obj, item) {
//fix author case
for(var i=0, n=item.creators.length; i<n; i++) {
item.creators[i].firstName = fixCase(item.creators[i].firstName);
item.creators[i].lastName = fixCase(item.creators[i].lastName);
}
//editors
var editors = ZU.xpath(doc, '//ol[@id="editors"]/li/node()[1]');
for(var i=0, n=editors.length; i<n; i++) {
item.creators.push(
ZU.cleanAuthor( getAuthorName(editors[i].textContent),
'editor',false) );
}
//title
if(item.title && item.title.toUpperCase() == item.title) {
item.title = ZU.capitalizeTitle(item.title, true);
}
//date in the cochraine library RIS is wrong
if (ZU.xpathText(doc, '//meta[@name="citation_book_title"]/@content') == "The Cochrane Library") {
item.date = ZU.xpathText(doc, '//meta[@name="citation_online_date"]/@content');
}
//tags
if(!item.tags.length) {
var keywords = ZU.xpathText(doc,
'//meta[@name="citation_keywords"][1]/@content');
if(keywords) {
item.tags = keywords.split(', ');
}
}
//url in bibtex is invalid
item.url =
ZU.xpathText(doc,
'//meta[@name="citation_summary_html_url"][1]/@content') ||
ZU.xpathText(doc,
'//meta[@name="citation_abstract_html_url"][1]/@content') ||
ZU.xpathText(doc,
'//meta[@name="citation_fulltext_html_url"][1]/@content') ||
url;
//bookTitle
if(!item.bookTitle) {
item.bookTitle = item.publicationTitle ||
ZU.xpathText(doc,
'//meta[@name="citation_book_title"][1]/@content');
}
//language
if(!item.language) {
item.language = ZU.xpathText(doc,
'//meta[@name="citation_language"][1]/@content');
}
//rights
item.rights = ZU.xpathText(doc,
'//p[@class="copyright" or @id="copyright"]');
//attachments
item.attachments = [{
title: 'Snapshot',
document: doc,
mimeType: 'text/html'
}];
//fetch pdf url. There seems to be some magic value that must be sent
// with the request
if(!pdfUrl &&
(pdfUrl =
ZU.xpathText(doc,'(//meta[@name="citation_pdf_url"]/@content)[1]')
|| ZU.xpathText(doc, '(//a[@class="pdfLink"]/@href)[1]')
)
) {
ZU.doGet(pdfUrl, function(text) {
var m = text.match(
/<iframe id="pdfDocument"[^>]+?src="([^"]+)"/i);
if(m) {
m[1] = ZU.unescapeHTML(m[1]);
Z.debug('PDF url: ' + m[1]);
pdfUrl = m[1];
} else {
Z.debug('Could not determine PDF URL.');
m = text.match(/<iframe[^>]*>/i);
if(m) {
Z.debug(m[0]);
pdfUrl = null; // Clearly not the PDF
} else {
Z.debug('No iframe found. This may be the PDF');
// It seems that on Mac, Wiley serves the PDF
// directly, not in an iframe, so try using this URL.
// TODO: detect whether this is a case before trying
// to fetch the PDF page above. See https://github.com/zotero/translators/pull/442
}
}
if (pdfUrl) {
item.attachments.push({
url: pdfUrl,
title: 'Full Text PDF',
mimeType: 'application/pdf'
});
}
item.complete();
});
} else {
if(pdfUrl) {
item.attachments.push({
url: pdfUrl,
title: 'Full Text PDF',
mimeType: 'application/pdf'
});
}
item.complete();
}
});
translator.translate();
});
}
function scrapeCochraneTrial(doc, url){
Z.debug("Scraping Cochrane External Sources");
var item = new Zotero.Item('journalArticle');
//Z.debug(ZU.xpathText(doc, '//meta/@content'))
item.title = ZU.xpathText(doc, '//meta[@name="Article-title"]/@content');
item.publicationTitle = ZU.xpathText(doc, '//meta[@name="source"]/@content');
item.abstractNote = ZU.xpathText(doc, '//meta[@name="abstract"]/@content');
item.date = ZU.xpathText(doc, '//meta[@name="simpleYear"]/@content');
item.volume = ZU.xpathText(doc, '//meta[@name="volume"]/@content');
item.pages = ZU.xpathText(doc, '//meta[@name="pages"]/@content');
item.issue = ZU.xpathText(doc, '//meta[@name="issue"]/@content');
item.rights = ZU.xpathText(doc, '//meta[@name="Copyright"]/@content');
var tags = ZU.xpathText(doc, '//meta[@name="cochraneGroupCode"]/@content');
if (tags) tags = tags.split(/\s*;\s*/);
for (var i in tags){
item.tags.push(tags[i]);
}
item.attachments.push({document: doc, title: "Cochrane Snapshot", mimType: "text/html"});
var authors = ZU.xpathText(doc, '//meta[@name="orderedAuthors"]/@content');
if (!authors) authors = ZU.xpathText(doc, '//meta[@name="Author"]/@content');
authors = authors.split(/\s*,\s*/);
for (var i=0; i<authors.length; i++){
//authors are in the forms Smith AS
var authormatch = authors[i].match(/(.+?)\s+([A-Z]+(\s[A-Z])?)\s*$/);
if (authormatch) {
item.creators.push({
lastName: authormatch[1],
firstName: authormatch[2],
creatorType: "author"
});
} else {
item.creators.push({
lastName: authors[i],
fieldMode: 1,
creatorType: "author"
});
}
}
item.complete();
}
function scrape(doc, url, pdfUrl) {
var itemType = detectWeb(doc,url);
if (itemType == 'book') {
scrapeBook(doc, url, pdfUrl);
} else if (/\/o\/cochrane\/(clcentral|cldare|clcmr|clhta|cleed|clabout)/.test(url)) {
scrapeCochraneTrial(doc, url);
} else {
scrapeBibTeX(doc, url, pdfUrl);
}
}
function getSearchResults(doc, url) {
var links = ZU.xpath(doc, '//li//div[@class="citation article" or starts-with(@class,"citation")]/a');
if(links.length) return links;
Z.debug("Cochrane Library");
return ZU.xpath(doc, '//div[@class="listingContent"]//td/strong/a[contains(@href, "/doi/")]');
}
function detectWeb(doc, url) {
//monitor for site changes on Cochrane
if(doc.getElementsByClassName('cochraneSearchForm').length && doc.getElementById('searchResultOuter')) {
Zotero.monitorDOMChanges(doc.getElementById('searchResultOuter'));
}
if (url.indexOf('/issuetoc') != -1 ||
url.indexOf('/results') != -1 ||
url.indexOf('/search') != -1 ||
url.indexOf('/mainSearch?') != -1
) {
if(getSearchResults(doc, url).length) return 'multiple';
} else if (url.indexOf('/book/') != -1 ) {
//if the book has more than one chapter, scrape chapters
if(getSearchResults(doc, url).length > 1) return 'multiple';
//otherwise, import book
return 'book'; //does this exist?
} else if ( ZU.xpath(doc, '//meta[@name="citation_book_title"]').length ) {
return 'bookSection';
} else {
return 'journalArticle';
}
}
function doWeb(doc, url) {
var type = detectWeb(doc, url);
if(type == "multiple") {
var articles = getSearchResults(doc, url);
var availableItems = new Object();
for(var i=0, n=articles.length; i<n; i++) {
availableItems[articles[i].href] = ZU.trimInternal(articles[i].textContent.trim());
}
Zotero.selectItems(availableItems, function(selectedItems) {
if(!selectedItems) return true;
var urls = new Array();
for (var i in selectedItems) {
//for Cochrane trials - get the frame with the actual data
if(i.indexOf("frame.html")!=-1) i = i.replace(/frame\.html$/, "sect0.html");
urls.push(i);
}
ZU.processDocuments(urls, scrape);
});
} else { //single article
if (url.indexOf("/pdf") != -1) {
//redirect needs to work where URL end in /pdf and where it end in /pdf/something
url = url.replace(/\/pdf(.+)?$/,'/abstract');
//Zotero.debug("Redirecting to abstract page: "+url);
//grab pdf url before leaving
var pdfUrl = ZU.xpathText(doc, '//iframe[@id="pdfDocument"]/@src');
ZU.processDocuments(url, function(doc, url) { scrape(doc, url, pdfUrl) });
} else if(type != 'book' &&
url.indexOf('abstract') == -1 && url.indexOf("/o/cochrane/") == -1 &&
!ZU.xpathText(doc, '//div[@id="abstract"]/div[@class="para"]')
) {
//redirect to abstract or summary so we can scrape that
if(type == 'bookSection') {
url = url.replace(/\/[^?#\/]+(?:[?#].*)?$/, '/summary');
} else {
url = url.replace(/\/[^?#\/]+(?:[?#].*)?$/, '/abstract');
}
ZU.processDocuments(url, scrape);
} else {
scrape(doc, url);
}
}
}/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "http://onlinelibrary.wiley.com/advanced/search/results/reentry?scope=allContent&query=zotero&inTheLastList=6&queryStringEntered=false&searchRowCriteria[0].fieldName=all-fields&searchRowCriteria[0].booleanConnector=and&searchRowCriteria[1].fieldName=all-fields&searchRowCriteria[1].booleanConnector=and&searchRowCriteria[2].fieldName=all-fields&searchRowCriteria[2].booleanConnector=and&start=1&resultsPerPage=20&ordering=relevancy",
"items": "multiple"
},
{
"type": "web",
"url": "http://onlinelibrary.wiley.com/doi/10.1002/9781118269381.notes/summary",
"items": [
{
"itemType": "bookSection",
"title": "Endnotes",
"creators": [
{
"lastName": "Bonk",
"firstName": "Curtis J.",
"creatorType": "author"
}
],
"date": "2011",
"DOI": "10.1002/9781118269381.notes",
"ISBN": "9781118269381",
"accessDate": "CURRENT_TIMESTAMP",
"bookTitle": "The World is Open",
"language": "en",
"libraryCatalog": "Wiley Online Library",
"pages": "427-467",
"publisher": "Jossey-Bass",
"rights": "Copyright © 2009 Curtis J. Bonk. All rights reserved.",
"url": "http://onlinelibrary.wiley.com/doi/10.1002/9781118269381.notes/summary",
"attachments": [
{
"title": "Snapshot",
"mimeType": "text/html"
},
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "http://onlinelibrary.wiley.com/doi/10.1111/jgi.2004.19.issue-s1/issuetoc",
"items": "multiple"
},
{
"type": "web",
"url": "http://onlinelibrary.wiley.com/book/10.1002/9783527610853",
"items": "multiple"
},
{
"type": "web",
"url": "http://onlinelibrary.wiley.com/doi/10.1002/9781444304794.ch1/summary",
"items": [
{
"itemType": "bookSection",
"title": "Silent Cinema and its Pioneers (1906–1930)",
"creators": [
{
"lastName": "Pavlović",
"firstName": "Tatjana",
"creatorType": "author"
},
{
"lastName": "Alvarez",
"firstName": "Inmaculada",
"creatorType": "author"
},
{
"lastName": "Blanco-Cano",
"firstName": "Rosana",
"creatorType": "author"
},
{
"lastName": "Grisales",
"firstName": "Anitra",
"creatorType": "author"
},
{
"lastName": "Osorio",
"firstName": "Alejandra",
"creatorType": "author"
},
{
"lastName": "Sánchez",
"firstName": "Alejandra",
"creatorType": "author"
}
],
"date": "2008",
"DOI": "10.1002/9781444304794.ch1",
"ISBN": "9781444304794",
"abstractNote": "This chapter contains sections titled:\n\n* Historical and Political Overview of the Period\n* Context11\n* Film Scenes: Close Readings\n* Directors (Life and Works)\n* Critical Commentary",
"accessDate": "CURRENT_TIMESTAMP",
"bookTitle": "100 Years of Spanish Cinema",
"language": "en",
"libraryCatalog": "Wiley Online Library",
"pages": "1-20",
"publisher": "Wiley-Blackwell",
"rights": "Copyright © 2009 Tatjana Pavlović, Inmaculada Alvarez, Rosana Blanco-Cano, Anitra Grisales, Alejandra Osorio, and Alejandra Sánchez",
"url": "http://onlinelibrary.wiley.com/doi/10.1002/9781444304794.ch1/summary",
"attachments": [
{
"title": "Snapshot",
"mimeType": "text/html"
}
],
"tags": [
"Directors (Life and Works) - Ángel García Cardona and Antonio Cuesta13",
"Florián Rey (Antonio Martínez de Castillo)",
"Florián Rey's La aldea maldita (1930)",
"Fructuós Gelabert - made the first Spanish fiction film, Riña en un café, 1897",
"Fructuós Gelabert's Amor que mata (1909)",
"Ricardo Baños",
"Ricardo Baños and Albert Marro's Don Pedro el Cruel (1911)",
"silent cinema and its pioneers (1906–1930)",
"three films - part of “the preliminary industrial and expressive framework for Spain's budding cinema”",
"Ángel García Cardona and Antonio Cuesta",
"Ángel García Cardona's El ciego de aldea (1906)"
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "http://onlinelibrary.wiley.com/book/10.1002/9781444390124",
"items": "multiple"
},
{
"type": "web",
"url": "http://onlinelibrary.wiley.com/book/10.1002/9780470320419",
"items": "multiple"
},
{
"type": "web",
"url": "http://onlinelibrary.wiley.com/doi/10.1002/pmic.201100327/abstract",
"items": [
{
"itemType": "journalArticle",
"title": "A mass spectrometry-based method to screen for α-amidated peptides",
"creators": [
{
"lastName": "An",
"firstName": "Zhenming",
"creatorType": "author"
},
{
"lastName": "Chen",
"firstName": "Yudan",
"creatorType": "author"
},
{
"lastName": "Koomen",
"firstName": "John M.",
"creatorType": "author"
},
{
"lastName": "Merkler",
"firstName": "David J.",
"creatorType": "author"
}
],
"date": "January 1, 2012",
"DOI": "10.1002/pmic.201100327",
"ISSN": "1615-9861",
"abstractNote": "Amidation is a post-translational modification found at the C-terminus of ∼50% of all neuropeptide hormones. Cleavage of the Cα–N bond of a C-terminal glycine yields the α-amidated peptide in a reaction catalyzed by peptidylglycine α-amidating monooxygenase (PAM). The mass of an α-amidated peptide decreases by 58 Da relative to its precursor. The amino acid sequences of an α-amidated peptide and its precursor differ only by the C-terminal glycine meaning that the peptides exhibit similar RP-HPLC properties and tandem mass spectral (MS/MS) fragmentation patterns. Growth of cultured cells in the presence of a PAM inhibitor ensured the coexistence of α-amidated peptides and their precursors. A strategy was developed for precursor and α-amidated peptide pairing (PAPP): LC-MS/MS data of peptide extracts were scanned for peptide pairs that differed by 58 Da in mass, but had similar RP-HPLC retention times. The resulting peptide pairs were validated by checking for similar fragmentation patterns in their MS/MS data prior to identification by database searching or manual interpretation. This approach significantly reduced the number of spectra requiring interpretation, decreasing the computing time required for database searching and enabling manual interpretation of unidentified spectra. Reported here are the α-amidated peptides identified from AtT-20 cells using the PAPP method.",
"issue": "2",
"journalAbbreviation": "Proteomics",
"language": "en",
"libraryCatalog": "Wiley Online Library",
"pages": "173-182",
"publicationTitle": "PROTEOMICS",
"rights": "Copyright © 2012 WILEY-VCH Verlag GmbH & Co. KGaA, Weinheim",
"url": "http://onlinelibrary.wiley.com/doi/10.1002/pmic.201100327/abstract",
"volume": "12",
"attachments": [
{
"title": "Snapshot",
"mimeType": "text/html"
}
],
"tags": [
"Post-translational modification",
"Spectral pairing",
"Technology",
"α-Amidated peptide"
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "http://onlinelibrary.wiley.com/doi/10.1002/pmic.201100327/full",
"items": [
{
"itemType": "journalArticle",
"title": "A mass spectrometry-based method to screen for α-amidated peptides",
"creators": [
{
"lastName": "An",
"firstName": "Zhenming",
"creatorType": "author"
},
{
"lastName": "Chen",
"firstName": "Yudan",
"creatorType": "author"
},
{
"lastName": "Koomen",
"firstName": "John M.",
"creatorType": "author"
},
{
"lastName": "Merkler",
"firstName": "David J.",
"creatorType": "author"
}
],
"date": "January 1, 2012",
"DOI": "10.1002/pmic.201100327",
"ISSN": "1615-9861",
"abstractNote": "Amidation is a post-translational modification found at the C-terminus of ∼50% of all neuropeptide hormones. Cleavage of the Cα–N bond of a C-terminal glycine yields the α-amidated peptide in a reaction catalyzed by peptidylglycine α-amidating monooxygenase (PAM). The mass of an α-amidated peptide decreases by 58 Da relative to its precursor. The amino acid sequences of an α-amidated peptide and its precursor differ only by the C-terminal glycine meaning that the peptides exhibit similar RP-HPLC properties and tandem mass spectral (MS/MS) fragmentation patterns. Growth of cultured cells in the presence of a PAM inhibitor ensured the coexistence of α-amidated peptides and their precursors. A strategy was developed for precursor and α-amidated peptide pairing (PAPP): LC-MS/MS data of peptide extracts were scanned for peptide pairs that differed by 58 Da in mass, but had similar RP-HPLC retention times. The resulting peptide pairs were validated by checking for similar fragmentation patterns in their MS/MS data prior to identification by database searching or manual interpretation. This approach significantly reduced the number of spectra requiring interpretation, decreasing the computing time required for database searching and enabling manual interpretation of unidentified spectra. Reported here are the α-amidated peptides identified from AtT-20 cells using the PAPP method.",
"issue": "2",
"journalAbbreviation": "Proteomics",
"language": "en",
"libraryCatalog": "Wiley Online Library",
"pages": "173-182",
"publicationTitle": "PROTEOMICS",
"rights": "Copyright © 2012 WILEY-VCH Verlag GmbH & Co. KGaA, Weinheim",
"url": "http://onlinelibrary.wiley.com/doi/10.1002/pmic.201100327/abstract",
"volume": "12",
"attachments": [
{
"title": "Snapshot",
"mimeType": "text/html"
}
],
"tags": [
"Post-translational modification",
"Spectral pairing",
"Technology",
"α-Amidated peptide"
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "http://onlinelibrary.wiley.com/doi/10.1002/pmic.201100327/references",
"items": [
{
"itemType": "journalArticle",
"title": "A mass spectrometry-based method to screen for α-amidated peptides",
"creators": [
{
"lastName": "An",
"firstName": "Zhenming",
"creatorType": "author"
},
{
"lastName": "Chen",
"firstName": "Yudan",
"creatorType": "author"
},
{
"lastName": "Koomen",
"firstName": "John M.",
"creatorType": "author"
},
{
"lastName": "Merkler",
"firstName": "David J.",
"creatorType": "author"
}
],
"date": "January 1, 2012",
"DOI": "10.1002/pmic.201100327",
"ISSN": "1615-9861",
"abstractNote": "Amidation is a post-translational modification found at the C-terminus of ∼50% of all neuropeptide hormones. Cleavage of the Cα–N bond of a C-terminal glycine yields the α-amidated peptide in a reaction catalyzed by peptidylglycine α-amidating monooxygenase (PAM). The mass of an α-amidated peptide decreases by 58 Da relative to its precursor. The amino acid sequences of an α-amidated peptide and its precursor differ only by the C-terminal glycine meaning that the peptides exhibit similar RP-HPLC properties and tandem mass spectral (MS/MS) fragmentation patterns. Growth of cultured cells in the presence of a PAM inhibitor ensured the coexistence of α-amidated peptides and their precursors. A strategy was developed for precursor and α-amidated peptide pairing (PAPP): LC-MS/MS data of peptide extracts were scanned for peptide pairs that differed by 58 Da in mass, but had similar RP-HPLC retention times. The resulting peptide pairs were validated by checking for similar fragmentation patterns in their MS/MS data prior to identification by database searching or manual interpretation. This approach significantly reduced the number of spectra requiring interpretation, decreasing the computing time required for database searching and enabling manual interpretation of unidentified spectra. Reported here are the α-amidated peptides identified from AtT-20 cells using the PAPP method.",
"issue": "2",
"journalAbbreviation": "Proteomics",
"language": "en",
"libraryCatalog": "Wiley Online Library",
"pages": "173-182",
"publicationTitle": "PROTEOMICS",
"rights": "Copyright © 2012 WILEY-VCH Verlag GmbH & Co. KGaA, Weinheim",
"url": "http://onlinelibrary.wiley.com/doi/10.1002/pmic.201100327/abstract",
"volume": "12",
"attachments": [
{
"title": "Snapshot",
"mimeType": "text/html"
}
],
"tags": [
"Post-translational modification",
"Spectral pairing",
"Technology",
"α-Amidated peptide"
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "http://onlinelibrary.wiley.com/doi/10.1002/pmic.201100327/citedby",
"items": [
{
"itemType": "journalArticle",
"title": "A mass spectrometry-based method to screen for α-amidated peptides",
"creators": [
{
"lastName": "An",
"firstName": "Zhenming",
"creatorType": "author"
},
{
"lastName": "Chen",
"firstName": "Yudan",
"creatorType": "author"
},
{
"lastName": "Koomen",
"firstName": "John M.",
"creatorType": "author"
},
{
"lastName": "Merkler",
"firstName": "David J.",
"creatorType": "author"
}
],
"date": "January 1, 2012",
"DOI": "10.1002/pmic.201100327",
"ISSN": "1615-9861",
"abstractNote": "Amidation is a post-translational modification found at the C-terminus of ∼50% of all neuropeptide hormones. Cleavage of the Cα–N bond of a C-terminal glycine yields the α-amidated peptide in a reaction catalyzed by peptidylglycine α-amidating monooxygenase (PAM). The mass of an α-amidated peptide decreases by 58 Da relative to its precursor. The amino acid sequences of an α-amidated peptide and its precursor differ only by the C-terminal glycine meaning that the peptides exhibit similar RP-HPLC properties and tandem mass spectral (MS/MS) fragmentation patterns. Growth of cultured cells in the presence of a PAM inhibitor ensured the coexistence of α-amidated peptides and their precursors. A strategy was developed for precursor and α-amidated peptide pairing (PAPP): LC-MS/MS data of peptide extracts were scanned for peptide pairs that differed by 58 Da in mass, but had similar RP-HPLC retention times. The resulting peptide pairs were validated by checking for similar fragmentation patterns in their MS/MS data prior to identification by database searching or manual interpretation. This approach significantly reduced the number of spectra requiring interpretation, decreasing the computing time required for database searching and enabling manual interpretation of unidentified spectra. Reported here are the α-amidated peptides identified from AtT-20 cells using the PAPP method.",
"issue": "2",
"journalAbbreviation": "Proteomics",
"language": "en",
"libraryCatalog": "Wiley Online Library",
"pages": "173-182",
"publicationTitle": "PROTEOMICS",
"rights": "Copyright © 2012 WILEY-VCH Verlag GmbH & Co. KGaA, Weinheim",
"url": "http://onlinelibrary.wiley.com/doi/10.1002/pmic.201100327/abstract",
"volume": "12",
"attachments": [
{
"title": "Snapshot",
"mimeType": "text/html"
}
],
"tags": [
"Post-translational modification",
"Spectral pairing",
"Technology",
"α-Amidated peptide"
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "http://onlinelibrary.wiley.com/doi/10.1002/3527603018.ch17/summary",
"items": [
{
"itemType": "bookSection",
"title": "β-Rezeptorenblocker",
"creators": [
{
"lastName": "von Meyer",
"firstName": "L.",
"creatorType": "author"
},
{
"lastName": "Külpmann",
"firstName": "W. R.",
"creatorType": "author"
},
{
"firstName": "Wolf Rüdiger",
"lastName": "Külpmann",
"creatorType": "editor"
}
],
"date": "2002",
"DOI": "10.1002/3527603018.ch17",
"ISBN": "9783527603015",
"abstractNote": "* Immunoassay\n* Hochleistungsflüssigkeitschromatographie (HPLC)\n* Gaschromatographie\n* Medizinische Beurteilung und klinische Interpretation\n* Literatur",
"accessDate": "CURRENT_TIMESTAMP",
"bookTitle": "Klinisch-toxikologische Analytik",
"language": "de",
"libraryCatalog": "Wiley Online Library",
"pages": "365-370",
"publisher": "Wiley-VCH Verlag GmbH & Co. KGaA",
"rights": "Copyright © 2002 Wiley-VCH Verlag GmbH",
"url": "http://onlinelibrary.wiley.com/doi/10.1002/3527603018.ch17/summary",
"attachments": [
{
"title": "Snapshot",
"mimeType": "text/html"
}
],
"tags": [
"β-Rezeptorenblocker"
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "http://onlinelibrary.wiley.com/doi/10.1111/j.1468-5930.2011.00548.x/abstract",
"items": [
{
"itemType": "journalArticle",
"title": "The Principled Case for Employing Private Military and Security Companies in Interventions for Human Rights Purposes",
"creators": [
{
"lastName": "Baker",
"firstName": "Deane-Peter",
"creatorType": "author"
},
{
"lastName": "Pattison",
"firstName": "James",
"creatorType": "author"
}
],
"date": "February 1, 2012",
"DOI": "10.1111/j.1468-5930.2011.00548.x",
"ISSN": "1468-5930",
"abstractNote": "The possibility of using private military and security companies to bolster the capacity to undertake intervention for human rights purposes (humanitarian intervention and peacekeeping) has been increasingly debated. The focus of such discussions has, however, largely been on practical issues and the contingent problems posed by private force. By contrast, this article considers the principled case for privatising humanitarian intervention. It focuses on two central issues. First, does outsourcing humanitarian intervention to private military and security companies pose some fundamental, deeper problems in this context, such as an abdication of a state's duties? Second, on the other hand, is there a case for preferring these firms to other, state-based agents of humanitarian intervention? For instance, given a state's duties to their own military personnel, should the use of private military and security contractors be preferred to regular soldiers for humanitarian intervention?",
"accessDate": "CURRENT_TIMESTAMP",
"bookTitle": "Journal of Applied Philosophy",
"issue": "1",
"language": "en",
"libraryCatalog": "Wiley Online Library",
"pages": "1-18",
"publicationTitle": "Journal of Applied Philosophy",
"publisher": "Blackwell Publishing Ltd",
"rights": "Published 2011. This article is a U.S. Government work and is in the public domain in the USA.",
"url": "http://onlinelibrary.wiley.com/doi/10.1111/j.1468-5930.2011.00548.x/abstract",
"volume": "29",
"attachments": [
{
"title": "Snapshot",
"mimeType": "text/html"
},
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "http://onlinelibrary.wiley.com/doi/10.1111/j.1540-6261.1986.tb04559.x/abstract",
"items": [
{
"itemType": "journalArticle",
"title": "Volume for Winners and Losers: Taxation and Other Motives for Stock Trading",
"creators": [
{
"lastName": "Lakonishok",
"firstName": "Josef",
"creatorType": "author"
},
{
"lastName": "Smidt",
"firstName": "Seymour",
"creatorType": "author"
}
],
"date": "September 1, 1986",
"DOI": "10.1111/j.1540-6261.1986.tb04559.x",
"ISSN": "1540-6261",
"abstractNote": "Capital gains taxes create incentives to trade. Our major finding is that turnover is higher for winners (stocks, the prices of which have increased) than for losers, which is not consistent with the tax prediction. However, the turnover in December and January is evidence of tax-motivated trading; there is a relatively high turnover for losers in December and for winners in January. We conclude that taxes influence turnover, but other motives for trading are more important. We were unable to find evidence that changing the length of the holding period required to qualify for long-term capital gains treatment affected turnover.",
"accessDate": "CURRENT_TIMESTAMP",
"bookTitle": "The Journal of Finance",
"issue": "4",