Return-Path: Delivered-To: apmail-cocoon-dev-archive@www.apache.org Received: (qmail 66901 invoked from network); 29 Nov 2007 22:04:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 29 Nov 2007 22:04:14 -0000 Received: (qmail 33839 invoked by uid 500); 29 Nov 2007 22:04:01 -0000 Delivered-To: apmail-cocoon-dev-archive@cocoon.apache.org Received: (qmail 33751 invoked by uid 500); 29 Nov 2007 22:04:01 -0000 Mailing-List: contact dev-help@cocoon.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@cocoon.apache.org List-Id: Delivered-To: mailing list dev@cocoon.apache.org Received: (qmail 33740 invoked by uid 99); 29 Nov 2007 22:04:01 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Nov 2007 14:04:01 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED 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; Thu, 29 Nov 2007 22:03:41 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 17E8D71420A for ; Thu, 29 Nov 2007 14:03:43 -0800 (PST) Message-ID: <29369788.1196373823067.JavaMail.jira@brutus> Date: Thu, 29 Nov 2007 14:03:43 -0800 (PST) From: "Alfred Nathaniel (JIRA)" To: dev@cocoon.apache.org Subject: [jira] Commented: (COCOON-1990) Redirect bug WITHIN sub sitemap WHEN using uri-prefix in map:mount In-Reply-To: <6022468.1169914129104.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/COCOON-1990?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12546916 ] Alfred Nathaniel commented on COCOON-1990: ------------------------------------------ Your case does not work only because the sub-sitemap is in the same directory as the root sitemap. If you move it to a sub-directory as in then it works. The problem is here in ConcreteTreeProcessor: // Get the processor that should process this request ConcreteTreeProcessor processor; ! if (newEnv.getRootContext().equals(newEnv.getContext())) { processor = ((TreeProcessor)getRootProcessor()).concreteProcessor; } else { processor = this; } In 2.2 that reads (already since 2004): // Get the processor that should process this request ConcreteTreeProcessor processor; ! if ( newEnv.getURIPrefix().equals("") ) { processor = ((TreeProcessor)getRootProcessor()).concreteProcessor; } else { processor = this; } I don't have the time right now to backport that fix to 2.1. I'll do it later if nobody else steps in beforehand. > Redirect bug WITHIN sub sitemap WHEN using uri-prefix in map:mount > ------------------------------------------------------------------ > > Key: COCOON-1990 > URL: https://issues.apache.org/jira/browse/COCOON-1990 > Project: Cocoon > Issue Type: Bug > Components: * Cocoon Core > Affects Versions: 2.1.10 > Reporter: Robert Hoffmann > Assignee: Alfred Nathaniel > > Hi cocoon developers, > I found the following problem with redirects within sub-sitemaps WHEN using the uri-prefix in map:mount... > Test case: > 1) Sitemaps: > Root sitemap >> > ... > > > > > ...<< > Sub sitemap >> > ... > > > > > > > ...<< > 2) NOW: When you request "http://testserver/cocoon/test/A.html"... > you should get redirected to B.html WITHIN the sub sitemap (that's why we use 'cocoon:/B.html' and not 'cocoon://B.html')... > BUT the redirect does NOT work correctly, hence we will not get the google-site which would be the correct result. > 3) The cocoon.log says: http-11080-Processor23/CocoonServlet: No pipeline matched request: test/B.html !!! > [So it seems to me that the uri-prefix from the sub-sitemap mount is added in the this redirect, which might be why it does not match then within the sub-sitemap.] > 3) Important: This only goes wrong when using the uri-prefix[-remove] attribute in map:mount > I hope this detailed test case will be helpful to one of the cocoon gurus... I really would hate if I had to use redirects to the ROOT sitemap (that's not the idea of sub sitemaps). > Many thanks!!! > Robert > PS: Cocoon really rocks! > -- > Have you tried iHOP yet? http://www.ihop-net.org/UniPub/iHOP/ -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.