Return-Path: Delivered-To: apmail-jakarta-tomcat-dev-archive@jakarta.apache.org Received: (qmail 85436 invoked by uid 500); 1 Oct 2001 09:17:40 -0000 Mailing-List: contact tomcat-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: tomcat-dev@jakarta.apache.org Delivered-To: mailing list tomcat-dev@jakarta.apache.org Received: (qmail 85427 invoked from network); 1 Oct 2001 09:17:39 -0000 Message-ID: From: GOMEZ Henri To: tomcat-dev@jakarta.apache.org Subject: RE: Volunteers for: - RE: TC 3.3: getRequestURI() Date: Mon, 1 Oct 2001 11:17:45 +0200 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N >- Revert jk/apache to use uri, remove the encode call ( again, j-t and >j-t-c - one more week to do that, after that we'll be j-t-c >only ). Henri >- could you do this and the next one ? I'll reintroduce the JkOptions which will help us play with different encoding : ForwardStandardURI : will send just std uri s->req_uri = r->uri ForwardEscapedURI : will send escaped s->req_uri = ap_escape_uri(r->uri)) ForwardUnparsedURI : will send escaped s->req_uri = r->unparsed_uri; if (s->req_uri != NULL) { char *query_str = strchr(s->req_uri, '?'); if (query_str != NULL) { *query_str = 0; } We could later drop support for some options and make by default ForwardEscapedURI ....