Return-Path: Delivered-To: apmail-incubator-jackrabbit-dev-archive@www.apache.org Received: (qmail 8619 invoked from network); 16 Mar 2006 12:15:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 16 Mar 2006 12:15:01 -0000 Received: (qmail 18108 invoked by uid 500); 16 Mar 2006 12:15:00 -0000 Mailing-List: contact jackrabbit-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: jackrabbit-dev@incubator.apache.org Delivered-To: mailing list jackrabbit-dev@incubator.apache.org Received: (qmail 18097 invoked by uid 99); 16 Mar 2006 12:14:59 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Mar 2006 04:14:59 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of the.mindstorm.mailinglist@gmail.com designates 64.233.182.195 as permitted sender) Received: from [64.233.182.195] (HELO nproxy.gmail.com) (64.233.182.195) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Mar 2006 04:14:58 -0800 Received: by nproxy.gmail.com with SMTP id k27so256353nfc for ; Thu, 16 Mar 2006 04:14:36 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=VQpVrx515qICo7MGW86kL3xOQyyn60UcL+0Tmwc8+pL+21y/oRuk9VfaQfPPyKCrFVZogBa6xL6hg1Y4LdQwMw+IqufQQ7oASzhmXgf93iuUBRusPnPGkfPJ/c888Q5sC8sOcBrLRSE1ZocynCavYHlat8+/UkQPJrurMCIY6H4= Received: by 10.48.224.18 with SMTP id w18mr784446nfg; Thu, 16 Mar 2006 04:14:36 -0800 (PST) Received: by 10.49.61.12 with HTTP; Thu, 16 Mar 2006 04:14:35 -0800 (PST) Message-ID: Date: Thu, 16 Mar 2006 14:14:35 +0200 From: "Alexandru Popescu" To: jackrabbit-dev@incubator.apache.org Subject: Re: Question about not case-sensitive querying In-Reply-To: <4418502A.7010404@gmx.net> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_2012_1586808.1142511275997" References: <4418502A.7010404@gmx.net> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_2012_1586808.1142511275997 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Does the jcr:contains works against multi-value properties too? I have a multi-value property that contains long values, and I wonder if I can something like: //*[jcr:contains(@my:property, '1')] tia, ./alex -- .w( the_mindstorm )p. On 3/15/06, Marcel Reutegger wrote: > > Aarnout van der Meulen wrote: > > I would like to search for nodes with a given property-value, but not > > case-sensitive. > > So, something like //*[@field1=3D"test"] , but then also resulting nod= es > > with property-values "Test', "TEST" and so on. > > > > Can I create such a query? > > Or is there another way to get the desired results? > > try the following: > > //*[jcr:contains(@field1, 'test')] > > or > > //*[jcr:contains(., 'test')] > > if you want to do a fulltext search on any property of a node. > > regards > marcel > > ------=_Part_2012_1586808.1142511275997--