DOC: Update documentation / comments to be gender neutral

2020-07-22 Thread Jackie Tapia
-- 

Jackie Tapia

Platform Software Engineer

Sprout Social

sproutsocial.com



Pronouns
:
She/Her/Hers


0002-Update-contributing-doc.patch
Description: Binary data


0001-Update-docs-comments-to-be-more-inclusive-of-all-gen.patch
Description: Binary data


Re: [PR] DOC: Update docs / comments to be inclusive of all gender identities

2020-07-22 Thread Julien Pivotto
On 23 Jul 02:23, PR Bot wrote:
> Dear list!
> 
> Author: Jackie Tapia 
> Number of patches: 2
> 
> This is an automated relay of the Github pull request:
>DOC: Update docs / comments to be inclusive of all gender identities
> 
> Patch title(s): 
>Update docs / comments to be more inclusive of all gender identities
>Update contributing doc
> 
> Link:
>https://github.com/haproxy/haproxy/pull/772
> 
> Edit locally:
>wget https://github.com/haproxy/haproxy/pull/772.patch && vi 772.patch
> 
> Apply locally:
>curl https://github.com/haproxy/haproxy/pull/772.patch | git am -
> 
> Description:
>To promote an inclusive environment for all communities, this PR
>converts all references of gender specific pronouns, e.g "he" or
>"she", into the third-person pronoun "they" as it is inclusive of all
>people. Furthermore, documentation / comments should use singular
>"they" when referring to a generic person whose gender is unknown or
>irrelevant to the context.
>
>Also, remove some trailing
>whitespaces from the files modified.
> 
> Instructions:
>This github pull request will be closed automatically; patch should be
>reviewed on the haproxy mailing list (haproxy@formilux.org). Everyone is
>invited to comment, even the patch's author. Please keep the author and
>list CCed in replies. Please note that in absence of any response this
>pull request will be lost.
> 

+1

-- 
 (o-Julien Pivotto
 //\Open-Source Consultant
 V_/_   Inuits - https://www.inuits.eu


signature.asc
Description: PGP signature


[PR] DOC: Update docs / comments to be inclusive of all gender identities

2020-07-22 Thread PR Bot
Dear list!

Author: Jackie Tapia 
Number of patches: 2

This is an automated relay of the Github pull request:
   DOC: Update docs / comments to be inclusive of all gender identities

Patch title(s): 
   Update docs / comments to be more inclusive of all gender identities
   Update contributing doc

Link:
   https://github.com/haproxy/haproxy/pull/772

Edit locally:
   wget https://github.com/haproxy/haproxy/pull/772.patch && vi 772.patch

Apply locally:
   curl https://github.com/haproxy/haproxy/pull/772.patch | git am -

Description:
   To promote an inclusive environment for all communities, this PR
   converts all references of gender specific pronouns, e.g "he" or
   "she", into the third-person pronoun "they" as it is inclusive of all
   people. Furthermore, documentation / comments should use singular
   "they" when referring to a generic person whose gender is unknown or
   irrelevant to the context.
   
   Also, remove some trailing
   whitespaces from the files modified.

Instructions:
   This github pull request will be closed automatically; patch should be
   reviewed on the haproxy mailing list (haproxy@formilux.org). Everyone is
   invited to comment, even the patch's author. Please keep the author and
   list CCed in replies. Please note that in absence of any response this
   pull request will be lost.



[PATCH] typo fixes

2020-07-22 Thread Илья Шипицин
Hello,

another patch attached.

Ilya Shipitcin
From 32ae9da5a78af3768bc325e04eed1352b1b13119 Mon Sep 17 00:00:00 2001
From: Ilya Shipitsin 
Date: Thu, 23 Jul 2020 00:32:55 +0500
Subject: [PATCH] CLEANUP: assorted typo fixes in the code and comments

This is 12th iteration of typo fixes
---
 include/haproxy/connection-t.h |  4 ++--
 include/haproxy/server.h   |  2 +-
 src/backend.c  |  2 +-
 src/connection.c   |  2 +-
 src/flt_trace.c|  4 ++--
 src/http_ana.c |  2 +-
 src/log.c  | 14 +++---
 src/proto_udp.c|  2 +-
 src/sample.c   |  2 +-
 9 files changed, 17 insertions(+), 17 deletions(-)

diff --git a/include/haproxy/connection-t.h b/include/haproxy/connection-t.h
index efeb714fe..70119c16a 100644
--- a/include/haproxy/connection-t.h
+++ b/include/haproxy/connection-t.h
@@ -67,8 +67,8 @@ enum {
 
 
 	CS_FL_ERROR = 0x0100,  /* a fatal error was reported */
-	CS_FL_RCV_MORE  = 0x0200,  /* We may have more bytes to transfert */
-	CS_FL_WANT_ROOM = 0x0400,  /* More bytes to transfert, but not enough room */
+	CS_FL_RCV_MORE  = 0x0200,  /* We may have more bytes to transfer */
+	CS_FL_WANT_ROOM = 0x0400,  /* More bytes to transfer, but not enough room */
 	CS_FL_ERR_PENDING   = 0x0800,  /* An error is pending, but there's still data to be read */
 	CS_FL_EOS   = 0x1000,  /* End of stream delivered to data layer */
 	/* unused: 0x2000 */
diff --git a/include/haproxy/server.h b/include/haproxy/server.h
index 269216d30..f15b7057d 100644
--- a/include/haproxy/server.h
+++ b/include/haproxy/server.h
@@ -273,7 +273,7 @@ static inline void srv_del_conn_from_list(struct server *srv, struct connection
 		_HA_ATOMIC_SUB(>curr_idle_thr[tid], 1);
 	}
 	else {
-		/* The connction is not private and not in any server's idle
+		/* The connection is not private and not in any server's idle
 		 * list, so decrement the current number of used connections
 		 */
 		_HA_ATOMIC_SUB(>curr_used_conns, 1);
diff --git a/src/backend.c b/src/backend.c
index b305ec0c8..df3146945 100644
--- a/src/backend.c
+++ b/src/backend.c
@@ -1502,7 +1502,7 @@ int connect_server(struct stream *s)
 		!(srv_conn->flags & CO_FL_PRIVATE) && srv_conn->mux->avail_streams(srv_conn) > 0)
 			LIST_ADDQ(>available_conns[tid], mt_list_to_list(_conn->list));
 		else if (srv_conn->flags & CO_FL_PRIVATE) {
-			/* If it fail now, the same will be done in mux->detach() callack */
+			/* If it fail now, the same will be done in mux->detach() callback */
 			session_add_conn(srv_conn->owner, srv_conn, srv_conn->target);
 		}
 	}
diff --git a/src/connection.c b/src/connection.c
index 57160e711..9c017bcf9 100644
--- a/src/connection.c
+++ b/src/connection.c
@@ -71,7 +71,7 @@ int conn_create_mux(struct connection *conn)
 		!(conn->flags & CO_FL_PRIVATE) && conn->mux->avail_streams(conn) > 0)
 			LIST_ADDQ(>available_conns[tid], mt_list_to_list(>list));
 		else if (conn->flags & CO_FL_PRIVATE) {
-			/* If it fail now, the same will be done in mux->detach() callack */
+			/* If it fail now, the same will be done in mux->detach() callback */
 			session_add_conn(conn->owner, conn, conn->target);
 		}
 		return 0;
