I Joerg,

I wonder if the issue should be closed only for 2.1.11, since the 2.2 is not released yet.

Best Regards,

Antonio Gallardo.

Jörg Heinicke (JIRA) escribió:
     [ 
https://issues.apache.org/jira/browse/COCOON-2059?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jörg Heinicke updated COCOON-2059:
----------------------------------

    Fix Version/s: 2.2-dev (Current SVN)

ajax/common.js makes use of deprecated dojo.animation.Timer
-----------------------------------------------------------

                Key: COCOON-2059
                URL: https://issues.apache.org/jira/browse/COCOON-2059
            Project: Cocoon
         Issue Type: Bug
         Components: Blocks: Ajax
   Affects Versions: 2.1.11-dev (Current SVN), 2.2-dev (Current SVN)
           Reporter: Alexander Klimetschek
           Assignee: Grzegorz Kossakowski
            Fix For: 2.1.11-dev (Current SVN), 2.2-dev (Current SVN)


Following code uses deprecated stuff from dojo 0.4.1:
    periodicalUpdate: function(delay, href, target, insertion) {
        dojo.require("dojo.animation.Timer");
        var timer = new dojo.animation.Timer(delay);
        timer.onTick = function() {
        ....
Dojo in debug mode says: DEPRECATED: dojo.animation.Timer is now 
dojo.lang.timing.Timer 0.5
To fix that, one should simply use:
    periodicalUpdate: function(delay, href, target, insertion) {
        dojo.require("dojo.lang.timing.Timer");
        var timer = new dojo.lang.timing.Timer(delay);


Reply via email to