@ueu/ueu-canvas 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/html-loader.js +7 -0
- package/jest.config.js +20 -0
- package/package.json +45 -0
- package/src/Account.ts +69 -0
- package/src/NotImplementedException.ts +3 -0
- package/src/__mocks__/Account.ts +55 -0
- package/src/__mocks__/index.ts +8 -0
- package/src/__mocks__/mockAccountData.ts +43 -0
- package/src/__mocks__/mockEnrollment.ts +22 -0
- package/src/__mocks__/mockRubricData.ts +71 -0
- package/src/__mocks__/mockTabData.ts +13 -0
- package/src/__mocks__/mockTermData.ts +7 -0
- package/src/__mocks__/mockUserData.ts +14 -0
- package/src/__mocks__/utils.ts +9 -0
- package/src/__tests__/canvasUtils.test.ts +527 -0
- package/src/__tests__/fetch.test.ts +310 -0
- package/src/__tests__/profile.test.ts +19 -0
- package/src/__tests__/rubrics.test.ts +131 -0
- package/src/baseCanvasObject.ts +139 -0
- package/src/canvasDataDefs.ts +124 -0
- package/src/canvasUtils.ts +420 -0
- package/src/consts.ts +2 -0
- package/src/content/BaseContentItem.ts +219 -0
- package/src/content/ContentKind.ts +85 -0
- package/src/content/__mocks__/determineContent.ts +27 -0
- package/src/content/__mocks__/mockAssignmentSubmission.ts +37 -0
- package/src/content/__mocks__/mockContentData.ts +98 -0
- package/src/content/__mocks__/openThisContentInTarget.ts +2 -0
- package/src/content/__testingUtils__/utils.ts +47 -0
- package/src/content/__tests__/determineContent.test.ts +101 -0
- package/src/content/__tests__/getContentFuncs.test.ts +78 -0
- package/src/content/assignments/Assignment.ts +69 -0
- package/src/content/assignments/AssignmentKind.ts +29 -0
- package/src/content/assignments/__tests__/AssignmentKind.test.ts +31 -0
- package/src/content/assignments/__tests__/assignments.test.ts +72 -0
- package/src/content/assignments/deleteAssignmentGroup.ts +15 -0
- package/src/content/assignments/genAssignmentGroups.ts +15 -0
- package/src/content/assignments/index.ts +31 -0
- package/src/content/assignments/legacy.ts +11 -0
- package/src/content/assignments/updateAssignmentDueDates.ts +25 -0
- package/src/content/determineContent.ts +72 -0
- package/src/content/discussions/Discussion.ts +32 -0
- package/src/content/discussions/DiscussionKind.ts +30 -0
- package/src/content/discussions/__tests__/DiscussionKind.test.ts +31 -0
- package/src/content/discussions/genEquivalentDiscussionData.ts +97 -0
- package/src/content/discussions/index.ts +2 -0
- package/src/content/getContentFuncs.ts +30 -0
- package/src/content/index.ts +11 -0
- package/src/content/openThisContentInTarget.ts +38 -0
- package/src/content/pages/Page.ts +35 -0
- package/src/content/pages/PageKind.ts +39 -0
- package/src/content/pages/__tests__/PageKind.test.ts +86 -0
- package/src/content/pages/__tests__/learningMaterialsForModule.ts +57 -0
- package/src/content/pages/index.ts +12 -0
- package/src/content/pages/learningMaterialsForModule.ts +16 -0
- package/src/content/pages/types.ts +11 -0
- package/src/content/quizzes/Quiz.ts +25 -0
- package/src/content/quizzes/QuizKind.ts +23 -0
- package/src/content/quizzes/__tests__/QuizKind.test.ts +30 -0
- package/src/content/quizzes/index.ts +3 -0
- package/src/content/quizzes/types.ts +101 -0
- package/src/content/types.ts +302 -0
- package/src/course/Course.ts +538 -0
- package/src/course/IBlueprintCourse.ts +8 -0
- package/src/course/__mocks__/blueprint.ts +31 -0
- package/src/course/__mocks__/mockCourseData.ts +49 -0
- package/src/course/__mocks__/mockLatePolicy.ts +14 -0
- package/src/course/__mocks__/mockModuleData.ts +60 -0
- package/src/course/__mocks__/mockProgressData.ts +28 -0
- package/src/course/__mocks__/syllabus.gallant.html +302 -0
- package/src/course/__mocks__/syllabus.goofus.html +288 -0
- package/src/course/__mocks__/syllabus.grad.html +282 -0
- package/src/course/__tests__/Course.test.ts +91 -0
- package/src/course/__tests__/blueprint.test.ts +292 -0
- package/src/course/__tests__/changeStartDate.test.ts +180 -0
- package/src/course/__tests__/index.test.ts +104 -0
- package/src/course/blueprint.ts +116 -0
- package/src/course/cachedGetAssociatedCoursesFunc.ts +13 -0
- package/src/course/changeStartDate.ts +139 -0
- package/src/course/code.ts +32 -0
- package/src/course/courseTypes.ts +161 -0
- package/src/course/getCourseIdFromUrl.ts +7 -0
- package/src/course/getSections.ts +9 -0
- package/src/course/getTermNameFromSections.ts +9 -0
- package/src/course/index.ts +12 -0
- package/src/course/migration/__mocks__/mockMigrationData.ts +39 -0
- package/src/course/migration/__tests__/migration.test.ts +173 -0
- package/src/course/migration/__tests__/migrationCache.test.ts +45 -0
- package/src/course/migration/index.ts +134 -0
- package/src/course/migration/migrationCache.ts +56 -0
- package/src/course/modules.ts +113 -0
- package/src/course/notABlueprintError.ts +3 -0
- package/src/course/references/getReferencesForText.test.ts +18 -0
- package/src/course/references/getReferencesForText.ts +12 -0
- package/src/course/references/getReferencesTemplate.ts +28 -0
- package/src/course/references/mockCiteAsResponse.ts +320 -0
- package/src/course/retireBlueprint.ts +21 -0
- package/src/course/toolbox.ts +107 -0
- package/src/date.ts +119 -0
- package/src/enrollments/EnrollmentTypes.ts +76 -0
- package/src/enrollments/enrollmentRole.ts +6 -0
- package/src/enrollments/getEnrollmentGenerator.ts +79 -0
- package/src/enrollments/index.ts +3 -0
- package/src/fetch/__mocks__/fetchJson.ts +1 -0
- package/src/fetch/__mocks__/getPagedDataGenerator.ts +8 -0
- package/src/fetch/__mocks__/index.ts +6 -0
- package/src/fetch/apiGetConfig.ts +10 -0
- package/src/fetch/apiWriteConfig.ts +13 -0
- package/src/fetch/canvasDataFetchGenFunc.ts +20 -0
- package/src/fetch/fetchJson.ts +22 -0
- package/src/fetch/getPagedDataGenerator.ts +157 -0
- package/src/fetch/index.ts +5 -0
- package/src/fetch/utils.ts +16 -0
- package/src/files.ts +60 -0
- package/src/fixes/annotations.ts +105 -0
- package/src/fixes/index.ts +81 -0
- package/src/index.ts +29 -0
- package/src/profile.ts +253 -0
- package/src/rubricTypes.ts +82 -0
- package/src/rubrics.ts +48 -0
- package/src/term/Term.ts +77 -0
- package/src/term/__tests__/dateFromTermName.test.ts +22 -0
- package/src/term/__tests__/getTermsGenerator.test.ts +24 -0
- package/src/term/dateFromTermName.ts +17 -0
- package/src/term/getTermsGenerator.ts +21 -0
- package/src/term/index.ts +3 -0
- package/src/toolbox.ts +19 -0
- package/src/types.ts +134 -0
- package/src/users/getUserGenerator.ts +39 -0
- package/src/users/index.ts +1 -0
- package/tsconfig.json +46 -0
- package/webpack.config.js +122 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import {IProgressData} from "../migration";
|
|
2
|
+
|
|
3
|
+
export const mockProgressData: IProgressData = {
|
|
4
|
+
// the ID of the Progress object
|
|
5
|
+
"id": 1,
|
|
6
|
+
// the context owning the job.
|
|
7
|
+
"context_id": 1,
|
|
8
|
+
"context_type": "Account",
|
|
9
|
+
// the id of the user who started the job
|
|
10
|
+
"user_id": 123,
|
|
11
|
+
// the type of operation
|
|
12
|
+
"tag": "course_batch_update",
|
|
13
|
+
// percent completed
|
|
14
|
+
"completion": 100,
|
|
15
|
+
// the state of the job one of 'queued', 'running', 'completed', 'failed'
|
|
16
|
+
"workflow_state": "completed",
|
|
17
|
+
// the time the job was created
|
|
18
|
+
"created_at": "2013-01-15T15:00:00Z",
|
|
19
|
+
// the time the job was last updated
|
|
20
|
+
"updated_at": "2013-01-15T15:04:00Z",
|
|
21
|
+
// optional details about the job
|
|
22
|
+
"message": "17 courses processed",
|
|
23
|
+
// optional results of the job. omitted when job is still pending
|
|
24
|
+
"results": {"id": "123"},
|
|
25
|
+
// url where a progress update can be retrieved with an LTI access token
|
|
26
|
+
"url": "https://canvas.example.edu/api/lti/courses/1/progress/1"
|
|
27
|
+
}
|
|
28
|
+
|
|
@@ -0,0 +1,302 @@
|
|
|
1
|
+
<div class="scaffold-media-box cbt-banner cbt-image-banner cbt-home-banner" data-context-menu="insert delete"></title>
|
|
2
|
+
<div class="cbt-banner-inner flexbox v">
|
|
3
|
+
<div id="cbt-banner-header" class="cbt-banner-header flexbox">
|
|
4
|
+
<div>
|
|
5
|
+
<h1>Unity Environmental University Distance Education Course Syllabus</h1>
|
|
6
|
+
</div>
|
|
7
|
+
<div class="cbt-banner-announcements--container"> </div>
|
|
8
|
+
</div>
|
|
9
|
+
<div class="cbt-banner-image" data-context-menu="rce-img"><img role="presentation" src="/courses/3930395/files/277926437/download" alt="" data-api-endpoint="https://unity.instructure.com/api/v1/courses/3930395/files/277926437" data-api-returntype="File" /></div>
|
|
10
|
+
</div>
|
|
11
|
+
</div>
|
|
12
|
+
<div class="scaffold-media-box cbt-content" data-canhavechild="true" data-caninsertinto="true" data-context-menu="delete moveup movedown duplicate insertbefore insertafter insert">
|
|
13
|
+
<p> </p>
|
|
14
|
+
<div class="scaffold-media-box cbt-content" data-canhavechild="true" data-caninsertinto="true" data-context-menu="insert delete" data-editable="true">
|
|
15
|
+
<div class="cbt-callout-box">
|
|
16
|
+
<div class="content">
|
|
17
|
+
<p><strong>Course Number and Title:</strong> BIOL203: Ecological Principles: Applications to Conservation</p>
|
|
18
|
+
<p><strong>Year/Term/Session:</strong> DE-24-Apr</p>
|
|
19
|
+
<p><strong>Class Inclusive</strong> <strong>Dates</strong>: April 8 - May 12</p>
|
|
20
|
+
<p><strong>Instructor Name: </strong>See <a title="Home" href="/courses/3930395/pages/home" data-course-type="wikiPages" data-published="true" data-api-endpoint="https://unity.instructure.com/api/v1/courses/3930395/pages/home" data-api-returntype="Page">Homepage</a></p>
|
|
21
|
+
<p><strong>Instructor Contact Information</strong>: <a href="/conversations">Your inbox</a>, called Canvas Conversations, is accessible on the far left navigation bar. Please use this to contact your instructor. For support with using Canvas Conversations <a href="https://community.canvaslms.com/docs/DOC-10574-4212710325">please view the following documentation.</a></p>
|
|
22
|
+
<p><strong>Credits: </strong>3</p>
|
|
23
|
+
</div>
|
|
24
|
+
</div>
|
|
25
|
+
</div>
|
|
26
|
+
<div class="scaffold-media-box cbt-content cbt-lined-heading" data-canhavechild="true" data-caninsertinto="true" data-context-menu="delete moveup movedown duplicate insertbefore insertafter insert">
|
|
27
|
+
<h2>Course Description</h2>
|
|
28
|
+
</div>
|
|
29
|
+
<p><span>Ecological Principles: Applications to Conservation is a comprehensive course that delves into the fundamental concepts of ecology and their relevance in addressing contemporary conservation challenges. Through a combination of theoretical instruction and practical applications, students will explore key ecological principles that help explain and mitigate the impacts of climate change, human activities, and invasive species on ecological systems. Through course activities, students will develop a solid foundation in the key principles of ecology and their direct applications to conservation. This knowledge will enable them to contribute effectively to the understanding and management of ecological systems and the preservation of biodiversity.</span></p>
|
|
30
|
+
<div class="scaffold-media-box cbt-content cbt-lined-heading" data-canhavechild="true" data-caninsertinto="true" data-context-menu="delete moveup movedown duplicate insertbefore insertafter insert">
|
|
31
|
+
<h2>Course Outcomes</h2>
|
|
32
|
+
</div>
|
|
33
|
+
<p>Students will be able to:</p>
|
|
34
|
+
<ol>
|
|
35
|
+
<li aria-level="1"><span>Collect and interpret data related to biodiversity measures such as species richness, evenness, and diversity. </span></li>
|
|
36
|
+
<li aria-level="1"><span>Apply fundamental concepts of ecology to contemporary conservation challenges.</span></li>
|
|
37
|
+
<li aria-level="1"><span>Explain the impact of climate change, human activities, and invasive species on ecological systems.</span></li>
|
|
38
|
+
<li aria-level="1"><span> Interpret and evaluate scientific publications.</span></li>
|
|
39
|
+
<li aria-level="1"><span>Assess the validity and reliability of information sources pertaining to ecology and conservation.</span></li>
|
|
40
|
+
<li aria-level="1">Apply the principles and practices of conservation ecology and wildlife management to promote biodiversity conservation.</li>
|
|
41
|
+
</ol>
|
|
42
|
+
</div>
|
|
43
|
+
<div class="scaffold-media-box cbt-content" data-canhavechild="true" data-caninsertinto="true" data-context-menu="delete moveup movedown duplicate insertbefore insertafter insert">
|
|
44
|
+
<h2>Grading</h2>
|
|
45
|
+
<h3>Grading Policies</h3>
|
|
46
|
+
<p>All assignments are due on or before the stated due dates. Work submitted 1 day late will have 10% taken off the grade for that assignment/discussion. Work submitted 2 days late will have 30% taken off the grade for that assignment/discussion. Work submitted 3-6 days late will have 50% taken off the grade for that assignment/discussion. Work will not be accepted if it is more than 6 days late.</p>
|
|
47
|
+
<p>No work will be accepted after the end of the term without an approved Incomplete request.</p>
|
|
48
|
+
<p>If you experience extenuating circumstances that prevent you from completing your work on time, reach out to your instructor as soon as possible.</p>
|
|
49
|
+
<h3>Grading Scale</h3>
|
|
50
|
+
<div class="cbt-table undergrad">
|
|
51
|
+
<table style="border-collapse: collapse; width: 91.9929%; height: 676px;" border="1">
|
|
52
|
+
<thead>
|
|
53
|
+
<tr style="height: 24px;">
|
|
54
|
+
<th style="width: 32.817%; height: 24px;" scope="col">Letter Grade</th>
|
|
55
|
+
<th style="width: 32.817%; height: 24px;" scope="col">Percent</th>
|
|
56
|
+
<th style="width: 32.8186%; height: 24px;" scope="col"></th>
|
|
57
|
+
</tr>
|
|
58
|
+
</thead>
|
|
59
|
+
<tbody>
|
|
60
|
+
<tr>
|
|
61
|
+
<td>
|
|
62
|
+
<p><span>A</span></p>
|
|
63
|
+
</td>
|
|
64
|
+
<td>
|
|
65
|
+
<p><span>(94-100%)</span></p>
|
|
66
|
+
</td>
|
|
67
|
+
<td>
|
|
68
|
+
<p><span>Excellent</span></p>
|
|
69
|
+
</td>
|
|
70
|
+
</tr>
|
|
71
|
+
<tr>
|
|
72
|
+
<td>
|
|
73
|
+
<p><span>A-</span></p>
|
|
74
|
+
</td>
|
|
75
|
+
<td>
|
|
76
|
+
<p><span>(90-93.9%)</span></p>
|
|
77
|
+
</td>
|
|
78
|
+
<td></td>
|
|
79
|
+
</tr>
|
|
80
|
+
<tr>
|
|
81
|
+
<td>
|
|
82
|
+
<p><span>B+</span></p>
|
|
83
|
+
</td>
|
|
84
|
+
<td>
|
|
85
|
+
<p><span>(87-89.9%)</span></p>
|
|
86
|
+
</td>
|
|
87
|
+
<td></td>
|
|
88
|
+
</tr>
|
|
89
|
+
<tr>
|
|
90
|
+
<td>
|
|
91
|
+
<p><span>B</span></p>
|
|
92
|
+
</td>
|
|
93
|
+
<td>
|
|
94
|
+
<p><span>(84-86.9%)</span></p>
|
|
95
|
+
</td>
|
|
96
|
+
<td>
|
|
97
|
+
<p><span>Good</span></p>
|
|
98
|
+
</td>
|
|
99
|
+
</tr>
|
|
100
|
+
<tr>
|
|
101
|
+
<td>
|
|
102
|
+
<p><span>B-</span></p>
|
|
103
|
+
</td>
|
|
104
|
+
<td>
|
|
105
|
+
<p><span>(80-83.9%)</span></p>
|
|
106
|
+
</td>
|
|
107
|
+
<td></td>
|
|
108
|
+
</tr>
|
|
109
|
+
<tr>
|
|
110
|
+
<td>
|
|
111
|
+
<p><span>C+</span></p>
|
|
112
|
+
</td>
|
|
113
|
+
<td>
|
|
114
|
+
<p><span>(77-79.9%)</span></p>
|
|
115
|
+
</td>
|
|
116
|
+
<td></td>
|
|
117
|
+
</tr>
|
|
118
|
+
<tr>
|
|
119
|
+
<td>
|
|
120
|
+
<p><span>C</span></p>
|
|
121
|
+
</td>
|
|
122
|
+
<td>
|
|
123
|
+
<p><span>(74-76.9%)</span></p>
|
|
124
|
+
</td>
|
|
125
|
+
<td>
|
|
126
|
+
<p><span>Satisfactory</span></p>
|
|
127
|
+
</td>
|
|
128
|
+
</tr>
|
|
129
|
+
<tr>
|
|
130
|
+
<td>
|
|
131
|
+
<p><span>C-</span></p>
|
|
132
|
+
</td>
|
|
133
|
+
<td>
|
|
134
|
+
<p><span>(70-73.9%)</span></p>
|
|
135
|
+
</td>
|
|
136
|
+
<td></td>
|
|
137
|
+
</tr>
|
|
138
|
+
<tr>
|
|
139
|
+
<td>
|
|
140
|
+
<p><span>D</span></p>
|
|
141
|
+
</td>
|
|
142
|
+
<td>
|
|
143
|
+
<p><span>(60-69.9%)</span></p>
|
|
144
|
+
</td>
|
|
145
|
+
<td>
|
|
146
|
+
<p><span>Poor, but Passing</span></p>
|
|
147
|
+
</td>
|
|
148
|
+
</tr>
|
|
149
|
+
<tr>
|
|
150
|
+
<td>
|
|
151
|
+
<p><span>F</span></p>
|
|
152
|
+
</td>
|
|
153
|
+
<td>
|
|
154
|
+
<p><span>(0-59.9%)</span></p>
|
|
155
|
+
</td>
|
|
156
|
+
<td>
|
|
157
|
+
<p><span>Failing</span></p>
|
|
158
|
+
</td>
|
|
159
|
+
</tr>
|
|
160
|
+
</tbody>
|
|
161
|
+
</table>
|
|
162
|
+
</div>
|
|
163
|
+
<div class="scaffold-media-box cbt-content" data-canhavechild="true" data-caninsertinto="true" data-context-menu="insert delete" data-editable="true">
|
|
164
|
+
<div class="cbt-callout-box">
|
|
165
|
+
<div class="content">
|
|
166
|
+
<h3><strong>Textbook</strong></h3>
|
|
167
|
+
<p><span>Wildlife Ecology, Conservation and Management (3rd edition). 2014. Graeme James Caughley, John M. Fryxell, and Tony Sinclair. Wiley Blackwell.</span></p>
|
|
168
|
+
<p><span>ISBN-13: 978-1118291078</span></p>
|
|
169
|
+
<p><span>ISBN-10: 1118291077</span></p>
|
|
170
|
+
</div>
|
|
171
|
+
</div>
|
|
172
|
+
</div>
|
|
173
|
+
<p> </p>
|
|
174
|
+
<div class="cbt-table">
|
|
175
|
+
<table style="border-collapse: collapse; width: 97.1279%; height: 2535px;" border="1" cellpadding="10px">
|
|
176
|
+
<tbody>
|
|
177
|
+
<tr style="height: 418px;">
|
|
178
|
+
<td style="width: 99.8918%; height: 418px;">
|
|
179
|
+
<h3><strong>Communication</strong></h3>
|
|
180
|
+
<div>
|
|
181
|
+
<p>The instructor will conduct all correspondence with students related to the class in Canvas, and you should expect to receive a response to emails within 24 hours. Students are also expected to check email at least once every 24 hours. While instructors are not required to have a set list of standard office hours each week, faculty are expected to be available to meet with students to achieve the same goals as typical office hours based on requests from students, and to respond to requests within the response windows described above.</p>
|
|
182
|
+
<p>Please remember to start assignments early so you have time to ask questions and get answers before the due date. Instructors are encouraged to post announcements at least once a week, so please check your Canvas profile to make sure that Announcements are sent to your preferred communication pathway.</p>
|
|
183
|
+
<p>While all course-specific communication should take place in Canvas, remember to check your<span> </span><span class="atMention" title="unity">@unity</span>.edu email account regularly for important communication from advisors/concierges and other Unity Environmental University offices. If your<span> </span><span class="atMention" title="unity">@unity</span>.edu email account isn't working, reach out to<span> </span><a class="inline_disabled external" href="https://unity.edu/contact-us/" target="_blank" rel="noopener"><span>Unity Environmental University's IT Support </span></a>for assistance.</p>
|
|
184
|
+
<p>Non-degree students without a<span> </span><span class="atMention" title="unity">@unity</span>.edu email account can expect to receive correspondence from Unity Environmental University administrative staff via the email account used to sign up for classes.</p>
|
|
185
|
+
</div>
|
|
186
|
+
</td>
|
|
187
|
+
</tr>
|
|
188
|
+
<tr style="height: 310px;">
|
|
189
|
+
<td style="width: 99.8918%; height: 310px;">
|
|
190
|
+
<h3><strong>Discussion Expectations</strong></h3>
|
|
191
|
+
<p class="undergrad">Some DE Discussions will require you to post your own initial response to the prompt before viewing and responding to your peers’ posts. All Discussions will require you to post on at least two different days during the week: Your initial post by 3am ET Thursday, and your responses by 3am ET Monday. This is to ensure that you and your peers have initial posts in which to respond. If you submit your original post and your peer response on the same day, you will receive credit for only one post. </p>
|
|
192
|
+
<p>To access a discussion's grading rubric, click on the "View Rubric" button in the discussion directions and/or the "Dot Dot Dot" (for screen readers, titled "Manage this Discussion") button in the upper right corner of the discussion, and then click "show rubric".</p>
|
|
193
|
+
<p><span>The <a title="Digital Citizenship Expectations" href="/courses/3266650/pages/digital-citizenship-expectations" data-api-endpoint="https://unity.instructure.com/api/v1/courses/3266650/pages/digital-citizenship-expectations" data-api-returntype="Page">Digital Citizenship Expectations</a> promote an engaged learning community and set the standards for online interactions in Unity Environmental University courses. Students must abide by the Digital Citizenship Expectations in all aspects of their coursework and communications.</span></p>
|
|
194
|
+
</td>
|
|
195
|
+
</tr>
|
|
196
|
+
<tr style="height: 238px;">
|
|
197
|
+
<td style="width: 99.8918%; height: 238px;">
|
|
198
|
+
<h3><strong>Learning Accommodations</strong></h3>
|
|
199
|
+
<p>Unity Environmental University provides accommodations to students who are diagnosed with learning disabilities, ADHD, or other learning challenges. Students who believe they may need a disability accommodation should initiate a review by contacting the appropriate resource. For contact information on requesting accommodations, students must go to <a class="inline_disabled" href="https://unity.edu/policies/accessibility-and-ada-services/" target="_blank" rel="noopener">Accessibility and ADA Services</a>. The ADA contact will provide an Accessibility and Accommodations Request Form electronically to the student. In addition to completing that form, students will need to provide academic and/or medical documentation. These materials will be assessed, eligibility will be determined, and the Dean or Vice President will contact the student directly to discuss any appropriate accommodations and strategies. All inquiries and information are kept strictly confidential.</p>
|
|
200
|
+
</td>
|
|
201
|
+
</tr>
|
|
202
|
+
<tr style="height: 952px;">
|
|
203
|
+
<td style="width: 99.8918%; height: 952px;">
|
|
204
|
+
<h3><strong>The Unity Environmental University Honor Code</strong></h3>
|
|
205
|
+
<p>The Unity Environmental University Honor Code requires that students be honest in all academic work. By joining the Unity Environmental University community, students express their willingness to accept the responsibilities and privileges of the academic community. Furthermore, students understand that their name on any assignment—written or otherwise—shall be regarded as assurance that the work is the result of their own thought and study, except where quotation marks, references, footnotes, or other means of attribution acknowledge the use of other sources. Acknowledgment of collaboration shall be made in the work submitted. In examinations, students shall respond entirely on the basis of their own capacity without any assistance, except that authorized by the instructor.</p>
|
|
206
|
+
<h4><strong>Turnitin</strong></h4>
|
|
207
|
+
<p>Unity uses Turnitin as a plagiarism checker to support the academic integrity of its students. Turnitin is enabled for certain assignments throughout your program. You can tell if Turnitin is enabled for an assignment by the language at the bottom of the assignment submission page, which will require you to agree to the following: "I agree to the tool's<span> </span><a href="https://canvas.int.turnitin.com/integrations/cpf/eula/unitycollege" target="_blank" rel="noopener">End-User License Agreement</a>. The work I submit is my original work, and the information has been correctly cited." You will not be able to submit until you agree.</p>
|
|
208
|
+
<p>For guidance on how Turnitin's Originality Reports will work, including how to use and what to expect from them, please<span> </span><a class="instructure_file_link inline_disabled" href="https://www.youtube.com/watch?v=SB5vOujIJy4" target="_blank" rel="noopener">watch this video of Turnitin from the student perspective</a>. Also, reference their resources for<span> </span><a href="https://help.turnitin.com/integrity/student/canvas.htm" target="_blank" rel="noopener">Using Turnitin with Canvas as a Student</a>.</p>
|
|
209
|
+
<h4><strong>Academic Dishonesty </strong>includes, but is not limited to—</h4>
|
|
210
|
+
<p><strong>Plagiarism</strong></p>
|
|
211
|
+
<ul>
|
|
212
|
+
<li>quoting, summarizing, or paraphrasing any part or all of a source without acknowledging the source in the text of any written work;</li>
|
|
213
|
+
<li>incorporating any information—data, statistics, examples, etc.— that is not common knowledge without attributing the source of that information;</li>
|
|
214
|
+
<li>using another person’s opinions, reasoning, or arguments; and</li>
|
|
215
|
+
<li>putting your name on an assignment someone else completed.</li>
|
|
216
|
+
</ul>
|
|
217
|
+
<p><strong>Cheating</strong></p>
|
|
218
|
+
<ul>
|
|
219
|
+
<li>claiming credit for work not done independently (excluding university support services such as the LRC) without giving credit for aid received; and</li>
|
|
220
|
+
<li>accepting any unauthorized aid or communication during examinations, and falsifying or deliberately misrepresenting data and/or submission of work.</li>
|
|
221
|
+
</ul>
|
|
222
|
+
<p><strong>Other Unacceptable Practice</strong></p>
|
|
223
|
+
<ul>
|
|
224
|
+
<li>submitting an assignment for one class in another class without approval of both instructors.</li>
|
|
225
|
+
</ul>
|
|
226
|
+
<p>Any student found to be responsible for violating the Unity Environmental University Honor Code may be suspended or dismissed from the university.</p>
|
|
227
|
+
</td>
|
|
228
|
+
</tr>
|
|
229
|
+
<tr>
|
|
230
|
+
<td style="width: 99.8918%;">
|
|
231
|
+
<h4><strong> Guidelines for Using Generative Artificial Intelligence [AI] in this Course: </strong></h4>
|
|
232
|
+
<p>Using generative AI must be done with an understanding of the <a class="inline_disabled" href="/courses/3266650/pages/gen-ai-student-policy" target="_blank" rel="noopener" data-api-endpoint="https://unity.instructure.com/api/v1/courses/3266650/pages/gen-ai-student-policy" data-api-returntype="Page"> <strong>Unity Distance Education Generative Artificial Intelligence Policy for Students</strong> </a>, which spells out acceptable and unacceptable uses of generative AI in your studies in the Unity Distance Education Program.</p>
|
|
233
|
+
<p><strong>Please read this policy before completing coursework using generative AI in this course.</strong></p>
|
|
234
|
+
<ul>
|
|
235
|
+
<li>In this course, you may be encouraged to explore employing generative AI tools to improve your understanding of course content. <em>Potentially permitted uses of generative AI are detailed in the above policy.</em></li>
|
|
236
|
+
<li>There also may be specific work in which content produced by generative AI will not be accepted in this course.<em> It will be specifically noted in the course materials when you are not permitted to submit work produced by generative AI.</em></li>
|
|
237
|
+
<li>When no explicit statement about the use of generative AI is provided in an assignment, these tools are permitted.</li>
|
|
238
|
+
</ul>
|
|
239
|
+
<p>You are encouraged to contact your instructor if you have questions about how to use generative AI effectively to support your learning.</p>
|
|
240
|
+
</td>
|
|
241
|
+
</tr>
|
|
242
|
+
<tr style="height: 118px;">
|
|
243
|
+
<td style="width: 99.8918%; height: 118px;">
|
|
244
|
+
<h3><strong>Copyright</strong></h3>
|
|
245
|
+
<p>Please make sure that any photographs or materials used for class projects are not copyright protected. If you have any questions about copyright law, please go to the Unity Environmental University library webpage for more information.</p>
|
|
246
|
+
</td>
|
|
247
|
+
</tr>
|
|
248
|
+
<tr style="height: 178px;">
|
|
249
|
+
<td style="width: 99.8918%; height: 178px;">
|
|
250
|
+
<h3><strong>Technical Support</strong></h3>
|
|
251
|
+
<p>If you have questions regarding Canvas, please contact your instructor. If you have questions regarding your Unity Environmental University email account, you can reach our help services by emailing <u><a href="mailto:helpdesk@unity.edu">helpdesk@unity.edu</a><strong>.</strong></u></p>
|
|
252
|
+
<p>If you need assistance outside of business hours, it is recommended that you call the help line 207-509-7277. The reason behind this is that you as the user will get a quicker response than just sending an email.</p>
|
|
253
|
+
</td>
|
|
254
|
+
</tr>
|
|
255
|
+
<tr style="height: 274px;">
|
|
256
|
+
<td style="width: 99.8918%; height: 274px;">
|
|
257
|
+
<h3><strong>Statement on Fair Practices</strong></h3>
|
|
258
|
+
<p>Unity Environmental University prohibits discrimination on the basis of race, color, creed or religion, national origin, sex, sexual orientation, age, marital status, pregnancy, veteran’s status, or disability in regard to treatment, access to, or employment in its programs and activities, in accordance with federal and state laws and regulations. In compliance with the Americans with Disabilities Act (ADA), individuals with disabilities needing accommodation should contact the ADA compliance officer.</p>
|
|
259
|
+
<p>For further explanation on this topic, please contact the Dean.</p>
|
|
260
|
+
<p>This syllabus constitutes the agreement between the instructor and student.</p>
|
|
261
|
+
<p>Any modifications to this syllabus will be identified during the course.</p>
|
|
262
|
+
</td>
|
|
263
|
+
</tr>
|
|
264
|
+
</tbody>
|
|
265
|
+
</table>
|
|
266
|
+
<div>
|
|
267
|
+
<p> </p>
|
|
268
|
+
</div>
|
|
269
|
+
<div class="scaffold-media-box cbt-content" data-canhavechild="true" data-caninsertinto="true" data-context-menu="insert delete" data-editable="true">
|
|
270
|
+
<div class="cbt-callout-box">
|
|
271
|
+
<div class="content">
|
|
272
|
+
<h3>Week 1 Learning Materials Preview</h3>
|
|
273
|
+
<ul>
|
|
274
|
+
<li><a class="inline_disabled" href="https://youtube.com/playlist?list=PLZCz70q-Ni-bMxzAZNUTwg54_FHzKOT3J&feature=shared" target="_blank" rel="noopener">Week 1 Lecture</a>
|
|
275
|
+
<ul class="transcripts">
|
|
276
|
+
<li><a href="/courses/3930395/files/277927545/download?wrap=1" data-api-endpoint="https://unity.instructure.com/api/v1/courses/3930395/files/277927545" data-api-returntype="File">transcript</a></li>
|
|
277
|
+
<li><a href="/courses/3930395/files/277927541/download?wrap=1" data-api-endpoint="https://unity.instructure.com/api/v1/courses/3930395/files/277927541" data-api-returntype="File">transcript</a></li>
|
|
278
|
+
<li><a href="/courses/3930395/files/277927548/download?wrap=1" data-api-endpoint="https://unity.instructure.com/api/v1/courses/3930395/files/277927548" data-api-returntype="File">transcript</a></li>
|
|
279
|
+
</ul>
|
|
280
|
+
</li>
|
|
281
|
+
</ul>
|
|
282
|
+
<p><strong><span>Text:</span></strong></p>
|
|
283
|
+
<ul>
|
|
284
|
+
<li><a class="instructure_file_link instructure_scribd_file inline_disabled" title="Research and Exp Design from Wildlife Techniques Manual 7th Ed.pdf" href="/courses/3930395/files/277927482/download?wrap=1" target="_blank" rel="noopener" data-api-endpoint="https://unity.instructure.com/api/v1/courses/3930395/files/277927482" data-api-returntype="File" data-canvas-previewable="false"><strong><span>Chapter 1. Research and Exp Design from Wildlife Techniques Manual 7th Ed</span></strong></a></li>
|
|
285
|
+
<li><a class="instructure_file_link instructure_scribd_file inline_disabled" title="Scientific Writing Made Easy A Step-by-Step Guide (1).pdf" href="/courses/3930395/files/277927484/download?wrap=1" target="_blank" rel="noopener" data-api-endpoint="https://unity.instructure.com/api/v1/courses/3930395/files/277927484" data-api-returntype="File" data-canvas-previewable="false"><span>Scientific Writing Made Easy A Step-by-Step Guide</span></a></li>
|
|
286
|
+
<li><a title="Course Project Overview" href="/courses/3930395/pages/course-project-overview" data-api-endpoint="https://unity.instructure.com/api/v1/courses/3930395/pages/course-project-overview" data-api-returntype="Page" data-course-type="wikiPages" data-published="true"><span>Ecology Research Project Overview</span></a></li>
|
|
287
|
+
<li aria-level="3"><a class="instructure_file_link instructure_scribd_file inline_disabled" title="Human-modified ecosystems and future evolution.pdf" href="/courses/3930395/files/277927486/download?wrap=1" target="_blank" rel="noopener" data-api-endpoint="https://unity.instructure.com/api/v1/courses/3930395/files/277927486" data-api-returntype="File" data-canvas-previewable="false"><span>Human-modified ecosystems and future evolution</span></a></li>
|
|
288
|
+
<li aria-level="3"><a class="instructure_file_link instructure_scribd_file inline_disabled" title="Human activity influences wildlife populations and activitypatterns.pdf" href="/courses/3930395/files/277927487/download?wrap=1" target="_blank" rel="noopener" data-api-endpoint="https://unity.instructure.com/api/v1/courses/3930395/files/277927487" data-api-returntype="File" data-canvas-previewable="false"><span>Human activity influences wildlife populations and activity patterns</span></a></li>
|
|
289
|
+
</ul>
|
|
290
|
+
<p>Video</p>
|
|
291
|
+
<ul>
|
|
292
|
+
<li>The Diversity of Life and Biological Classification <span>(located in Weekly Lecture Playlist)</span></li>
|
|
293
|
+
<li><span>How to Conduct Background Research for Your Introduction (located in Weekly Lecture Playlist)</span></li>
|
|
294
|
+
<li><span>How Formulate a Research Question and Strong Hypothesis (located in Weekly Lecture Playlist)</span></li>
|
|
295
|
+
</ul>
|
|
296
|
+
</div>
|
|
297
|
+
</div>
|
|
298
|
+
</div>
|
|
299
|
+
<p> </p>
|
|
300
|
+
<p><strong>Learning materials for Weeks 2 forward are organized with the rest of the class in your weekly modules. The modules will become available after you've agreed to the Honor Code, Code of Conduct, and Tech for Success requirements on the Course Overview page, which unlocks on the first day of the term.</strong></p>
|
|
301
|
+
</div>
|
|
302
|
+
</div>
|