org.apache.wicket.markup.resolver.HtmlHeaderResolver Maven / Gradle / Ivy
Show all versions of org.ops4j.pax.wicket.service Show documentation
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.wicket.markup.resolver;
import org.apache.wicket.Component;
import org.apache.wicket.MarkupContainer;
import org.apache.wicket.Page;
import org.apache.wicket.markup.ComponentTag;
import org.apache.wicket.markup.MarkupException;
import org.apache.wicket.markup.MarkupStream;
import org.apache.wicket.markup.WicketTag;
import org.apache.wicket.markup.html.TransparentWebMarkupContainer;
import org.apache.wicket.markup.html.WebMarkupContainer;
import org.apache.wicket.markup.html.WebPage;
import org.apache.wicket.markup.html.internal.HtmlHeaderContainer;
import org.apache.wicket.markup.parser.filter.HtmlHeaderSectionHandler;
import org.apache.wicket.markup.parser.filter.WicketTagIdentifier;
import org.apache.wicket.util.resource.IResourceStream;
/**
* This is a tag resolver which handles <head> and <wicket:head>tags. It must be
* registered (with the application) and assumes that a ComponentTag respectively a WicketTag has
* already been created (see {@link HtmlHeaderSectionHandler} and {@link WicketTagIdentifier}).
*
* Provided the current tag is a <head>, a {@link HtmlHeaderContainer} component is created,
* (auto) added to the component hierarchy and immediately rendered. Please see the javadoc for
* {@link HtmlHeaderContainer} on how it treats the tag.
*
* In case of <wicket:head> a simple {@link WebMarkupContainer} handles the tag.
*
* @author Juergen Donnerstag
*/
public class HtmlHeaderResolver implements IComponentResolver
{
private static final long serialVersionUID = 1L;
/** */
public static final String HEAD = "head";
static
{
// register "wicket:head"
WicketTagIdentifier.registerWellKnownTagName(HEAD);
}
public Component resolve(final MarkupContainer container, final MarkupStream markupStream,
final ComponentTag tag)
{
// Only
component tags have the id == "_header"
if (tag.getId().equals(HtmlHeaderSectionHandler.HEADER_ID))
{
// Create a special header component which will gather additional
// input the from 'contributors'.
return newHtmlHeaderContainer(HtmlHeaderSectionHandler.HEADER_ID +
container.getPage().getAutoIndex());
}
else if ((tag instanceof WicketTag) && ((WicketTag)tag).isHeadTag())
{
// If we found without surrounding on a Page,
// than we have to add wicket:head into a automatically generated
// head first.
if (container instanceof WebPage)
{
// Create a special header component which will gather
// additional input the from 'contributors'.
MarkupContainer header = newHtmlHeaderContainer(HtmlHeaderSectionHandler.HEADER_ID +
container.getPage().getAutoIndex());
// It is . Because they do not provide any
// additional functionality they are merely a means of surrounding relevant
// markup. Thus we simply create a WebMarkupContainer to handle
// the tag.
WebMarkupContainer header2 = new TransparentWebMarkupContainer(
HtmlHeaderSectionHandler.HEADER_ID);
header2.setRenderBodyOnly(true);
header.add(header2);
return header;
}
else if (container instanceof HtmlHeaderContainer)
{
// It is . Because they do not provide any
// additional functionality there are merely a means of surrounding
// relevant markup. Thus we simply create a WebMarkupContainer to handle
// the tag.
WebMarkupContainer header = new TransparentWebMarkupContainer(
HtmlHeaderSectionHandler.HEADER_ID);
header.setRenderBodyOnly(true);
return header;
}
final Page page = container.getPage();
final String pageClassName = (page != null) ? page.getClass().getName() : "unknown";
final IResourceStream stream = markupStream.getResource();
final String streamName = (stream != null) ? stream.toString() : "unknown";
throw new MarkupException(
"Mis-placed . must be outside of , , and . Error occured while rendering page: " +
pageClassName + " using markup stream: " + streamName);
}
// We were not able to handle the tag
return null;
}
/**
* Return a new HtmlHeaderContainer
*
* @param id
* @return HtmlHeaderContainer
*/
protected HtmlHeaderContainer newHtmlHeaderContainer(String id)
{
return new HtmlHeaderContainer(id);
}
}