Return-Path: Delivered-To: apmail-tapestry-dev-archive@www.apache.org Received: (qmail 41675 invoked from network); 17 Sep 2009 00:16:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 17 Sep 2009 00:16:21 -0000 Received: (qmail 23982 invoked by uid 500); 17 Sep 2009 00:16:21 -0000 Delivered-To: apmail-tapestry-dev-archive@tapestry.apache.org Received: (qmail 23889 invoked by uid 500); 17 Sep 2009 00:16:21 -0000 Mailing-List: contact commits-help@tapestry.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@tapestry.apache.org Delivered-To: mailing list commits@tapestry.apache.org Received: (qmail 23863 invoked by uid 99); 17 Sep 2009 00:16:21 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 17 Sep 2009 00:16:21 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 17 Sep 2009 00:16:19 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 9097D234C1EF for ; Wed, 16 Sep 2009 17:15:59 -0700 (PDT) Message-ID: <246011799.1253146559591.JavaMail.jira@brutus> Date: Wed, 16 Sep 2009 17:15:59 -0700 (PDT) From: "Howard M. Lewis Ship (JIRA)" To: commits@tapestry.apache.org Subject: [jira] Created: (TAP5-845) Informal Parameters are not allowed to have the value "" (the empty string) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Informal Parameters are not allowed to have the value "" (the empty string) --------------------------------------------------------------------------- Key: TAP5-845 URL: https://issues.apache.org/jira/browse/TAP5-845 Project: Tapestry 5 Issue Type: Bug Components: tapestry-core Affects Versions: 5.2.0.0 Reporter: Howard M. Lewis Ship Priority: Minor A simple component: @SupportsInformalParameters public class Img { @Inject private ComponentResources resources; @Parameter(autoconnect = true, defaultPrefix = BindingConstants.CONTEXT) private Asset src; boolean beginRender(MarkupWriter writer) { writer.element("img", "src", src); resources.renderInformalParameters(writer); writer.end(); return true; } } Fails on: With: Parameter 'alt' must have a non-empty binding. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.