-
Notifications
You must be signed in to change notification settings - Fork 19
/
about.html
55 lines (48 loc) · 2.38 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<title>DC Code Browser</title>
<link rel='stylesheet' type='text/css' href='css/style.css' />
<link rel='stylesheet' type='text/css' href='css/site.css' />
<meta http-equiv='content-type' content='text/html; charset=utf-8' />
<style>
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class='col6 margin3 pad2'>
<br />
<h1>dccode.org/browser</h1>
<p>
This is a fast, unofficial interface to the <a href='http://dccouncil.us/UnofficialDCCode'>
Unofficial DC Code</a> released by the <a href='http://www.dccouncil.us/'>DC Council</a>
<a href='http://macwright.org/2013/04/04/the-open-code.html'>on April 4th</a>.
The Code, previously <a href='http://greatergreaterwashington.org/post/18132/dcs-laws-arent-yours/'>encumbered by copyrights and terms of service</a>,
were made available as a <a href='http://creativecommons.org/choose/zero/'>public domain</a> download
of Word documents. This makes that download into something useful and browseable.
</p>
<p>
Unlike the <a href='http://www.lexisnexis.com/hottopics/dccode/'>official site</a>,
this interface quickly improving and is <em>completely free</em>: you
can copy it, improve it, and see how it works.
</p>
<h3>Download</h3>
<p><a href='https://archive.org/details/unofficial_washington_dc_code_one'>Reconstituted PDF for offline access or printing (beta) [25.1MB]</a></p>
<p>Want this website? <a href='https://github.com/openlawdc/browser/archive/gh-pages.zip'>Download it as a full copy [24.1MB]</a></p>
<p>A developer? <a href='https://github.com/openlawdc/browser/'>Clone on GitHub</a> or</p>
<pre>git clone [email protected]:openlawdc/browser.git</pre>
<h3>API</h3>
<p>The API is a work in progress. Currently you can request JSON-structured
files of each section.</p>
<pre>http://dccode.org/browser/sections/3-201.json</pre>
<p>In which <code>3-201</code> is a code identifier, in this case meaning
Title 3, section 201.</p>
<hr />
<p>
<a href='https://github.com/openlawdc/code-browser/issues'>Please report any bugs for the browser on GitHub</a>!
</p>
</div>
</body>
</html>