Return-Path: X-Original-To: apmail-tapestry-dev-archive@www.apache.org Delivered-To: apmail-tapestry-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 0A2DAD962 for ; Wed, 3 Oct 2012 19:07:46 +0000 (UTC) Received: (qmail 78747 invoked by uid 500); 3 Oct 2012 19:07:43 -0000 Delivered-To: apmail-tapestry-dev-archive@tapestry.apache.org Received: (qmail 78621 invoked by uid 500); 3 Oct 2012 19:07:43 -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 77863 invoked by uid 99); 3 Oct 2012 19:07:42 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Oct 2012 19:07:42 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 562A637BED; Wed, 3 Oct 2012 19:07:42 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: hlship@apache.org To: commits@tapestry.apache.org X-Mailer: ASF-Git Admin Mailer Subject: [4/10] git commit: Describe removal of FormFragment.visibleBounds parameter. Message-Id: <20121003190742.562A637BED@tyr.zones.apache.org> Date: Wed, 3 Oct 2012 19:07:42 +0000 (UTC) Describe removal of FormFragment.visibleBounds parameter. Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/a15a1bfe Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/a15a1bfe Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/a15a1bfe Branch: refs/heads/5.4-js-rewrite Commit: a15a1bfe87e8406b81c9ac327d6b960e734788fa Parents: 4968997 Author: Howard M. Lewis Ship Authored: Wed Oct 3 12:05:25 2012 -0700 Committer: Howard M. Lewis Ship Committed: Wed Oct 3 12:05:25 2012 -0700 ---------------------------------------------------------------------- 54_RELEASE_NOTES.txt | 12 ++++++++---- 1 files changed, 8 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/a15a1bfe/54_RELEASE_NOTES.txt ---------------------------------------------------------------------- diff --git a/54_RELEASE_NOTES.txt b/54_RELEASE_NOTES.txt index 621dda2..4585ab7 100644 --- a/54_RELEASE_NOTES.txt +++ b/54_RELEASE_NOTES.txt @@ -53,6 +53,10 @@ attributes. # Breaking Changes: +The FormFragment component's visibleBound parameter is no longer supported; it was used to make a decision about how +far up the DOM above the FormFragment's client-side element should be searched when determining visibility. This may +resurface in the future as a CSS expression, but is currently not supported. + The definition of the symbol 'tapestry.asset-path-prefix' has changed; it no longer includes the leading and trailing slashes. The default in 5.3 was "/assets/", in 5.4 it is simply "assets". @@ -62,15 +66,15 @@ properties to the global JavaScript window object, rather than assume that the c The interface org.apache.tapestry5.services.assets.ResourceTransformer has had a new method added: getTransformedContentType(). This makes it possible to determine which file extensions map to which content types -(for example, A ResourceTransformer for CoffeeScript files, with extension ".coffee", would map to "text/javascript"). +(for example, a ResourceTransformer for CoffeeScript files, with extension ".coffee", would map to "text/javascript"). Older versions of Tapestry included client-side support for an element with the CSS class "t-zone-update" as the actual element to be updated when new content is provided for the zone in a partial page render response. This feature has been removed with no replacement. -Minor changes to Tapestry.ElementEffects. Despite the names of the properties (kept for compatibility), all "effects" -now simply make the element appear or hide, with no animation. The value returned from these methods is now an -ElementWrapper, as defined by the core/spi module. +The Tapestry.ElementEffects object has changed significantly. Despite the names of the properties (kept for compatibility), +all "effects" now simply make the element appear or hide, with no animation. The value returned from these methods is +now an ElementWrapper, as defined by the core/spi module. Tapestry code no longer makes use of Scriptaculous. Instead, Tapestry will fire events on elements, and user code may decide to animate them using whatever library is desired. The event names are defined in the core/events module.