-
Notifications
You must be signed in to change notification settings - Fork 786
/
Copy pathERIC.js
986 lines (966 loc) · 30.1 KB
/
ERIC.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
{
"translatorID": "e4660e05-a935-43ec-8eec-df0347362e4c",
"label": "ERIC",
"creator": "Sebastian Karcher",
"target": "^https?://(www\\.)?eric\\.ed\\.gov/",
"minVersion": "3.0",
"maxVersion": "",
"priority": 100,
"inRepository": true,
"translatorType": 12,
"browserSupport": "gcsibv",
"lastUpdated": "2024-07-05 11:56:39"
}
/*
Translator
Copyright (C) 2013 Sebastian Karcher
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 detectWeb(doc, url) {
if (/id=E[JD]\d+/.test(url)) {
return findType(doc, url);
}
else if (getSearchResults(doc, false)) {
return "multiple";
}
return false;
}
function getType(ericID, publicationType) {
// Trying to do reasonable guesses for non-journal types
if (ericID.startsWith("ED")) {
if (publicationType) {
if (publicationType.includes("Books")) {
return "book";
}
else if (publicationType.includes("Dissertations/Theses")) {
return "thesis";
}
else {
return "report";
}
}
else {
// Report is the most plausible fallback
return "report";
}
}
else {
return "journalArticle";
}
}
function findType(doc, url) {
var ericID = url.match(/id=(E[JD]\d+)/)[1];
var typeSecondary = ZU.xpathText(doc, '//div[@class="sInfo"]//div[strong[contains(text(), "Publication Type")]]');
return getType(ericID, typeSecondary);
}
function getSearchResults(doc, checkOnly) {
var items = {};
var found = false;
var rows = doc.querySelectorAll("div.r_t > a[href*='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;
}
async function doWeb(doc, url) {
if (detectWeb(doc, url) == 'multiple') {
let items = await Zotero.selectItems(getSearchResults(doc, false));
if (!items) return;
for (let url of Object.keys(items)) {
await scrape(await requestDocument(url));
}
}
else {
await scrape(doc, url);
}
}
async function scrape(doc, url = doc.location.href) {
var abstract = ZU.xpathText(doc, '//div[@class="abstract"]');
var DOI = ZU.xpathText(doc, '//a[contains(text(), "Direct link")]/@href');
var ericID = url.match(/id=(E[JD]\d+)/)[1];
var authorString = ZU.xpathText(doc, '//meta[@name="citation_author"]/@content');
let translator = Zotero.loadTranslator('web');
// Embedded Metadata
translator.setTranslator('951c027d-74ac-47d4-a107-9c3069ab7b48');
translator.setDocument(doc);
translator.setHandler('itemDone', (_obj, item) => {
if (abstract) item.abstractNote = abstract.replace(/^\|/, "");
item.title = item.title.replace(/.\s*$/, "");
item.itemType = findType(doc, url);
if (authorString.includes("|")) {
item.creators = [];
var authors = authorString.split("|");
for (var i = 0; i < authors.length; i++) {
item.creators.push(ZU.cleanAuthor(authors[i], "author", true));
}
}
if (item.ISSN) {
Z.debug(item.ISSN);
item.ISSN = ZU.cleanISSN(item.ISSN.replace(/ISSN-/, ""));
}
if (item.ISBN) item.ISBN = ZU.cleanISBN(item.ISBN.replace('ISBN', ''));
if (item.publisher) item.publisher = item.publisher.replace(/\..+/, "");
if (DOI) {
item.DOI = ZU.cleanDOI(decodeURIComponent(DOI));
}
if (item.publisher == item.publicationTitle) {
// Publisher & Publication Title are often identical
if (item.itemType == "journalArticle") {
delete item.publisher;
}
else if (item.itemType == "report") {
delete item.publicationTitle;
}
}
item.extra = "ERIC Number: " + ericID;
// Only include URL if full text is hosted on ERIC
if (!ZU.xpath(doc, '//div[@id="r_colR"]//img[@alt="PDF on ERIC"]').length) {
delete item.url;
}
else {
// use clean URL
item.url = "https://eric.ed.gov/?id=" + ericID;
}
item.libraryCatalog = "ERIC";
item.complete();
});
let em = await translator.getTranslatorObject();
await em.doWeb(doc, url);
}
function cleanInput(search) {
if (typeof search === 'string') {
search = { ericNumber: search };
}
if (typeof search.ericNumber !== 'string') {
return false;
}
let matches = search.ericNumber.match(/E[DJ]\d+/);
if (matches) {
search.ericNumber = matches[0];
return search;
}
else {
return false;
}
}
function detectSearch(search) {
return !!cleanInput(search);
}
async function doSearch(search) {
search = cleanInput(search);
let { response } = await requestJSON(`https://api.ies.ed.gov/eric/?search=id:${search.ericNumber}&format=json&fields=*`);
if (!response.docs || !response.docs.length) {
throw new Error('ERIC search returned no results');
}
let doc = response.docs[0];
let item = new Zotero.Item(getType(doc.id, doc.publicationtype.join('; ')));
item.title = ZU.unescapeHTML(doc.title);
item.creators.push(...doc.author.map(name => ZU.cleanAuthor(name, 'author', true)));
item.abstractNote = doc.description || doc.desc;
if (item.abstractNote) {
item.abstractNote = ZU.unescapeHTML(item.abstractNote);
}
item.ISBN = doc.isbn && ZU.cleanISBN(doc.isbn.join(' '));
item.ISSN = doc.issn && ZU.cleanISSN(doc.issn.join(' ').replace(/ISSN-/g, ''));
item.DOI = doc.url && ZU.cleanDOI(decodeURIComponent(doc.url));
item.language = doc.language && doc.language[0];
item.date = ZU.strToISO(doc.publicationdate || doc.publicationdateyear);
item.publisher = doc.publisher && doc.publisher.split('. ')[0];
item.numPages = doc.pagecount;
if (item.itemType == 'report') {
item.institution = doc.institution;
}
else {
item.publicationTitle = doc.source || doc.institution;
let matches = doc.sourceid && doc.sourceid.match(/(v\d+)?\s*(n\d+)?\s*(p[\d-]+)?/);
if (matches) {
let [, volume, number, pages] = matches;
item.volume = volume && volume.substring(1);
item.issue = number && number.substring(1);
item.pages = pages && pages.substring(1);
}
}
item.extra = `ERIC Number: ${doc.id}`;
item.tags = doc.subject.map(subject => ({ tag: subject }));
if (doc.e_fulltextauth) {
item.attachments.push({
title: 'Full Text PDF',
mimeType: 'application/pdf',
url: `https://files.eric.ed.gov/fulltext/${doc.id}.pdf`
});
item.url = `https://eric.ed.gov/?id=${doc.id}`;
// Don't bother including the URL in doc.url: it's usually just the publisher's homepage
// and not relevant to the item
}
item.complete();
}
/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "https://eric.ed.gov/?id=EJ956651",
"items": [
{
"itemType": "journalArticle",
"title": "Collaborating with Parents to Establish Behavioral Goals in Child-Centered Play Therapy",
"creators": [
{
"firstName": "Phyllis B.",
"lastName": "Post",
"creatorType": "author"
},
{
"firstName": "Peggy L.",
"lastName": "Ceballos",
"creatorType": "author"
},
{
"firstName": "Saundra L.",
"lastName": "Penn",
"creatorType": "author"
}
],
"date": "2012/01/00",
"DOI": "10.1177/1066480711425472",
"ISSN": "1066-4807",
"abstractNote": "The purpose of this article is to provide specific guidelines for child-centered play therapists to set behavioral outcome goals to effectively work with families and to meet the demands for accountability in the managed care environment. The child-centered play therapy orientation is the most widely practiced approach among play therapists who identify a specific theoretical orientation. While information about setting broad objectives is addressed using this approach to therapy, explicit guidelines for setting behavioral goals, while maintaining the integrity of the child-centered theoretical orientation, are needed. The guidelines are presented in three phases of parent consultation: (a) the initial engagement with parents, (b) the ongoing parent consultations, and (c) the termination phase. In keeping with the child-centered approach, the authors propose to work with parents from a person-centered orientation and seek to appreciate how cultural influences relate to parents' concerns and goals for their children. A case example is provided to demonstrate how child-centered play therapists can accomplish the aforementioned goals.",
"extra": "ERIC Number: EJ956651",
"issue": "1",
"language": "en",
"libraryCatalog": "ERIC",
"pages": "51-57",
"publicationTitle": "Family Journal: Counseling and Therapy for Couples and Families",
"volume": "20",
"attachments": [
{
"title": "Snapshot",
"mimeType": "text/html"
}
],
"tags": [
{
"tag": "Cooperative Planning"
},
{
"tag": "Counseling Techniques"
},
{
"tag": "Counselor Role"
},
{
"tag": "Cultural Influences"
},
{
"tag": "Cultural Relevance"
},
{
"tag": "Guidelines"
},
{
"tag": "Interpersonal Relationship"
},
{
"tag": "Parent Participation"
},
{
"tag": "Play Therapy"
},
{
"tag": "Therapy"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "http://eric.ed.gov/?q=(prekindergarten+OR+kindergarten)+AND+literacy",
"items": "multiple"
},
{
"type": "web",
"url": "https://eric.ed.gov/?q=(prekindergarten+OR+kindergarten)+AND+literacy&ff1=pubBooks&id=ED509979",
"items": [
{
"itemType": "book",
"title": "The Building Blocks of Preschool Success",
"creators": [
{
"firstName": "Katherine A.",
"lastName": "Beauchat",
"creatorType": "author"
},
{
"firstName": "Katrin L.",
"lastName": "Blamey",
"creatorType": "author"
},
{
"firstName": "Sharon",
"lastName": "Walpole",
"creatorType": "author"
}
],
"date": "2010/06/00",
"ISBN": "9781606236949",
"abstractNote": "Written expressly for preschool teachers, this engaging book explains the \"whats,\" \"whys,\" and \"how-tos\" of implementing best practices for instruction in the preschool classroom. The authors show how to target key areas of language and literacy development across the entire school day, including whole-group and small-group activities, center time, transitions, and outdoor play. Detailed examples in every chapter illustrate what effective instruction and assessment look like in three distinct settings: a school-based pre-kindergarten, a Head Start center with many English language learners, and a private suburban preschool. Helpful book lists, charts, and planning tools are featured, including reproducible materials. Contents include: (1) The Realities of Preschool; (2) A Focus on Oral Language and Vocabulary Development; (3) Comprehension; (4) Phonological Awareness; (5) Print and Alphabet Awareness; (6) Emergent Writing; (7) Tracking Children's Progress: The Role of Assessment in Preschool Classrooms; and (8) Making It Work for Adults and Children.",
"extra": "ERIC Number: ED509979",
"language": "en",
"libraryCatalog": "ERIC",
"publisher": "Guilford Press",
"attachments": [
{
"title": "Snapshot",
"mimeType": "text/html"
}
],
"tags": [
{
"tag": "Alphabets"
},
{
"tag": "Best Practices"
},
{
"tag": "Classroom Environment"
},
{
"tag": "Disadvantaged Youth"
},
{
"tag": "Educational Assessment"
},
{
"tag": "Emergent Literacy"
},
{
"tag": "English (Second Language)"
},
{
"tag": "Group Activities"
},
{
"tag": "Instructional Materials"
},
{
"tag": "Language Skills"
},
{
"tag": "Oral Language"
},
{
"tag": "Phonological Awareness"
},
{
"tag": "Play"
},
{
"tag": "Preschool Children"
},
{
"tag": "Preschool Teachers"
},
{
"tag": "Reading Instruction"
},
{
"tag": "Reprography"
},
{
"tag": "Second Language Learning"
},
{
"tag": "Suburban Schools"
},
{
"tag": "Vocabulary Development"
},
{
"tag": "Writing Instruction"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://eric.ed.gov/?id=EJ906692",
"items": [
{
"itemType": "journalArticle",
"title": "Determining Faculty Needs for Delivering Accessible Electronically Delivered Instruction in Higher Education",
"creators": [
{
"firstName": "Marsha A.",
"lastName": "Gladhart",
"creatorType": "author"
}
],
"date": "2010/00/00",
"abstractNote": "The purpose of this study was to determine if a need exists for faculty training to improve accommodation for students with disabilities enrolled in electronically delivered courses at a statewide university system. An online survey was used to determine if instructors had students who had been identified as needing accommodation in their online courses, to identify which tools instructors used in electronically delivered instruction, and to determine how familiar the instructors were with strategies for accommodating students with disabilities in their courses. Over half the respondents reported identifying students in their classes with disabilities either by an official notice or through other means of identification. The respondents identified a variety of electronic delivery tools used to provide instruction in distance courses. A low percentage of the faculty surveyed reported they were aware of strategies to improve accessibility in their electronically delivered courses. (Contains 6 tables.)",
"extra": "ERIC Number: EJ906692",
"issue": "3",
"language": "en",
"libraryCatalog": "ERIC",
"pages": "185-196",
"publicationTitle": "Journal of Postsecondary Education and Disability",
"url": "https://eric.ed.gov/?id=EJ906692",
"volume": "22",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [
{
"tag": "Academic Accommodations (Disabilities)"
},
{
"tag": "College Faculty"
},
{
"tag": "Delivery Systems"
},
{
"tag": "Disabilities"
},
{
"tag": "Disability Identification"
},
{
"tag": "Educational Needs"
},
{
"tag": "Educational Practices"
},
{
"tag": "Educational Strategies"
},
{
"tag": "Electronic Learning"
},
{
"tag": "Familiarity"
},
{
"tag": "Mail Surveys"
},
{
"tag": "Needs Assessment"
},
{
"tag": "Online Courses"
},
{
"tag": "Teacher Attitudes"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://eric.ed.gov/?q=test&ff1=pubReports+-+Research&ff2=pubReports+-+Descriptive&id=ED211592",
"items": [
{
"itemType": "report",
"title": "Test Design Project: Studies in Test Bias. Annual Report",
"creators": [
{
"firstName": "David",
"lastName": "McArthur",
"creatorType": "author"
}
],
"date": "1981/11/01",
"abstractNote": "Item bias in a multiple-choice test can be detected by appropriate analyses of the persons x items scoring matrix. This permits comparison of groups of examinees tested with the same instrument. The test may be biased if it is not measuring the same thing in comparable groups, if groups are responding to different aspects of the test items, or if cultural and linguistic issues take precedence. An empirical study of the question of bias as shown by these techniques was conducted. Five related schemes for the statistical analysis of bias were applied to the Comprehensive Test of Basic Skills which was administered in either the English or Spanish language version at two levels of elementary school in bilingual education programs. The objectives measured were recall or recognition ability, ability to translate or convert verbal or symbolic concepts, ability to comprehend concepts, ability to apply techniques, and ability to extend interpretation beyond stated information. The results indicated that several items in the tests showed strong evidence of bias, corroborated by a separate analysis of linguistic and cultural sources of bias for many items. (Author/DWH)",
"extra": "ERIC Number: ED211592",
"language": "en",
"libraryCatalog": "ERIC",
"shortTitle": "Test Design Project",
"url": "https://eric.ed.gov/?id=ED211592",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [
{
"tag": "Bilingual Education"
},
{
"tag": "Bilingual Students"
},
{
"tag": "Elementary Education"
},
{
"tag": "Ethnicity"
},
{
"tag": "Non English Speaking"
},
{
"tag": "Research Methodology"
},
{
"tag": "Statistical Analysis"
},
{
"tag": "Test Bias"
},
{
"tag": "Test Construction"
},
{
"tag": "Writing Evaluation"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "search",
"input": {
"ericNumber": "EJ1125432"
},
"items": [
{
"itemType": "journalArticle",
"title": "The Influence of Culture in Infant-Toddler Child Care Settings",
"creators": [
{
"firstName": "Joan",
"lastName": "Test",
"creatorType": "author"
}
],
"date": "2015-03",
"ISSN": "0736-8038",
"abstractNote": "It is not only in families that young children are influenced to become members of their culture. Around the world and within individual countries, culture influences how care is provided to infants and toddlers in child care settings. In turn, infants and toddlers begin to learn how to act and think as members of their culture. From ways that teachers handle conflicts between toddlers, to how teachers manage transitions, to the organization of groups and physical environments, to more conscious transmission of culture through curriculum, culture influences infants and toddlers to become cultural beings that function well within their culture. This article explores cultural variations in group care and what infants and toddlers learn from these practices about being members of a culture.",
"extra": "ERIC Number: EJ1125432",
"issue": "4",
"language": "English",
"libraryCatalog": "ERIC",
"pages": "19-26",
"publicationTitle": "ZERO TO THREE",
"volume": "35",
"attachments": [],
"tags": [
{
"tag": "Child Care"
},
{
"tag": "Child Care Centers"
},
{
"tag": "Child Development"
},
{
"tag": "Comparative Education"
},
{
"tag": "Conflict"
},
{
"tag": "Cultural Differences"
},
{
"tag": "Cultural Influences"
},
{
"tag": "Culture Conflict"
},
{
"tag": "Foreign Countries"
},
{
"tag": "Infants"
},
{
"tag": "Interpersonal Relationship"
},
{
"tag": "Physical Environment"
},
{
"tag": "Preschool Curriculum"
},
{
"tag": "Preschool Teachers"
},
{
"tag": "Toddlers"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "search",
"input": {
"ericNumber": "EJ1179129"
},
"items": [
{
"itemType": "journalArticle",
"title": "Effects of a Self-Monitoring Checklist as a Component of the \"Self-Directed IEP\"",
"creators": [
{
"firstName": "Karen M.",
"lastName": "Diegelmann",
"creatorType": "author"
},
{
"firstName": "David W.",
"lastName": "Test",
"creatorType": "author"
}
],
"date": "2018-03",
"ISSN": "2154-1647",
"abstractNote": "Post-school outcomes for students with intellectual disability continue to lag behind other students with disabilities. One way to improve outcomes for these students is to include them in decisions about their future by teaching students how to participate in their IEP meetings. Self-monitoring provides immediate feedback, motivation, and teaches students to self-regulate what they are learning. In this study, two middle school and two high school students learned the steps of leading their IEP meeting. This study used a multiple baseline across participants design to examine the effects of a self-monitoring checklist as an essential component of the \"Self-Directed IEP\" for students with intellectual and multiple disabilities. Results showed three of four students only met criteria once the self-monitoring checklist was introduced. In addition, three students were able to generalize to post-intervention mock IEPs using the self-monitoring checklist.",
"extra": "ERIC Number: EJ1179129",
"issue": "1",
"language": "English",
"libraryCatalog": "ERIC",
"pages": "73-83",
"publicationTitle": "Education and Training in Autism and Developmental Disabilities",
"volume": "53",
"attachments": [],
"tags": [
{
"tag": "Check Lists"
},
{
"tag": "Daily Living Skills"
},
{
"tag": "Individualized Education Programs"
},
{
"tag": "Intellectual Disability"
},
{
"tag": "Meetings"
},
{
"tag": "Observation"
},
{
"tag": "Questionnaires"
},
{
"tag": "Secondary School Students"
},
{
"tag": "Self Management"
},
{
"tag": "Student Development"
},
{
"tag": "Student Empowerment"
},
{
"tag": "Student Participation"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "search",
"input": {
"ericNumber": "EJ1194142"
},
"items": [
{
"itemType": "journalArticle",
"title": "Including College and Career Readiness within a Multitiered Systems of Support Framework",
"creators": [
{
"firstName": "Mary E.",
"lastName": "Morningstar",
"creatorType": "author"
},
{
"firstName": "Allison",
"lastName": "Lombardi",
"creatorType": "author"
},
{
"firstName": "David",
"lastName": "Test",
"creatorType": "author"
}
],
"date": "2018",
"abstractNote": "Current practices of college and career readiness (CCR) emerged from within secondary school reform efforts. During a similar timeframe, evidence-based schoolwide interventions--positive behavioral interventions and supports (PBIS) and response to interventions (RTI)--were developed, first targeting elementary initiatives and then translated to secondary schools. We provide an overview of a recently established CCR framework underscoring both academic and nonacademic factors necessary for student success. To operationalize CCR approaches within secondary schools, an effort must be made to utilize existing interventions and strategies as well as data-informed efforts included within multitiered systems of support (MTSS). Therefore, we examine how CCR can be extended within secondary MTSS approaches and extend current methods by recommending measures aligning CCR elements within essential data-based decision making and fidelity of implementation tenets of MTSS. By embedding CCR within established MTSS approaches, improved post-school outcome for all students, including those with disabilities, can be achieved.",
"extra": "ERIC Number: EJ1194142",
"issue": "1",
"language": "English",
"libraryCatalog": "ERIC",
"publicationTitle": "AERA Open",
"url": "https://eric.ed.gov/?id=EJ1194142",
"volume": "4",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [
{
"tag": "Career Readiness"
},
{
"tag": "College Readiness"
},
{
"tag": "Critical Thinking"
},
{
"tag": "Disabilities"
},
{
"tag": "Interpersonal Relationship"
},
{
"tag": "Intervention"
},
{
"tag": "Learner Engagement"
},
{
"tag": "Learning Processes"
},
{
"tag": "Planning"
},
{
"tag": "Positive Behavior Supports"
},
{
"tag": "Response to Intervention"
},
{
"tag": "Secondary Education"
},
{
"tag": "Transitional Programs"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "search",
"input": {
"ericNumber": "ED616685"
},
"items": [
{
"itemType": "report",
"title": "Can Closed-Ended Practice Tests Promote Understanding from Text?",
"creators": [
{
"firstName": "Lena",
"lastName": "Hildenbrand",
"creatorType": "author"
},
{
"firstName": "Jennifer",
"lastName": "Wiley",
"creatorType": "author"
}
],
"date": "2021",
"abstractNote": "Many studies have demonstrated that testing students on to-be-learned materials can be an effective learning activity. However, past studies have also shown that some practice test formats are more effective than others. Open-ended recall or short answer practice tests may be effective because the questions prompt deeper processing as students must generate an answer. With closed-ended testing formats such as multiple-choice or true-false tests, there are concerns that they may prompt only superficial processing, and that any benefits will not extend to non-practiced information or over time. They also may not be effective for improving comprehension from text as measured by how-and-why questions. The present study explored the utility of practice tests with closed-ended questions to improve learning from text. Results showed closed-ended practice testing can lead to benefits even when the learning outcome was comprehension of text. [This paper was published in: \"Proceedings of the 43rd Annual Conference of the Cognitive Science Society,\" 2021, pp.327-333.]",
"extra": "ERIC Number: ED616685",
"language": "English",
"libraryCatalog": "ERIC",
"url": "https://eric.ed.gov/?id=ED616685",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [
{
"tag": "Cognitive Processes"
},
{
"tag": "College Entrance Examinations"
},
{
"tag": "Comparative Analysis"
},
{
"tag": "Cues"
},
{
"tag": "Educational Benefits"
},
{
"tag": "Instructional Effectiveness"
},
{
"tag": "Introductory Courses"
},
{
"tag": "Language Processing"
},
{
"tag": "Learning Activities"
},
{
"tag": "Multiple Choice Tests"
},
{
"tag": "Outcomes of Education"
},
{
"tag": "Prior Learning"
},
{
"tag": "Psychology"
},
{
"tag": "Reading Tests"
},
{
"tag": "Recall (Psychology)"
},
{
"tag": "Scores"
},
{
"tag": "Test Format"
},
{
"tag": "Test Items"
},
{
"tag": "Testing"
},
{
"tag": "Undergraduate Students"
},
{
"tag": "Urban Universities"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "search",
"input": {
"ericNumber": "EJ956651"
},
"items": [
{
"itemType": "journalArticle",
"title": "Collaborating with Parents to Establish Behavioral Goals in Child-Centered Play Therapy",
"creators": [
{
"firstName": "Phyllis B.",
"lastName": "Post",
"creatorType": "author"
},
{
"firstName": "Peggy L.",
"lastName": "Ceballos",
"creatorType": "author"
},
{
"firstName": "Saundra L.",
"lastName": "Penn",
"creatorType": "author"
}
],
"date": "2012-01",
"DOI": "10.1177/1066480711425472",
"ISSN": "1066-4807",
"abstractNote": "The purpose of this article is to provide specific guidelines for child-centered play therapists to set behavioral outcome goals to effectively work with families and to meet the demands for accountability in the managed care environment. The child-centered play therapy orientation is the most widely practiced approach among play therapists who identify a specific theoretical orientation. While information about setting broad objectives is addressed using this approach to therapy, explicit guidelines for setting behavioral goals, while maintaining the integrity of the child-centered theoretical orientation, are needed. The guidelines are presented in three phases of parent consultation: (a) the initial engagement with parents, (b) the ongoing parent consultations, and (c) the termination phase. In keeping with the child-centered approach, the authors propose to work with parents from a person-centered orientation and seek to appreciate how cultural influences relate to parents' concerns and goals for their children. A case example is provided to demonstrate how child-centered play therapists can accomplish the aforementioned goals.",
"extra": "ERIC Number: EJ956651",
"issue": "1",
"language": "English",
"libraryCatalog": "ERIC",
"pages": "51-57",
"publicationTitle": "Family Journal: Counseling and Therapy for Couples and Families",
"volume": "20",
"attachments": [],
"tags": [
{
"tag": "Cooperative Planning"
},
{
"tag": "Counseling Techniques"
},
{
"tag": "Counselor Role"
},
{
"tag": "Cultural Influences"
},
{
"tag": "Cultural Relevance"
},
{
"tag": "Guidelines"
},
{
"tag": "Interpersonal Relationship"
},
{
"tag": "Parent Participation"
},
{
"tag": "Play Therapy"
},
{
"tag": "Therapy"
}
],
"notes": [],
"seeAlso": []
}
]
}
]
/** END TEST CASES **/