{ "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": "2014-04-24 04:17:46" } /* 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 . */ 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]+?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(/]*>/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; } //leaving this here in case it's still needed //var baseUrl = url.match(/https?:\/\/[^\/]+/); 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]+?src="([^"]+)"/i); if(m) { m[1] = ZU.unescapeHTML(m[1]); Z.debug('PDF url: ' + 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(/]*>/i); if(m) Z.debug(m[0]); else Z.debug('No iframe found'); } 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 in authors){ //authors are in the forms Smith AS var authormatch = authors[i].match(/(.+?)\s+([A-Z]+(\s[A-Z])?)/); item.creators.push({lastName: authormatch[1], firstName: authormatch[2], creatorType: "author"}) ; } item.complete(); } function scrape(doc, url, pdfUrl) { var itemType = detectWeb(doc,url); if( itemType == 'book' ) { scrapeBook(doc, url, pdfUrl); } else { if (url.search(/\/o\/cochrane\/(clcentral|cldare|clcmr|clhta|cleed|clabout)/)!=-1) scrapeCochraneTrial(doc, url); //scrapeEM(doc, url, pdfUrl); 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; i3.0.CO;2-B/abstract", "DOI": "10.1002/(SICI)1521-3773(20000103)39:1<165::AID-ANIE165>3.0.CO;2-B", "pages": "165-168", "date": "January 3, 2000", "abstractNote": "Nanosized palladium colloids, generated in situ by reduction of PdII to Pd0 [Eq. (a)], are involved in the catalysis of phosphane-free Heck and Suzuki reactions with simple palladium salts such as PdCl2 or Pd(OAc)2, as demonstrated by transmission electron microscopic investigations.", "bookTitle": "Angewandte Chemie International Edition", "language": "en", "rights": "© 2000 WILEY-VCH Verlag GmbH, Weinheim, Fed. Rep. of Germany", "libraryCatalog": "Wiley Online Library", "accessDate": "CURRENT_TIMESTAMP", "shortTitle": "Phosphane-Free Palladium-Catalyzed Coupling Reactions" } ] }, { "type": "web", "url": "http://onlinelibrary.wiley.com/doi/10.1002/jhet.5570200408/abstract", "items": [ { "itemType": "journalArticle", "creators": [ { "lastName": "Tarumi", "firstName": "Y.", "creatorType": "author" }, { "lastName": "Atsumi", "firstName": "T.", "creatorType": "author" } ], "notes": [], "tags": [], "seeAlso": [], "attachments": [ { "title": "Snapshot", "mimeType": "text/html" } ], "title": "Studies on imidazole derivatives and related compounds. 2. Characterization of substituted derivatives of 4-carbamoylimidazolium-5-olate by ultraviolet absorption spectra", "publicationTitle": "Journal of Heterocyclic Chemistry", "volume": "20", "issue": "4", "publisher": "Wiley-Blackwell", "ISSN": "1943-5193", "url": "http://onlinelibrary.wiley.com/doi/10.1002/jhet.5570200408/abstract", "DOI": "10.1002/jhet.5570200408", "pages": "875-885", "date": "July 1, 1983", "abstractNote": "The representative mono- and dialkyl-substituted derivatives of 4-carbamoylimidazolium-5-olate (1) were synthesized unequivocally. On the basis of their spectral data for ultraviolet absorption spectra in acidic, basic and neutral solutions, we have found some spectral characteristics which make it facile to clarify the position of substituents.", "bookTitle": "Journal of Heterocyclic Chemistry", "rights": "Copyright © 1983 Journal of Heterocyclic Chemistry", "libraryCatalog": "Wiley Online Library", "accessDate": "CURRENT_TIMESTAMP" } ] }, { "type": "web", "url": "http://onlinelibrary.wiley.com/o/cochrane/clcentral/articles/336/CN-00774336/sect0.html", "items": [ { "itemType": "journalArticle", "creators": [ { "lastName": "Wassenaar", "firstName": "TR", "creatorType": "author" }, { "lastName": "Eickhoff", "firstName": "JC", "creatorType": "author" }, { "lastName": "Jarzemsky", "firstName": "DR", "creatorType": "author" }, { "lastName": "Smith", "firstName": "SS", "creatorType": "author" }, { "lastName": "Larson", "firstName": "ML", "creatorType": "author" }, { "lastName": "Schiller", "firstName": "JH", "creatorType": "author" } ], "notes": [], "tags": [ "HS-HAEMATOL", "HS-HAEMATOLNOSCO", "SR-BREASTCA", "HS-HANDSRCH" ], "seeAlso": [], "attachments": [ { "title": "Cochrane Snapshot", "mimType": "text/html" } ], "title": "Differences in primary care clinicians' approach to non-small cell lung cancer (NSCLC) patients compared to breast cancer (BrCa)", "publicationTitle": "Journal of Clinical Oncology: ASCO annual meeting proceedings", "abstractNote": "42nd Annual Meeting of the American Society of Clinical Oncology, Atlanta,GA, 2-6 June, 2006. Background: Lung cancer is a disease associated with a stigma of being primarily self-induced via smoking and therefore avoidable. It is unclear if this stigma results in feelings of guilt and shame on the part of the patient, and a difference in care on the part of primary care physicians (MDs), both of which could lead to differences in treatment and patient self-advocacy, and ultimately poorer outcomes. Methods: We conducted a prospective survey study of 1,132 MDs who were randomized into 4 groups. Each group received a questionnaire representing a clinical scenario (smoker/NSCLC; nonsmoker/NSCLC; smoker/BrCa; nonsmoker/BrCa). The scenarios were identical in terms of stage, gender and outcome; but varied in the disease and smoking history (smoker (S) vs. nonsmoker (NS)). The primary objective was to collect preliminary data to determine if these MDs approached the care and referral of patients (pts) with NSCLC or BrCa differently. A secondary objective was to determine whether or not tobacco use influenced the MD's approach to the cancer pts. Comparisons of response patterns between the groups were evaluated by Chi-square analysis. Results: 672 questionnaires were completed: 175 in the NS/BrCa, 177 in the S/BrCa, 166 in the NS/NSCLC and 154 in the S/NSCLC scenarios. We observed that MDs were less likely to refer pts with advanced NSCLC to an oncologist than BrCa pts (p=<0.001). More MDs knew that chemotherapy improved survival in pts with advanced BrCa than did MDs regarding chemotherapy use in advanced NSCLC (p=0.0145). In addition, more MDs stated they did not know the benefit of adjuvant therapy for NSCLC than for BrCa (p= <0.001). As a result, more pts with advanced BrCa were referred for further therapy vs. NSCLC pts, who were more likely to be referred only for symptom control (p=0.0092). BrCa pts also had more aggressive follow up than did pts with NSCLC (p=0.0256). There was no statistical significant difference when comparing smoking vs. non-smoking pts. Conclusions: We conclude that there is a significant lack of knowledge in the primary care physician regarding the treatment of pts with advanced stage NSCLC, and the role and benefit of adjuvant therapy. This might lead to a less aggressive referral pattern in these pts to clinical oncologists.", "date": "2006", "volume": "24", "pages": "7041", "rights": "Copyright © 2011 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.", "libraryCatalog": "Wiley Online Library" } ] }, { "type": "web", "url": "http://onlinelibrary.wiley.com/o/cochrane/cldare/articles/DARE-12004008706/sect0.html", "items": [ { "itemType": "journalArticle", "creators": [ { "lastName": "Murff", "firstName": "H J", "creatorType": "author" }, { "lastName": "Spigel", "firstName": "D R", "creatorType": "author" }, { "lastName": "Syngal", "firstName": "S", "creatorType": "author" } ], "notes": [], "tags": [], "seeAlso": [], "attachments": [ { "title": "Cochrane Snapshot", "mimType": "text/html" } ], "title": "Does this patient have a family history of cancer: an evidence‐based analysis of the accuracy of family cancer history (Structured abstract)", "publicationTitle": "JAMA", "date": "2004", "volume": "292", "pages": "1480-1489", "issue": "12", "rights": "Copyright © 2014 University of York. Published by John Wiley & Sons, Ltd.", "libraryCatalog": "Wiley Online Library", "shortTitle": "Does this patient have a family history of cancer" } ] }, { "type": "web", "url": "http://onlinelibrary.wiley.com/o/cochrane/clcmr/articles/CMR-7395/sect0.html", "items": [ { "itemType": "journalArticle", "creators": [ { "lastName": "Gerlach", "firstName": "KK", "creatorType": "author" }, { "lastName": "Marino", "firstName": "C", "creatorType": "author" }, { "lastName": "Hoffman-Goetz", "firstName": "L", "creatorType": "author" } ], "notes": [], "tags": [], "seeAlso": [], "attachments": [ { "title": "Cochrane Snapshot", "mimType": "text/html" } ], "title": "Cancer coverage in women's magazines: what information are women receiving?", "publicationTitle": "Journal of Cancer Education", "abstractNote": "BACKGROUND: Women use magazines as sources of health-related information, including information about cancer. Given this reliance on magazines for cancer-related information, it may interest cancer educators to know which cancers are reported on in women's magazines and what types of information are being presented. METHODS: Four widely circulated monthly women's magazines were analyzed for their coverage of cancers during the years 1987-1995. The types of cancers discussed and the frequencies of coverage were noted for each issue of every magazine. Additionally, the content of every cancer-related article was assessed for issues in cancer prevention (primary and secondary), risks, treatment, and genetics. RESULTS: All four magazines in this study reported on breast cancer more often than any other cancer. Lung and colon cancers received very little coverage. The percentages of articles devoted to the six most-discussed cancers (breast, cervical, colon, lung, ovarian, and skin) did not reflect either the mortality rates or the incidence rates of these cancers. CONCLUSIONS: The discussions of cancers in these four women's magazines focused mostly on breast and skin cancers and neglected two very important cancers--lung and colon. If women are indeed receiving much of their cancer information from such media coverage, these findings should alert cancer educators to the possible need to work with these media to help in the dissemination of additional information about cancers to women.", "date": "1997", "volume": "12", "pages": "240-244", "issue": "4", "rights": "Copyright © 2012 The Cochrane Collaboration. Published by John Wiley & Sons, Ltd.", "libraryCatalog": "Wiley Online Library", "shortTitle": "Cancer coverage in women's magazines" } ] }, { "type": "web", "url": "http://onlinelibrary.wiley.com/doi/10.1002/ev.20077/full", "items": [ { "itemType": "journalArticle", "creators": [ { "lastName": "Cousins", "firstName": "J. Bradley", "creatorType": "author" }, { "lastName": "Bourgeois", "firstName": "Isabelle", "creatorType": "author" }, { "lastName": "Associates", "creatorType": "author", "fieldMode": 1 } ], "notes": [], "tags": [], "seeAlso": [], "attachments": [ { "title": "Snapshot", "mimeType": "text/html" }, { "title": "Full Text PDF", "mimeType": "application/pdf" } ], "title": "Multiple Case Study Methods and Findings", "publicationTitle": "New Directions for Evaluation", "journalAbbreviation": "New Directions for Evaluation", "volume": "2014", "issue": "141", "ISSN": "1534-875X", "url": "http://onlinelibrary.wiley.com/doi/10.1002/ev.20077/abstract", "DOI": "10.1002/ev.20077", "pages": "25-99", "date": "March 1, 2014", "abstractNote": "Research on organizational evaluation capacity building (ECB) has focused very much on the capacity to do evaluation, neglecting organizational demand for evaluation and the capacity to use it. This qualitative multiple case study comprises a systematic examination of organizational capacity within eight distinct organizations guided by a common conceptual framework. Described in this chapter are the rationale and methods for the study and then the sequential presentation of findings for each of the eight case organizations. Data collection and analyses for these studies occurred six years ago; findings are cross-sectional and do not reflect changes in organizations or their capacity for evaluation since that time. The format for presenting the findings was standardized so as to foster cross-case analyses, the focus for the next and final chapter of this volume.", "language": "en", "rights": "© Wiley Periodicals, Inc., and the American Evaluation Association", "libraryCatalog": "Wiley Online Library" } ] } ] /** END TEST CASES **/