nodigest

二傻子 iasybvm at qq.com
Tue Dec 13 12:36:53 UTC 2016


no-digest------------------ Original ------------------
From: "nginx-devel-request"<nginx-devel-request at nginx.org>
Date: Tue, Dec 13, 2016 08:00 PM
To: "nginx-devel"<nginx-devel at nginx.org>;
Subject: nginx-devel Digest, Vol 86, Issue 12


Send nginx-devel mailing list submissions to
	nginx-devel at nginx.org

To subscribe or unsubscribe via the World Wide Web, visit
	http://mailman.nginx.org/mailman/listinfo/nginx-devel
or, via email, send a message with subject or body 'help' to
	nginx-devel-request at nginx.org

You can reach the person managing the list at
	nginx-devel-owner at nginx.org

When replying, please edit your Subject line so it is more specific
than "Re: Contents of nginx-devel digest..."


Today's Topics:

   1. [nginx.vim][PATCH] add 'commentstring' for vim-commentary
      support (Armin Grodon)
   2. [njs] Disabled js_set at server{} and location{} levels.
      (Roman Arutyunyan)
   3. [njs] Version 0.1.6. (Igor Sysoev)
   4. [njs] Added tag 0.1.6 for changeset 44b524f7e313 (Igor Sysoev)


----------------------------------------------------------------------

Message: 1
Date: Tue, 13 Dec 2016 01:08:49 +0100
From: Armin Grodon <me at armingrodon.de>
To: nginx-devel at nginx.org
Subject: [nginx.vim][PATCH] add 'commentstring' for vim-commentary
	support
Message-ID: <20161213000849.GA30641 at armingrodon.de>
Content-Type: text/plain; charset=us-ascii

Hi,

this small path adds the correct comments for the widely used vim-plugin
'commentary.vim'.


# HG changeset patch
# User Armin Grodon <me at armingrodon.de>
# Date 1481586584 -3600
#      Tue Dec 13 00:49:44 2016 +0100
# Node ID 21d59bd866499df91c0b3d8a9d4d81457db32dd5
# Parent  e02f1977846b18fadc3e30e2ca97d35eb788cbf9
add 'commentstring' for vim-commentary support

diff -r e02f1977846b -r 21d59bd86649 contrib/vim/ftplugin/nginx.vim
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/contrib/vim/ftplugin/nginx.vim    Tue Dec 13 00:49:44 2016 +0100
@@ -0,0 +1,1 @@
+setlocal commentstring=#\ %s


Best regards,
Armin


------------------------------

Message: 2
Date: Tue, 13 Dec 2016 11:06:15 +0000
From: Roman Arutyunyan <arut at nginx.com>
To: nginx-devel at nginx.org
Subject: [njs] Disabled js_set at server{} and location{} levels.
Message-ID:
	<hg.b54508367550.1481627175.5965299922797593991 at dev.nginx.com>
Content-Type: text/plain; charset="us-ascii"

details:   http://hg.nginx.org/njs/rev/b54508367550
branches:  
changeset: 281:b54508367550
user:      Roman Arutyunyan <arut at nginx.com>
date:      Tue Dec 13 14:04:46 2016 +0300
description:
Disabled js_set at server{} and location{} levels.

diffstat:

 nginx/ngx_http_js_module.c   |  2 +-
 nginx/ngx_stream_js_module.c |  2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diffs (24 lines):

