Return-Path: X-Original-To: apmail-couchdb-user-archive@www.apache.org Delivered-To: apmail-couchdb-user-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 203214052 for ; Tue, 31 May 2011 10:48:37 +0000 (UTC) Received: (qmail 23894 invoked by uid 500); 31 May 2011 10:48:35 -0000 Delivered-To: apmail-couchdb-user-archive@couchdb.apache.org Received: (qmail 23847 invoked by uid 500); 31 May 2011 10:48:35 -0000 Mailing-List: contact user-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@couchdb.apache.org Delivered-To: mailing list user@couchdb.apache.org Received: (qmail 23839 invoked by uid 99); 31 May 2011 10:48:35 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 31 May 2011 10:48:35 +0000 X-ASF-Spam-Status: No, hits=1.5 required=5.0 tests=FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_LOW,RFC_ABUSE_POST,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of ladicek@gmail.com designates 209.85.213.180 as permitted sender) Received: from [209.85.213.180] (HELO mail-yx0-f180.google.com) (209.85.213.180) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 31 May 2011 10:48:31 +0000 Received: by yxe1 with SMTP id 1so2504975yxe.11 for ; Tue, 31 May 2011 03:48:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:content-type; bh=YlfDRKClsiQHyGV/VRsA96ugTW+4zfoG/dAuzl4l8QU=; b=Ig8hF5mL5btDmwyQlv3sCrU9Zgi6lUqMTg/+zX6l+59He/qIgP+snE5Du8o3dkBLrt qpau8Dg/pd7tOaL5/Tv7wVcbCr/gPanCajqfbIIAS974OtklOp1KMTCnvHTzMhznDlUH LLl94pSxXDeoHVPLOefivpX8tPETMlHZkS0uw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=vQ6IZki8jU3eRhP/DbCwamj33f1LH8Tzq2CvWxm2ERRIQScQrBUxO0JbOZAwofZSgw XcSj4LGA9P12ecA1iDXOCRYw0w/q+YW0LmpqC6ddWEG6JsKCotlb4w0W7zodHFA0nSZn /GZ0Cn34NzO7isRVYQzdUWs0W9CyTXBcfUFLw= MIME-Version: 1.0 Received: by 10.151.26.15 with SMTP id d15mr4797008ybj.318.1306838890300; Tue, 31 May 2011 03:48:10 -0700 (PDT) Received: by 10.147.125.20 with HTTP; Tue, 31 May 2011 03:48:10 -0700 (PDT) In-Reply-To: References: Date: Tue, 31 May 2011 12:48:10 +0200 Message-ID: Subject: Re: Problem with czech alphabet in View_Collation From: Ladislav Thon To: user@couchdb.apache.org Content-Type: multipart/alternative; boundary=000e0cd6a83cd5c53904a49023e9 --000e0cd6a83cd5c53904a49023e9 Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: quoted-printable IIRC, this isn't supported right now, but will be (might be? :-) ) in the future. See this thread: http://www.mail-archive.com/user@couchdb.apache.org/msg10606.html for previous discussion. LT 2011/5/31 Ladislav Prskavec > I have simple view: > > function(doc) { > if (doc.parentId =3D=3D "0") { > emit(doc.seoname, [doc.id, doc.seourl, doc.rank]); > } > } > > and in results: > > {"id":"S0001","key":"Brno Business > School","value":["S0001","brno-business-school",5]}, > {"id":"41000","key":"\u010desk\u00e1 zem\u011bd\u011blsk\u00e1 univerzita= v > Praze","value":["41000","ceska-zemedelska-univerzita-v-praze",5]}, > {"id":"21000","key":"\u010cesk\u00e9 vysok\u00e9 u\u010den\u00ed > technick\u00e9 v > Praze","value":["21000","ceske-vysoke-uceni-technicke-v-praze",5]}, > {"id":"7D000","key":"CEVRO Institut, o. p. > s.","value":["7D000","cevro-institut-o-p-s",5]}, {"id":"S0003","key":"CMC > Graduate School of Business > o.p.s.","value":["S0003","cmc-graduate-school-of-business-o-p-s",5]}, > > I have problem with \u010 (=C8) is before C, but in alphabet we have C, = =C8 > order. > It's bug? ICU can solve this. > > Thanks for help. > > > --000e0cd6a83cd5c53904a49023e9--