Return-Path: Delivered-To: apmail-lucene-dev-archive@www.apache.org Received: (qmail 79126 invoked from network); 4 Apr 2011 15:33:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 4 Apr 2011 15:33:50 -0000 Received: (qmail 70707 invoked by uid 500); 4 Apr 2011 15:33:49 -0000 Delivered-To: apmail-lucene-dev-archive@lucene.apache.org Received: (qmail 70643 invoked by uid 500); 4 Apr 2011 15:33:49 -0000 Mailing-List: contact dev-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@lucene.apache.org Delivered-To: mailing list dev@lucene.apache.org Received: (qmail 70636 invoked by uid 99); 4 Apr 2011 15:33:49 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Apr 2011 15:33:49 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Apr 2011 15:33:43 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id B32E392728 for ; Mon, 4 Apr 2011 15:33:05 +0000 (UTC) Date: Mon, 4 Apr 2011 15:33:05 +0000 (UTC) From: "Jeffrey Chang (JIRA)" To: dev@lucene.apache.org Message-ID: <1118958205.32659.1301931185730.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <1479863892.32657.1301930826047.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Updated] (SOLR-2455) admin/index.jsp double submit on IE MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/SOLR-2455?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jeffrey Chang updated SOLR-2455: -------------------------------- Description: /admin/index.jsp could issue a double submit on IE causing Jetty to error out. Here are the steps to reproduce on IE8 (only applies to IE8 on occasional basis, really more of an IE8 bug...): 1. Open IE8 2. Browse to http://localhost:8983/solr/admin 3. Submit a query 4. Displayed on Jetty log due to double submit: SEVERE: org.mortbay.jetty.EofException at org.mortbay.jetty.HttpGenerator.flush(HttpGenerator.java:791) This can be fixed easily by modifying index.jsp's javascript submit to return false: ... queryForm.submit(); return false; ... I will try to submit a patch for this easy fix, new to all this so please bear with me... was: /admin/index.jsp could issue a double submit on IE causing Jetty to error out. Here are the steps to reproduce on IE8: 1. Open IE8 2. Browse to http://localhost:8983/solr/admin 3. Submit a query 4. Displayed on Jetty log: This can be fixed easily by modifying index.jsp's javascript submit to return false: ... queryForm.submit(); return false; ... I will try to submit a patch for this easy fix, new to all this so please bear with me... > admin/index.jsp double submit on IE > ----------------------------------- > > Key: SOLR-2455 > URL: https://issues.apache.org/jira/browse/SOLR-2455 > Project: Solr > Issue Type: Bug > Affects Versions: 3.1 > Environment: IE8 > Reporter: Jeffrey Chang > Priority: Minor > Labels: patch > > /admin/index.jsp could issue a double submit on IE causing Jetty to error out. > Here are the steps to reproduce on IE8 (only applies to IE8 on occasional basis, really more of an IE8 bug...): > 1. Open IE8 > 2. Browse to http://localhost:8983/solr/admin > 3. Submit a query > 4. Displayed on Jetty log due to double submit: > SEVERE: org.mortbay.jetty.EofException > at org.mortbay.jetty.HttpGenerator.flush(HttpGenerator.java:791) > > This can be fixed easily by modifying index.jsp's javascript submit to return false: > ... queryForm.submit(); return false; ... > I will try to submit a patch for this easy fix, new to all this so please bear with me... -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org For additional commands, e-mail: dev-help@lucene.apache.org