diff -r db0d8e2a4928 -r b54508367550 nginx/ngx_http_js_module.c
--- a/nginx/ngx_http_js_module.c	Thu Dec 08 01:52:41 2016 +0300
+++ b/nginx/ngx_http_js_module.c	Tue Dec 13 14:04:46 2016 +0300
@@ -137,7 +137,7 @@ static ngx_command_t  ngx_http_js_comman
       NULL },
 
     { ngx_string("js_set"),
-      NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE2,
+      NGX_HTTP_MAIN_CONF|NGX_CONF_TAKE2,
       ngx_http_js_set,
       NGX_HTTP_LOC_CONF_OFFSET,
       0,
diff -r db0d8e2a4928 -r b54508367550 nginx/ngx_stream_js_module.c
--- a/nginx/ngx_stream_js_module.c	Thu Dec 08 01:52:41 2016 +0300
+++ b/nginx/ngx_stream_js_module.c	Tue Dec 13 14:04:46 2016 +0300
@@ -112,7 +112,7 @@ static ngx_command_t  ngx_stream_js_comm
       NULL },
 
     { ngx_string("js_set"),
-      NGX_STREAM_MAIN_CONF|NGX_STREAM_SRV_CONF|NGX_CONF_TAKE2,
+      NGX_STREAM_MAIN_CONF|NGX_CONF_TAKE2,
       ngx_stream_js_set,
       NGX_STREAM_SRV_CONF_OFFSET,
       0,


------------------------------

Message: 3
Date: Tue, 13 Dec 2016 11:19:06 +0000
From: Igor Sysoev <igor at sysoev.ru>
To: nginx-devel at nginx.org
Subject: [njs] Version 0.1.6.
Message-ID:
	<hg.44b524f7e313.1481627946.5965299922797593991 at dev.nginx.com>
Content-Type: text/plain; charset="us-ascii"

details:   http://hg.nginx.org/njs/rev/44b524f7e313
branches:  
changeset: 282:44b524f7e313
user:      Igor Sysoev <igor at sysoev.ru>
date:      Tue Dec 13 14:18:11 2016 +0300
description:
Version 0.1.6.

diffstat:

 Makefile |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (10 lines):

diff -r b54508367550 -r 44b524f7e313 Makefile
--- a/Makefile	Tue Dec 13 14:04:46 2016 +0300
+++ b/Makefile	Tue Dec 13 14:18:11 2016 +0300
@@ -1,5 +1,5 @@
 
-NJS_VER =	0.1.5
+NJS_VER =	0.1.6
 
 NXT_LIB =	nxt
 


------------------------------

Message: 4
Date: Tue, 13 Dec 2016 11:19:08 +0000
From: Igor Sysoev <igor at sysoev.ru>
To: nginx-devel at nginx.org
Subject: [njs] Added tag 0.1.6 for changeset 44b524f7e313
Message-ID:
	<hg.43582218defe.1481627948.5965299922797593991 at dev.nginx.com>
Content-Type: text/plain; charset="us-ascii"

details:   http://hg.nginx.org/njs/rev/43582218defe
branches:  
changeset: 283:43582218defe
user:      Igor Sysoev <igor at sysoev.ru>
date:      Tue Dec 13 14:18:40 2016 +0300
description:
Added tag 0.1.6 for changeset 44b524f7e313

diffstat:

 .hgtags |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (8 lines):

diff -r 44b524f7e313 -r 43582218defe .hgtags
--- a/.hgtags	Tue Dec 13 14:18:11 2016 +0300
+++ b/.hgtags	Tue Dec 13 14:18:40 2016 +0300
@@ -4,3 +4,4 @@ 5b066b4db54c17dc0a9a72948474f36957462e87
 360449773d51e7f451e5396e27021badc6b86085 0.1.3
 508689c1fb94c23f6b24be087c1dc63b2f9e6654 0.1.4
 9c813c2bb2acfd5b6e9d1e9b6699af928baea15a 0.1.5
+44b524f7e313369cd062a387511ea6fdc427875f 0.1.6


------------------------------

Subject: Digest Footer

_______________________________________________
nginx-devel mailing list
nginx-devel at nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx-devel

------------------------------

End of nginx-devel Digest, Vol 86, Issue 12
*******************************************
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mailman.nginx.org/pipermail/nginx-devel/attachments/20161213/d1c97a48/attachment.html>


More information about the nginx-devel mailing list