On Sun, 26 Apr 2015 09:02:17 -0300, Stephen Nutbrown <steves...@gmail.com> wrote:

Hi,

Hi!

The version of Tapestry I am using is: 5.4-beta-26, which I believe is
the latest.

No, it's not. Looking at https://git1-us-west.apache.org/repos/asf?p=tapestry-5.git, you can see the latest one is beta 31. Anyway, beta 26 was created after TAP5-2071's fix. Anyway #2, I think you're not actually using the HTML5 doctype so the fix is applied to your HTML output:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml";
xmlns:t="http://tapestry.apache.org/schema/tapestry_5_4.xsd";
xmlns:p="tapestry:parameter">

This way, you're requesting XHTML output, as you have the XHTML namespace declaration, which isn't the same as HTML5 at all. Please try this:

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml";
xmlns:t="http://tapestry.apache.org/schema/tapestry_5_4.xsd";
xmlns:p="tapestry:parameter">

--
Thiago H. de Paula Figueiredo
Tapestry, Java and Hibernate consultant and developer
http://machina.com.br

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to