<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/paste-git.git/paste/httpserver.py, branch 0.9</title>
<subtitle>github.com: cdent/paste.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste-git.git/'/>
<entry>
<title>Handle a host:port configuration</title>
<updated>2006-03-30T21:58:55+00:00</updated>
<author>
<name>Ian Bicking</name>
<email>ian@ianbicking.org</email>
</author>
<published>2006-03-30T21:58:55+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste-git.git/commit/?id=174dc446afc68fd2f6faeda5a719407c70f51926'/>
<id>174dc446afc68fd2f6faeda5a719407c70f51926</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>moving 'serving on...' inside start_loop as suggested by mitsuhiko on irc</title>
<updated>2006-03-20T18:41:44+00:00</updated>
<author>
<name>cce</name>
<email>cce@localhost</email>
</author>
<published>2006-03-20T18:41:44+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste-git.git/commit/?id=3c5defc2f02dc3328043cb2e48a36589009e9687'/>
<id>3c5defc2f02dc3328043cb2e48a36589009e9687</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- remove default transaction logging feature since this can</title>
<updated>2006-03-08T00:10:34+00:00</updated>
<author>
<name>cce</name>
<email>cce@localhost</email>
</author>
<published>2006-03-08T00:10:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste-git.git/commit/?id=f2a7181c1af7e90d2607a09cc5aed13fdc94c57e'/>
<id>f2a7181c1af7e90d2607a09cc5aed13fdc94c57e</id>
<content type='text'>
  cause DNS timeout issues for some users who do not have
  their network configured correctly
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  cause DNS timeout issues for some users who do not have
  their network configured correctly
</pre>
</div>
</content>
</entry>
<entry>
<title>There are class of unavoidable socket errors that occur when</title>
<updated>2006-03-05T18:10:49+00:00</updated>
<author>
<name>cce</name>
<email>cce@localhost</email>
</author>
<published>2006-03-05T18:10:49+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste-git.git/commit/?id=e90a7b492ab557541506b76788949144dc5a7438'/>
<id>e90a7b492ab557541506b76788949144dc5a7438</id>
<content type='text'>
users click STOP or close their browsers during a SSL connection;
unfortunately pyOpenSSL didn't subclass socket.error for these
classes -- so we put in a work-around.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
users click STOP or close their browsers during a SSL connection;
unfortunately pyOpenSSL didn't subclass socket.error for these
classes -- so we put in a work-around.
</pre>
</div>
</content>
</entry>
<entry>
<title>- misspelled daemon ;(</title>
<updated>2006-01-11T09:51:35+00:00</updated>
<author>
<name>cce</name>
<email>cce@localhost</email>
</author>
<published>2006-01-11T09:51:35+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste-git.git/commit/?id=97531a2526b6851d2d37de54f74191d8ad073391'/>
<id>97531a2526b6851d2d37de54f74191d8ad073391</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- default server_version was in wrong spot ;)</title>
<updated>2006-01-11T09:39:54+00:00</updated>
<author>
<name>cce</name>
<email>cce@localhost</email>
</author>
<published>2006-01-11T09:39:54+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste-git.git/commit/?id=a8242308fdc02a6a1da969b5e93969ee532f33e0'/>
<id>a8242308fdc02a6a1da969b5e93969ee532f33e0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- updated httpserver to have better documentation for serve()</title>
<updated>2006-01-11T08:11:04+00:00</updated>
<author>
<name>cce</name>
<email>cce@localhost</email>
</author>
<published>2006-01-11T08:11:04+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste-git.git/commit/?id=914c9c98ce0183798823923d429b89e4030fcd8e'/>
<id>914c9c98ce0183798823923d429b89e4030fcd8e</id>
<content type='text'>
- added socket_timeout option
- added deamon_threads option
- the port option to serve() can now be a string
- now catching and re-routing most socket errors (which are routine)

- converted reload.py to use a deamon thread
- added comment why os._exit is used
- removed raise_keyboard_interrupt option (this might need
  to be re-added later, just not sure what it does)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- added socket_timeout option
- added deamon_threads option
- the port option to serve() can now be a string
- now catching and re-routing most socket errors (which are routine)

- converted reload.py to use a deamon thread
- added comment why os._exit is used
- removed raise_keyboard_interrupt option (this might need
  to be re-added later, just not sure what it does)
</pre>
</div>
</content>
</entry>
<entry>
<title>- put where deamon_threads option should be (but commented out)</title>
<updated>2006-01-11T06:12:30+00:00</updated>
<author>
<name>cce</name>
<email>cce@localhost</email>
</author>
<published>2006-01-11T06:12:30+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste-git.git/commit/?id=ee283f6ac9aa004e48568b03e406b4fd519bac75'/>
<id>ee283f6ac9aa004e48568b03e406b4fd519bac75</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>always send response even if there isn't a body (dumb mistake)</title>
<updated>2006-01-11T04:10:41+00:00</updated>
<author>
<name>cce</name>
<email>cce@localhost</email>
</author>
<published>2006-01-11T04:10:41+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste-git.git/commit/?id=72b807783c9e82b0cd7b6e6949bf19551b8621e2'/>
<id>72b807783c9e82b0cd7b6e6949bf19551b8621e2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>moving httpserver from util sub-package up a level</title>
<updated>2006-01-09T06:26:36+00:00</updated>
<author>
<name>cce</name>
<email>cce@localhost</email>
</author>
<published>2006-01-09T06:26:36+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste-git.git/commit/?id=07c4b2e3920e1ec4937bc4573dc43472fb7156bd'/>
<id>07c4b2e3920e1ec4937bc4573dc43472fb7156bd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
