نتایج جستجو برای: include the feminist meta

تعداد نتایج: 16110611  

Journal: :Trauma, violence & abuse 2016
Beverly A McPhail

The radical-liberal feminist perspective on rape posits that the assault is motivated by power and control rather than sexual gratification and is a violent rather than a sexual act. However, rape is a complex act. Relying on only one early strand of feminist thought to explain the etiology of rape limits feminists' understanding of rape and the practice based upon the theory. The history of th...

2010
Shelley Scott

Characteristics of feminist theatre As we have seen in previous chapters, at its inception Nightwood participated in a widespread English-language women's theatre movement that had already been well established in the United States and Britain. As Phyllis Mael points out in an article about American feminist theatre published in Chrysalis magazine in April 1980, over two hundred plays by women ...

2002
Jennifer Hall

After the first wave of feminist geographical research, which focused on the spatiality of women’s lives, feminist geography began to concern itself with issues of equity in the discipline, the ways in which geographical knowledge is conceptualized, and how gender and other social differences interrelate. In this paper I consider how the current generation of women graduate students, students w...

2012
C. QUINCE HOPKINS

Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 312 R I. The Importance of Public Truth-Telling and Acceptance of Responsibility to Victim Healing and Community Norm Change: Social and Psychological Perspectives . . . . . . . . . . . . 320 R A. Benefits to Individual Victims . . . . . . . . . . . . . . . . . . . . . . . . . 32...

2002
Myfanwy Franks

When we consider the different cultural spaces in which feminist social researchers might be carrying out empirical research the nature of ‘feminist social research’ becomes difficult to define. The issue becomes even more complex when we consider the multiple standpoints, contexts and positionalities of different kinds of feminists from diverse backgrounds, both secular and religious. There ca...

Journal: :Journal of Psychology & Clinical Psychiatry 2016

2008
Lisa Eckenwiler Dafna Feinholz Carolyn Ells Toby Schonfeld

This commentary was submitted to the World Medical Association on behalf of the International Network on Feminist Approaches to Bioethics. Our submission included (1) a description of feminist research ethics, (2) suggestions for specific revisions to the Declaration, and (3) elements found in other international research ethics codes that are important from a feminist perspective. Our goals we...

2005
Liz Bondi

Women’s efforts to influence policies have complex effects, which are often difficult to evaluate. This paper identifies four themes in feminist politics through which to analyse whether a particular intervention involving substantial numbers of women – that of counselling in the UK – can be understood as a feminist practice. These themes are concerned with gender equality, women’s autonomy, re...

Journal: :Medical anthropology quarterly 2001
R Rapp

This article tracks the growth of medical anthropology in the United States in the decades since the 1970s, as it has intersected the expansion of feminist activism and scholarship. I argue that feminist attention to embodied inequalities quickly focused on reproduction as a site of investigation and intervention. Medical anthropology has benefited from feminist concern with stratified reproduc...

2011
Sônia Weidner Maluf

How is it possible to construct a narrative and a reflection about contemporary Brazilian feminism for an international event that intends to conduct a review of feminist theory and activism on a global level, by bringing together feminist researchers from several countries? Even if it is necessary to contextualize some of the central features of Brazilian feminism, I will also try not to repro...

نمودار تعداد نتایج جستجو در هر سال

با کلیک روی نمودار نتایج را به سال انتشار فیلتر کنید

function paginate(evt) { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term pg=parseInt(evt.target.text) var data={ "year":filter_year, "term":term, "pgn":pg } filtered_res=post_and_fetch(data,url) window.scrollTo(0,0); } function update_search_meta(search_meta) { meta_place=document.getElementById("search_meta_data") term=search_meta.term active_pgn=search_meta.pgn num_res=search_meta.num_res num_pages=search_meta.num_pages year=search_meta.year meta_place.dataset.term=term meta_place.dataset.page=active_pgn meta_place.dataset.num_res=num_res meta_place.dataset.num_pages=num_pages meta_place.dataset.year=year document.getElementById("num_result_place").innerHTML=num_res if (year !== "unfilter"){ document.getElementById("year_filter_label").style="display:inline;" document.getElementById("year_filter_place").innerHTML=year }else { document.getElementById("year_filter_label").style="display:none;" document.getElementById("year_filter_place").innerHTML="" } } function update_pagination() { search_meta_place=document.getElementById('search_meta_data') num_pages=search_meta_place.dataset.num_pages; active_pgn=parseInt(search_meta_place.dataset.page); document.getElementById("pgn-ul").innerHTML=""; pgn_html=""; for (i = 1; i <= num_pages; i++){ if (i===active_pgn){ actv="active" }else {actv=""} pgn_li="
  • " +i+ "
  • "; pgn_html+=pgn_li; } document.getElementById("pgn-ul").innerHTML=pgn_html var pgn_links = document.querySelectorAll('.mypgn'); pgn_links.forEach(function(pgn_link) { pgn_link.addEventListener('click', paginate) }) } function post_and_fetch(data,url) { showLoading() xhr = new XMLHttpRequest(); xhr.open('POST', url, true); xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8'); xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { var resp = xhr.responseText; resp_json=JSON.parse(resp) resp_place = document.getElementById("search_result_div") resp_place.innerHTML = resp_json['results'] search_meta = resp_json['meta'] update_search_meta(search_meta) update_pagination() hideLoading() } }; xhr.send(JSON.stringify(data)); } function unfilter() { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":"unfilter", "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } function deactivate_all_bars(){ var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(bar) { bar.dataset.active = false bar.style = "stroke:#71a3c5;" }) } year_chart.on("created", function() { var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(check) { check.addEventListener('click', checkIndex); }) }); function checkIndex(event) { var yrchart = document.querySelectorAll('.ct-bar'); var year_bar = event.target if (year_bar.dataset.active == "true") { unfilter_res = unfilter() year_bar.dataset.active = false year_bar.style = "stroke:#1d2b3699;" } else { deactivate_all_bars() year_bar.dataset.active = true year_bar.style = "stroke:#e56f6f;" filter_year = chart_data['labels'][Array.from(yrchart).indexOf(year_bar)] url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":filter_year, "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } } function showLoading() { document.getElementById("loading").style.display = "block"; setTimeout(hideLoading, 10000); // 10 seconds } function hideLoading() { document.getElementById("loading").style.display = "none"; } -->