-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (62 loc) · 3.16 KB
/
Copy pathindex.html
File metadata and controls
63 lines (62 loc) · 3.16 KB
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Excellent Schools Detroit: Code and APIs</title>
<link rel="stylesheet" href="stylesheets/styles.css">
<link rel="stylesheet" href="stylesheets/pygment_trac.css">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="wrapper">
<header>
<a rel="home" title="Home" href="/">
<img class="site-logo" alt="Home" src="images/esd_code_logo.png"></img>
</a>
<p class="view"><a href="https://github.com/esdet">Repositories</a></p>
<p class="view"><a href="https://www.excellentschoolsdetroit.org/">ESD homepage</a></p>
</header>
<section>
<h2>Excellent Schools Detroit: Code and APIs</h2>
<p>Coming soon you will find a list of all of our software and information about our APIs and datasets.</p>
<h3>Code</h3>
<h4>Portal</h4>
<p>The Portal is a Drupal 7 website that serves as a central database for ESD's school data. In addition to allowing school leaders to edit information, it also provides a read-only API for other projects (like the <a href="http://scorecard.excellentschoolsdetroit.org">Scorecard</a>) to access public data.</p>
<p>The site is deployed via Drupal install profile. See the code and documentation <a href="https://github.com/esdet/esdportal_profile">in esdportal_profile's README</a>.</p>
<h3>APIs and Datasets</h3>
<h4>Portal API</h4>
<p>Read about the Portal's API in <a href="https://github.com/esdet/esdportal_str/wiki">the esdportal_str wiki.</a></p>
<h4>CSV exports</h4>
<ul class="csvs">
<li><a href="https://portal.excellentschoolsdetroit.org/files/csvs/esd_hs_2013.csv">esd_hs_2013</a></li>
<li><a href="https://portal.excellentschoolsdetroit.org/files/csvs/esd_k8_2013.csv">esd_k8_2013</a></li>
<li><a href="https://portal.excellentschoolsdetroit.org/files/csvs/esd_k8_2013_r1.csv">esd_k8_2013_r1</a></li>
<li><a href="https://portal.excellentschoolsdetroit.org/files/csvs/fiveessentials_2013.csv">fiveessentials_2013</a></li>
<li><a href="https://portal.excellentschoolsdetroit.org/files/csvs/earlychild.csv">earlychild</a></li>
<li><a href="https://portal.excellentschoolsdetroit.org/files/csvs/schools.csv">schools (all ESD-indexed schools with BCODEs)</a></li>
</ul>
</section>
<footer>
</footer>
</div>
<script src="javascripts/scale.fix.js"></script>
<script>
function pad(n) {
return (n < 10) ? ("0" + n) : n;
}
var i = 0;
var csvlinks = document.querySelectorAll('ul.csvs a');
var d = new Date();
d.setTime(d.getTime()-d.getTimezoneOffset());
var newending = '-' + pad(d.getDate()) + '_' + pad(d.getMonth()+1) + '_' + d.getFullYear() + '.csv';
while (i < csvlinks.length) {
csvlinks[i].href = csvlinks[i].href.replace(/.csv$/, newending);
i++;
}
</script>
</body>
</html>