blob: 00b24ac3b9713f2dfefa8c5713e484f2151cfdf1 [file] [log] [blame]
/*
* 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.struts2.views.java;
import org.apache.struts2.components.template.TemplateRenderingContext;
import org.apache.commons.lang3.StringUtils;
import org.apache.commons.text.StringEscapeUtils;
import java.io.IOException;
import java.io.Writer;
import java.util.Map;
/**
* Write tags as XHTML
*/
public class XHTMLTagSerializer implements TagSerializer {
protected Writer writer;
public void characters(String text) throws IOException {
characters(text, true);
}
public void characters(String text, boolean encode) throws IOException {
writer.write(encode ? StringUtils.defaultString(StringEscapeUtils.escapeHtml4(text)) : text);
}
public void end(String name) throws IOException {
writer.write("</");
writer.write(name);
writer.write(">");
}
public void setNext(TagHandler next) {
}
public void start(String name, Attributes attrs) throws IOException {
writer.write("<");
writer.write(name);
if (attrs != null) {
for (Map.Entry<String, String> entry : attrs.entrySet()) {
writer.write(" ");
writer.write(entry.getKey());
writer.write("=\"");
writer.write(entry.getValue());
writer.write("\"");
}
}
writer.write(">");
}
public void setup(TemplateRenderingContext context) {
this.writer = context.getWriter();
}
}