Skip to content

Commit

Permalink
releng work for the v0.34 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
agentzh committed Sep 14, 2010
1 parent 78ceb26 commit 4e19f75
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 15 deletions.
22 changes: 13 additions & 9 deletions README
Expand Up @@ -6,9 +6,9 @@ Name
installation instructions.

Version
This document describes echo-nginx-module v0.33
(<http://github.com/agentzh/echo-nginx-module/tarball/v0.33 >) released
on June 8, 2010.
This document describes echo-nginx-module v0.34
(<http://github.com/agentzh/echo-nginx-module/tarball/v0.34 >) released
on September 14, 2010.

Synopsis
location /hello {
Expand Down Expand Up @@ -508,8 +508,7 @@ Content Handler Directives
See the documentation of echo_sleep for more detail.

Behind the curtain, it calls the ngx_msleep macro provided by the Nginx
core which maps to usleep on POSIX-compliant systems or WinSock select
on Windows.
core which maps to usleep on POSIX-compliant systems.

Note that this directive will block the current Nginx worker process
completely while being executed, so never use it in production
Expand Down Expand Up @@ -1293,12 +1292,12 @@ Variables

Installation
Grab the nginx source code from nginx.net (<http://nginx.net/ >), for
example, the version 0.8.28 (see nginx compatibility), and then build
example, the version 0.8.41 (see nginx compatibility), and then build
the source with this module:

$ wget 'http://sysoev.ru/nginx/nginx-0.8.28.tar.gz'
$ tar -xzvf nginx-0.8.28.tar.gz
$ cd nginx-0.8.28/
$ wget 'http://sysoev.ru/nginx/nginx-0.8.41.tar.gz'
$ tar -xzvf nginx-0.8.41.tar.gz
$ cd nginx-0.8.41/

# Here we assume you would install you nginx under /opt/nginx/.
$ ./configure --prefix=/opt/nginx \
Expand Down Expand Up @@ -1368,6 +1367,11 @@ Source Repository
(<http://github.com/agentzh/echo-nginx-module >).

ChangeLog
v0.34
* we no longer use the problematic "ngx_strXcmp" macros in our source
because it may cause invalid reads and thus segmentation faults.
thanks Piotr Sikora.

v0.33
* fixed compatibility with nginx 0.7.66+ because the ngx_time_update
macro's parameter list has changed. Thanks Guang Feng (蔡镜明).
Expand Down
15 changes: 9 additions & 6 deletions doc/manpage.wiki
Expand Up @@ -6,7 +6,7 @@

= Version =

This document describes echo-nginx-module [http://github.com/agentzh/echo-nginx-module/tarball/v0.33 v0.33] released on June 8, 2010.
This document describes echo-nginx-module [http://github.com/agentzh/echo-nginx-module/tarball/v0.34 v0.34] released on September 14, 2010.

= Synopsis =

Expand Down Expand Up @@ -491,7 +491,7 @@ This is a blocking version of the [[#echo_sleep|echo_sleep]] directive.

See the documentation of [[#echo_sleep|echo_sleep]] for more detail.

Behind the curtain, it calls the ngx_msleep macro provided by the Nginx core which maps to usleep on POSIX-compliant systems or WinSock select on Windows.
Behind the curtain, it calls the ngx_msleep macro provided by the Nginx core which maps to usleep on POSIX-compliant systems.

Note that this directive will block the current Nginx worker process completely while being executed, so never use it in production environment.

Expand Down Expand Up @@ -1223,12 +1223,12 @@ This directive was first introduced in the [[#v0.23|v0.23 release]].
= Installation =

Grab the nginx source code from [http://nginx.net/ nginx.net], for example,
the version 0.8.28 (see [[#Compatibility|nginx compatibility]]), and then build the source with this module:
the version 0.8.41 (see [[#Compatibility|nginx compatibility]]), and then build the source with this module:

<geshi lang="bash">
$ wget 'http://sysoev.ru/nginx/nginx-0.8.28.tar.gz'
$ tar -xzvf nginx-0.8.28.tar.gz
$ cd nginx-0.8.28/
$ wget 'http://sysoev.ru/nginx/nginx-0.8.41.tar.gz'
$ tar -xzvf nginx-0.8.41.tar.gz
$ cd nginx-0.8.41/

# Here we assume you would install you nginx under /opt/nginx/.
$ ./configure --prefix=/opt/nginx \
Expand Down Expand Up @@ -1281,6 +1281,9 @@ Available on github at [http://github.com/agentzh/echo-nginx-module agentzh/echo

= ChangeLog =

== v0.34 ==
* we no longer use the problematic <code>ngx_strXcmp</code> macros in our source because it may cause invalid reads and thus segmentation faults. thanks Piotr Sikora.
== v0.33 ==
* fixed compatibility with nginx 0.7.66+ because the ngx_time_update macro's parameter list has changed. Thanks Guang Feng (蔡镜明).
Expand Down

0 comments on commit 4e19f75

Please sign in to comment.