Return-Path: Delivered-To: apmail-lucene-solr-dev-archive@locus.apache.org Received: (qmail 72080 invoked from network); 22 Feb 2007 00:36:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 22 Feb 2007 00:36:27 -0000 Received: (qmail 19802 invoked by uid 500); 22 Feb 2007 00:36:35 -0000 Delivered-To: apmail-lucene-solr-dev-archive@lucene.apache.org Received: (qmail 19649 invoked by uid 500); 22 Feb 2007 00:36:34 -0000 Mailing-List: contact solr-dev-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: solr-dev@lucene.apache.org Delivered-To: mailing list solr-dev@lucene.apache.org Received: (qmail 19640 invoked by uid 99); 22 Feb 2007 00:36:34 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Feb 2007 16:36:34 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Feb 2007 16:36:25 -0800 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id ACBF17141B8 for ; Wed, 21 Feb 2007 16:36:05 -0800 (PST) Message-ID: <4477572.1172104565705.JavaMail.jira@brutus> Date: Wed, 21 Feb 2007 16:36:05 -0800 (PST) From: "Ryan McKinley (JIRA)" To: solr-dev@lucene.apache.org Subject: [jira] Updated: (SOLR-133) change XmlUpdateRequestHandler to use StAX instead of XPP In-Reply-To: <9402385.1170360305557.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/SOLR-133?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ryan McKinley updated SOLR-133: ------------------------------- Attachment: SOLR-133-XmlUpdateRequestHandler-StAX-139.patch fixed the document parser to handle fields with CDATA. switch (event) { // Add everything to the text case XMLStreamConstants.SPACE: case XMLStreamConstants.CDATA: case XMLStreamConstants.CHARACTERS: text.append( parser.getText() ); break; ... > change XmlUpdateRequestHandler to use StAX instead of XPP > --------------------------------------------------------- > > Key: SOLR-133 > URL: https://issues.apache.org/jira/browse/SOLR-133 > Project: Solr > Issue Type: Improvement > Reporter: Hoss Man > Attachments: SOLR-133-XmlUpdateRequestHandler-StAX-139.patch, SOLR-133-XmlUpdateRequestHandler-StAX-139.patch, SOLR-133.diff, SOLR-133.diff > > > there has been discussion of using StAX for XML parsing of updates instead of XPP ... opening an issue to track it as a possible improvement (orriginally mentioned in SOLR-61, but that task was more specificly about refactoring the existing code) -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.