Hi Thiago, thanks for your reply!

It looks like I was confused about the doctypes and namespaces. I
finally got it fixed, thank you!

For anyone else who stumbled across this thread, I was looking for the
latest version here:
http://mvnrepository.com/artifact/org.apache.tapestry
It looks like mvnrepository.com is not always up to date with the latest.

Thank you Thiago for pointing me to the more up-to-date git
repository. As soon as I get a chance i'll see if I can update to the
latest version again as it looks like there have been a lot of updates
since beta 28. Actually, this link is fantastic for keeping up to date
with what is going on. Thankyou :).

Steve

On 27 April 2015 at 13:38, Thiago H de Paula Figueiredo
<thiag...@gmail.com> wrote:
> 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
>

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

Reply via email to