-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathintroduction.html
executable file
·66 lines (58 loc) · 2.54 KB
/
introduction.html
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
<!DOCTYPE html>
<html>
<head>
<title> CS 499 Group 7: Supreme Court </title>
<meta charset="UTF-8">
<!-- Put JS headers here -->
<!-- CSS Stylesheets -->
<link rel="stylesheet" href="main.css" type="text/css">
</head>
<body>
<div id="intro-page" class="container">
<div class="header">
<h1>Introduction</h1>
</div>
<br><br><br>
<div class="content">
<div class="links">
<a href="index.html">Home</a>
<br><br>
<a href="introduction.html">Introduction</a>
<br><br>
<a href="requirements.html">Requirements</a>
<br><br>
<a href="updates.html">Updates</a>
<br><br>
<a href="schedule.html">Schedule</a>
<br><br>
<a href="design.html">Design</a>
<br><br>
<a href="testing.html">Testing</a>
<br><br>
<a href="useCases.html"> Use Cases</a>
<br><br>
<a href="designAndImplementation.html">Design Considerations/Implementation Issues</a>
<br><br>
<a href="enhancementsMaintenance.html">Future Enhancements/Maintenance</a>
<br><br>
<a href="conclusions.html">Conclusions</a>
<br><br>
<a href="installation.html">Installation</a>
<br><br>
<a href="references.html"> References</a>
<br><br>
</div>
<div class="text">
<h3>Our goal</h3>
<p>
The purpose of our project was to provide an easy-to-access database of news articles dealing with Supreme Court rulings. Specifically, we developed a program that looks through various RSS feeds and different news sources and aggregates articles relevant to the Supreme Court, storing them and doing text-analysis on them for later use. The project also includes a front end web application to sift through all of the articles collected. This project was born from a desire to understand the public opinion on the Supreme Court.
</p>
<p>
Our job this semester was combining the work of the previous semesters' projects into one finished product. With two previous groups to work off, we had a large amount of ideas to choose from and adapt.
</p>
<p>Our customers are Dr. Zilis and Dr. Wedeking, two political science professors at the University of Kentucky. They wanted to study the public opinion in the Supreme Court over time, but wanted a centralized repository of articles to searhc instead of blindly searching the web for new articles. Our hope with this project is to allow for a concentrated view of the Supreme Court. They will use this web applicaiton to analyze the opinion over time.</p>
</div>
</div>
</div>
</body>
</html>