A couple of comments on J2EE conformance with the Roller 2.1-RC2 release
In the roller web.xml, please consider changing the web-apps declaration from
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application
2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app >
to
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
version="2.4">
The current web.xml does not conform to the servlet 2.3 specification and users
wishing to use 2.3 would have to modify the web.xml anyway.
Also please consider changing all the JSTL taglib declaration uri's from
http://java.sun.com/jstl/core
http://java.sun.com/jstl/fmt
http://java.sun.com/jstl/xml
http://java.sun.com/jsp/jstl/core
http://java.sun.com/jsp/jstl/fmt
http://java.sun.com/jsp/jstl/xml
to be conforment with the JSTL JCP specifcation.