forked from webapibook/webapibook.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (82 loc) · 3.86 KB
/
index.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Designing Evolvable Web APIs with ASP.NET</title>
<link rel="stylesheet" href="stylesheets/styles.css">
<link rel="stylesheet" href="stylesheets/pygment_trac.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="javascripts/respond.js"></script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!--[if lt IE 8]>
<link rel="stylesheet" href="stylesheets/ie.css">
<![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-37286608-1']);
_gaq.push(['_setDomainName', 'webapibook.net']);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<!--
<div id="header">
<nav>
<li class="fork"><a href="https://github.com/webapibook">View On GitHub</a></li>
</nav>
</div><
-->
<div class="wrapper">
<section>
<div id="title">
<h1>Designing Evolvable Web APIs with ASP.NET</h1>
</p>
<hr>
</div>
<div style="text-align: center; margin-bottom:50px">
<a href="http://shop.oreilly.com/product/0636920026617.do" rel="buy">
<img src="http://akamaicovers.oreilly.com/images/0636920026617/cat.gif"
alt="book cover">
</a>
</div>
<p>Welcome to the
<a href="http://shop.oreilly.com/product/0636920026617.do">
Designing Evolvable Web APIs with ASP.NET
</a> book, authored by</p>
<ul>
<li><a href="http://codebetter.com/glennblock/">Glenn Block</a></li>
<li><a href="http://weblogs.asp.net/cibrax/">Pablo Cibraro</a></li>
<li><a href="http://pfelix.wordpress.com/">Pedro Félix</a></li>
<li><a href="http://codebetter.com/howarddierking/">Howard Dierking</a></li>
<li><a href="http://www.bizcoder.com/">Darrel Miller</a></li>
</ul>
<p>The book is finally done and was published in March 2014.</p>
<p>The source code is available from <a href="https://github.com/webapibook">https://github.com/webapibook</a>.</p>
<p>We've also created a <a href="https://groups.google.com/forum/#!forum/webapibook">discussion group</a> were we would love to hear you thoughts on the book, answer any questions and also discuss your experiences applying the techniques we have laid out within.</p>
<p>
The book is also available at <a href="http://chimera.labs.oreilly.com/books/1234000001708">O'Reilly Atlas</a>.
</p>
<p>
For updates, follow us at
<a href="https://twitter.com/webapibook" class="twitter-follow-button" data-show-count="false" data-size="large" data-dnt="true">@webapibook</a>
</p>
<div id="title">
<hr>
<span class="credits left">Project maintained by <a href="https://github.com/webapibook">webapibook</a></span>
<span class="credits right">Hosted on GitHub Pages — Theme by <a href="http://twitter.com/#!/michigangraham">mattgraham</a></span>
</div>
</section>
</div>
<!--[if !IE]><script>fixScale(document);</script><![endif]-->
</body>
</html>