-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.html
More file actions
58 lines (52 loc) · 2.78 KB
/
code.html
File metadata and controls
58 lines (52 loc) · 2.78 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
<!DOCTYPE html>
<html>
<head>
<title>RESTful Web APIs</title>
<link rel="stylesheet" href="rwa.css" type="text/css" />
</head>
<body>
<!-- COVER -->
<p class="rwa-cover">
<a href="http://shop.oreilly.com/product/0636920028468.do" title="RESTful Web APIs" target="buy">
<img src="images/rwa-cover.jpg" width="250" align="right" class="inline"/>
</a>
</p>
<!-- HEADING -->
<p class="tag-line">Services for a Changing World</p>
<h1 class="main-title"><a href="http://restfulwebapis.com" class="noshow">RESTful Web APIs</a></h1>
<h2 class="authors">By Leonard Richardson and Mike Amundsen with Foreword by Sam Ruby</h2>
<!-- MENU -->
<div id="menu">
<ul>
<li class="first"><a href="index.html">The Book</a></li>
<li><a href="index.html#buyit">Buy It</a></li>
<li><a href="index.html#praise">Early Praise</a></li>
<li><a href="chapters.html">Chapters</a></li>
<li><a href="ytiwpi.html">You Type It, We Post It</a></li>
<li><a href="code.html">The Code</a></li>
<li><a href="rws.html">RESTful Web Services</a></li>
</ul>
</div>
<!-- CODE -->
<div id="code" class="section">
<h2>The Code</h2>
<p>
You'll find all the source code from the book in the
<a href="http://github.com/RESTful-Web-APIs" target="code"><i>RESTful Web APIs</i> github repository</a>. That includes the source for the <a href="http://youtypeitwepostit.com" title="YTIWPI" target="ytiwpi">"You Type It, We Post It!" web site</a> refered to in Chapters 1 & 2 and Chapter 5's Maze Server and all the Maze client apps.
</p>
<p>
Any additions, bug fixes, or modifications to the source code will be automatically committed to the repo, too.
</p>
</div>
<div class="section">
<h2>We're Soliciting Source Code</h2>
<p>
<img src="images/sloth-2-border.png" align="left" class="inline" title="Art by DanaAmundsen.com"/>The source code for the book examples was all written using <a href="http://nodejs.org">Node.js</a>. As mentioned
in the book, this was done to keep the examples clear and consistent. However, we're looking for additional
language implementations for all the server- and client-side source code. If you've implemented the examples in
another language, we'd love to host it in the <a href="https://github.com/RESTful-Web-APIs/">RESTful Web APIs repo</a>. Whether the code is in PHP,
Ruby/Rails, C#, Java, Erlang, or some other language, we'd love to add it to our collection. Just clone the repo, start a topic branch, add your example folder, and issue a pull request. We'll add it as soon as we can and announce the addition, too.
</p>
</div>
</body>
</html>