-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
184 lines (154 loc) · 7.24 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<html>
<head>
<title>OWIN — Open Web Interface for .NET</title>
<link href='http://fonts.googleapis.com/css?family=Nunito:700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<!-- generating the spec html pages from MD -->
<div id="main">
<div id="masthead">
<h1>OWIN</h1>
<h2>Open Web Interface for .NET</h2>
</div>
<ul id="nav">
<li><a href="#about">About</a></li>
<li><a href="#start">Getting Started</a></li>
<li><a href="#faq">FAQ</a></li>
<li><a href="#spec">Specification</a></li>
<li><a href="#discuss">Discussion</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#governance">Governance</a></li>
</ul>
<div id="content">
<a name="about"></a>
<h2>About</h2>
<p>OWIN defines a standard interface between .NET web servers and web applications. The goal of the OWIN interface is to decouple server and application, encourage the development of simple modules for .NET web development, and, by being an open standard, stimulate the open source ecosystem of .NET web development tools.</p>
<a name="start"></a>
<h2>Getting Started</h2>
<p>These projects provide documentation and resources to help you start using OWIN. If you'd like your project listed here, please post on the discussion list.</p>
<ul>
<li><a href="http://katanaproject.codeplex.com/documentation">Katana</a> - OWIN implementations for Microsoft servers and frameworks.</li>
</ul>
<a name="faq"></a>
<h2>FAQ</h2>
<ul>
<li><a href="https://github.com/owin/owin/wiki/faq">OWIN FAQ Wiki</a></li>
</ul>
<a name="spec"></a>
<h2>Current Specification</h2>
<ul>
<li>
<a class="version" href="/html/spec/owin-1.0.html">OWIN v1.0</a>
</li>
</ul>
<a name="drafts"></a>
<h2>Drafts and work in progress</h2>
<ul>
<li>
<a class="version" href="/html/spec/owin-1.0.1.html">OWIN v1.0.1</a>
</li>
<li>
<a class="version" href="/html/spec/middleware-1.0.0-draft.1.html">OWIN v1.0.0 Draft 1 Middleware</a>
</li>
</ul>
<h2>Extensions</h2>
<ul id="extendlist">
<li>
<a class="version" href="/html/CommonKeys.html">Common Keys</a>
<p class="summary">Guidelines for extending OWIN via extension keys in the various IDictionaries.</p>
</li>
<li>
<a class="version" href="spec/extensions/owin-SendFile-Extension-v0.3.0.htm">SendFile v0.3.0</a>
<span class="date">3 December 2012</span>
<p class="summary">How to send static files via OWIN.</p>
<a href="spec/extensions/owin-SendFile-Extension-v0.2.0.htm">SendFile v0.2.0</a>
<span class="date">28 September 2012</span>
<br>
<a href="spec/extensions/owin-SendFile-Extension-v0.1.0.htm">SendFile v0.1.0</a>
<span class="date">17 September 2012</span>
<br>
</li>
<li>
<a class="version" href="spec/extensions/owin-WebSocket-Extension-v0.4.0.htm">WebSocket v0.4.0</a>
<span class="date">1 October 2012</span>
<p class="summary">How to consume WebSockets via OWIN.</p>
<a href="spec/extensions/owin-WebSocket-Extension-v0.3.0.htm">WebSocket v0.3.0</a>
<span class="date">7 September 2012</span>
<br>
<a href="spec/extensions/owin-WebSocket-Extension-v0.2.0.htm">WebSocket v0.2.0</a>
<span class="date">13 August 2012</span>
</li>
<li>
<a class="version" href="spec/extensions/owin-OpaqueStream-Extension-v0.3.0.htm">Opaque Streaming v0.3.0</a>
<span class="date">4 January 2013</span>
<p class="summary">How to get access to opaque streams via OWIN.</p>
<a href="spec/extensions/owin-OpaqueStream-Extension-v0.2.0.htm">Opaque Streaming v0.2.0</a>
<span class="date">28 September 2012</span>
</li>
</ul>
<a name="discuss"></a>
<h2>Discussion</h2>
<p>Discuss OWIN on the <a href="http://groups.google.com/group/net-http-abstractions">OWIN Working Group</a> list.</p>
<p>You can also join the <a href="https://gitter.im/owin/owin">chat room</a> to discuss OWIN.</p>
<h2>Wiki</h2>
You can find more project information on the <a href="https://github.com/owin/owin/wiki">wiki</a>.
<a name="projects"></a>
<h2>Projects</h2>
<p>These projects are known to be OWIN-compatible. If you'd like your project listed here, please post on the discussion list or chat room.</p>
<h3>Servers and Hosts</h3>
<ul>
<li><a href="http://katanaproject.codeplex.com/">Katana</a></li>
<li><a href="https://github.com/Bobris/Nowin">Nowin</a></li>
<li><a href="https://github.com/SuaveIO/suave">Suave</a></li>
</ul>
<h3>Frameworks</h3>
<ul>
<li><a href="https://github.com/JasperFx/jasper">Jasper</a></li>
<li><a href="http://nancyfx.org">Nancy</a></li>
<li><a href="http://signalr.net/">SignalR</a></li>
<li><a href="http://aspnetwebstack.codeplex.com/">WebApi</a></li>
<li><a href="http://websharper.com/">WebSharper</a></li>
<li><a href="https://github.com/duovia/duovia-http">DuoVia.Http</a></li>
<li><a href="https://web.simplifynet.dev">Simplify.Web</a></li>
<li><a href="http://wisej.com">Wisej</a></li>
<li><a href="https://github.com/bit-foundation/bit-framework">bit-framework</a></li>
</ul>
<h3>Implementations</h3>
<ul>
<li><a href="http://katanaproject.codeplex.com/">Katana</a></li>
<li><a href="http://docs.freya.io/">Freya</a></li>
<li><a href="http://asp.net/vnext">ASP.NET vNext</a></li>
</ul>
<h3>Out of date or deprecated</h3>
<ul>
<!-- hiding some really old items
<li><a href="https://github.com/panesofglass/frack">Frack</a></li>
<li><a href="https://github.com/kayak/kayak">Kayak</a></li>
<li><a href="https://github.com/remi/knack">Knack</a></li>
<li><a href="https://github.com/FireflyServer/firefly">Firefly</a></li>
<li><a href="https://github.com/owin/gate">Gate</a></li>
-->
<li><a href="https://github.com/panesofglass/dyfrig">Dyfrig</a></li>
<li><a href="https://github.com/markrendle/fix">Fix</a></li>
<li><a href="https://github.com/fractureio/fracture">Fracture</a></li>
<li><a href="http://mvc.fubu-project.org/">FubuMVC</a></li>
<li><a href="https://github.com/markrendle/Simple.Web">Simple.Web</a></li>
<li><a href="https://github.com/i4004/AcspNet">ACSP.NET</a></li>
</ul>
<a name="governance"></a>
<h2>Governance</h2>
The current OWIN Committee members are:
<ul>
<li>Ryan Riley</li>
<li>Scott Koon</li>
<li>Mark Rendle</li>
</ul>
<ul>
<li><a href="html/governance/governancedocument.html">The Structure of the OWIN Project</a></li>
<li><a href="html/governance/decisionprocess.html">The OWIN Decision Making Process</a></li>
</ul>
</div>
</div>
</body>
</html>