Example usage for org.apache.wicket.markup.parser AbstractMarkupFilter subclass-usage

List of usage examples for org.apache.wicket.markup.parser AbstractMarkupFilter subclass-usage

Introduction

In this page you can find the example usage for org.apache.wicket.markup.parser AbstractMarkupFilter subclass-usage.

Usage

From source file com.lyndir.lhunath.snaplog.webapp.filter.OpenCloseTagExpander.java

/**
 * MarkupFilter that expands certain open-close tag as separate open and close tags. Firefox, unless it gets text/xml mime type, treats
 * these open-close tags as open tags which results in corrupted DOM. This happens even with xhtml doctype.
 *
 * In addition, some tags are required open-body-close for Wicket to work properly.
 *

From source file jp.javelindev.wicket.MyMarkupFilter.java

/**
 *
 * @author Tsutomu YANO
 */
public class MyMarkupFilter extends AbstractMarkupFilter {
    private static final Logger LOGGER = LoggerFactory.getLogger(MyMarkupFilter.class);

From source file net.jawr.web.wicket.JawrWicketLinkTagHandler.java

/**
 * This filter is highly inspired from the WicketLinkTagHandler.
 * 
 * This is a markup inline filter. It identifies xml tags which include a href
 * attribute and which are not Wicket specific components and flags these tags
 * (ComponentTag) as modified component. A component resolver

From source file org.apache.openmeetings.web.app.MessageTagHandler.java

public class MessageTagHandler extends AbstractMarkupFilter implements IComponentResolver {
    /** */
    private static final long serialVersionUID = 1L;

    /**
     * The id automatically assigned to tags with wicket:message attribute but

From source file org.madogiwa.wicket.altmark.HtmlTagIdentifier.java

/**
 * @author Hidenori Sugiyama
 *
 */
public class HtmlTagIdentifier extends AbstractMarkupFilter {