You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@wicket.apache.org by martin-g <gi...@git.apache.org> on 2017/07/31 15:54:13 UTC

[GitHub] wicket pull request #225: Some changes regarding CssHeaderItem / push integr...

Github user martin-g commented on a diff in the pull request:

    https://github.com/apache/wicket/pull/225#discussion_r130392658
  
    --- Diff: wicket-experimental/wicket-http2/wicket-http2-core/src/main/java/org/apache/wicket/http2/markup/head/PushHeaderItem.java ---
    @@ -361,7 +366,32 @@ else if (url.toString().startsWith("."))
     					url = url.toString().substring(1);
     				}
     
    -				urls.add(url.toString());
    +				// The context path and the filter have to be applied to the URL, because otherwise
    +				// the resource is not pushed correctly
    +				StringBuffer partialUrl = new StringBuffer();
    +				String contextPath = WebApplication.get().getServletContext().getContextPath();
    +				partialUrl.append(contextPath);
    +				if (!contextPath.equals("/"))
    +				{
    +					partialUrl.append("/");
    +				}
    +				String filterPath = WebApplication.get().getWicketFilter().getFilterPath();
    +				if (filterPath.equals("/"))
    +				{
    +					filterPath = "";
    +				}
    +				else if (filterPath.endsWith("/"))
    +				{
    +					filterPath = filterPath.replaceAll(".$", "");
    +				}
    +				partialUrl.append(filterPath);
    --- End diff --
    
    I miss you too! ;-)
    
    `org.apache.wicket.protocol.http.servlet.ServletWebRequest` has methods for both.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---