From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out.smtp-auth.no-ip.com (out.smtp-auth.no-ip.com [8.23.224.60]) by hurricane.the-brannons.com (Postfix) with ESMTPS id 0A89F77DF6 for ; Tue, 12 Jan 2016 22:01:01 -0800 (PST) X-No-IP: carhart.net@noip-smtp X-Report-Spam-To: abuse@no-ip.com Received: from carhart.net (unknown [99.52.200.227]) (Authenticated sender: carhart.net@noip-smtp) by smtp-auth.no-ip.com (Postfix) with ESMTPA id 94978400A11 for ; Tue, 12 Jan 2016 22:01:56 -0800 (PST) Received: from carhart.net (localhost [127.0.0.1]) by carhart.net (8.13.8/8.13.8) with ESMTP id u0D61tuR022901 for ; Tue, 12 Jan 2016 22:01:55 -0800 Received: from localhost (kevin@localhost) by carhart.net (8.13.8/8.13.8/Submit) with ESMTP id u0D61tbV022898 for ; Tue, 12 Jan 2016 22:01:55 -0800 Date: Tue, 12 Jan 2016 22:01:55 -0800 (PST) From: Kevin Carhart To: Edbrowse-dev@lists.the-brannons.com Message-ID: User-Agent: Alpine 2.03 (LRH 1266 2009-07-14) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII Subject: [Edbrowse-dev] regex criteria interpreted as literals X-BeenThere: edbrowse-dev@lists.the-brannons.com X-Mailman-Version: 2.1.20 Precedence: list List-Id: Edbrowse Development List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Jan 2016 06:01:01 -0000 I was trying to dig into this problem where Sebastian from the commandline list was trying to read google groups with edbrowse. There may be a few things going on with google groups, but one of them that I could isolate as a short example is that they make use of the inline regular expression style as follows: And the routine fails because the expression criteria is taken as a literal, so the error is then "SyntaxError: unterminated regular expressionliteral" I know this is very similar to the string contents interpreted as literals problems from months back, which is now fixed, right? Maybe this one is harder to deal with because it isn't delimited by quotes? It gets ambiguous to know what /document.writeln('Subject: ');<" + "/script>"); Note, I made sure my tidy was up to date before trying this. When I say: tidy -v I get HTML Tidy for Linux version 5.1.33 Any idea what can be done here? thanks Kevin