GRAILS-1019: Allowing expressions to be used with the 'disabled' attribute for g...
[grails.git] / src / web / org / codehaus / groovy / grails / web / servlet / GrailsUrlPathHelper.java
blob807444270dd87baf80ca3a323d8a6d94a754b5bc
1 /* Copyright 2004-2005 Graeme Rocher
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
7 * http://www.apache.org/licenses/LICENSE-2.0
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
15 package org.codehaus.groovy.grails.web.servlet;
17 import org.springframework.web.util.UrlPathHelper;
19 import javax.servlet.http.HttpServletRequest;
21 /**
22 * Extends the default Spring UrlPathHelper and makes methods Grails path aware
24 * @author Graeme Rocher
25 * @since 0.5
27 * <p/>
28 * Created: Mar 13, 2007
29 * Time: 6:33:29 PM
31 public class GrailsUrlPathHelper extends UrlPathHelper {
33 public static final String GRAILS_DISPATCH_EXTENSION = ".dispatch";
34 public static final String GRAILS_SERVLET_PATH = "/grails";
36 public String getPathWithinApplication(HttpServletRequest request) {
37 String uri = super.getPathWithinApplication(request).trim();
38 if(uri.startsWith(GRAILS_SERVLET_PATH)) {
39 uri = uri.substring(GRAILS_SERVLET_PATH.length());
41 if(uri.endsWith(GRAILS_DISPATCH_EXTENSION)) {
42 return uri.substring(0,uri.length()- GRAILS_DISPATCH_EXTENSION.length());
44 return uri;