From 658296f717a03621330bf766877142d00260954d Mon Sep 17 00:00:00 2001 From: benoitc Date: Fri, 29 Oct 2010 05:42:42 +0200 Subject: [PATCH] bump to 0.11.2 --- debian/changelog | 6 +++ doc/htdocs/configure.html | 88 +++++++++++++++++++-------------------- doc/htdocs/css/index.css | 45 ++++++++++---------- doc/htdocs/css/style.css | 45 ++++++++++---------- doc/htdocs/index.html | 16 +++---- doc/htdocs/news.html | 88 +++++++++++++++++++++++---------------- doc/site/news.rst | 12 ++++++ 7 files changed, 168 insertions(+), 132 deletions(-) diff --git a/debian/changelog b/debian/changelog index 263c7f5c..bc088bcd 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +gunicorn (0.11.2-1) karmic; urgency=low + + * New release. + + -- Benoit Chesneau Thu, 29 Oct 2010 05:42:00 +0100 + gunicorn (0.11.1-1) karmic; urgency=low * New release. diff --git a/doc/htdocs/configure.html b/doc/htdocs/configure.html index 47e52bb4..4343f82f 100644 --- a/doc/htdocs/configure.html +++ b/doc/htdocs/configure.html @@ -116,8 +116,8 @@ for reference on setting at the command line.

config

    -
  • -c FILE, --config FILE
  • -
  • None
  • +
  • -c FILE, --config FILE
  • +
  • None

The path to a Gunicorn config file.

Only has an effect when specified on the command line or as part of an @@ -129,8 +129,8 @@ application specific configuration.

bind

    -
  • -b ADDRESS, --bind ADDRESS
  • -
  • 127.0.0.1:8000
  • +
  • -b ADDRESS, --bind ADDRESS
  • +
  • 127.0.0.1:8000

The socket to bind.

A string of the form: 'HOST', 'HOST:PORT', 'unix:PATH'. An IP is a valid @@ -139,8 +139,8 @@ HOST.

backlog

    -
  • --backlog INT
  • -
  • 2048
  • +
  • --backlog INT
  • +
  • 2048

The maximum number of pending connections.

This refers to the number of clients that can be waiting to be served. @@ -155,8 +155,8 @@ load.

workers

    -
  • -w INT, --workers INT
  • -
  • 1
  • +
  • -w INT, --workers INT
  • +
  • 1

The number of worker process for handling requests.

A positive integer generally in the 2-4 x $(NUM_CORES) range. You'll @@ -166,8 +166,8 @@ application's work load.

worker_connections

    -
  • --worker-connections INT
  • -
  • 1000
  • +
  • --worker-connections INT
  • +
  • 1000

The maximum number of simultaneous clients.

This setting only affects the Eventlet and Gevent worker types.

@@ -197,8 +197,8 @@ gevent class: egg:gunicorn#gevent

max_requests

    -
  • --max-requests INT
  • -
  • 0
  • +
  • --max-requests INT
  • +
  • 0

The maximum number of requests a worker will process before restarting.

Any value greater than zero will limit the number of requests a work @@ -210,8 +210,8 @@ restarts are disabled.

timeout

    -
  • -t INT, --timeout INT
  • -
  • 30
  • +
  • -t INT, --timeout INT
  • +
  • 30

Workers silent for more than this many seconds are killed and restarted.

Generally set to thirty seconds. Only set this noticeably higher if @@ -222,8 +222,8 @@ is not tied to the length of time required to handle a single request.

keepalive

    -
  • --keep-alive INT
  • -
  • 2
  • +
  • --keep-alive INT
  • +
  • 2

The number of seconds to wait for requests on a Keep-Alive connection.

Generally set in the 1-5 seconds range.

@@ -235,7 +235,7 @@ is not tied to the length of time required to handle a single request.

debug

  • --debug
  • -
  • False
  • +
  • False

Turn on debugging in the server.

This limits the number of worker processes to 1 and changes some error @@ -245,7 +245,7 @@ handling that's sent to clients.

spew

  • --spew
  • -
  • False
  • +
  • False

Install a trace function that spews every line executed by the server.

This is the nuclear option.

@@ -257,7 +257,7 @@ handling that's sent to clients.

preload_app

  • --preload
  • -
  • False
  • +
  • False

Load application code before the worker processes are forked.

By preloading an application you can save some RAM resources as well as @@ -269,7 +269,7 @@ restarting workers.

