Files
DissLiteratur/translators/AEA Web.js
Johannes Paehr c4354c0441 init
2025-10-18 15:35:31 +02:00

451 lines
15 KiB
JavaScript

{
"translatorID": "6044b16f-2452-4ce8-ad02-fab69ef04f13",
"translatorType": 4,
"label": "AEA Web",
"creator": "Sebatian Karcher",
"target": "^https?://www\\.aeaweb\\.org/(articles|journals|issues)",
"minVersion": "3.0",
"maxVersion": null,
"priority": 100,
"inRepository": true,
"browserSupport": "gcsibv",
"lastUpdated": "2025-05-08 17:50:00"
}
/*
***** BEGIN LICENSE BLOCK *****
AEA Web translator Copyright © 2014 Sebastian Karcher
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) {
if (url.indexOf('/articles?id=')>-1) {
return "journalArticle";
} else if (getSearchResults(doc, true)) {
return "multiple";
}
}
function getSearchResults(doc, checkOnly) {
var items = {};
var found = false;
var rows = ZU.xpath(doc, '//article//a[contains(@href, "/articles?id=")]|//li[@class="article"]//a[contains(@href, "/articles?id=")]');
for (var i=0; i<rows.length; i++) {
var href = rows[i].href;
var title = ZU.trimInternal(rows[i].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) {
return true;
}
var articles = new Array();
for (var i in items) {
articles.push(i);
}
ZU.processDocuments(articles, scrape);
});
} else {
scrape(doc, url);
}
}
function scrape(doc, url) {
var translator = Zotero.loadTranslator('web');
translator.setTranslator('951c027d-74ac-47d4-a107-9c3069ab7b48');//Embedded Metadata
translator.setHandler("itemDone", function(obj, item) {
//Decode HTML entities in title, e.g. &#039;
item.title = ZU.unescapeHTML(item.title);
//Correct pages format, e.g. 1467-96 or 625-63
var m = item.pages.match(/^(\d+)(\d\d)[\--](\d\d)$|^(\d+)(\d)[\--](\d)$|^(\d+)(\d\d\d)[\--](\d\d\d)$/);
if (m) {
item.pages = m[1]+m[2]+"-"+m[1]+m[3];
}
//The abstract is contained in the section-node of class abstract,
//but this node consists of an (empty) text node, a h2 node
//and another text node with the actual abstract.
var abstract = ZU.xpathText(doc, '//section[contains(@class,"abstract")]/text()[last()]');
item.abstractNote = abstract;
for (let jelCode of doc.querySelectorAll('.jel-codes .code')) {
let jelTag = jelCode.nextSibling;
if (jelTag && jelTag.textContent.trim()) {
item.tags.push({ tag: jelTag.textContent.trim() });
}
}
item.complete();
});
translator.getTranslatorObject(function(trans) {
trans.doWeb(doc, url);
});
}
/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "https://www.aeaweb.org/journals/search-results?within%5Btitle%5D=on&within%5Babstract%5D=on&within%5Bauthor%5D=on&journal=&from=a&q=labor+market",
"items": "multiple"
},
{
"type": "web",
"url": "https://www.aeaweb.org/issues/356",
"items": "multiple"
},
{
"type": "web",
"url": "https://www.aeaweb.org/articles?id=10.1257/jep.28.4.3",
"items": [
{
"itemType": "journalArticle",
"title": "Networks in the Understanding of Economic Behaviors",
"creators": [
{
"firstName": "Matthew O.",
"lastName": "Jackson",
"creatorType": "author"
}
],
"date": "2014/11",
"DOI": "10.1257/jep.28.4.3",
"ISSN": "0895-3309",
"abstractNote": "As economists endeavor to build better models of human behavior, they cannot ignore that humans are fundamentally a social species with interaction patterns that shape their behaviors. People's opinions, which products they buy, whether they invest in education, become criminals, and so forth, are all influenced by friends and acquaintances. Ultimately, the full network of relationships—how dense it is, whether some groups are segregated, who sits in central positions—affects how information spreads and how people behave. Increased availability of data coupled with increased computing power allows us to analyze networks in economic settings in ways not previously possible. In this paper, I describe some of the ways in which networks are helping economists to model and understand behavior. I begin with an example that demonstrates the sorts of things that researchers can miss if they do not account for network patterns of interaction. Next I discuss a taxonomy of network properties and how they impact behaviors. Finally, I discuss the problem of developing tractable models of network formation.",
"issue": "4",
"language": "en",
"libraryCatalog": "www.aeaweb.org",
"pages": "3-22",
"publicationTitle": "Journal of Economic Perspectives",
"url": "https://www.aeaweb.org/articles?id=10.1257/jep.28.4.3",
"volume": "28",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [
{
"tag": "Belief"
},
{
"tag": "Communication"
},
{
"tag": "Consumer Economics: Theory"
},
{
"tag": "Consumer Economics: Theory, Search"
},
{
"tag": "Economic Anthropology"
},
{
"tag": "Economic Sociology; Economic Anthropology; Social and Economic Stratification"
},
{
"tag": "Information and Knowledge"
},
{
"tag": "Learning"
},
{
"tag": "Network Formation and Analysis: Theory"
},
{
"tag": "Search; Learning; Information and Knowledge; Communication; Belief; Unawareness"
},
{
"tag": "Social and Economic Stratification"
},
{
"tag": "Unawareness, Network Formation and Analysis: Theory, Economic Sociology"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://www.aeaweb.org/articles?id=10.1257/aer.101.4.1467",
"items": [
{
"itemType": "journalArticle",
"title": "Education and Labor Market Discrimination",
"creators": [
{
"firstName": "Kevin",
"lastName": "Lang",
"creatorType": "author"
},
{
"firstName": "Michael",
"lastName": "Manove",
"creatorType": "author"
}
],
"date": "2011/06",
"DOI": "10.1257/aer.101.4.1467",
"ISSN": "0002-8282",
"abstractNote": "Using a model of statistical discrimination and educational sorting,\nwe explain why blacks get more education than whites of similar\ncognitive ability, and we explore how the Armed Forces Qualification\nTest (AFQT), wages, and education are related. The model suggests\nthat one should control for both AFQT and education when comparing\nthe earnings of blacks and whites, in which case a substantial\nblack-white wage differential emerges. We reject the hypothesis that\ndifferences in school quality between blacks and whites explain the\nwage and education differentials. Our findings support the view that\nsome of the black-white wage differential reflects the operation of the\nlabor market. (JEL I21, J15, J24, J31, J71)",
"issue": "4",
"language": "en",
"libraryCatalog": "www.aeaweb.org",
"pages": "1467-1496",
"publicationTitle": "American Economic Review",
"url": "https://www.aeaweb.org/articles?id=10.1257/aer.101.4.1467",
"volume": "101",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [
{
"tag": "Analysis of Education"
},
{
"tag": "Analysis of Education, Economics of Minorities and Races"
},
{
"tag": "Economics of Minorities and Races; Non-labor Discrimination"
},
{
"tag": "Human Capital; Skills; Occupational Choice; Labor Productivity"
},
{
"tag": "Labor Discrimination"
},
{
"tag": "Labor Productivity, Wage Level and Structure"
},
{
"tag": "Non-labor Discrimination, Human Capital"
},
{
"tag": "Occupational Choice"
},
{
"tag": "Skills"
},
{
"tag": "Wage Differentials, Labor Discrimination"
},
{
"tag": "Wage Level and Structure; Wage Differentials"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://www.aeaweb.org/articles?id=10.1257/jep.30.3.235",
"items": [
{
"itemType": "journalArticle",
"title": "A Skeptical View of the National Science Foundation's Role in Economic Research",
"creators": [
{
"firstName": "Tyler",
"lastName": "Cowen",
"creatorType": "author"
},
{
"firstName": "Alex",
"lastName": "Tabarrok",
"creatorType": "author"
}
],
"date": "2016/09",
"DOI": "10.1257/jep.30.3.235",
"ISSN": "0895-3309",
"abstractNote": "We can imagine a plausible case for government support of science based on traditional economic reasons of externalities and public goods. Yet when it comes to government support of grants from the National Science Foundation (NSF) for economic research, our sense is that many economists avoid critical questions, skimp on analysis, and move straight to advocacy. In this essay, we take a more skeptical attitude toward the efforts of the NSF to subsidize economic research. We offer two main sets of arguments. First, a key question is not whether NSF funding is justified relative to laissez-faire, but rather, what is the marginal value of NSF funding given already existing government and nongovernment support for economic research? Second, we consider whether NSF funding might more productively be shifted in various directions that remain within the legal and traditional purview of the NSF. Such alternative focuses might include data availability, prizes rather than grants, broader dissemination of economic insights, and more. Given these critiques, we suggest some possible ways in which the pattern of NSF funding, and the arguments for such funding, might be improved.",
"issue": "3",
"language": "en",
"libraryCatalog": "www.aeaweb.org",
"pages": "235-248",
"publicationTitle": "Journal of Economic Perspectives",
"url": "https://www.aeaweb.org/articles?id=10.1257/jep.30.3.235",
"volume": "30",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [
{
"tag": "Higher Education; Research Institutions"
},
{
"tag": "Market for Economists, Higher Education"
},
{
"tag": "Research Institutions, Technological Change: Government Policy"
},
{
"tag": "Role of Economics"
},
{
"tag": "Role of Economics; Role of Economists; Market for Economists"
},
{
"tag": "Role of Economists"
},
{
"tag": "Technological Change: Government Policy"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://www.aeaweb.org/articles?id=10.1257/jel.20201641",
"items": [
{
"itemType": "journalArticle",
"title": "The 1918 Influenza Pandemic and Its Lessons for COVID-19",
"creators": [
{
"firstName": "Brian",
"lastName": "Beach",
"creatorType": "author"
},
{
"firstName": "Karen",
"lastName": "Clay",
"creatorType": "author"
},
{
"firstName": "Martin",
"lastName": "Saavedra",
"creatorType": "author"
}
],
"date": "2022/03",
"DOI": "10.1257/jel.20201641",
"ISSN": "0022-0515",
"abstractNote": "This article reviews the global health and economic consequences of the 1918 influenza pandemic, with a particular focus on topics that have seen a renewed interest because of COVID-19. We begin by providing an overview of key contextual and epidemiological details as well as the data that are available to researchers. We then examine the effects on mortality, fertility, and the economy in the short and medium run. The role of non-pharmaceutical interventions in shaping those outcomes is discussed throughout. We then examine longer-lasting health consequences and their impact on human capital accumulation and socioeconomic status. Throughout the paper we highlight important areas for future work.",
"issue": "1",
"language": "en",
"libraryCatalog": "www.aeaweb.org",
"pages": "41-84",
"publicationTitle": "Journal of Economic Literature",
"url": "https://www.aeaweb.org/articles?id=10.1257/jel.20201641",
"volume": "60",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [
{
"tag": "Aggregate Human Capital"
},
{
"tag": "Aggregate Labor Productivity, Business Fluctuations"
},
{
"tag": "Business Fluctuations; Cycles"
},
{
"tag": "Child Care"
},
{
"tag": "Children"
},
{
"tag": "Cycles, Health Behavior, Health and Economic Development, Fertility"
},
{
"tag": "Economic History: Labor and Consumers, Demography, Education, Health, Welfare, Income, Wealth, Religion, and Philanthropy: General, International, or Comparative"
},
{
"tag": "Employment"
},
{
"tag": "Employment; Unemployment; Wages; Intergenerational Income Distribution; Aggregate Human Capital; Aggregate Labor Productivity"
},
{
"tag": "Family Planning"
},
{
"tag": "Fertility; Family Planning; Child Care; Children; Youth"
},
{
"tag": "Health Behavior"
},
{
"tag": "Health and Economic Development"
},
{
"tag": "Human Capital; Skills; Occupational Choice; Labor Productivity"
},
{
"tag": "Intergenerational Income Distribution"
},
{
"tag": "Labor Productivity, Economic History: Labor and Consumers, Demography, Education, Health, Welfare, Income, Wealth, Religion, and Philanthropy: General, International, or Comparative"
},
{
"tag": "Occupational Choice"
},
{
"tag": "Skills"
},
{
"tag": "Unemployment"
},
{
"tag": "Wages"
},
{
"tag": "Youth, Human Capital"
}
],
"notes": [],
"seeAlso": []
}
]
}
]
/** END TEST CASES **/