Return-Path: Delivered-To: apmail-incubator-abdera-dev-archive@locus.apache.org Received: (qmail 10395 invoked from network); 6 Sep 2007 07:50:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 6 Sep 2007 07:50:52 -0000 Received: (qmail 30379 invoked by uid 500); 6 Sep 2007 07:50:47 -0000 Delivered-To: apmail-incubator-abdera-dev-archive@incubator.apache.org Received: (qmail 30356 invoked by uid 500); 6 Sep 2007 07:50:47 -0000 Mailing-List: contact abdera-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: abdera-dev@incubator.apache.org Delivered-To: mailing list abdera-dev@incubator.apache.org Received: (qmail 30347 invoked by uid 99); 6 Sep 2007 07:50:47 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 06 Sep 2007 00:50:47 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of ugo.cei@gmail.com designates 64.233.182.185 as permitted sender) Received: from [64.233.182.185] (HELO nf-out-0910.google.com) (64.233.182.185) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 06 Sep 2007 07:50:43 +0000 Received: by nf-out-0910.google.com with SMTP id h3so69252nfh for ; Thu, 06 Sep 2007 00:50:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:mime-version:in-reply-to:references:content-type:message-id:content-transfer-encoding:from:subject:date:to:x-mailer; bh=40DcfiSHY87qcBet3Gz5sdP8E1VmS2pdzPysKt+ELHw=; b=B7ka1ZNHU+Hcal3CmK1qCGuKMLVI/ppoDEoIddI59m3UUz1P/Mj0ZtWow6JYSwk0jFN5RBz7lsRUMMeKSAyCfyllLDnN9barbo+O2lkcKeG3o6kjG5P/bwOvDZN9YjJWhxEL7EgYNUd0ZDlg+s7vGJ3qBSrV0PFQdA8AIMKj2Nk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:mime-version:in-reply-to:references:content-type:message-id:content-transfer-encoding:from:subject:date:to:x-mailer; b=ut2o4T6IjYeqUxU0ulxigWQaQA2zSfx0fO1ttl2/A1Do5k/evhqkTQdVf+0rHVhNF8lBbOsLppm5ieXzO1S2QX+IY71X2ASXnTdn0UxJIQC7e4uE3NnxrjptCW2F3NVNXyoXf/4nYL4XSDyMQgSIJ5KXtw2hhVyPH8jA5Tsmpdk= Received: by 10.78.140.16 with SMTP id n16mr144231hud.1189065021045; Thu, 06 Sep 2007 00:50:21 -0700 (PDT) Received: from ?192.168.1.3? ( [151.66.63.10]) by mx.google.com with ESMTPS id 29sm492117uga.2007.09.06.00.50.17 (version=SSLv3 cipher=OTHER); Thu, 06 Sep 2007 00:50:18 -0700 (PDT) Mime-Version: 1.0 (Apple Message framework v752.3) In-Reply-To: <46DF1009.2070905@mulesource.com> References: <46DCA833.1050700@gmail.com> <46DF1009.2070905@mulesource.com> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Ugo Cei Subject: Re: Abdera wiki Date: Thu, 6 Sep 2007 09:50:18 +0200 To: abdera-dev@incubator.apache.org X-Mailer: Apple Mail (2.752.3) X-Virus-Checked: Checked by ClamAV on apache.org On Sep 5, 2007, at 10:22 PM, Dan Diephouse wrote: > I took the liberty of implementing a left hand navigation system > and doing a few touch ups while I added some Spring docs. See: > > http://cwiki.apache.org/confluence/display/ABDERA/Index Correct me if I'm wrong, but in the example you posted, which is the same that is in the samples dir of the Spring module: /atom/feed(\\?[^#]*)? /atom/feed/([^/#?]+)(\\?[^#]*)? /atom(\\?[^#]*)? shouldn't the double backslashes before a question mark be single backslashes? Double backslashes are OK in Java string constants where you have to escape the backslash, but not in the bare regex, where you only need a single backslash to escape the question mark. Ugo