You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by "Howard M. Lewis Ship (JIRA)" <ji...@apache.org> on 2011/08/16 20:27:27 UTC

[jira] [Created] (TAP5-1612) tapestry.js has error in client-side exception message inside Tapestry.updateZoneOnEvent()

tapestry.js has error in client-side exception message inside Tapestry.updateZoneOnEvent() 
-------------------------------------------------------------------------------------------

                 Key: TAP5-1612
                 URL: https://issues.apache.org/jira/browse/TAP5-1612
             Project: Tapestry 5
          Issue Type: Bug
          Components: tapestry-core
            Reporter: Howard M. Lewis Ship
            Priority: Minor




    updateZoneOnEvent : function(eventName, element, zoneId, url) {
        element = $(element);

        $T(element).zoneUpdater = true;

        var zoneElement = zoneId == '^' ? $(element).up('.t-zone')
            : $(zoneId);

        if (!zoneElement) {
            Tapestry
                .error(
                "Could not find zone element '#{zoneId}' to update on #{eventName} of element '#{elementId}",
                {
                    zoneId : zoneId,
                    eventName : eventName,
                    elementId : element.id
                });
            return;
        }


There's a missing trailing apostrophe.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Closed] (TAP5-1612) Tapestry.updateZoneOnEvent() has a poorly formatted message when the element is not found

Posted by "Howard M. Lewis Ship (Closed) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-1612?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Howard M. Lewis Ship closed TAP5-1612.
--------------------------------------

       Resolution: Fixed
    Fix Version/s: 5.3
    
> Tapestry.updateZoneOnEvent() has a poorly formatted message when the element is not found
> -----------------------------------------------------------------------------------------
>
>                 Key: TAP5-1612
>                 URL: https://issues.apache.org/jira/browse/TAP5-1612
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>            Reporter: Howard M. Lewis Ship
>            Assignee: Howard M. Lewis Ship
>            Priority: Minor
>              Labels: javascript
>             Fix For: 5.3
>
>
>     updateZoneOnEvent : function(eventName, element, zoneId, url) {
>         element = $(element);
>         $T(element).zoneUpdater = true;
>         var zoneElement = zoneId == '^' ? $(element).up('.t-zone')
>             : $(zoneId);
>         if (!zoneElement) {
>             Tapestry
>                 .error(
>                 "Could not find zone element '#{zoneId}' to update on #{eventName} of element '#{elementId}",
>                 {
>                     zoneId : zoneId,
>                     eventName : eventName,
>                     elementId : element.id
>                 });
>             return;
>         }
> There's a missing trailing apostrophe.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Closed] (TAP5-1612) Tapestry.updateZoneOnEvent() has a poorly formatted message when the element is not found

Posted by "Howard M. Lewis Ship (Closed) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-1612?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Howard M. Lewis Ship closed TAP5-1612.
--------------------------------------

       Resolution: Fixed
    Fix Version/s: 5.3
    
> Tapestry.updateZoneOnEvent() has a poorly formatted message when the element is not found
> -----------------------------------------------------------------------------------------
>
>                 Key: TAP5-1612
>                 URL: https://issues.apache.org/jira/browse/TAP5-1612
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>            Reporter: Howard M. Lewis Ship
>            Assignee: Howard M. Lewis Ship
>            Priority: Minor
>              Labels: javascript
>             Fix For: 5.3
>
>
>     updateZoneOnEvent : function(eventName, element, zoneId, url) {
>         element = $(element);
>         $T(element).zoneUpdater = true;
>         var zoneElement = zoneId == '^' ? $(element).up('.t-zone')
>             : $(zoneId);
>         if (!zoneElement) {
>             Tapestry
>                 .error(
>                 "Could not find zone element '#{zoneId}' to update on #{eventName} of element '#{elementId}",
>                 {
>                     zoneId : zoneId,
>                     eventName : eventName,
>                     elementId : element.id
>                 });
>             return;
>         }
> There's a missing trailing apostrophe.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Updated] (TAP5-1612) Tapestry.updateZoneOnEvent() has a poorly formatted message when the element is not found

Posted by "Howard M. Lewis Ship (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-1612?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Howard M. Lewis Ship updated TAP5-1612:
---------------------------------------

    Assignee: Howard M. Lewis Ship
     Summary: Tapestry.updateZoneOnEvent() has a poorly formatted message when the element is not found  (was: tapestry.js has error in client-side exception message inside Tapestry.updateZoneOnEvent() )
    
> Tapestry.updateZoneOnEvent() has a poorly formatted message when the element is not found
> -----------------------------------------------------------------------------------------
>
>                 Key: TAP5-1612
>                 URL: https://issues.apache.org/jira/browse/TAP5-1612
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>            Reporter: Howard M. Lewis Ship
>            Assignee: Howard M. Lewis Ship
>            Priority: Minor
>              Labels: javascript
>             Fix For: 5.3
>
>
>     updateZoneOnEvent : function(eventName, element, zoneId, url) {
>         element = $(element);
>         $T(element).zoneUpdater = true;
>         var zoneElement = zoneId == '^' ? $(element).up('.t-zone')
>             : $(zoneId);
>         if (!zoneElement) {
>             Tapestry
>                 .error(
>                 "Could not find zone element '#{zoneId}' to update on #{eventName} of element '#{elementId}",
>                 {
>                     zoneId : zoneId,
>                     eventName : eventName,
>                     elementId : element.id
>                 });
>             return;
>         }
> There's a missing trailing apostrophe.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (TAP5-1612) Tapestry.updateZoneOnEvent() has a poorly formatted message when the element is not found

Posted by "Hudson (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/TAP5-1612?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13129356#comment-13129356 ] 

Hudson commented on TAP5-1612:
------------------------------

Integrated in tapestry-trunk-freestyle #580 (See [https://builds.apache.org/job/tapestry-trunk-freestyle/580/])
    TAP5-1612: Tapestry.updateZoneOnEvent() has a poorly formatted message when the element is not found

hlship : http://svn.apache.org/viewcvs.cgi/?root=Apache-SVN&view=rev&rev=1185415
Files : 
* /tapestry/tapestry5/trunk/tapestry-core/src/main/resources/org/apache/tapestry5/tapestry.js

                
> Tapestry.updateZoneOnEvent() has a poorly formatted message when the element is not found
> -----------------------------------------------------------------------------------------
>
>                 Key: TAP5-1612
>                 URL: https://issues.apache.org/jira/browse/TAP5-1612
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>            Reporter: Howard M. Lewis Ship
>            Assignee: Howard M. Lewis Ship
>            Priority: Minor
>              Labels: javascript
>             Fix For: 5.3
>
>
>     updateZoneOnEvent : function(eventName, element, zoneId, url) {
>         element = $(element);
>         $T(element).zoneUpdater = true;
>         var zoneElement = zoneId == '^' ? $(element).up('.t-zone')
>             : $(zoneId);
>         if (!zoneElement) {
>             Tapestry
>                 .error(
>                 "Could not find zone element '#{zoneId}' to update on #{eventName} of element '#{elementId}",
>                 {
>                     zoneId : zoneId,
>                     eventName : eventName,
>                     elementId : element.id
>                 });
>             return;
>         }
> There's a missing trailing apostrophe.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (TAP5-1612) Tapestry.updateZoneOnEvent() has a poorly formatted message when the element is not found

Posted by "Hudson (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/TAP5-1612?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13129356#comment-13129356 ] 

Hudson commented on TAP5-1612:
------------------------------

Integrated in tapestry-trunk-freestyle #580 (See [https://builds.apache.org/job/tapestry-trunk-freestyle/580/])
    TAP5-1612: Tapestry.updateZoneOnEvent() has a poorly formatted message when the element is not found

hlship : http://svn.apache.org/viewcvs.cgi/?root=Apache-SVN&view=rev&rev=1185415
Files : 
* /tapestry/tapestry5/trunk/tapestry-core/src/main/resources/org/apache/tapestry5/tapestry.js

                
> Tapestry.updateZoneOnEvent() has a poorly formatted message when the element is not found
> -----------------------------------------------------------------------------------------
>
>                 Key: TAP5-1612
>                 URL: https://issues.apache.org/jira/browse/TAP5-1612
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>            Reporter: Howard M. Lewis Ship
>            Assignee: Howard M. Lewis Ship
>            Priority: Minor
>              Labels: javascript
>             Fix For: 5.3
>
>
>     updateZoneOnEvent : function(eventName, element, zoneId, url) {
>         element = $(element);
>         $T(element).zoneUpdater = true;
>         var zoneElement = zoneId == '^' ? $(element).up('.t-zone')
>             : $(zoneId);
>         if (!zoneElement) {
>             Tapestry
>                 .error(
>                 "Could not find zone element '#{zoneId}' to update on #{eventName} of element '#{elementId}",
>                 {
>                     zoneId : zoneId,
>                     eventName : eventName,
>                     elementId : element.id
>                 });
>             return;
>         }
> There's a missing trailing apostrophe.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Updated] (TAP5-1612) Tapestry.updateZoneOnEvent() has a poorly formatted message when the element is not found

Posted by "Howard M. Lewis Ship (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-1612?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Howard M. Lewis Ship updated TAP5-1612:
---------------------------------------

    Assignee: Howard M. Lewis Ship
     Summary: Tapestry.updateZoneOnEvent() has a poorly formatted message when the element is not found  (was: tapestry.js has error in client-side exception message inside Tapestry.updateZoneOnEvent() )
    
> Tapestry.updateZoneOnEvent() has a poorly formatted message when the element is not found
> -----------------------------------------------------------------------------------------
>
>                 Key: TAP5-1612
>                 URL: https://issues.apache.org/jira/browse/TAP5-1612
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>            Reporter: Howard M. Lewis Ship
>            Assignee: Howard M. Lewis Ship
>            Priority: Minor
>              Labels: javascript
>             Fix For: 5.3
>
>
>     updateZoneOnEvent : function(eventName, element, zoneId, url) {
>         element = $(element);
>         $T(element).zoneUpdater = true;
>         var zoneElement = zoneId == '^' ? $(element).up('.t-zone')
>             : $(zoneId);
>         if (!zoneElement) {
>             Tapestry
>                 .error(
>                 "Could not find zone element '#{zoneId}' to update on #{eventName} of element '#{elementId}",
>                 {
>                     zoneId : zoneId,
>                     eventName : eventName,
>                     elementId : element.id
>                 });
>             return;
>         }
> There's a missing trailing apostrophe.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira