From lorenaesparza at aprendizajeindustrial.com Tue Mar 21 19:42:24 2023 From: lorenaesparza at aprendizajeindustrial.com (Lorena Esparza) Date: Tue, 21 Mar 2023 13:42:24 -0600 Subject: [pkg-lynx-maint] =?windows-1252?q?Perfil_que_est=E1s_buscando?= Message-ID: <9199cfe105482de9dba94c4e00105aaf@aprendizajeindustrial.com> Atenci?n Gerentes de Recursos Humanos y todo el personal involucrado en Reclutamiento y Selecci?n del personal, le invitamos al: Taller de Atracci?n y Retenci?n de Talento Exitoso Basado en Competencias Laborales 13 de Abril 2023 - V?a Zoom en vivo Al Inscribirse incluye: Constancia de habilidades DC-3. Exposici?n de un prestigiado consultor. Material digital. Diploma con valor oficial. C?mo Inscribirse: Si est? interesado responsa a esta invitaci?n para mandarle el PDF del evento y detalles inversi?n. Nombre: Tel?fono: Email: Empresa: -------------- next part -------------- An HTML attachment was scrubbed... URL: From leticiagongora at aprendizajeindustrial.com Tue Mar 21 23:44:41 2023 From: leticiagongora at aprendizajeindustrial.com (=?windows-1252?Q?Leticia_G=F3ngora?=) Date: Tue, 21 Mar 2023 17:44:41 -0600 Subject: [pkg-lynx-maint] Dirigido para usted Message-ID: An HTML attachment was scrubbed... URL: From sps at virtuosoitsolutions.com Wed Mar 22 06:03:50 2023 From: sps at virtuosoitsolutions.com (Louis Vuitton) Date: Wed, 22 Mar 2023 02:33:50 -0330 Subject: [pkg-lynx-maint] New LV Collection Launch: Huge Discounts Await You! Message-ID: An HTML attachment was scrubbed... URL: From griseldavazquez at aprendizajeindustrial.com Wed Mar 22 18:59:43 2023 From: griseldavazquez at aprendizajeindustrial.com (=?windows-1252?Q?Ing._Griselda_V=E1zquez?=) Date: Wed, 22 Mar 2023 12:59:43 -0600 Subject: [pkg-lynx-maint] =?windows-1252?q?COMISI=D3N_NACIONAL_DEL_AGUA?= Message-ID: <4dc0fb2809db5dc0a6fffa98001dfabd@aprendizajeindustrial.com> Visita: CONAGUA COMISI?N NACIONAL DEL AGUA Las causas de las infracciones o sanciones pueden ser varias, pero, al no cumplir con los requisitos administrativos pueden sufrir multas o sanciones en sus derechos y concesiones. > El pr?ximo 21 de Abril tendremos una conferencia en la cual nos gustar?a que usted participe, en donde un experto nos ayudar? a evitar estas multas y el uso correcto de las Aguas Nacionales de la CONAGUA. M?s informaci?n Si me permite enviarle la informaci?n a su correo por favor solo confirme que su direcci?n de email sea correcta y sus datos adicionales. - Nombre: - Tel?fono: - Email Corporativo: - Email Personal (opcional): -------------- next part -------------- An HTML attachment was scrubbed... URL: From nabijaczleweli at nabijaczleweli.xyz Fri Mar 24 19:36:26 2023 From: nabijaczleweli at nabijaczleweli.xyz (=?UTF-8?Q?=D0=BD=D0=B0=D0=B1?=) Date: Fri, 24 Mar 2023 20:36:26 +0100 Subject: [pkg-lynx-maint] Bug#1033423: lynx: Status line stuck on "HTTP/1.1 200 OK", body not rendered, no input accepted when receiving a specifically-formatted response Message-ID: Package: lynx Version: 2.9.0dev.6-3~deb11u1 Version: 2.9.0dev.12-1 Severity: normal Dear Maintainer, The ESP-IDF code for the server is: -- >8 -- static bool gpio_state = CONFIG_ESP32PSKO_INITIAL; #define ROOT_GET_START \ "" \ "" \ "esp32psko" \ "
" \ "" \ "" \ "" \ "
Current:" #define ROOT_GET_PART2 \ "
" \ "
" static esp_err_t http_root_get_handler(httpd_req_t *req) { httpd_resp_send_chunk(req, ROOT_GET_START, sizeof(ROOT_GET_START) - 1); httpd_resp_send_chunk(req, gpio_state ? "UP" : "DOWN", HTTPD_RESP_USE_STRLEN); httpd_resp_send_chunk(req, ROOT_GET_PART2, sizeof(ROOT_GET_PART2) - 1); if(gpio_state) httpd_resp_send_chunk(req, " checked", sizeof(" checked") - 1); httpd_resp_send_chunk(req, ROOT_GET_PART3, sizeof(ROOT_GET_PART3) - 1); return httpd_resp_send_chunk(req, NULL, 0); } -- >8 -- driven by the ESP HTTP server. When I call this by running "lynx 192.168.1.136", lynx shows "HTTP/1.1 200 OK" in the status line, and the rest of the screen is black; here's a video: https://lfs.nabijaczleweli.xyz/0015-cohost-images/2023-03-24-1227171-uhhhhhhh-anyone-els-2023-03-24%2019-26-20.mp4 Naturally, this isn't an ergonomic way to test this, so here are two recorded transactions, which behave identically: -- >8 -- $ printf '%s\r\n' 'GET / HTTP/1.1' 'Host: 192.168.1.136' '' | nc -N 192.168.1.136 80 | hd 00000000 48 54 54 50 2f 31 2e 31 20 32 30 30 20 4f 4b 0d |HTTP/1.1 200 OK.| 00000010 0a 43 6f 6e 74 65 6e 74 2d 54 79 70 65 3a 20 74 |.Content-Type: t| 00000020 65 78 74 2f 68 74 6d 6c 0d 0a 54 72 61 6e 73 66 |ext/html..Transf| 00000030 65 72 2d 45 6e 63 6f 64 69 6e 67 3a 20 63 68 75 |er-Encoding: chu| 00000040 6e 6b 65 64 0d 0a 0d 0a 33 35 0d 0a 3c 6d 65 74 |nked....35..| 00000060 3c 74 69 74 6c 65 3e 65 73 70 33 32 70 73 6b 6f |esp32psko| 00000070 3c 2f 74 69 74 6c 65 3e 43 75 72 72 65 6e 74 3a |Current:| 00000080 20 0d 0a 34 0d 0a 44 4f 57 4e 0d 0a 34 33 0d 0a | ..4..DOWN..43..| 00000090 3c 62 72 20 2f 3e 3c 66 6f 72 6d 20 6d 65 74 68 |
<| 00000130 74 64 3e 3c 69 6e 70 75 74 20 74 79 70 65 3d 63 |td> | 00000180 3c 2f 74 64 3e 3c 2f 74 72 3e 3c 2f 74 61 62 6c |
..0....| 000001a0 -- >8 -- I get the same thing when I run echo 485454502F312E3120323030204F4B0D0A436F6E74656E742D547970653A20746578742F68746D6C0D0A5472616E736665722D456E636F64696E673A206368756E6B65640D0A0D0A33350D0A3C6D65746120636861727365743D7574662D383E3C7469746C653E657370333270736B6F3C2F7469746C653E43757272656E743A200D0A340D0A444F574E0D0A34330D0A3C6272202F3E3C666F726D206D6574686F643D706F73743E3C6C6162656C3E4E65773A203C696E70757420747970653D636865636B626F78206E616D653D76616C75650D0A32640D0A3E3C2F6C6162656C3E3C696E70757420747970653D7375626D69742076616C75653D5365743E3C2F666F726D3E0D0A300D0A0D0A | base16 -d | nc -lp 8000 and open localhost:8000, for a cheaper repro. Best, ??? -- System Information: Debian Release: 11.6 APT prefers stable-updates APT policy: (500, 'stable-updates'), (500, 'stable-security'), (500, 'stable-debug'), (500, 'stable') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 5.10.0-20-amd64 (SMP w/24 CPU threads) Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_FIRMWARE_WORKAROUND, TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8), LANGUAGE=en_GB:en Shell: /bin/sh linked to /usr/bin/dash Init: systemd (via /run/systemd/system) LSM: AppArmor: enabled Versions of packages lynx depends on: ii libbsd0 0.11.3-1 ii libbz2-1.0 1.0.8-4 ii libc6 2.31-13+deb11u5 ii libgnutls30 3.7.1-5+deb11u3 ii libidn11 1.33-3 ii libncursesw6 6.2+20201114-2 ii libtinfo6 6.2+20201114-2 ii lynx-common 2.9.0dev.6-3~deb11u1 ii zlib1g 1:1.2.11.dfsg-2+deb11u2 Versions of packages lynx recommends: ii mime-support 3.66 lynx suggests no packages. -- no debconf information -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: not available URL: From gabrielapena at aprendizajeindustrial.com Fri Mar 24 19:50:06 2023 From: gabrielapena at aprendizajeindustrial.com (=?windows-1252?Q?Gabriela_Pe=F1a?=) Date: Fri, 24 Mar 2023 13:50:06 -0600 Subject: [pkg-lynx-maint] =?windows-1252?q?=BFRecibi=F3_la_informaci=F3n?= =?windows-1252?q?=3F?= Message-ID: A su correo pkg-lynx-maint at lists.alioth.debian.org le mand? una invitaci?n pero no he recibido respuesta alguna. Es para un taller a nivel internacional que liderar? un experto en el tema sobre C?mo Atraer y Retener al Talento Exitoso Bas?ndose en Competencias. Se llevar? a cabo el 13 de abril v?a zoom. Es un curso dirigido a todo personal involucrado en la gesti?n y atracci?n del talento humano basado en competencias, captar al personal id?neo e integrarlo adecuadamente al proceso productivo a trav?s de la formaci?n y desarrollo de habilidades que garantizaran el ?xito constante de la empresa. Responda a este correo con sus datos (nombre, tel?fono, email) para hacerle llegar le PDF de este evento y datos de inversi?n. De antemano, muchas gracias por su atenci?n. -------------- next part -------------- An HTML attachment was scrubbed... URL: