Return-Path: Delivered-To: apmail-myfaces-users-archive@www.apache.org Received: (qmail 69397 invoked from network); 22 Jul 2008 07:37:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 22 Jul 2008 07:37:42 -0000 Received: (qmail 98441 invoked by uid 500); 22 Jul 2008 07:37:38 -0000 Delivered-To: apmail-myfaces-users-archive@myfaces.apache.org Received: (qmail 98400 invoked by uid 500); 22 Jul 2008 07:37:38 -0000 Mailing-List: contact users-help@myfaces.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "MyFaces Discussion" Delivered-To: mailing list users@myfaces.apache.org Received: (qmail 98384 invoked by uid 99); 22 Jul 2008 07:37:38 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Jul 2008 00:37:38 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of antongavazuk@gmail.com designates 209.85.128.186 as permitted sender) Received: from [209.85.128.186] (HELO fk-out-0910.google.com) (209.85.128.186) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Jul 2008 07:36:44 +0000 Received: by fk-out-0910.google.com with SMTP id 19so1303151fkr.12 for ; Tue, 22 Jul 2008 00:37:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type:content-transfer-encoding :content-disposition; bh=KG5fucXQrDR9AH7HOZCSNYxQpxO9nT2pnm79aBEsFwE=; b=uL9goU9f9C5m6M/Z0WlLwCC+lq9OZIVLLYXmeuNdx3rXrLLmzd6wm4x2dlKA86Q82Y oTUg+DOHd0xUdrbPTdJwFlQGxxd65IqjsJWONWiEsP5jxJRj8bo4zUpqzTg1je2YCS1A BBLl9jYPN/WnMe7yRa2iL6DIYdzTNdu2X/8BA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=FfADdA0wgnXGWNylk4K/da2klbve56A8tDkMpIRKMY71qunMUIYUFuwcEZkoT+RuwD XOAQUAVo7/5dHPQJmFR5rEXQ6qqUSmmSe/iJutILrDO8i9+ycoAihjtfDktOqfn3jb47 jRsNu3vF9zCZe39pKxTRkKUXR7J6aEfg6TsA4= Received: by 10.180.240.10 with SMTP id n10mr2520641bkh.69.1216712227998; Tue, 22 Jul 2008 00:37:07 -0700 (PDT) Received: by 10.86.4.10 with HTTP; Tue, 22 Jul 2008 00:37:07 -0700 (PDT) Message-ID: Date: Tue, 22 Jul 2008 10:37:07 +0300 From: "Anton Gavazuk" To: "MyFaces Discussion" Subject: [TOMAHAWK][MYFACES1.2][TILES] Strange behaviour of html MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org Hi all, my env: myfaces core and impl - latest build 1.2.4 tiles - 2.0.5 tomahawk - last build for 12 branch now see very strange behaviour with page layout: tiles base page for layout defined like this: <%@ page contentType="text/html;charset=UTF-8" language="java" pageEncoding="UTF-8" %> <%@ taglib prefix="f" uri="http://java.sun.com/jsf/core" %> <%@ taglib prefix="tiles" uri="http://tiles.apache.org/tags-tiles" %>
is being processed in such html:
Empty page
please notice, that I didnt change layout of html result. I put the same content in simple jsf page (without tiles): <%@ page contentType="text/html;charset=UTF-8" language="java" pageEncoding="UTF-8" %> <%@ taglib prefix="f" uri="http://java.sun.com/jsf/core" %> <%@ taglib prefix="h" uri="http://java.sun.com/jsf/html" %>
and it is being rendered as :
Ouytewtsdfsd
and the stranges thing here is css style has not been applied to page (simple jsf case) I only see the output of h:output component. In tiles case the style is applied to the page, but for some reason tags dont have content. What is wrong? Is this problem in latest myfaces builds?