diff options
Diffstat (limited to '_build/static/archives/extend/2015-April')
9 files changed, 615 insertions, 0 deletions
diff --git a/_build/static/archives/extend/2015-April/000527.html b/_build/static/archives/extend/2015-April/000527.html new file mode 100644 index 00000000..3b29489d --- /dev/null +++ b/_build/static/archives/extend/2015-April/000527.html @@ -0,0 +1,80 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<HTML> + <HEAD> + <TITLE> [99s-extend] cowboy_websocket_handler + </TITLE> + <LINK REL="Index" HREF="index.html" > + <LINK REL="made" HREF="mailto:extend%40lists.ninenines.eu?Subject=Re%3A%20%5B99s-extend%5D%20cowboy_websocket_handler&In-Reply-To=%3C43C48B2E-0396-43E0-B82C-E524C8274004%40wanadoo.fr%3E"> + <META NAME="robots" CONTENT="index,nofollow"> + <style type="text/css"> + pre { + white-space: pre-wrap; /* css-2.1, curent FF, Opera, Safari */ + } + </style> + <META http-equiv="Content-Type" content="text/html; charset=us-ascii"> + + <LINK REL="Next" HREF="000528.html"> + </HEAD> + <BODY BGCOLOR="#ffffff"> + <H1>[99s-extend] cowboy_websocket_handler</H1> + <B>Samir Sow</B> + <A HREF="mailto:extend%40lists.ninenines.eu?Subject=Re%3A%20%5B99s-extend%5D%20cowboy_websocket_handler&In-Reply-To=%3C43C48B2E-0396-43E0-B82C-E524C8274004%40wanadoo.fr%3E" + TITLE="[99s-extend] cowboy_websocket_handler">samset at wanadoo.fr + </A><BR> + <I>Wed Apr 22 22:56:01 CEST 2015</I> + <P><UL> + + <LI>Next message: <A HREF="000528.html">[99s-extend] cowboy_websocket_handler +</A></li> + <LI> <B>Messages sorted by:</B> + <a href="date.html#527">[ date ]</a> + <a href="thread.html#527">[ thread ]</a> + <a href="subject.html#527">[ subject ]</a> + <a href="author.html#527">[ author ]</a> + </LI> + </UL> + <HR> +<!--beginarticle--> +<PRE>Hi there, + +I would like to learn more about the cowboy_xxxx_handler for instance the cowboy_websocket_handler : +- is it an OTP gen_ instance ? +- how/where the websocket_handle() is called ? +- how websocket_info() relates to the Transport:send() operation and where/how this latter function is called? + +I could not find the cowboy_websocket_handler behavior in the src dir. I guess i’ve missed something. +The code is clean but difficult to decipher by a erlang padawan like me. + +Why do i need to understand this ? + +I would like to write a generic tcp transport layer that provides an interface like the cowboy_xxx_handler to my protocol stack. +Of course i will use ranch underneath. + +Neither the examples provided with ranch nor the ftp server tutorial reveals the sophisticated architecture used to handover data/context to the handler and to get reply data from the handler. + +Thank you for your help. + +Samir Sow + +</PRE> + + +<!--endarticle--> + <HR> + <P><UL> + <!--threads--> + + <LI>Next message: <A HREF="000528.html">[99s-extend] cowboy_websocket_handler +</A></li> + <LI> <B>Messages sorted by:</B> + <a href="date.html#527">[ date ]</a> + <a href="thread.html#527">[ thread ]</a> + <a href="subject.html#527">[ subject ]</a> + <a href="author.html#527">[ author ]</a> + </LI> + </UL> + +<hr> +<a href="https://lists.ninenines.eu/listinfo/extend">More information about the Extend +mailing list</a><br> +</body></html> diff --git a/_build/static/archives/extend/2015-April/000528.html b/_build/static/archives/extend/2015-April/000528.html new file mode 100644 index 00000000..b2d9bb96 --- /dev/null +++ b/_build/static/archives/extend/2015-April/000528.html @@ -0,0 +1,78 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<HTML> + <HEAD> + <TITLE> [99s-extend] cowboy_websocket_handler + </TITLE> + <LINK REL="Index" HREF="index.html" > + <LINK REL="made" HREF="mailto:extend%40lists.ninenines.eu?Subject=Re%3A%20%5B99s-extend%5D%20cowboy_websocket_handler&In-Reply-To=%3C55381025.6070607%40ninenines.eu%3E"> + <META NAME="robots" CONTENT="index,nofollow"> + <style type="text/css"> + pre { + white-space: pre-wrap; /* css-2.1, curent FF, Opera, Safari */ + } + </style> + <META http-equiv="Content-Type" content="text/html; charset=us-ascii"> + <LINK REL="Previous" HREF="000527.html"> + <LINK REL="Next" HREF="000529.html"> + </HEAD> + <BODY BGCOLOR="#ffffff"> + <H1>[99s-extend] cowboy_websocket_handler</H1> + <B>Loïc Hoguin</B> + <A HREF="mailto:extend%40lists.ninenines.eu?Subject=Re%3A%20%5B99s-extend%5D%20cowboy_websocket_handler&In-Reply-To=%3C55381025.6070607%40ninenines.eu%3E" + TITLE="[99s-extend] cowboy_websocket_handler">essen at ninenines.eu + </A><BR> + <I>Wed Apr 22 23:18:29 CEST 2015</I> + <P><UL> + <LI>Previous message: <A HREF="000527.html">[99s-extend] cowboy_websocket_handler +</A></li> + <LI>Next message: <A HREF="000529.html">[99s-extend] cowboy_websocket_handler +</A></li> + <LI> <B>Messages sorted by:</B> + <a href="date.html#528">[ date ]</a> + <a href="thread.html#528">[ thread ]</a> + <a href="subject.html#528">[ subject ]</a> + <a href="author.html#528">[ author ]</a> + </LI> + </UL> + <HR> +<!--beginarticle--> +<PRE>Hello, + +On 04/22/2015 11:56 PM, Samir Sow wrote: +><i> I would like to learn more about the cowboy_xxxx_handler for instance the cowboy_websocket_handler : +</I>><i> - is it an OTP gen_ instance ? +</I>><i> - how/where the websocket_handle() is called ? +</I>><i> - how websocket_info() relates to the Transport:send() operation and where/how this latter function is called? +</I>><i> +</I>><i> I could not find the cowboy_websocket_handler behavior in the src dir. I guess i’ve missed something. +</I>><i> The code is clean but difficult to decipher by a erlang padawan like me. +</I> +Presumably you are looking in master. cowboy_websocket does that in +master now. cowboy_websocket_handler is in Cowboy 1.0. + +-- +Loïc Hoguin +<A HREF="http://ninenines.eu">http://ninenines.eu</A> +</PRE> + + +<!--endarticle--> + <HR> + <P><UL> + <!--threads--> + <LI>Previous message: <A HREF="000527.html">[99s-extend] cowboy_websocket_handler +</A></li> + <LI>Next message: <A HREF="000529.html">[99s-extend] cowboy_websocket_handler +</A></li> + <LI> <B>Messages sorted by:</B> + <a href="date.html#528">[ date ]</a> + <a href="thread.html#528">[ thread ]</a> + <a href="subject.html#528">[ subject ]</a> + <a href="author.html#528">[ author ]</a> + </LI> + </UL> + +<hr> +<a href="https://lists.ninenines.eu/listinfo/extend">More information about the Extend +mailing list</a><br> +</body></html> diff --git a/_build/static/archives/extend/2015-April/000529.html b/_build/static/archives/extend/2015-April/000529.html new file mode 100644 index 00000000..b04ff0f7 --- /dev/null +++ b/_build/static/archives/extend/2015-April/000529.html @@ -0,0 +1,85 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<HTML> + <HEAD> + <TITLE> [99s-extend] cowboy_websocket_handler + </TITLE> + <LINK REL="Index" HREF="index.html" > + <LINK REL="made" HREF="mailto:extend%40lists.ninenines.eu?Subject=Re%3A%20%5B99s-extend%5D%20cowboy_websocket_handler&In-Reply-To=%3C55F4A36D-6FEF-47B4-B02F-D3B3FA74732D%40wanadoo.fr%3E"> + <META NAME="robots" CONTENT="index,nofollow"> + <style type="text/css"> + pre { + white-space: pre-wrap; /* css-2.1, curent FF, Opera, Safari */ + } + </style> + <META http-equiv="Content-Type" content="text/html; charset=us-ascii"> + <LINK REL="Previous" HREF="000528.html"> + <LINK REL="Next" HREF="000530.html"> + </HEAD> + <BODY BGCOLOR="#ffffff"> + <H1>[99s-extend] cowboy_websocket_handler</H1> + <B>Samir Sow</B> + <A HREF="mailto:extend%40lists.ninenines.eu?Subject=Re%3A%20%5B99s-extend%5D%20cowboy_websocket_handler&In-Reply-To=%3C55F4A36D-6FEF-47B4-B02F-D3B3FA74732D%40wanadoo.fr%3E" + TITLE="[99s-extend] cowboy_websocket_handler">samset at wanadoo.fr + </A><BR> + <I>Wed Apr 22 23:39:29 CEST 2015</I> + <P><UL> + <LI>Previous message: <A HREF="000528.html">[99s-extend] cowboy_websocket_handler +</A></li> + <LI>Next message: <A HREF="000530.html">[99s-extend] cowboy_websocket_handler +</A></li> + <LI> <B>Messages sorted by:</B> + <a href="date.html#529">[ date ]</a> + <a href="thread.html#529">[ thread ]</a> + <a href="subject.html#529">[ subject ]</a> + <a href="author.html#529">[ author ]</a> + </LI> + </UL> + <HR> +<!--beginarticle--> +<PRE>Thanks. +Still i can’t figure out how you manage the data transmission from/to handler via the websocket_handle() and websocket_info() function. + +Samir + +><i> On 22 avr. 2015, at 23:18, Loïc Hoguin <<A HREF="https://lists.ninenines.eu/listinfo/extend">essen at ninenines.eu</A>> wrote: +</I>><i> +</I>><i> Hello, +</I>><i> +</I>><i> On 04/22/2015 11:56 PM, Samir Sow wrote: +</I>>><i> I would like to learn more about the cowboy_xxxx_handler for instance the cowboy_websocket_handler : +</I>>><i> - is it an OTP gen_ instance ? +</I>>><i> - how/where the websocket_handle() is called ? +</I>>><i> - how websocket_info() relates to the Transport:send() operation and where/how this latter function is called? +</I>>><i> +</I>>><i> I could not find the cowboy_websocket_handler behavior in the src dir. I guess i’ve missed something. +</I>>><i> The code is clean but difficult to decipher by a erlang padawan like me. +</I>><i> +</I>><i> Presumably you are looking in master. cowboy_websocket does that in master now. cowboy_websocket_handler is in Cowboy 1.0. +</I>><i> +</I>><i> -- +</I>><i> Loïc Hoguin +</I>><i> <A HREF="http://ninenines.eu">http://ninenines.eu</A> +</I> +</PRE> + + +<!--endarticle--> + <HR> + <P><UL> + <!--threads--> + <LI>Previous message: <A HREF="000528.html">[99s-extend] cowboy_websocket_handler +</A></li> + <LI>Next message: <A HREF="000530.html">[99s-extend] cowboy_websocket_handler +</A></li> + <LI> <B>Messages sorted by:</B> + <a href="date.html#529">[ date ]</a> + <a href="thread.html#529">[ thread ]</a> + <a href="subject.html#529">[ subject ]</a> + <a href="author.html#529">[ author ]</a> + </LI> + </UL> + +<hr> +<a href="https://lists.ninenines.eu/listinfo/extend">More information about the Extend +mailing list</a><br> +</body></html> diff --git a/_build/static/archives/extend/2015-April/000530.html b/_build/static/archives/extend/2015-April/000530.html new file mode 100644 index 00000000..1285025d --- /dev/null +++ b/_build/static/archives/extend/2015-April/000530.html @@ -0,0 +1,93 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<HTML> + <HEAD> + <TITLE> [99s-extend] cowboy_websocket_handler + </TITLE> + <LINK REL="Index" HREF="index.html" > + <LINK REL="made" HREF="mailto:extend%40lists.ninenines.eu?Subject=Re%3A%20%5B99s-extend%5D%20cowboy_websocket_handler&In-Reply-To=%3C5538B37B.6080501%40ninenines.eu%3E"> + <META NAME="robots" CONTENT="index,nofollow"> + <style type="text/css"> + pre { + white-space: pre-wrap; /* css-2.1, curent FF, Opera, Safari */ + } + </style> + <META http-equiv="Content-Type" content="text/html; charset=us-ascii"> + <LINK REL="Previous" HREF="000529.html"> + + </HEAD> + <BODY BGCOLOR="#ffffff"> + <H1>[99s-extend] cowboy_websocket_handler</H1> + <B>Loïc Hoguin</B> + <A HREF="mailto:extend%40lists.ninenines.eu?Subject=Re%3A%20%5B99s-extend%5D%20cowboy_websocket_handler&In-Reply-To=%3C5538B37B.6080501%40ninenines.eu%3E" + TITLE="[99s-extend] cowboy_websocket_handler">essen at ninenines.eu + </A><BR> + <I>Thu Apr 23 10:55:23 CEST 2015</I> + <P><UL> + <LI>Previous message: <A HREF="000529.html">[99s-extend] cowboy_websocket_handler +</A></li> + + <LI> <B>Messages sorted by:</B> + <a href="date.html#530">[ date ]</a> + <a href="thread.html#530">[ thread ]</a> + <a href="subject.html#530">[ subject ]</a> + <a href="author.html#530">[ author ]</a> + </LI> + </UL> + <HR> +<!--beginarticle--> +<PRE>It's a simple function call. + +Assuming the variable Handler contains the name of the module, it's just +doing Handler:websocket_info(Info, Req, State) and then checks the +return value. + +On 04/23/2015 12:39 AM, Samir Sow wrote: +><i> Thanks. +</I>><i> Still i can’t figure out how you manage the data transmission from/to handler via the websocket_handle() and websocket_info() function. +</I>><i> +</I>><i> Samir +</I>><i> +</I>>><i> On 22 avr. 2015, at 23:18, Loïc Hoguin <<A HREF="https://lists.ninenines.eu/listinfo/extend">essen at ninenines.eu</A>> wrote: +</I>>><i> +</I>>><i> Hello, +</I>>><i> +</I>>><i> On 04/22/2015 11:56 PM, Samir Sow wrote: +</I>>>><i> I would like to learn more about the cowboy_xxxx_handler for instance the cowboy_websocket_handler : +</I>>>><i> - is it an OTP gen_ instance ? +</I>>>><i> - how/where the websocket_handle() is called ? +</I>>>><i> - how websocket_info() relates to the Transport:send() operation and where/how this latter function is called? +</I>>>><i> +</I>>>><i> I could not find the cowboy_websocket_handler behavior in the src dir. I guess i’ve missed something. +</I>>>><i> The code is clean but difficult to decipher by a erlang padawan like me. +</I>>><i> +</I>>><i> Presumably you are looking in master. cowboy_websocket does that in master now. cowboy_websocket_handler is in Cowboy 1.0. +</I>>><i> +</I>>><i> -- +</I>>><i> Loïc Hoguin +</I>>><i> <A HREF="http://ninenines.eu">http://ninenines.eu</A> +</I>><i> +</I> +-- +Loïc Hoguin +<A HREF="http://ninenines.eu">http://ninenines.eu</A> +</PRE> + +<!--endarticle--> + <HR> + <P><UL> + <!--threads--> + <LI>Previous message: <A HREF="000529.html">[99s-extend] cowboy_websocket_handler +</A></li> + + <LI> <B>Messages sorted by:</B> + <a href="date.html#530">[ date ]</a> + <a href="thread.html#530">[ thread ]</a> + <a href="subject.html#530">[ subject ]</a> + <a href="author.html#530">[ author ]</a> + </LI> + </UL> + +<hr> +<a href="https://lists.ninenines.eu/listinfo/extend">More information about the Extend +mailing list</a><br> +</body></html> diff --git a/_build/static/archives/extend/2015-April/author.html b/_build/static/archives/extend/2015-April/author.html new file mode 100644 index 00000000..194631b4 --- /dev/null +++ b/_build/static/archives/extend/2015-April/author.html @@ -0,0 +1,67 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<HTML> + <HEAD> + <title>The Extend April 2015 Archive by author</title> + <META NAME="robots" CONTENT="noindex,follow"> + <META http-equiv="Content-Type" content="text/html; charset=us-ascii"> + </HEAD> + <BODY BGCOLOR="#ffffff"> + <a name="start"></A> + <h1>April 2015 Archives by author</h1> + <ul> + <li> <b>Messages sorted by:</b> + <a href="thread.html#start">[ thread ]</a> + <a href="subject.html#start">[ subject ]</a> + + <a href="date.html#start">[ date ]</a> + + <li><b><a href="https://lists.ninenines.eu/listinfo/extend">More info on this list... + </a></b></li> + </ul> + <p><b>Starting:</b> <i>Wed Apr 22 22:56:01 CEST 2015</i><br> + <b>Ending:</b> <i>Thu Apr 23 10:55:23 CEST 2015</i><br> + <b>Messages:</b> 4<p> + <ul> + +<LI><A HREF="000528.html">[99s-extend] cowboy_websocket_handler +</A><A NAME="528"> </A> +<I>Loïc Hoguin +</I> + +<LI><A HREF="000530.html">[99s-extend] cowboy_websocket_handler +</A><A NAME="530"> </A> +<I>Loïc Hoguin +</I> + +<LI><A HREF="000527.html">[99s-extend] cowboy_websocket_handler +</A><A NAME="527"> </A> +<I>Samir Sow +</I> + +<LI><A HREF="000529.html">[99s-extend] cowboy_websocket_handler +</A><A NAME="529"> </A> +<I>Samir Sow +</I> + + </ul> + <p> + <a name="end"><b>Last message date:</b></a> + <i>Thu Apr 23 10:55:23 CEST 2015</i><br> + <b>Archived on:</b> <i>Thu Apr 23 10:55:15 CEST 2015</i> + <p> + <ul> + <li> <b>Messages sorted by:</b> + <a href="thread.html#start">[ thread ]</a> + <a href="subject.html#start">[ subject ]</a> + + <a href="date.html#start">[ date ]</a> + <li><b><a href="https://lists.ninenines.eu/listinfo/extend">More info on this list... + </a></b></li> + </ul> + <p> + <hr> + <i>This archive was generated by + Pipermail 0.09 (Mailman edition).</i> + </BODY> +</HTML> + diff --git a/_build/static/archives/extend/2015-April/date.html b/_build/static/archives/extend/2015-April/date.html new file mode 100644 index 00000000..6d542059 --- /dev/null +++ b/_build/static/archives/extend/2015-April/date.html @@ -0,0 +1,67 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<HTML> + <HEAD> + <title>The Extend April 2015 Archive by date</title> + <META NAME="robots" CONTENT="noindex,follow"> + <META http-equiv="Content-Type" content="text/html; charset=us-ascii"> + </HEAD> + <BODY BGCOLOR="#ffffff"> + <a name="start"></A> + <h1>April 2015 Archives by date</h1> + <ul> + <li> <b>Messages sorted by:</b> + <a href="thread.html#start">[ thread ]</a> + <a href="subject.html#start">[ subject ]</a> + <a href="author.html#start">[ author ]</a> + + + <li><b><a href="https://lists.ninenines.eu/listinfo/extend">More info on this list... + </a></b></li> + </ul> + <p><b>Starting:</b> <i>Wed Apr 22 22:56:01 CEST 2015</i><br> + <b>Ending:</b> <i>Thu Apr 23 10:55:23 CEST 2015</i><br> + <b>Messages:</b> 4<p> + <ul> + +<LI><A HREF="000527.html">[99s-extend] cowboy_websocket_handler +</A><A NAME="527"> </A> +<I>Samir Sow +</I> + +<LI><A HREF="000528.html">[99s-extend] cowboy_websocket_handler +</A><A NAME="528"> </A> +<I>Loïc Hoguin +</I> + +<LI><A HREF="000529.html">[99s-extend] cowboy_websocket_handler +</A><A NAME="529"> </A> +<I>Samir Sow +</I> + +<LI><A HREF="000530.html">[99s-extend] cowboy_websocket_handler +</A><A NAME="530"> </A> +<I>Loïc Hoguin +</I> + + </ul> + <p> + <a name="end"><b>Last message date:</b></a> + <i>Thu Apr 23 10:55:23 CEST 2015</i><br> + <b>Archived on:</b> <i>Thu Apr 23 10:55:15 CEST 2015</i> + <p> + <ul> + <li> <b>Messages sorted by:</b> + <a href="thread.html#start">[ thread ]</a> + <a href="subject.html#start">[ subject ]</a> + <a href="author.html#start">[ author ]</a> + + <li><b><a href="https://lists.ninenines.eu/listinfo/extend">More info on this list... + </a></b></li> + </ul> + <p> + <hr> + <i>This archive was generated by + Pipermail 0.09 (Mailman edition).</i> + </BODY> +</HTML> + diff --git a/_build/static/archives/extend/2015-April/index.html b/_build/static/archives/extend/2015-April/index.html new file mode 120000 index 00000000..db4b46f7 --- /dev/null +++ b/_build/static/archives/extend/2015-April/index.html @@ -0,0 +1 @@ +thread.html
\ No newline at end of file diff --git a/_build/static/archives/extend/2015-April/subject.html b/_build/static/archives/extend/2015-April/subject.html new file mode 100644 index 00000000..862e7302 --- /dev/null +++ b/_build/static/archives/extend/2015-April/subject.html @@ -0,0 +1,67 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<HTML> + <HEAD> + <title>The Extend April 2015 Archive by subject</title> + <META NAME="robots" CONTENT="noindex,follow"> + <META http-equiv="Content-Type" content="text/html; charset=us-ascii"> + </HEAD> + <BODY BGCOLOR="#ffffff"> + <a name="start"></A> + <h1>April 2015 Archives by subject</h1> + <ul> + <li> <b>Messages sorted by:</b> + <a href="thread.html#start">[ thread ]</a> + + <a href="author.html#start">[ author ]</a> + <a href="date.html#start">[ date ]</a> + + <li><b><a href="https://lists.ninenines.eu/listinfo/extend">More info on this list... + </a></b></li> + </ul> + <p><b>Starting:</b> <i>Wed Apr 22 22:56:01 CEST 2015</i><br> + <b>Ending:</b> <i>Thu Apr 23 10:55:23 CEST 2015</i><br> + <b>Messages:</b> 4<p> + <ul> + +<LI><A HREF="000527.html">[99s-extend] cowboy_websocket_handler +</A><A NAME="527"> </A> +<I>Samir Sow +</I> + +<LI><A HREF="000528.html">[99s-extend] cowboy_websocket_handler +</A><A NAME="528"> </A> +<I>Loïc Hoguin +</I> + +<LI><A HREF="000529.html">[99s-extend] cowboy_websocket_handler +</A><A NAME="529"> </A> +<I>Samir Sow +</I> + +<LI><A HREF="000530.html">[99s-extend] cowboy_websocket_handler +</A><A NAME="530"> </A> +<I>Loïc Hoguin +</I> + + </ul> + <p> + <a name="end"><b>Last message date:</b></a> + <i>Thu Apr 23 10:55:23 CEST 2015</i><br> + <b>Archived on:</b> <i>Thu Apr 23 10:55:15 CEST 2015</i> + <p> + <ul> + <li> <b>Messages sorted by:</b> + <a href="thread.html#start">[ thread ]</a> + + <a href="author.html#start">[ author ]</a> + <a href="date.html#start">[ date ]</a> + <li><b><a href="https://lists.ninenines.eu/listinfo/extend">More info on this list... + </a></b></li> + </ul> + <p> + <hr> + <i>This archive was generated by + Pipermail 0.09 (Mailman edition).</i> + </BODY> +</HTML> + diff --git a/_build/static/archives/extend/2015-April/thread.html b/_build/static/archives/extend/2015-April/thread.html new file mode 100644 index 00000000..9835b5a3 --- /dev/null +++ b/_build/static/archives/extend/2015-April/thread.html @@ -0,0 +1,77 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<HTML> + <HEAD> + <title>The Extend April 2015 Archive by thread</title> + <META NAME="robots" CONTENT="noindex,follow"> + <META http-equiv="Content-Type" content="text/html; charset=us-ascii"> + </HEAD> + <BODY BGCOLOR="#ffffff"> + <a name="start"></A> + <h1>April 2015 Archives by thread</h1> + <ul> + <li> <b>Messages sorted by:</b> + + <a href="subject.html#start">[ subject ]</a> + <a href="author.html#start">[ author ]</a> + <a href="date.html#start">[ date ]</a> + + <li><b><a href="https://lists.ninenines.eu/listinfo/extend">More info on this list... + </a></b></li> + </ul> + <p><b>Starting:</b> <i>Wed Apr 22 22:56:01 CEST 2015</i><br> + <b>Ending:</b> <i>Thu Apr 23 10:55:23 CEST 2015</i><br> + <b>Messages:</b> 4<p> + <ul> + +<!--0 01429736161.527- --> +<LI><A HREF="000527.html">[99s-extend] cowboy_websocket_handler +</A><A NAME="527"> </A> +<I>Samir Sow +</I> + +<UL> +<!--1 01429736161.527-01429737509.528- --> +<LI><A HREF="000528.html">[99s-extend] cowboy_websocket_handler +</A><A NAME="528"> </A> +<I>Loïc Hoguin +</I> + +<UL> +<!--2 01429736161.527-01429737509.528-01429738769.529- --> +<LI><A HREF="000529.html">[99s-extend] cowboy_websocket_handler +</A><A NAME="529"> </A> +<I>Samir Sow +</I> + +<UL> +<!--3 01429736161.527-01429737509.528-01429738769.529-01429779323.530- --> +<LI><A HREF="000530.html">[99s-extend] cowboy_websocket_handler +</A><A NAME="530"> </A> +<I>Loïc Hoguin +</I> + +</UL> +</UL> +</UL> + </ul> + <p> + <a name="end"><b>Last message date:</b></a> + <i>Thu Apr 23 10:55:23 CEST 2015</i><br> + <b>Archived on:</b> <i>Thu Apr 23 10:55:15 CEST 2015</i> + <p> + <ul> + <li> <b>Messages sorted by:</b> + + <a href="subject.html#start">[ subject ]</a> + <a href="author.html#start">[ author ]</a> + <a href="date.html#start">[ date ]</a> + <li><b><a href="https://lists.ninenines.eu/listinfo/extend">More info on this list... + </a></b></li> + </ul> + <p> + <hr> + <i>This archive was generated by + Pipermail 0.09 (Mailman edition).</i> + </BODY> +</HTML> + |