Community
Participate
Working Groups
Dropping a tag onto a jsp in WPE where there was no previous taglib reference results in a taglib reference before the page directive. Also, the new taglib directive is formatted poorly. eg. Today we get, <%@taglib uri="http://java.sun.com/jsf/html" prefix="h"%><%@taglib uri="http://java.sun.com/jsf/core" prefix="f"%><%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> where as, it would be preferrable to result in, <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> <%@taglib uri="http://java.sun.com/jsf/core" prefix="f"%> <%@taglib uri="http://java.sun.com/jsf/html" prefix="h"%>