thin 0.5.3-x86-mswin32-60 → 0.5.4-x86-mswin32-60
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of thin might be problematic. Click here for more details.
- data/CHANGELOG +8 -0
- data/benchmark/previous.rb +14 -0
- data/benchmark/simple.rb +3 -38
- data/benchmark/utils.rb +51 -0
- data/bin/thin +1 -1
- data/example/config.ru +9 -2
- data/lib/thin.rb +1 -1
- data/lib/thin/connection.rb +4 -2
- data/lib/thin/response.rb +22 -14
- data/lib/thin/version.rb +2 -2
- data/lib/thin_parser.so +0 -0
- data/spec/response_spec.rb +22 -9
- data/spec/server_spec.rb +8 -3
- metadata +5 -56
- data/doc/rdoc/classes/Process.html +0 -181
- data/doc/rdoc/classes/Rack.html +0 -156
- data/doc/rdoc/classes/Rack/Adapter.html +0 -155
- data/doc/rdoc/classes/Rack/Adapter/Rails.html +0 -289
- data/doc/rdoc/classes/Rack/Adapter/Rails/CGIWrapper.html +0 -359
- data/doc/rdoc/classes/Rack/Handler.html +0 -155
- data/doc/rdoc/classes/Rack/Handler/Thin.html +0 -175
- data/doc/rdoc/classes/Thin.html +0 -164
- data/doc/rdoc/classes/Thin/Cluster.html +0 -399
- data/doc/rdoc/classes/Thin/Connection.html +0 -223
- data/doc/rdoc/classes/Thin/Daemonizable.html +0 -260
- data/doc/rdoc/classes/Thin/Daemonizable/ClassMethods.html +0 -197
- data/doc/rdoc/classes/Thin/Headers.html +0 -238
- data/doc/rdoc/classes/Thin/InvalidRequest.html +0 -144
- data/doc/rdoc/classes/Thin/Logging.html +0 -201
- data/doc/rdoc/classes/Thin/Request.html +0 -231
- data/doc/rdoc/classes/Thin/Response.html +0 -271
- data/doc/rdoc/classes/Thin/Server.html +0 -295
- data/doc/rdoc/classes/Thin/StopServer.html +0 -143
- data/doc/rdoc/created.rid +0 -1
- data/doc/rdoc/files/README.html +0 -226
- data/doc/rdoc/files/bin/thin.html +0 -245
- data/doc/rdoc/files/lib/rack/adapter/rails_rb.html +0 -146
- data/doc/rdoc/files/lib/rack/handler/thin_rb.html +0 -146
- data/doc/rdoc/files/lib/thin/cluster_rb.html +0 -146
- data/doc/rdoc/files/lib/thin/connection_rb.html +0 -145
- data/doc/rdoc/files/lib/thin/daemonizing_rb.html +0 -146
- data/doc/rdoc/files/lib/thin/headers_rb.html +0 -146
- data/doc/rdoc/files/lib/thin/logging_rb.html +0 -146
- data/doc/rdoc/files/lib/thin/request_rb.html +0 -145
- data/doc/rdoc/files/lib/thin/response_rb.html +0 -145
- data/doc/rdoc/files/lib/thin/server_rb.html +0 -145
- data/doc/rdoc/files/lib/thin/statuses_rb.html +0 -145
- data/doc/rdoc/files/lib/thin/version_rb.html +0 -145
- data/doc/rdoc/files/lib/thin_rb.html +0 -152
- data/doc/rdoc/index.html +0 -10
- data/doc/rdoc/logo.gif +0 -0
- data/doc/rdoc/rdoc-style.css +0 -55
@@ -1,238 +0,0 @@
|
|
1
|
-
|
2
|
-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
3
|
-
<html>
|
4
|
-
<head>
|
5
|
-
<title>
|
6
|
-
thin » Class: Thin::Headers
|
7
|
-
</title>
|
8
|
-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
9
|
-
<link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
|
10
|
-
<script language="JavaScript" type="text/javascript">
|
11
|
-
// <![CDATA[
|
12
|
-
|
13
|
-
function toggleSource( id )
|
14
|
-
{
|
15
|
-
var elem
|
16
|
-
var link
|
17
|
-
|
18
|
-
if( document.getElementById )
|
19
|
-
{
|
20
|
-
elem = document.getElementById( id )
|
21
|
-
link = document.getElementById( "l_" + id )
|
22
|
-
}
|
23
|
-
else if ( document.all )
|
24
|
-
{
|
25
|
-
elem = eval( "document.all." + id )
|
26
|
-
link = eval( "document.all.l_" + id )
|
27
|
-
}
|
28
|
-
else
|
29
|
-
return false;
|
30
|
-
|
31
|
-
if( elem.style.display == "block" )
|
32
|
-
{
|
33
|
-
elem.style.display = "none"
|
34
|
-
link.innerHTML = "show source"
|
35
|
-
}
|
36
|
-
else
|
37
|
-
{
|
38
|
-
elem.style.display = "block"
|
39
|
-
link.innerHTML = "hide source"
|
40
|
-
}
|
41
|
-
}
|
42
|
-
|
43
|
-
function openCode( url )
|
44
|
-
{
|
45
|
-
window.open( url, "SOURCE_CODE", "width=400,height=400,scrollbars=yes" )
|
46
|
-
}
|
47
|
-
// ]]>
|
48
|
-
</script>
|
49
|
-
</head>
|
50
|
-
<body>
|
51
|
-
<ul id="menu">
|
52
|
-
<li><a href="/thin/">about</a></li>
|
53
|
-
<li><a href="/thin/download/">download</a></li>
|
54
|
-
<li><a href="/thin/usage/">usage</a></li>
|
55
|
-
<li><a href="/thin/doc/">doc</a></li>
|
56
|
-
<li><a href="http://groups.google.com/group/thin-ruby/">community</a></li>
|
57
|
-
</ul>
|
58
|
-
<div id="sidebar">
|
59
|
-
<h2>Files</h2>
|
60
|
-
<ul class="list">
|
61
|
-
<li><a href="../../files/README.html" value="File: README">README</a></li>
|
62
|
-
<li><a href="../../files/lib/rack/adapter/rails_rb.html" value="File: rails.rb">lib/rack/adapter/rails.rb</a></li>
|
63
|
-
<li><a href="../../files/lib/rack/handler/thin_rb.html" value="File: thin.rb">lib/rack/handler/thin.rb</a></li>
|
64
|
-
<li><a href="../../files/lib/thin/cluster_rb.html" value="File: cluster.rb">lib/thin/cluster.rb</a></li>
|
65
|
-
<li><a href="../../files/lib/thin/connection_rb.html" value="File: connection.rb">lib/thin/connection.rb</a></li>
|
66
|
-
<li><a href="../../files/lib/thin/daemonizing_rb.html" value="File: daemonizing.rb">lib/thin/daemonizing.rb</a></li>
|
67
|
-
<li><a href="../../files/lib/thin/headers_rb.html" value="File: headers.rb">lib/thin/headers.rb</a></li>
|
68
|
-
<li><a href="../../files/lib/thin/logging_rb.html" value="File: logging.rb">lib/thin/logging.rb</a></li>
|
69
|
-
<li><a href="../../files/lib/thin/request_rb.html" value="File: request.rb">lib/thin/request.rb</a></li>
|
70
|
-
<li><a href="../../files/lib/thin/response_rb.html" value="File: response.rb">lib/thin/response.rb</a></li>
|
71
|
-
<li><a href="../../files/lib/thin/server_rb.html" value="File: server.rb">lib/thin/server.rb</a></li>
|
72
|
-
<li><a href="../../files/lib/thin/statuses_rb.html" value="File: statuses.rb">lib/thin/statuses.rb</a></li>
|
73
|
-
<li><a href="../../files/lib/thin/version_rb.html" value="File: version.rb">lib/thin/version.rb</a></li>
|
74
|
-
<li><a href="../../files/lib/thin_rb.html" value="File: thin.rb">lib/thin.rb</a></li>
|
75
|
-
<li><a href="../../files/bin/thin.html" value="File: thin">bin/thin</a></li>
|
76
|
-
</ul>
|
77
|
-
|
78
|
-
<h2>Classes</h2>
|
79
|
-
<ul class="list">
|
80
|
-
<li><a href="../../classes/Rack.html" title="Module: Rack">Rack</a></li>
|
81
|
-
<li><a href="../../classes/Rack/Adapter.html" title="Module: Rack::Adapter">Rack::Adapter</a></li>
|
82
|
-
<li><a href="../../classes/Rack/Adapter/Rails.html" title="Class: Rack::Adapter::Rails">Rack::Adapter::Rails</a></li>
|
83
|
-
<li><a href="../../classes/Rack/Adapter/Rails/CGIWrapper.html" title="Class: Rack::Adapter::Rails::CGIWrapper">Rack::Adapter::Rails::CGIWrapper</a></li>
|
84
|
-
<li><a href="../../classes/Rack/Handler.html" title="Module: Rack::Handler">Rack::Handler</a></li>
|
85
|
-
<li><a href="../../classes/Rack/Handler/Thin.html" title="Class: Rack::Handler::Thin">Rack::Handler::Thin</a></li>
|
86
|
-
<li><a href="../../classes/Thin.html" title="Module: Thin">Thin</a></li>
|
87
|
-
<li><a href="../../classes/Thin/Daemonizable.html" title="Module: Thin::Daemonizable">Thin::Daemonizable</a></li>
|
88
|
-
<li><a href="../../classes/Thin/Daemonizable/ClassMethods.html" title="Module: Thin::Daemonizable::ClassMethods">Thin::Daemonizable::ClassMethods</a></li>
|
89
|
-
<li><a href="../../classes/Thin/VERSION.html" title="Module: Thin::VERSION">Thin::VERSION</a></li>
|
90
|
-
<li><a href="../../classes/Thin/Logging.html" title="Module: Thin::Logging">Thin::Logging</a></li>
|
91
|
-
<li><a href="../../classes/Thin/InvalidRequest.html" title="Class: Thin::InvalidRequest">Thin::InvalidRequest</a></li>
|
92
|
-
<li><a href="../../classes/Thin/StopServer.html" title="Class: Thin::StopServer">Thin::StopServer</a></li>
|
93
|
-
<li><a href="../../classes/Thin/Response.html" title="Class: Thin::Response">Thin::Response</a></li>
|
94
|
-
<li><a href="../../classes/Thin/Headers.html" title="Class: Thin::Headers">Thin::Headers</a></li>
|
95
|
-
<li><a href="../../classes/Thin/Server.html" title="Class: Thin::Server">Thin::Server</a></li>
|
96
|
-
<li><a href="../../classes/Thin/Request.html" title="Class: Thin::Request">Thin::Request</a></li>
|
97
|
-
<li><a href="../../classes/Thin/Connection.html" title="Class: Thin::Connection">Thin::Connection</a></li>
|
98
|
-
<li><a href="../../classes/Thin/Cluster.html" title="Class: Thin::Cluster">Thin::Cluster</a></li>
|
99
|
-
<li><a href="../../classes/Process.html" title="Module: Process">Process</a></li>
|
100
|
-
</ul>
|
101
|
-
</div>
|
102
|
-
<div id="container">
|
103
|
-
<div id="header">
|
104
|
-
<a href="/thin/" title="Home">
|
105
|
-
<img id="logo" src="../../logo.gif" />
|
106
|
-
</a>
|
107
|
-
<h2 id="tag_line">A fast and very simple Ruby web server</h2>
|
108
|
-
</div>
|
109
|
-
|
110
|
-
<div id="content">
|
111
|
-
<h2>Class: Thin::Headers</h2>
|
112
|
-
|
113
|
-
|
114
|
-
<div id="Thin::Headers" class="page_shade">
|
115
|
-
<div class="page">
|
116
|
-
<h3>Class Thin::Headers < Object</h3>
|
117
|
-
|
118
|
-
<span class="path">(in files
|
119
|
-
<a href="../../files/lib/thin/headers_rb.html">lib/thin/headers.rb</a>
|
120
|
-
)</span>
|
121
|
-
|
122
|
-
<p>
|
123
|
-
Acts like a Hash, but allows duplicated keys
|
124
|
-
</p>
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
<h2 class="ruled">Methods</h2>
|
131
|
-
<h4 class="ruled">
|
132
|
-
<span class="method-type" title="Public Class method">Public Class</span>
|
133
|
-
<strong><a name="M000036" href="#M000036" title="Permalink to Public Class method: new">new()</a></strong>
|
134
|
-
</h4>
|
135
|
-
|
136
|
-
|
137
|
-
<div class="sourcecode">
|
138
|
-
<p class="source-link">[ <a href="javascript:toggleSource('M000036_source')" id="l_M000036_source">show source</a> ]</p>
|
139
|
-
<div id="M000036_source" class="dyn-source">
|
140
|
-
<pre>
|
141
|
-
<span class="ruby-comment cmt"># File lib/thin/headers.rb, line 7</span>
|
142
|
-
7: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">initialize</span>
|
143
|
-
8: <span class="ruby-ivar">@sent</span> = {}
|
144
|
-
9: <span class="ruby-ivar">@items</span> = []
|
145
|
-
10: <span class="ruby-keyword kw">end</span>
|
146
|
-
</pre>
|
147
|
-
</div>
|
148
|
-
</div>
|
149
|
-
<h4 class="ruled">
|
150
|
-
<span class="method-type" title="Public Instance method">Public Instance</span>
|
151
|
-
<strong><a name="M000038" href="#M000038" title="Permalink to Public Instance method: []">[](key)</a></strong>
|
152
|
-
</h4>
|
153
|
-
|
154
|
-
|
155
|
-
<div class="sourcecode">
|
156
|
-
<p class="source-link">[ <a href="javascript:toggleSource('M000038_source')" id="l_M000038_source">show source</a> ]</p>
|
157
|
-
<div id="M000038_source" class="dyn-source">
|
158
|
-
<pre>
|
159
|
-
<span class="ruby-comment cmt"># File lib/thin/headers.rb, line 23</span>
|
160
|
-
23: <span class="ruby-keyword kw">def</span> <span class="ruby-operator">[]</span>(<span class="ruby-identifier">key</span>)
|
161
|
-
24: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">item</span> = <span class="ruby-ivar">@items</span>.<span class="ruby-identifier">assoc</span>(<span class="ruby-identifier">key</span>)
|
162
|
-
25: <span class="ruby-identifier">item</span>[<span class="ruby-value">1</span>]
|
163
|
-
26: <span class="ruby-keyword kw">end</span>
|
164
|
-
27: <span class="ruby-keyword kw">end</span>
|
165
|
-
</pre>
|
166
|
-
</div>
|
167
|
-
</div>
|
168
|
-
<h4 class="ruled">
|
169
|
-
<span class="method-type" title="Public Instance method">Public Instance</span>
|
170
|
-
<strong><a name="M000037" href="#M000037" title="Permalink to Public Instance method: []=">[]=(key, value)</a></strong>
|
171
|
-
</h4>
|
172
|
-
|
173
|
-
|
174
|
-
<div class="sourcecode">
|
175
|
-
<p class="source-link">[ <a href="javascript:toggleSource('M000037_source')" id="l_M000037_source">show source</a> ]</p>
|
176
|
-
<div id="M000037_source" class="dyn-source">
|
177
|
-
<pre>
|
178
|
-
<span class="ruby-comment cmt"># File lib/thin/headers.rb, line 12</span>
|
179
|
-
12: <span class="ruby-keyword kw">def</span> <span class="ruby-operator">[]=</span>(<span class="ruby-identifier">key</span>, <span class="ruby-identifier">value</span>)
|
180
|
-
13: <span class="ruby-keyword kw">if</span> <span class="ruby-ivar">@sent</span>.<span class="ruby-identifier">has_key?</span>(<span class="ruby-identifier">key</span>) <span class="ruby-operator">&&</span> <span class="ruby-operator">!</span><span class="ruby-constant">ALLOWED_DUPLICATES</span>.<span class="ruby-identifier">include?</span>(<span class="ruby-identifier">key</span>)
|
181
|
-
14: <span class="ruby-comment cmt"># If we don't allow duplicate for that field</span>
|
182
|
-
15: <span class="ruby-comment cmt"># we overwrite the one that is already there</span>
|
183
|
-
16: <span class="ruby-ivar">@items</span>.<span class="ruby-identifier">assoc</span>(<span class="ruby-identifier">key</span>)[<span class="ruby-value">1</span>] = <span class="ruby-identifier">value</span>
|
184
|
-
17: <span class="ruby-keyword kw">else</span>
|
185
|
-
18: <span class="ruby-ivar">@sent</span>[<span class="ruby-identifier">key</span>] = <span class="ruby-keyword kw">true</span>
|
186
|
-
19: <span class="ruby-ivar">@items</span> <span class="ruby-operator"><<</span> [<span class="ruby-identifier">key</span>, <span class="ruby-identifier">value</span>]
|
187
|
-
20: <span class="ruby-keyword kw">end</span>
|
188
|
-
21: <span class="ruby-keyword kw">end</span>
|
189
|
-
</pre>
|
190
|
-
</div>
|
191
|
-
</div>
|
192
|
-
<h4 class="ruled">
|
193
|
-
<span class="method-type" title="Public Instance method">Public Instance</span>
|
194
|
-
<strong><a name="M000039" href="#M000039" title="Permalink to Public Instance method: size">size()</a></strong>
|
195
|
-
</h4>
|
196
|
-
|
197
|
-
|
198
|
-
<div class="sourcecode">
|
199
|
-
<p class="source-link">[ <a href="javascript:toggleSource('M000039_source')" id="l_M000039_source">show source</a> ]</p>
|
200
|
-
<div id="M000039_source" class="dyn-source">
|
201
|
-
<pre>
|
202
|
-
<span class="ruby-comment cmt"># File lib/thin/headers.rb, line 29</span>
|
203
|
-
29: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">size</span>
|
204
|
-
30: <span class="ruby-ivar">@items</span>.<span class="ruby-identifier">size</span>
|
205
|
-
31: <span class="ruby-keyword kw">end</span>
|
206
|
-
</pre>
|
207
|
-
</div>
|
208
|
-
</div>
|
209
|
-
<h4 class="ruled">
|
210
|
-
<span class="method-type" title="Public Instance method">Public Instance</span>
|
211
|
-
<strong><a name="M000040" href="#M000040" title="Permalink to Public Instance method: to_s">to_s()</a></strong>
|
212
|
-
</h4>
|
213
|
-
|
214
|
-
|
215
|
-
<div class="sourcecode">
|
216
|
-
<p class="source-link">[ <a href="javascript:toggleSource('M000040_source')" id="l_M000040_source">show source</a> ]</p>
|
217
|
-
<div id="M000040_source" class="dyn-source">
|
218
|
-
<pre>
|
219
|
-
<span class="ruby-comment cmt"># File lib/thin/headers.rb, line 33</span>
|
220
|
-
33: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">to_s</span>
|
221
|
-
34: <span class="ruby-ivar">@items</span>.<span class="ruby-identifier">inject</span>(<span class="ruby-value str">''</span>) { <span class="ruby-operator">|</span><span class="ruby-identifier">out</span>, (<span class="ruby-identifier">name</span>, <span class="ruby-identifier">value</span>)<span class="ruby-operator">|</span> <span class="ruby-identifier">out</span> <span class="ruby-operator"><<</span> <span class="ruby-constant">HEADER_FORMAT</span> <span class="ruby-operator">%</span> [<span class="ruby-identifier">name</span>, <span class="ruby-identifier">value</span>] }
|
222
|
-
35: <span class="ruby-keyword kw">end</span>
|
223
|
-
</pre>
|
224
|
-
</div>
|
225
|
-
</div>
|
226
|
-
|
227
|
-
</div>
|
228
|
-
</div>
|
229
|
-
|
230
|
-
|
231
|
-
</div>
|
232
|
-
</div>
|
233
|
-
<div id="footer">
|
234
|
-
<hr />
|
235
|
-
© <a href="http://macournoyer.com">Marc-André Cournoyer</a>
|
236
|
-
</div>
|
237
|
-
</body>
|
238
|
-
</html>
|
@@ -1,144 +0,0 @@
|
|
1
|
-
|
2
|
-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
3
|
-
<html>
|
4
|
-
<head>
|
5
|
-
<title>
|
6
|
-
thin » Class: Thin::InvalidRequest
|
7
|
-
</title>
|
8
|
-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
9
|
-
<link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
|
10
|
-
<script language="JavaScript" type="text/javascript">
|
11
|
-
// <![CDATA[
|
12
|
-
|
13
|
-
function toggleSource( id )
|
14
|
-
{
|
15
|
-
var elem
|
16
|
-
var link
|
17
|
-
|
18
|
-
if( document.getElementById )
|
19
|
-
{
|
20
|
-
elem = document.getElementById( id )
|
21
|
-
link = document.getElementById( "l_" + id )
|
22
|
-
}
|
23
|
-
else if ( document.all )
|
24
|
-
{
|
25
|
-
elem = eval( "document.all." + id )
|
26
|
-
link = eval( "document.all.l_" + id )
|
27
|
-
}
|
28
|
-
else
|
29
|
-
return false;
|
30
|
-
|
31
|
-
if( elem.style.display == "block" )
|
32
|
-
{
|
33
|
-
elem.style.display = "none"
|
34
|
-
link.innerHTML = "show source"
|
35
|
-
}
|
36
|
-
else
|
37
|
-
{
|
38
|
-
elem.style.display = "block"
|
39
|
-
link.innerHTML = "hide source"
|
40
|
-
}
|
41
|
-
}
|
42
|
-
|
43
|
-
function openCode( url )
|
44
|
-
{
|
45
|
-
window.open( url, "SOURCE_CODE", "width=400,height=400,scrollbars=yes" )
|
46
|
-
}
|
47
|
-
// ]]>
|
48
|
-
</script>
|
49
|
-
</head>
|
50
|
-
<body>
|
51
|
-
<ul id="menu">
|
52
|
-
<li><a href="/thin/">about</a></li>
|
53
|
-
<li><a href="/thin/download/">download</a></li>
|
54
|
-
<li><a href="/thin/usage/">usage</a></li>
|
55
|
-
<li><a href="/thin/doc/">doc</a></li>
|
56
|
-
<li><a href="http://groups.google.com/group/thin-ruby/">community</a></li>
|
57
|
-
</ul>
|
58
|
-
<div id="sidebar">
|
59
|
-
<h2>Files</h2>
|
60
|
-
<ul class="list">
|
61
|
-
<li><a href="../../files/README.html" value="File: README">README</a></li>
|
62
|
-
<li><a href="../../files/lib/rack/adapter/rails_rb.html" value="File: rails.rb">lib/rack/adapter/rails.rb</a></li>
|
63
|
-
<li><a href="../../files/lib/rack/handler/thin_rb.html" value="File: thin.rb">lib/rack/handler/thin.rb</a></li>
|
64
|
-
<li><a href="../../files/lib/thin/cluster_rb.html" value="File: cluster.rb">lib/thin/cluster.rb</a></li>
|
65
|
-
<li><a href="../../files/lib/thin/connection_rb.html" value="File: connection.rb">lib/thin/connection.rb</a></li>
|
66
|
-
<li><a href="../../files/lib/thin/daemonizing_rb.html" value="File: daemonizing.rb">lib/thin/daemonizing.rb</a></li>
|
67
|
-
<li><a href="../../files/lib/thin/headers_rb.html" value="File: headers.rb">lib/thin/headers.rb</a></li>
|
68
|
-
<li><a href="../../files/lib/thin/logging_rb.html" value="File: logging.rb">lib/thin/logging.rb</a></li>
|
69
|
-
<li><a href="../../files/lib/thin/request_rb.html" value="File: request.rb">lib/thin/request.rb</a></li>
|
70
|
-
<li><a href="../../files/lib/thin/response_rb.html" value="File: response.rb">lib/thin/response.rb</a></li>
|
71
|
-
<li><a href="../../files/lib/thin/server_rb.html" value="File: server.rb">lib/thin/server.rb</a></li>
|
72
|
-
<li><a href="../../files/lib/thin/statuses_rb.html" value="File: statuses.rb">lib/thin/statuses.rb</a></li>
|
73
|
-
<li><a href="../../files/lib/thin/version_rb.html" value="File: version.rb">lib/thin/version.rb</a></li>
|
74
|
-
<li><a href="../../files/lib/thin_rb.html" value="File: thin.rb">lib/thin.rb</a></li>
|
75
|
-
<li><a href="../../files/bin/thin.html" value="File: thin">bin/thin</a></li>
|
76
|
-
</ul>
|
77
|
-
|
78
|
-
<h2>Classes</h2>
|
79
|
-
<ul class="list">
|
80
|
-
<li><a href="../../classes/Rack.html" title="Module: Rack">Rack</a></li>
|
81
|
-
<li><a href="../../classes/Rack/Adapter.html" title="Module: Rack::Adapter">Rack::Adapter</a></li>
|
82
|
-
<li><a href="../../classes/Rack/Adapter/Rails.html" title="Class: Rack::Adapter::Rails">Rack::Adapter::Rails</a></li>
|
83
|
-
<li><a href="../../classes/Rack/Adapter/Rails/CGIWrapper.html" title="Class: Rack::Adapter::Rails::CGIWrapper">Rack::Adapter::Rails::CGIWrapper</a></li>
|
84
|
-
<li><a href="../../classes/Rack/Handler.html" title="Module: Rack::Handler">Rack::Handler</a></li>
|
85
|
-
<li><a href="../../classes/Rack/Handler/Thin.html" title="Class: Rack::Handler::Thin">Rack::Handler::Thin</a></li>
|
86
|
-
<li><a href="../../classes/Thin.html" title="Module: Thin">Thin</a></li>
|
87
|
-
<li><a href="../../classes/Thin/Daemonizable.html" title="Module: Thin::Daemonizable">Thin::Daemonizable</a></li>
|
88
|
-
<li><a href="../../classes/Thin/Daemonizable/ClassMethods.html" title="Module: Thin::Daemonizable::ClassMethods">Thin::Daemonizable::ClassMethods</a></li>
|
89
|
-
<li><a href="../../classes/Thin/VERSION.html" title="Module: Thin::VERSION">Thin::VERSION</a></li>
|
90
|
-
<li><a href="../../classes/Thin/Logging.html" title="Module: Thin::Logging">Thin::Logging</a></li>
|
91
|
-
<li><a href="../../classes/Thin/InvalidRequest.html" title="Class: Thin::InvalidRequest">Thin::InvalidRequest</a></li>
|
92
|
-
<li><a href="../../classes/Thin/StopServer.html" title="Class: Thin::StopServer">Thin::StopServer</a></li>
|
93
|
-
<li><a href="../../classes/Thin/Response.html" title="Class: Thin::Response">Thin::Response</a></li>
|
94
|
-
<li><a href="../../classes/Thin/Headers.html" title="Class: Thin::Headers">Thin::Headers</a></li>
|
95
|
-
<li><a href="../../classes/Thin/Server.html" title="Class: Thin::Server">Thin::Server</a></li>
|
96
|
-
<li><a href="../../classes/Thin/Request.html" title="Class: Thin::Request">Thin::Request</a></li>
|
97
|
-
<li><a href="../../classes/Thin/Connection.html" title="Class: Thin::Connection">Thin::Connection</a></li>
|
98
|
-
<li><a href="../../classes/Thin/Cluster.html" title="Class: Thin::Cluster">Thin::Cluster</a></li>
|
99
|
-
<li><a href="../../classes/Process.html" title="Module: Process">Process</a></li>
|
100
|
-
</ul>
|
101
|
-
</div>
|
102
|
-
<div id="container">
|
103
|
-
<div id="header">
|
104
|
-
<a href="/thin/" title="Home">
|
105
|
-
<img id="logo" src="../../logo.gif" />
|
106
|
-
</a>
|
107
|
-
<h2 id="tag_line">A fast and very simple Ruby web server</h2>
|
108
|
-
</div>
|
109
|
-
|
110
|
-
<div id="content">
|
111
|
-
<h2>Class: Thin::InvalidRequest</h2>
|
112
|
-
|
113
|
-
|
114
|
-
<div id="Thin::InvalidRequest" class="page_shade">
|
115
|
-
<div class="page">
|
116
|
-
<h3>Class Thin::InvalidRequest < IOError</h3>
|
117
|
-
|
118
|
-
<span class="path">(in files
|
119
|
-
<a href="../../files/lib/thin/request_rb.html">lib/thin/request.rb</a>
|
120
|
-
)</span>
|
121
|
-
|
122
|
-
<p>
|
123
|
-
Raised when an incoming request is not valid and the server can not process
|
124
|
-
it.
|
125
|
-
</p>
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
</div>
|
134
|
-
</div>
|
135
|
-
|
136
|
-
|
137
|
-
</div>
|
138
|
-
</div>
|
139
|
-
<div id="footer">
|
140
|
-
<hr />
|
141
|
-
© <a href="http://macournoyer.com">Marc-André Cournoyer</a>
|
142
|
-
</div>
|
143
|
-
</body>
|
144
|
-
</html>
|
@@ -1,201 +0,0 @@
|
|
1
|
-
|
2
|
-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
3
|
-
<html>
|
4
|
-
<head>
|
5
|
-
<title>
|
6
|
-
thin » Module: Thin::Logging
|
7
|
-
</title>
|
8
|
-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
9
|
-
<link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
|
10
|
-
<script language="JavaScript" type="text/javascript">
|
11
|
-
// <![CDATA[
|
12
|
-
|
13
|
-
function toggleSource( id )
|
14
|
-
{
|
15
|
-
var elem
|
16
|
-
var link
|
17
|
-
|
18
|
-
if( document.getElementById )
|
19
|
-
{
|
20
|
-
elem = document.getElementById( id )
|
21
|
-
link = document.getElementById( "l_" + id )
|
22
|
-
}
|
23
|
-
else if ( document.all )
|
24
|
-
{
|
25
|
-
elem = eval( "document.all." + id )
|
26
|
-
link = eval( "document.all.l_" + id )
|
27
|
-
}
|
28
|
-
else
|
29
|
-
return false;
|
30
|
-
|
31
|
-
if( elem.style.display == "block" )
|
32
|
-
{
|
33
|
-
elem.style.display = "none"
|
34
|
-
link.innerHTML = "show source"
|
35
|
-
}
|
36
|
-
else
|
37
|
-
{
|
38
|
-
elem.style.display = "block"
|
39
|
-
link.innerHTML = "hide source"
|
40
|
-
}
|
41
|
-
}
|
42
|
-
|
43
|
-
function openCode( url )
|
44
|
-
{
|
45
|
-
window.open( url, "SOURCE_CODE", "width=400,height=400,scrollbars=yes" )
|
46
|
-
}
|
47
|
-
// ]]>
|
48
|
-
</script>
|
49
|
-
</head>
|
50
|
-
<body>
|
51
|
-
<ul id="menu">
|
52
|
-
<li><a href="/thin/">about</a></li>
|
53
|
-
<li><a href="/thin/download/">download</a></li>
|
54
|
-
<li><a href="/thin/usage/">usage</a></li>
|
55
|
-
<li><a href="/thin/doc/">doc</a></li>
|
56
|
-
<li><a href="http://groups.google.com/group/thin-ruby/">community</a></li>
|
57
|
-
</ul>
|
58
|
-
<div id="sidebar">
|
59
|
-
<h2>Files</h2>
|
60
|
-
<ul class="list">
|
61
|
-
<li><a href="../../files/README.html" value="File: README">README</a></li>
|
62
|
-
<li><a href="../../files/lib/rack/adapter/rails_rb.html" value="File: rails.rb">lib/rack/adapter/rails.rb</a></li>
|
63
|
-
<li><a href="../../files/lib/rack/handler/thin_rb.html" value="File: thin.rb">lib/rack/handler/thin.rb</a></li>
|
64
|
-
<li><a href="../../files/lib/thin/cluster_rb.html" value="File: cluster.rb">lib/thin/cluster.rb</a></li>
|
65
|
-
<li><a href="../../files/lib/thin/connection_rb.html" value="File: connection.rb">lib/thin/connection.rb</a></li>
|
66
|
-
<li><a href="../../files/lib/thin/daemonizing_rb.html" value="File: daemonizing.rb">lib/thin/daemonizing.rb</a></li>
|
67
|
-
<li><a href="../../files/lib/thin/headers_rb.html" value="File: headers.rb">lib/thin/headers.rb</a></li>
|
68
|
-
<li><a href="../../files/lib/thin/logging_rb.html" value="File: logging.rb">lib/thin/logging.rb</a></li>
|
69
|
-
<li><a href="../../files/lib/thin/request_rb.html" value="File: request.rb">lib/thin/request.rb</a></li>
|
70
|
-
<li><a href="../../files/lib/thin/response_rb.html" value="File: response.rb">lib/thin/response.rb</a></li>
|
71
|
-
<li><a href="../../files/lib/thin/server_rb.html" value="File: server.rb">lib/thin/server.rb</a></li>
|
72
|
-
<li><a href="../../files/lib/thin/statuses_rb.html" value="File: statuses.rb">lib/thin/statuses.rb</a></li>
|
73
|
-
<li><a href="../../files/lib/thin/version_rb.html" value="File: version.rb">lib/thin/version.rb</a></li>
|
74
|
-
<li><a href="../../files/lib/thin_rb.html" value="File: thin.rb">lib/thin.rb</a></li>
|
75
|
-
<li><a href="../../files/bin/thin.html" value="File: thin">bin/thin</a></li>
|
76
|
-
</ul>
|
77
|
-
|
78
|
-
<h2>Classes</h2>
|
79
|
-
<ul class="list">
|
80
|
-
<li><a href="../../classes/Rack.html" title="Module: Rack">Rack</a></li>
|
81
|
-
<li><a href="../../classes/Rack/Adapter.html" title="Module: Rack::Adapter">Rack::Adapter</a></li>
|
82
|
-
<li><a href="../../classes/Rack/Adapter/Rails.html" title="Class: Rack::Adapter::Rails">Rack::Adapter::Rails</a></li>
|
83
|
-
<li><a href="../../classes/Rack/Adapter/Rails/CGIWrapper.html" title="Class: Rack::Adapter::Rails::CGIWrapper">Rack::Adapter::Rails::CGIWrapper</a></li>
|
84
|
-
<li><a href="../../classes/Rack/Handler.html" title="Module: Rack::Handler">Rack::Handler</a></li>
|
85
|
-
<li><a href="../../classes/Rack/Handler/Thin.html" title="Class: Rack::Handler::Thin">Rack::Handler::Thin</a></li>
|
86
|
-
<li><a href="../../classes/Thin.html" title="Module: Thin">Thin</a></li>
|
87
|
-
<li><a href="../../classes/Thin/Daemonizable.html" title="Module: Thin::Daemonizable">Thin::Daemonizable</a></li>
|
88
|
-
<li><a href="../../classes/Thin/Daemonizable/ClassMethods.html" title="Module: Thin::Daemonizable::ClassMethods">Thin::Daemonizable::ClassMethods</a></li>
|
89
|
-
<li><a href="../../classes/Thin/VERSION.html" title="Module: Thin::VERSION">Thin::VERSION</a></li>
|
90
|
-
<li><a href="../../classes/Thin/Logging.html" title="Module: Thin::Logging">Thin::Logging</a></li>
|
91
|
-
<li><a href="../../classes/Thin/InvalidRequest.html" title="Class: Thin::InvalidRequest">Thin::InvalidRequest</a></li>
|
92
|
-
<li><a href="../../classes/Thin/StopServer.html" title="Class: Thin::StopServer">Thin::StopServer</a></li>
|
93
|
-
<li><a href="../../classes/Thin/Response.html" title="Class: Thin::Response">Thin::Response</a></li>
|
94
|
-
<li><a href="../../classes/Thin/Headers.html" title="Class: Thin::Headers">Thin::Headers</a></li>
|
95
|
-
<li><a href="../../classes/Thin/Server.html" title="Class: Thin::Server">Thin::Server</a></li>
|
96
|
-
<li><a href="../../classes/Thin/Request.html" title="Class: Thin::Request">Thin::Request</a></li>
|
97
|
-
<li><a href="../../classes/Thin/Connection.html" title="Class: Thin::Connection">Thin::Connection</a></li>
|
98
|
-
<li><a href="../../classes/Thin/Cluster.html" title="Class: Thin::Cluster">Thin::Cluster</a></li>
|
99
|
-
<li><a href="../../classes/Process.html" title="Module: Process">Process</a></li>
|
100
|
-
</ul>
|
101
|
-
</div>
|
102
|
-
<div id="container">
|
103
|
-
<div id="header">
|
104
|
-
<a href="/thin/" title="Home">
|
105
|
-
<img id="logo" src="../../logo.gif" />
|
106
|
-
</a>
|
107
|
-
<h2 id="tag_line">A fast and very simple Ruby web server</h2>
|
108
|
-
</div>
|
109
|
-
|
110
|
-
<div id="content">
|
111
|
-
<h2>Module: Thin::Logging</h2>
|
112
|
-
|
113
|
-
|
114
|
-
<div id="Thin::Logging" class="page_shade">
|
115
|
-
<div class="page">
|
116
|
-
<h3>Module Thin::Logging < Object</h3>
|
117
|
-
|
118
|
-
<span class="path">(in files
|
119
|
-
<a href="../../files/lib/thin/logging_rb.html">lib/thin/logging.rb</a>
|
120
|
-
)</span>
|
121
|
-
|
122
|
-
<p>
|
123
|
-
To be included into classes to allow some basic logging that can be
|
124
|
-
silented (<tt>silent</tt>) or made more verbose ($DEBUG=true).
|
125
|
-
</p>
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
<h2 class="ruled">Methods</h2>
|
132
|
-
<h4 class="ruled">
|
133
|
-
<span class="method-type" title="Protected Instance method">Protected Instance</span>
|
134
|
-
<strong><a name="M000026" href="#M000026" title="Permalink to Protected Instance method: log">log(msg)</a></strong>
|
135
|
-
</h4>
|
136
|
-
|
137
|
-
<p>
|
138
|
-
Log a message to the console
|
139
|
-
</p>
|
140
|
-
|
141
|
-
<div class="sourcecode">
|
142
|
-
<p class="source-link">[ <a href="javascript:toggleSource('M000026_source')" id="l_M000026_source">show source</a> ]</p>
|
143
|
-
<div id="M000026_source" class="dyn-source">
|
144
|
-
<pre>
|
145
|
-
<span class="ruby-comment cmt"># File lib/thin/logging.rb, line 10</span>
|
146
|
-
10: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">log</span>(<span class="ruby-identifier">msg</span>)
|
147
|
-
11: <span class="ruby-identifier">puts</span> <span class="ruby-identifier">msg</span> <span class="ruby-keyword kw">unless</span> <span class="ruby-ivar">@silent</span>
|
148
|
-
12: <span class="ruby-keyword kw">end</span>
|
149
|
-
</pre>
|
150
|
-
</div>
|
151
|
-
</div>
|
152
|
-
<h4 class="ruled">
|
153
|
-
<span class="method-type" title="Protected Instance method">Protected Instance</span>
|
154
|
-
<strong><a name="M000028" href="#M000028" title="Permalink to Protected Instance method: log_error">log_error(e)</a></strong>
|
155
|
-
</h4>
|
156
|
-
|
157
|
-
|
158
|
-
<div class="sourcecode">
|
159
|
-
<p class="source-link">[ <a href="javascript:toggleSource('M000028_source')" id="l_M000028_source">show source</a> ]</p>
|
160
|
-
<div id="M000028_source" class="dyn-source">
|
161
|
-
<pre>
|
162
|
-
<span class="ruby-comment cmt"># File lib/thin/logging.rb, line 19</span>
|
163
|
-
19: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">log_error</span>(<span class="ruby-identifier">e</span>)
|
164
|
-
20: <span class="ruby-identifier">trace</span> { <span class="ruby-node">"#{e}\n\t"</span> <span class="ruby-operator">+</span> <span class="ruby-identifier">e</span>.<span class="ruby-identifier">backtrace</span>.<span class="ruby-identifier">join</span>(<span class="ruby-value str">"\n\t"</span>) }
|
165
|
-
21: <span class="ruby-keyword kw">end</span>
|
166
|
-
</pre>
|
167
|
-
</div>
|
168
|
-
</div>
|
169
|
-
<h4 class="ruled">
|
170
|
-
<span class="method-type" title="Protected Instance method">Protected Instance</span>
|
171
|
-
<strong><a name="M000027" href="#M000027" title="Permalink to Protected Instance method: trace">trace(msg=nil) {|if $DEBUG && !@silent| ...}</a></strong>
|
172
|
-
</h4>
|
173
|
-
|
174
|
-
<p>
|
175
|
-
Log a message to the console if tracing is activated
|
176
|
-
</p>
|
177
|
-
|
178
|
-
<div class="sourcecode">
|
179
|
-
<p class="source-link">[ <a href="javascript:toggleSource('M000027_source')" id="l_M000027_source">show source</a> ]</p>
|
180
|
-
<div id="M000027_source" class="dyn-source">
|
181
|
-
<pre>
|
182
|
-
<span class="ruby-comment cmt"># File lib/thin/logging.rb, line 15</span>
|
183
|
-
15: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">trace</span>(<span class="ruby-identifier">msg</span>=<span class="ruby-keyword kw">nil</span>)
|
184
|
-
16: <span class="ruby-identifier">puts</span> <span class="ruby-identifier">msg</span> <span class="ruby-operator">||</span> <span class="ruby-keyword kw">yield</span> <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">$DEBUG</span> <span class="ruby-operator">&&</span> <span class="ruby-operator">!</span><span class="ruby-ivar">@silent</span>
|
185
|
-
17: <span class="ruby-keyword kw">end</span>
|
186
|
-
</pre>
|
187
|
-
</div>
|
188
|
-
</div>
|
189
|
-
|
190
|
-
</div>
|
191
|
-
</div>
|
192
|
-
|
193
|
-
|
194
|
-
</div>
|
195
|
-
</div>
|
196
|
-
<div id="footer">
|
197
|
-
<hr />
|
198
|
-
© <a href="http://macournoyer.com">Marc-André Cournoyer</a>
|
199
|
-
</div>
|
200
|
-
</body>
|
201
|
-
</html>
|