diff --git a/src/flt_trace.c b/src/flt_trace.c
index f9fd24820..386de41d2 100644
--- a/src/flt_trace.c
+++ b/src/flt_trace.c
@@ -195,7 +195,7 @@ trace_init(struct proxy *px, struct flt_conf *fconf)
 	return 0;
 }
 
-/* Free ressources allocated by the trace filter. */
+/* Free resources allocated by the trace filter. */
 static void
 trace_deinit(struct proxy *px, struct flt_conf *fconf)
 {
@@ -227,7 +227,7 @@ trace_init_per_thread(struct proxy *px, struct flt_conf *fconf)
 	return 0;
 }
 
-/* Free ressources allocate by the trace filter for each thread. */
+/* Free resources allocate by the trace filter for each thread. */
 static void
 trace_deinit_per_thread(struct proxy *px, struct flt_conf *fconf)
 {
diff --git a/src/http_ana.c b/src/http_ana.c
index ae7d822a1..ac2990e99 100644
--- a/src/http_ana.c
+++ b/src/http_ana.c
@@ -1842,7 +1842,7 @@ int http_wait_for_response(struct stream *s, struct channel *rep, int an_bit)
 sess->flags |= SESS_FL_PREFER_LAST;
 conn_set_owner(srv_conn, sess, NULL);
 conn_set_private(srv_conn);
-/* If it fail now, the same will be done in mux->detach() callack */
+/* If it fail now, the same will be done in mux->detach() callback */
 session_add_conn(srv_conn->owner, srv_conn, srv_conn->target);
 break;
 			}
diff --git a/src/log.c b/src/log.c
index 495a672d2..5f1f96e51 100644
--- a/src/log.c
+++ b/src/log.c
@@ -1435,7 +1435,7 @@ void send_log(struct proxy *p, int level, const char *format, ...)
  * settings.
  * This function returns a struct ist array of elements of the header
  * nbelem is set to the number of available elements.
- * Thos function returns currently a maximum of NB_LOG_HDR_IST_ELEMENTS
+ * This 

Re: github template

2020-07-22 Thread Lukas Tribus
I will comment next week, but I generally agree that we should move the
version output to the end, as I noticed the same issue.

expected/actual behaviour sections are painful in the obvious cases (dont
crash/crash), but oftentimes users just assume their itent is obvious when
it's really not.



lukas


Learn about your website in detail.Haproxy.com

2020-07-22 Thread Nancy Berger
Dear Business owner of Haproxy.com

Did you think that your website is having so many errors? Is it possible
that one’s website contains numbers of errors? Yes,the numbers of the
people share their rage and frustration once they get my mail.

Now, I will show you the several types of broken links, pages with no meta
description tag, images with no ALT text, Html validation Errors, not
including a unique meta description, having too long title, etc., Found in
your Haproxy.com.

We have an expert team who can easily solve all the above problems Within a
second with a reasonable budget. We guarantee you will see a dire change in
your Google search ranking once these are static.

In case you are getting interested in the proposal and want to get a high
rank in Google then feel free to send me a proposal.

Looking forward to your reply.

Nancy Berger.