daemon

  • -D, --daemon
  • -
  • False
  • +
  • False

Daemonize the Gunicorn process.

Detaches the server from the controlling terminal and enters the @@ -278,8 +278,8 @@ background.

pidfile

    -
  • -p FILE, --pid FILE
  • -
  • None
  • +
  • -p FILE, --pid FILE
  • +
  • None

A filename to use for the PID file.

If not set, no PID file will be written.

@@ -287,8 +287,8 @@ background.

user

    -
  • -u USER, --user USER
  • -
  • None
  • +
  • -u USER, --user USER
  • +
  • None

Switch worker processes to run as this user.

A valid user id (as an integer) or the name of a user that can be @@ -298,8 +298,8 @@ the worker process user.

group

    -
  • -g GROUP, --group GROUP
  • -
  • None
  • +
  • -g GROUP, --group GROUP
  • +
  • None

Switch worker process to run as this group.

A valid group id (as an integer) or the name of a user that can be @@ -309,8 +309,8 @@ the worker processes group.

umask

    -
  • -m INT, --umask INT
  • -
  • 0
  • +
  • -m INT, --umask INT
  • +
  • 0

A bit mask for the file mode on files written by Gunicorn.

Note that this affects unix socket permissions.

@@ -321,7 +321,7 @@ int(value, 0) (0 means Python guesses the base, so values like "0",

tmp_upload_dir

    -
  • None
  • +
  • None

Directory to store temporary request data as they are read.

This may disappear in the near future.

@@ -335,8 +335,8 @@ temporary directory.

logfile

    -
  • --log-file FILE
  • -
  • -
  • +
  • --log-file FILE
  • +
  • -

The log file to write to.

"-" means log to stdout.

@@ -344,8 +344,8 @@ temporary directory.

loglevel

    -
  • --log-level LEVEL
  • -
  • info
  • +
  • --log-level LEVEL
  • +
  • info

The granularity of log outputs.

Valid level names are:

@@ -363,11 +363,11 @@ temporary directory.

proc_name

    -
  • -n STRING, --name STRING
  • -
  • None
  • +
  • -n STRING, --name STRING
  • +
  • None

A base to use with setproctitle for process naming.

-

This affects things like ps and top. If you're going to be +

This affects things like ps and top. If you're going to be running more than one instance of Gunicorn you'll probably want to set a name to tell them apart. This requires that you install the setproctitle module.

@@ -376,7 +376,7 @@ module.

default_proc_name

    -
  • gunicorn
  • +
  • gunicorn

Internal setting that is adjusted for each type of application.

diff --git a/doc/htdocs/css/index.css b/doc/htdocs/css/index.css index 9f744d8f..d5a64611 100644 --- a/doc/htdocs/css/index.css +++ b/doc/htdocs/css/index.css @@ -1,4 +1,5 @@ -/* line 14, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-0.10.5.pre.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ +@charset "UTF-8"; +/* line 14, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, @@ -18,42 +19,42 @@ table, caption, tbody, tfoot, thead, tr, th, td { vertical-align: baseline; } -/* line 17, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-0.10.5.pre.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ +/* line 17, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ body { line-height: 1; color: black; background: white; } -/* line 19, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-0.10.5.pre.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ +/* line 19, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ ol, ul { list-style: none; } -/* line 21, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-0.10.5.pre.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ +/* line 21, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ table { border-collapse: separate; border-spacing: 0; vertical-align: middle; } -/* line 23, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-0.10.5.pre.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ +/* line 23, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ caption, th, td { text-align: left; font-weight: normal; vertical-align: middle; } -/* line 25, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-0.10.5.pre.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ +/* line 25, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ q, blockquote { quotes: "" ""; } -/* line 96, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-0.10.5.pre.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ +/* line 96, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ q:before, q:after, blockquote:before, blockquote:after { content: ""; } -/* line 27, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-0.10.5.pre.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ +/* line 27, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ a img { border: none; } @@ -84,17 +85,17 @@ a img { width: 620px; } -/* line 4, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-960-plugin-0.9.13/stylesheets/960/_text.sass */ +/* line 4, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-960-plugin-0.10.0/stylesheets/960/_text.sass */ body { font: 13px/1.5 Helvetica, Arial, 'Liberation Sans', FreeSans, sans-serif; } -/* line 6, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-960-plugin-0.9.13/stylesheets/960/_text.sass */ +/* line 6, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-960-plugin-0.10.0/stylesheets/960/_text.sass */ a:focus { outline: 1px dotted invert; } -/* line 8, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-960-plugin-0.9.13/stylesheets/960/_text.sass */ +/* line 8, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-960-plugin-0.10.0/stylesheets/960/_text.sass */ hr { border-color: #cccccc; border-style: solid; @@ -103,52 +104,52 @@ hr { height: 0; } -/* line 14, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-960-plugin-0.9.13/stylesheets/960/_text.sass */ +/* line 14, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-960-plugin-0.10.0/stylesheets/960/_text.sass */ h1 { font-size: 25px; } -/* line 16, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-960-plugin-0.9.13/stylesheets/960/_text.sass */ +/* line 16, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-960-plugin-0.10.0/stylesheets/960/_text.sass */ h2 { font-size: 23px; } -/* line 18, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-960-plugin-0.9.13/stylesheets/960/_text.sass */ +/* line 18, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-960-plugin-0.10.0/stylesheets/960/_text.sass */ h3 { font-size: 21px; } -/* line 20, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-960-plugin-0.9.13/stylesheets/960/_text.sass */ +/* line 20, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-960-plugin-0.10.0/stylesheets/960/_text.sass */ h4 { font-size: 19px; } -/* line 22, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-960-plugin-0.9.13/stylesheets/960/_text.sass */ +/* line 22, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-960-plugin-0.10.0/stylesheets/960/_text.sass */ h5 { font-size: 17px; } -/* line 24, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-960-plugin-0.9.13/stylesheets/960/_text.sass */ +/* line 24, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-960-plugin-0.10.0/stylesheets/960/_text.sass */ h6 { font-size: 15px; } -/* line 26, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-960-plugin-0.9.13/stylesheets/960/_text.sass */ +/* line 26, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-960-plugin-0.10.0/stylesheets/960/_text.sass */ ol { list-style: decimal; } -/* line 28, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-960-plugin-0.9.13/stylesheets/960/_text.sass */ +/* line 28, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-960-plugin-0.10.0/stylesheets/960/_text.sass */ ul { list-style: square; } -/* line 30, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-960-plugin-0.9.13/stylesheets/960/_text.sass */ +/* line 30, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-960-plugin-0.10.0/stylesheets/960/_text.sass */ li { margin-left: 30px; } -/* line 32, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-960-plugin-0.9.13/stylesheets/960/_text.sass */ +/* line 32, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-960-plugin-0.10.0/stylesheets/960/_text.sass */ p, dl, hr, @@ -208,7 +209,7 @@ a, a:visited, a:hover, a:active { margin-right: 10px; list-style: none; } -/* line 11, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-0.10.5.pre.1/frameworks/compass/stylesheets/compass/utilities/lists/_bullets.scss */ +/* line 11, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/utilities/lists/_bullets.scss */ #menu ul li { list-style-image: none; list-style-type: none; diff --git a/doc/htdocs/css/style.css b/doc/htdocs/css/style.css index b3cd7443..fb996434 100644 --- a/doc/htdocs/css/style.css +++ b/doc/htdocs/css/style.css @@ -1,4 +1,5 @@ -/* line 14, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-0.10.5.pre.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ +@charset "UTF-8"; +/* line 14, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, @@ -18,42 +19,42 @@ table, caption, tbody, tfoot, thead, tr, th, td { vertical-align: baseline; } -/* line 17, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-0.10.5.pre.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ +/* line 17, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ body { line-height: 1; color: black; background: white; } -/* line 19, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-0.10.5.pre.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ +/* line 19, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ ol, ul { list-style: none; } -/* line 21, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-0.10.5.pre.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ +/* line 21, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ table { border-collapse: separate; border-spacing: 0; vertical-align: middle; } -/* line 23, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-0.10.5.pre.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ +/* line 23, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ caption, th, td { text-align: left; font-weight: normal; vertical-align: middle; } -/* line 25, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-0.10.5.pre.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ +/* line 25, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ q, blockquote { quotes: "" ""; } -/* line 96, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-0.10.5.pre.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ +/* line 96, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ q:before, q:after, blockquote:before, blockquote:after { content: ""; } -/* line 27, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-0.10.5.pre.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ +/* line 27, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */ a img { border: none; } @@ -84,17 +85,17 @@ a img { width: 620px; } -/* line 4, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-960-plugin-0.9.13/stylesheets/960/_text.sass */ +/* line 4, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-960-plugin-0.10.0/stylesheets/960/_text.sass */ body { font: 13px/1.5 Helvetica, Arial, 'Liberation Sans', FreeSans, sans-serif; } -/* line 6, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-960-plugin-0.9.13/stylesheets/960/_text.sass */ +/* line 6, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-960-plugin-0.10.0/stylesheets/960/_text.sass */ a:focus { outline: 1px dotted invert; } -/* line 8, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-960-plugin-0.9.13/stylesheets/960/_text.sass */ +/* line 8, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-960-plugin-0.10.0/stylesheets/960/_text.sass */ hr { border-color: #cccccc; border-style: solid; @@ -103,52 +104,52 @@ hr { height: 0; } -/* line 14, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-960-plugin-0.9.13/stylesheets/960/_text.sass */ +/* line 14, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-960-plugin-0.10.0/stylesheets/960/_text.sass */ h1 { font-size: 25px; } -/* line 16, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-960-plugin-0.9.13/stylesheets/960/_text.sass */ +/* line 16, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-960-plugin-0.10.0/stylesheets/960/_text.sass */ h2 { font-size: 23px; } -/* line 18, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-960-plugin-0.9.13/stylesheets/960/_text.sass */ +/* line 18, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-960-plugin-0.10.0/stylesheets/960/_text.sass */ h3 { font-size: 21px; } -/* line 20, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-960-plugin-0.9.13/stylesheets/960/_text.sass */ +/* line 20, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-960-plugin-0.10.0/stylesheets/960/_text.sass */ h4 { font-size: 19px; } -/* line 22, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-960-plugin-0.9.13/stylesheets/960/_text.sass */ +/* line 22, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-960-plugin-0.10.0/stylesheets/960/_text.sass */ h5 { font-size: 17px; } -/* line 24, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-960-plugin-0.9.13/stylesheets/960/_text.sass */ +/* line 24, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-960-plugin-0.10.0/stylesheets/960/_text.sass */ h6 { font-size: 15px; } -/* line 26, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-960-plugin-0.9.13/stylesheets/960/_text.sass */ +/* line 26, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-960-plugin-0.10.0/stylesheets/960/_text.sass */ ol { list-style: decimal; } -/* line 28, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-960-plugin-0.9.13/stylesheets/960/_text.sass */ +/* line 28, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-960-plugin-0.10.0/stylesheets/960/_text.sass */ ul { list-style: square; } -/* line 30, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-960-plugin-0.9.13/stylesheets/960/_text.sass */ +/* line 30, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-960-plugin-0.10.0/stylesheets/960/_text.sass */ li { margin-left: 30px; } -/* line 32, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-960-plugin-0.9.13/stylesheets/960/_text.sass */ +/* line 32, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-960-plugin-0.10.0/stylesheets/960/_text.sass */ p, dl, hr, @@ -208,7 +209,7 @@ a, a:visited, a:hover, a:active { margin-right: 10px; list-style: none; } -/* line 11, ../../../../../../../../../usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/compass-0.10.5.pre.1/frameworks/compass/stylesheets/compass/utilities/lists/_bullets.scss */ +/* line 11, ../../../../../../../../../var/lib/gems/1.9.1/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/utilities/lists/_bullets.scss */ #menu ul li { list-style-image: none; list-style-type: none; diff --git a/doc/htdocs/index.html b/doc/htdocs/index.html index 8b22bf42..e8065e2b 100644 --- a/doc/htdocs/index.html +++ b/doc/htdocs/index.html @@ -79,14 +79,16 @@ def app(environ, start_response):
-

Version 0.11.1 - 2010-09-02

+

Version 0.11.2 - 2010-1029

    -
  • Implement max-requests feature to prevent memory leaks
  • -
  • Added 'worker_exit' server hook
  • -
  • Improve Eventlet worker
  • -
  • Fix Django command `run_gunicorn`
  • -
  • Fix the default proc name internal setting
  • -
  • Workaround to prevent Gevent worker to segfault on MacOSX
  • +
  • Add SERVER_SOFTWARE to the os.environ
  • +
  • Add support for django settings environement variable
  • +
  • Add support for logging configuration in Paster ini-files
  • +
  • Improve arbiter notification in asynchronous workers
  • +
  • Display the right error when a worker can't be used
  • +
  • Fix Django support
  • +
  • Fix HUP with Paster applications
  • +
  • Fix readline in wsgi.input