Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SRCT
schedules
Commits
98ef7e23
Commit
98ef7e23
authored
Feb 02, 2019
by
Zac Wood
Browse files
Fixes the broken API methods which didn't filter by semester
parent
432c7d48
Pipeline
#3797
passed with stage
in 2 minutes and 51 seconds
Changes
8
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
schedules/app/controllers/api/course_listings_controller.rb
View file @
98ef7e23
...
...
@@ -3,13 +3,13 @@ class API::CourseListingsController < ApplicationController
short
'Working with courses and associated sections'
end
api
:GET
,
'/course_listings'
,
"Get all available courses and their sections"
param
:subject
,
String
,
desc:
'Course subject, e.g. "CS" or "ACCT"'
param
:number
,
Integer
,
desc:
'Course number, e.g. "112"'
def
index
# Make a separate list so that we can include sections
@courses
=
API
::
CourseListingsHelper
::
CourseListing
.
wrap
(
Course
.
fetch
(
params
).
all
)
#
api :GET, '/course_listings', "Get all available courses and their sections"
#
param :subject, String, desc: 'Course subject, e.g. "CS" or "ACCT"'
#
param :number, Integer, desc: 'Course number, e.g. "112"'
#
def index
#
# Make a separate list so that we can include sections
#
@courses = API::CourseListingsHelper::CourseListing.wrap(Course.fetch(params).all)
render
json:
@courses
end
#
render json: @courses
#
end
end
schedules/app/controllers/api/course_sections_controller.rb
View file @
98ef7e23
...
...
@@ -9,10 +9,43 @@ class API::CourseSectionsController < ApplicationController
param
:course_id
,
Integer
,
desc:
"Only get the course sections belonging to the course with this ID"
param
:crn
,
String
,
desc:
"Get the course section with this CRN"
param
:instructor
,
String
,
desc:
"Get course sections being taught by this instructor"
param
:query
,
String
,
desc:
'A generic query ex. "CS 110"'
def
index
@sections
=
CourseSection
.
fetch
(
params
).
all
render
json:
@sections
@sections
=
CourseSection
.
select
(
'course_sections.*, courses.semester_id, instructors.name AS instructor_name'
)
.
joins
(
:course
).
where
(
'courses.semester_id = ?'
,
@semester
.
id
)
.
joins
(
:instructor
)
if
params
.
key?
(
:course_id
)
@sections
=
@sections
.
where
(
course_id:
params
[
:course_id
])
end
if
params
.
key?
(
:crn
)
@sections
=
@sections
.
where
(
crn:
params
[
:crn
])
end
if
params
.
key?
(
:instructor
)
@sections
=
@sections
.
where
(
'UPPER(instructors.name) LIKE UPPER(?)'
,
"%
#{
params
[
:instructor
]
}
%"
)
end
# @sections = CourseSection.fetch(params).all
res
=
@sections
.
map
do
|
s
|
{
id:
s
.
id
,
semester_id:
s
.
semester_id
,
course_id:
s
.
course_id
,
name:
s
.
name
,
crn:
s
.
crn
,
title:
s
.
title
,
instructor_name:
s
.
instructor_name
,
section_type:
s
.
section_type
,
start_date:
s
.
start_date
,
end_date:
s
.
end_date
,
days:
s
.
days
,
start_time:
s
.
start_time
,
end_time:
s
.
end_time
,
location:
s
.
location
,
}
end
render
json:
res
end
end
schedules/app/controllers/api/courses_controller.rb
View file @
98ef7e23
...
...
@@ -8,8 +8,30 @@ class API::CoursesController < ApplicationController
param
:subject
,
String
,
desc:
'Course subject, e.g. "CS" or "ACCT"'
param
:course_number
,
Integer
,
desc:
'Course number, e.g. "112"'
def
index
@courses
=
Course
.
fetch
(
params
).
all
render
json:
@courses
@courses
=
Course
.
where
(
semester_id:
params
[
:semester_id
])
if
params
.
key?
(
:subject
)
@courses
=
@courses
.
where
(
"UPPER(courses.subject) LIKE ?"
,
"%
#{
params
[
:subject
]
}
%"
)
end
if
params
.
key?
(
:course_number
)
@courses
=
@courses
.
where
(
course_number:
params
[
:course_number
])
end
result
=
@courses
.
map
do
|
c
|
{
id:
c
.
id
,
semester_id:
c
.
semester_id
,
subject:
c
.
subject
,
course_number:
c
.
course_number
,
description:
c
.
description
,
credits:
c
.
credits
,
title:
c
.
title
,
prereqs:
c
.
prereqs
}
end
render
json:
result
end
api
:GET
,
'/courses/:id'
,
"Get a list of all course sections for the course with the given id."
...
...
schedules/courses.html
deleted
100644 → 0
View file @
432c7d48
This source diff could not be displayed because it is too large. You can
view the blob
instead.
schedules/help
deleted
100644 → 0
View file @
432c7d48
<table class="datadisplaytable" summary="This layout table is used to present the sections found" width="100%">
<caption class="captiontext">Sections Found</caption>
<tr>
<th class="ddtitle" scope="colgroup"><a href="/pls/prod/bwckschd.p_disp_detail_sched?term_in=201870&crn_in=71117">Survey of Accounting - 71117 - ACCT 203 - 001</a></th>
</tr>
<tr>
<td bgcolor="yellow" class="dddefault">
<span class="fieldlabeltext">Associated Term: </span>Fall 2018
<br>
</td>
</tr>
<tr>
<td class="dddefault">
<span class="fieldlabeltext">Registration Dates: </span>Apr 03, 2018 to Sep 04, 2018
<br>
<span class="fieldlabeltext">Drop without Tuition Penalty Dates: </span>
Apr 03, 2018 to Sep 10, 2018
<br>
<span class="fieldlabeltext">Drop with Tuition Penalty (and final drop deadline) Dates: </span>
to
<br>
<span class="fieldlabeltext">Attributes: </span>Undergraduate - Lower Division, SOM Core (Enrollment Targets)
<br>
<br>
Fairfax Campus
<br>
Lecture Schedule Type
<br>
On-campus F2F 76-100% Instructional Method
<br>
3.000 Credits
<br>
<a href="/pls/prod/bwckctlg.p_display_courses?term_in=201870&one_subj=ACCT&sel_crse_strt=203&sel_crse_end=203&sel_subj=&sel_levl=&sel_schd=&sel_coll=&sel_divs=&sel_dept=&sel_attr=">View Catalog Entry</a>
<br>
<br>
<table class="datadisplaytable" summary="This table lists the scheduled meeting times and assigned instructors for this class..">
<caption class="captiontext">Scheduled Meeting Times</caption>
<tr>
<th class="ddheader" scope="col">Type</th>
<th class="ddheader" scope="col">Time</th>
<th class="ddheader" scope="col">Days</th>
<th class="ddheader" scope="col">Where</th>
<th class="ddheader" scope="col">Date Range</th>
<th class="ddheader" scope="col">Schedule Type</th>
<th class="ddheader" scope="col">Instructors</th>
</tr>
<tr>
<td class="dddefault">Class</td>
<td class="dddefault">1:30 pm - 2:45 pm</td>
<td class="dddefault">M</td>
<td class="dddefault">Innovation Hall 103</td>
<td class="dddefault">Aug 27, 2018 - Dec 19, 2018</td>
<td class="dddefault">Lecture</td>
<td class="dddefault">Constance M Hylton (<abbr title="Primary">P</abbr>)<a href="mailto:chylton@gmu.edu" target="Constance M. Hylton"><img src="/wtlgifs/web_email.gif" align="middle" alt="E-mail" class="headerImg" title="E-mail" name="web_email" hspace="0" vspace="0" border="0" height="28" width="28"></a>
</td>
</tr>
</table>
<br>
<br>
</td>
</tr>
<tr>
<th class="ddtitle" scope="colgroup"><a href="/pls/prod/bwckschd.p_disp_detail_sched?term_in=201870&crn_in=71118">Survey of Accounting - 71118 - ACCT 203 - 002</a></th>
</tr>
<tr>
<td bgcolor="yellow" class="dddefault">
<span class="fieldlabeltext">Associated Term: </span>Fall 2018
<br>
</td>
</tr>
<tr>
<td class="dddefault">
<span class="fieldlabeltext">Registration Dates: </span>Apr 03, 2018 to Sep 04, 2018
<br>
<span class="fieldlabeltext">Drop without Tuition Penalty Dates: </span>
Apr 03, 2018 to Sep 10, 2018
<br>
<span class="fieldlabeltext">Drop with Tuition Penalty (and final drop deadline) Dates: </span>
to
<br>
<span class="fieldlabeltext">Attributes: </span>Undergraduate - Lower Division, SOM Core (Enrollment Targets)
<br>
<br>
Fairfax Campus
<br>
Lecture Schedule Type
<br>
On-campus F2F 76-100% Instructional Method
<br>
3.000 Credits
<br>
<a href="/pls/prod/bwckctlg.p_display_courses?term_in=201870&one_subj=ACCT&sel_crse_strt=203&sel_crse_end=203&sel_subj=&sel_levl=&sel_schd=&sel_coll=&sel_divs=&sel_dept=&sel_attr=">View Catalog Entry</a>
<br>
<br>
<table class="datadisplaytable" summary="This table lists the scheduled meeting times and assigned instructors for this class..">
<caption class="captiontext">Scheduled Meeting Times</caption>
<tr>
<th class="ddheader" scope="col">Type</th>
<th class="ddheader" scope="col">Time</th>
<th class="ddheader" scope="col">Days</th>
<th class="ddheader" scope="col">Where</th>
<th class="ddheader" scope="col">Date Range</th>
<th class="ddheader" scope="col">Schedule Type</th>
<th class="ddheader" scope="col">Instructors</th>
</tr>
<tr>
<td class="dddefault">Class</td>
<td class="dddefault">1:30 pm - 2:45 pm</td>
<td class="dddefault">W</td>
<td class="dddefault">Innovation Hall 103</td>
<td class="dddefault">Aug 27, 2018 - Dec 19, 2018</td>
<td class="dddefault">Lecture</td>
<td class="dddefault">Constance M Hylton (<abbr title="Primary">P</abbr>)<a href="mailto:chylton@gmu.edu" target="Constance M. Hylton"><img src="/wtlgifs/web_email.gif" align="middle" alt="E-mail" class="headerImg" title="E-mail" name="web_email" hspace="0" vspace="0" border="0" height="28" width="28"></a>
</td>
</tr>
</table>
<br>
<br>
</td>
</tr>
<tr>
<th class="ddtitle" scope="colgroup"><a href="/pls/prod/bwckschd.p_disp_detail_sched?term_in=201870&crn_in=71119">Survey of Accounting - 71119 - ACCT 203 - 003</a></th>
</tr>
<tr>
<td bgcolor="yellow" class="dddefault">
ACCT 203 003 does not require a recitation section.<!-- I am using the new text narrative source TT05299 -->
<span class="fieldlabeltext">Associated Term: </span>Fall 2018
<br>
</td>
</tr>
<tr>
<td class="dddefault">
<span class="fieldlabeltext">Registration Dates: </span>Apr 03, 2018 to Sep 04, 2018
<br>
<span class="fieldlabeltext">Drop without Tuition Penalty Dates: </span>
Apr 03, 2018 to Sep 10, 2018
<br>
<span class="fieldlabeltext">Drop with Tuition Penalty (and final drop deadline) Dates: </span>
to
<br>
<span class="fieldlabeltext">Attributes: </span>Undergraduate - Lower Division, SOM Core (Enrollment Targets)
<br>
<br>
Fairfax Campus
<br>
Lecture Schedule Type
<br>
On-campus F2F 76-100% Instructional Method
<br>
3.000 Credits
<br>
<a href="/pls/prod/bwckctlg.p_display_courses?term_in=201870&one_subj=ACCT&sel_crse_strt=203&sel_crse_end=203&sel_subj=&sel_levl=&sel_schd=&sel_coll=&sel_divs=&sel_dept=&sel_attr=">View Catalog Entry</a>
<br>
<br>
<table class="datadisplaytable" summary="This table lists the scheduled meeting times and assigned instructors for this class..">
<caption class="captiontext">Scheduled Meeting Times</caption>
<tr>
<th class="ddheader" scope="col">Type</th>
<th class="ddheader" scope="col">Time</th>
<th class="ddheader" scope="col">Days</th>
<th class="ddheader" scope="col">Where</th>
<th class="ddheader" scope="col">Date Range</th>
<th class="ddheader" scope="col">Schedule Type</th>
<th class="ddheader" scope="col">Instructors</th>
</tr>
<tr>
<td class="dddefault">Class</td>
<td class="dddefault">7:20 pm - 10:00 pm</td>
<td class="dddefault">M</td>
<td class="dddefault">Art and Design Building 2003</td>
<td class="dddefault">Aug 27, 2018 - Dec 19, 2018</td>
<td class="dddefault">Lecture</td>
<td class="dddefault">Paul T Harley (<abbr title="Primary">P</abbr>)<a href="mailto:pharley1@gmu.edu" target="Paul T. Harley"><img src="/wtlgifs/web_email.gif" align="middle" alt="E-mail" class="headerImg" title="E-mail" name="web_email" hspace="0" vspace="0" border="0" height="28" width="28"></a>
</td>
</tr>
</table>
<br>
<br>
</td>
</tr>
<tr>
<th class="ddtitle" scope="colgroup"><a href="/pls/prod/bwckschd.p_disp_detail_sched?term_in=201870&crn_in=80027">Survey of Accounting - 80027 - ACCT 203 - 004</a></th>
</tr>
<tr>
<td bgcolor="yellow" class="dddefault">
ACCT 203 Section 004 does not require a recitation<!-- I am using the new text narrative source TT05299 -->
<span class="fieldlabeltext">Associated Term: </span>Fall 2018
<br>
</td>
</tr>
<tr>
<td class="dddefault">
<span class="fieldlabeltext">Registration Dates: </span>Apr 03, 2018 to Sep 04, 2018
<br>
<span class="fieldlabeltext">Drop without Tuition Penalty Dates: </span>
Apr 03, 2018 to Sep 10, 2018
<br>
<span class="fieldlabeltext">Drop with Tuition Penalty (and final drop deadline) Dates: </span>
to
<br>
<span class="fieldlabeltext">Attributes: </span>Undergraduate - Lower Division, SOM Core (Enrollment Targets)
<br>
<br>
Fairfax Campus
<br>
Lecture Schedule Type
<br>
On-campus F2F 76-100% Instructional Method
<br>
3.000 Credits
<br>
<a href="/pls/prod/bwckctlg.p_display_courses?term_in=201870&one_subj=ACCT&sel_crse_strt=203&sel_crse_end=203&sel_subj=&sel_levl=&sel_schd=&sel_coll=&sel_divs=&sel_dept=&sel_attr=">View Catalog Entry</a>
<br>
<br>
<table class="datadisplaytable" summary="This table lists the scheduled meeting times and assigned instructors for this class..">
<caption class="captiontext">Scheduled Meeting Times</caption>
<tr>
<th class="ddheader" scope="col">Type</th>
<th class="ddheader" scope="col">Time</th>
<th class="ddheader" scope="col">Days</th>
<th class="ddheader" scope="col">Where</th>
<th class="ddheader" scope="col">Date Range</th>
<th class="ddheader" scope="col">Schedule Type</th>
<th class="ddheader" scope="col">Instructors</th>
</tr>
<tr>
<td class="dddefault">Class</td>
<td class="dddefault">7:20 pm - 10:00 pm</td>
<td class="dddefault">T</td>
<td class="dddefault">Innovation Hall 204</td>
<td class="dddefault">Aug 27, 2018 - Dec 19, 2018</td>
<td class="dddefault">Lecture</td>
<td class="dddefault">Sandra McKean Wendler (<abbr title="Primary">P</abbr>)<a href="mailto:swendler@gmu.edu" target="Sandra M. Wendler"><img src="/wtlgifs/web_email.gif" align="middle" alt="E-mail" class="headerImg" title="E-mail" name="web_email" hspace="0" vspace="0" border="0" height="28" width="28"></a>
</td>
</tr>
</table>
<br>
<br>
</td>
</tr>
<tr>
<th class="ddtitle" scope="colgroup"><a href="/pls/prod/bwckschd.p_disp_detail_sched?term_in=201870&crn_in=83091">Survey of Accounting - 83091 - ACCT 203 - 005</a></th>
</tr>
<tr>
<td bgcolor="yellow" class="dddefault">
<span class="fieldlabeltext">Associated Term: </span>Fall 2018
<br>
</td>
</tr>
<tr>
<td class="dddefault">
<span class="fieldlabeltext">Registration Dates: </span>Apr 03, 2018 to Sep 04, 2018
<br>
<span class="fieldlabeltext">Drop without Tuition Penalty Dates: </span>
Apr 03, 2018 to Sep 10, 2018
<br>
<span class="fieldlabeltext">Drop with Tuition Penalty (and final drop deadline) Dates: </span>
to
<br>
<span class="fieldlabeltext">Attributes: </span>Undergraduate - Lower Division, SOM Core (Enrollment Targets)
<br>
<br>
Loudoun Campus
<br>
Lecture Schedule Type
<br>
Off-campus F2F 76-100% Instructional Method
<br>
3.000 Credits
<br>
<a href="/pls/prod/bwckctlg.p_display_courses?term_in=201870&one_subj=ACCT&sel_crse_strt=203&sel_crse_end=203&sel_subj=&sel_levl=&sel_schd=&sel_coll=&sel_divs=&sel_dept=&sel_attr=">View Catalog Entry</a>
<br>
<br>
<table class="datadisplaytable" summary="This table lists the scheduled meeting times and assigned instructors for this class..">
<caption class="captiontext">Scheduled Meeting Times</caption>
<tr>
<th class="ddheader" scope="col">Type</th>
<th class="ddheader" scope="col">Time</th>
<th class="ddheader" scope="col">Days</th>
<th class="ddheader" scope="col">Where</th>
<th class="ddheader" scope="col">Date Range</th>
<th class="ddheader" scope="col">Schedule Type</th>
<th class="ddheader" scope="col">Instructors</th>
</tr>
<tr>
<td class="dddefault">Class</td>
<td class="dddefault">1:30 pm - 2:45 pm</td>
<td class="dddefault">W</td>
<td class="dddefault">Loudoun: Signal Hill 208</td>
<td class="dddefault">Aug 27, 2018 - Dec 19, 2018</td>
<td class="dddefault">Lecture</td>
<td class="dddefault">Constance M Hylton (<abbr title="Primary">P</abbr>)<a href="mailto:chylton@gmu.edu" target="Constance M. Hylton"><img src="/wtlgifs/web_email.gif" align="middle" alt="E-mail" class="headerImg" title="E-mail" name="web_email" hspace="0" vspace="0" border="0" height="28" width="28"></a>
</td>
</tr>
</table>
<br>
<br>
</td>
</tr>
<tr>
<th class="ddtitle" scope="colgroup"><a href="/pls/prod/bwckschd.p_disp_detail_sched?term_in=201870&crn_in=71120">Recitation for Lecture 001 - 71120 - ACCT 203 - 301</a></th>
</tr>
<tr>
<td bgcolor="yellow" class="dddefault">
<span class="fieldlabeltext">Associated Term: </span>Fall 2018
<br>
</td>
</tr>
<tr>
<td class="dddefault">
<span class="fieldlabeltext">Registration Dates: </span>Apr 03, 2018 to Sep 04, 2018
<br>
<span class="fieldlabeltext">Drop without Tuition Penalty Dates: </span>
Apr 03, 2018 to Sep 10, 2018
<br>
<span class="fieldlabeltext">Drop with Tuition Penalty (and final drop deadline) Dates: </span>
to
<br>
<span class="fieldlabeltext">Attributes: </span>Undergraduate - Lower Division, SOM Core (Enrollment Targets)
<br>
<br>
Fairfax Campus
<br>
Recitation Schedule Type
<br>
On-campus F2F 76-100% Instructional Method
<br>
0.000 Credits
<br>
<a href="/pls/prod/bwckctlg.p_display_courses?term_in=201870&one_subj=ACCT&sel_crse_strt=203&sel_crse_end=203&sel_subj=&sel_levl=&sel_schd=&sel_coll=&sel_divs=&sel_dept=&sel_attr=">View Catalog Entry</a>
<br>
<br>
<table class="datadisplaytable" summary="This table lists the scheduled meeting times and assigned instructors for this class..">
<caption class="captiontext">Scheduled Meeting Times</caption>
<tr>
<th class="ddheader" scope="col">Type</th>
<th class="ddheader" scope="col">Time</th>
<th class="ddheader" scope="col">Days</th>
<th class="ddheader" scope="col">Where</th>
<th class="ddheader" scope="col">Date Range</th>
<th class="ddheader" scope="col">Schedule Type</th>
<th class="ddheader" scope="col">Instructors</th>
</tr>
<tr>
<td class="dddefault">Class</td>
<td class="dddefault">7:30 am - 8:45 am</td>
<td class="dddefault">F</td>
<td class="dddefault">Enterprise Hall 173</td>
<td class="dddefault">Aug 27, 2018 - Dec 19, 2018</td>
<td class="dddefault">Recitation</td>
<td class="dddefault">Jonathan Becerra (<abbr title="Primary">P</abbr>)<a href="mailto:jbecerr@gmu.edu" target="Jonathan Becerra"><img src="/wtlgifs/web_email.gif" align="middle" alt="E-mail" class="headerImg" title="E-mail" name="web_email" hspace="0" vspace="0" border="0" height="28" width="28"></a>, Constance M Hylton <a href="mailto:chylton@gmu.edu" target="Constance M. Hylton"><img src="/wtlgifs/web_email.gif" align="middle" alt="E-mail" class="headerImg" title="E-mail" name="web_email" hspace="0" vspace="0" border="0" height="28" width="28"></a>
</td>
</tr>
</table>
<br>
<br>
</td>
</tr>
<tr>
<th class="ddtitle" scope="colgroup"><a href="/pls/prod/bwckschd.p_disp_detail_sched?term_in=201870&crn_in=71123">Recitation for Lecture 001 - 71123 - ACCT 203 - 302</a></th>
</tr>
<tr>
<td bgcolor="yellow" class="dddefault">
<span class="fieldlabeltext">Associated Term: </span>Fall 2018
<br>
</td>
</tr>
<tr>
<td class="dddefault">
<span class="fieldlabeltext">Registration Dates: </span>Apr 03, 2018 to Sep 04, 2018
<br>
<span class="fieldlabeltext">Drop without Tuition Penalty Dates: </span>
Apr 03, 2018 to Sep 10, 2018
<br>
<span class="fieldlabeltext">Drop with Tuition Penalty (and final drop deadline) Dates: </span>
to
<br>
<span class="fieldlabeltext">Attributes: </span>Undergraduate - Lower Division, SOM Core (Enrollment Targets)
<br>
<br>
Fairfax Campus
<br>
Recitation Schedule Type
<br>
On-campus F2F 76-100% Instructional Method
<br>
0.000 Credits
<br>
<a href="/pls/prod/bwckctlg.p_display_courses?term_in=201870&one_subj=ACCT&sel_crse_strt=203&sel_crse_end=203&sel_subj=&sel_levl=&sel_schd=&sel_coll=&sel_divs=&sel_dept=&sel_attr=">View Catalog Entry</a>
<br>
<br>
<table class="datadisplaytable" summary="This table lists the scheduled meeting times and assigned instructors for this class..">
<caption class="captiontext">Scheduled Meeting Times</caption>
<tr>
<th class="ddheader" scope="col">Type</th>
<th class="ddheader" scope="col">Time</th>
<th class="ddheader" scope="col">Days</th>
<th class="ddheader" scope="col">Where</th>
<th class="ddheader" scope="col">Date Range</th>
<th class="ddheader" scope="col">Schedule Type</th>
<th class="ddheader" scope="col">Instructors</th>
</tr>
<tr>
<td class="dddefault">Class</td>
<td class="dddefault">9:00 am - 10:15 am</td>
<td class="dddefault">F</td>
<td class="dddefault">Enterprise Hall 174</td>
<td class="dddefault">Aug 27, 2018 - Dec 19, 2018</td>
<td class="dddefault">Recitation</td>
<td class="dddefault">Jonathan Becerra (<abbr title="Primary">P</abbr>)<a href="mailto:jbecerr@gmu.edu" target="Jonathan Becerra"><img src="/wtlgifs/web_email.gif" align="middle" alt="E-mail" class="headerImg" title="E-mail" name="web_email" hspace="0" vspace="0" border="0" height="28" width="28"></a>, Constance M Hylton <a href="mailto:chylton@gmu.edu" target="Constance M. Hylton"><img src="/wtlgifs/web_email.gif" align="middle" alt="E-mail" class="headerImg" title="E-mail" name="web_email" hspace="0" vspace="0" border="0" height="28" width="28"></a>
</td>
</tr>
</table>
<br>
<br>
</td>
</tr>
<tr>
<th class="ddtitle" scope="colgroup"><a href="/pls/prod/bwckschd.p_disp_detail_sched?term_in=201870&crn_in=71936">Recitation for Lecture 001 - 71936 - ACCT 203 - 303</a></th>
</tr>
<tr>
<td bgcolor="yellow" class="dddefault">
<span class="fieldlabeltext">Associated Term: </span>Fall 2018
<br>
</td>
</tr>
<tr>
<td class="dddefault">
<span class="fieldlabeltext">Registration Dates: </span>Apr 03, 2018 to Sep 04, 2018
<br>
<span class="fieldlabeltext">Drop without Tuition Penalty Dates: </span>
Apr 03, 2018 to Sep 10, 2018
<br>
<span class="fieldlabeltext">Drop with Tuition Penalty (and final drop deadline) Dates: </span>
to
<br>
<span class="fieldlabeltext">Attributes: </span>Undergraduate - Lower Division, SOM Core (Enrollment Targets)
<br>
<br>
Fairfax Campus
<br>
Recitation Schedule Type
<br>
On-campus F2F 76-100% Instructional Method
<br>
0.000 Credits
<br>
<a href="/pls/prod/bwckctlg.p_display_courses?term_in=201870&one_subj=ACCT&sel_crse_strt=203&sel_crse_end=203&sel_subj=&sel_levl=&sel_schd=&sel_coll=&sel_divs=&sel_dept=&sel_attr=">View Catalog Entry</a>
<br>
<br>
<table class="datadisplaytable" summary="This table lists the scheduled meeting times and assigned instructors for this class..">
<caption class="captiontext">Scheduled Meeting Times</caption>
<tr>
<th class="ddheader" scope="col">Type</th>
<th class="ddheader" scope="col">Time</th>
<th class="ddheader" scope="col">Days</th>
<th class="ddheader" scope="col">Where</th>
<th class="ddheader" scope="col">Date Range</th>
<th class="ddheader" scope="col">Schedule Type</th>
<th class="ddheader" scope="col">Instructors</th>
</tr>
<tr>
<td class="dddefault">Class</td>
<td class="dddefault">10:30 am - 11:45 am</td>
<td class="dddefault">F</td>
<td class="dddefault">James Buchanan Hall D005</td>
<td class="dddefault">Aug 27, 2018 - Dec 19, 2018</td>
<td class="dddefault">Recitation</td>
<td class="dddefault">Brian Thomas Ferron (<abbr title="Primary">P</abbr>)<a href="mailto:bferron@gmu.edu" target="Brian T. Ferron"><img src="/wtlgifs/web_email.gif" align="middle" alt="E-mail" class="headerImg" title="E-mail" name="web_email" hspace="0" vspace="0" border="0" height="28" width="28"></a>, Constance M Hylton <a href="mailto:chylton@gmu.edu" target="Constance M. Hylton"><img src="/wtlgifs/web_email.gif" align="middle" alt="E-mail" class="headerImg" title="E-mail" name="web_email" hspace="0" vspace="0" border="0" height="28" width="28"></a>
</td>
</tr>
</table>
<br>
<br>
</td>
</tr>
<tr>
<th class="ddtitle" scope="colgroup"><a href="/pls/prod/bwckschd.p_disp_detail_sched?term_in=201870&crn_in=71121">Recitation for Lecture 001 - 71121 - ACCT 203 - 304</a></th>
</tr>
<tr>
<td bgcolor="yellow" class="dddefault">
<span class="fieldlabeltext">Associated Term: </span>Fall 2018
<br>
</td>
</tr>
<tr>
<td class="dddefault">
<span class="fieldlabeltext">Registration Dates: </span>Apr 03, 2018 to Sep 04, 2018
<br>
<span class="fieldlabeltext">Drop without Tuition Penalty Dates: </span>
Apr 03, 2018 to Sep 10, 2018
<br>
<span class="fieldlabeltext">Drop with Tuition Penalty (and final drop deadline) Dates: </span>
to
<br>
<span class="fieldlabeltext">Attributes: </span>Undergraduate - Lower Division, SOM Core (Enrollment Targets)
<br>
<br>
Fairfax Campus
<br>
Recitation Schedule Type
<br>
On-campus F2F 76-100% Instructional Method
<br>
0.000 Credits
<br>
<a href="/pls/prod/bwckctlg.p_display_courses?term_in=201870&one_subj=ACCT&sel_crse_strt=203&sel_crse_end=203&sel_subj=&sel_levl=&sel_schd=&sel_coll=&sel_divs=&sel_dept=&sel_attr=">View Catalog Entry</a>
<br>
<br>
<table class="datadisplaytable" summary="This table lists the scheduled meeting times and assigned instructors for this class..">
<caption class="captiontext">Scheduled Meeting Times</caption>
<tr>
<th class="ddheader" scope="col">Type</th>
<th class="ddheader" scope="col">Time</th>
<th class="ddheader" scope="col">Days</th>
<th class="ddheader" scope="col">Where</th>
<th class="ddheader" scope="col">Date Range</th>
<th class="ddheader" scope="col">Schedule Type</th>
<th class="ddheader" scope="col">Instructors</th>
</tr>
<tr>
<td class="dddefault">Class</td>
<td class="dddefault">12:00 pm - 1:15 pm</td>
<td class="dddefault">F</td>
<td class="dddefault">Enterprise Hall 174</td>
<td class="dddefault">Aug 27, 2018 - Dec 19, 2018</td>
<td class="dddefault">Recitation</td>
<td class="dddefault">Brian Thomas Ferron (<abbr title="Primary">P</abbr>)<a href="mailto:bferron@gmu.edu" target="Brian T. Ferron"><img src="/wtlgifs/web_email.gif" align="middle" alt="E-mail" class="headerImg" title="E-mail" name="web_email" hspace="0" vspace="0" border="0" height="28" width="28"></a>, Constance M Hylton <a href="mailto:chylton@gmu.edu" target="Constance M. Hylton"><img src="/wtlgifs/web_email.gif" align="middle" alt="E-mail" class="headerImg" title="E-mail" name="web_email" hspace="0" vspace="0" border="0" height="28" width="28"></a>
</td>
</tr>
</table>
<br>
<br>
</td>
</tr>
<tr>