Return-Path: X-Original-To: apmail-lucene-solr-commits-archive@minotaur.apache.org Delivered-To: apmail-lucene-solr-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id BDFE5E903 for ; Thu, 27 Dec 2012 21:20:07 +0000 (UTC) Received: (qmail 69478 invoked by uid 500); 27 Dec 2012 21:20:07 -0000 Delivered-To: apmail-lucene-solr-commits-archive@lucene.apache.org Received: (qmail 69410 invoked by uid 500); 27 Dec 2012 21:20:06 -0000 Mailing-List: contact solr-commits-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-commits@lucene.apache.org Received: (qmail 69397 invoked by uid 99); 27 Dec 2012 21:20:06 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 27 Dec 2012 21:20:06 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.131] (HELO eos.apache.org) (140.211.11.131) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 27 Dec 2012 21:20:05 +0000 Received: from eos.apache.org (localhost [127.0.0.1]) by eos.apache.org (Postfix) with ESMTP id 2D3CAAA8; Thu, 27 Dec 2012 21:19:44 +0000 (UTC) MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable From: Apache Wiki To: Apache Wiki Date: Thu, 27 Dec 2012 21:19:44 -0000 Message-ID: <20121227211944.2975.72309@eos.apache.org> Subject: =?utf-8?q?=5BSolr_Wiki=5D_Update_of_=22DataImportHandler=22_by_PrashantPu?= =?utf-8?q?njabi?= Auto-Submitted: auto-generated X-Virus-Checked: Checked by ClamAV on apache.org Dear Wiki user, You have subscribed to a wiki page or wiki category on "Solr Wiki" for chan= ge notification. The "DataImportHandler" page has been changed by PrashantPunjabi: http://wiki.apache.org/solr/DataImportHandler?action=3Ddiff&rev1=3D333&rev2= =3D334 Comment: Changing LineEntityProcessor attribute from "omitLineRegex" (incorrect) to = "skipLineRegex" (correct) = * '''`url`''' : a required attribute that specifies the location of the = input file in a way that is compatible with the configured datasource. If t= his value is relative and you are using !FileDataSource or URLDataSource, i= t assumed to be relative to '''baseLoc'''. * '''`acceptLineRegex`''' :an optional attribute that if present discard= s any line which does not match the regExp. - * '''`omitLineRegex`''' : an optional attribute that is applied after an= y acceptLineRegex and discards any line which matches this regExp. + * '''`skipLineRegex`''' : an optional attribute that is applied after an= y acceptLineRegex and discards any line which matches this regExp. = example: = @@ -908, +908 @@