You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lu...@apache.org on 2011/04/28 17:37:06 UTC

svn commit: r1097508 [1/3] - in /myfaces/tomahawk/trunk/core20/src/main/javascript/oam.custom.prototype: builder.js controls.js dragdrop.js effects.js prototype.js scriptaculous.js slider.js sound.js unittest.js

Author: lu4242
Date: Thu Apr 28 15:37:06 2011
New Revision: 1097508

URL: http://svn.apache.org/viewvc?rev=1097508&view=rev
Log:
TOMAHAWK-1576 Outdated version of prototype.js is used (now version 1.7.0 and scriptaculous.js 1.9.0 are used)

Modified:
    myfaces/tomahawk/trunk/core20/src/main/javascript/oam.custom.prototype/builder.js
    myfaces/tomahawk/trunk/core20/src/main/javascript/oam.custom.prototype/controls.js
    myfaces/tomahawk/trunk/core20/src/main/javascript/oam.custom.prototype/dragdrop.js
    myfaces/tomahawk/trunk/core20/src/main/javascript/oam.custom.prototype/effects.js
    myfaces/tomahawk/trunk/core20/src/main/javascript/oam.custom.prototype/prototype.js
    myfaces/tomahawk/trunk/core20/src/main/javascript/oam.custom.prototype/scriptaculous.js
    myfaces/tomahawk/trunk/core20/src/main/javascript/oam.custom.prototype/slider.js
    myfaces/tomahawk/trunk/core20/src/main/javascript/oam.custom.prototype/sound.js
    myfaces/tomahawk/trunk/core20/src/main/javascript/oam.custom.prototype/unittest.js

Modified: myfaces/tomahawk/trunk/core20/src/main/javascript/oam.custom.prototype/builder.js
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core20/src/main/javascript/oam.custom.prototype/builder.js?rev=1097508&r1=1097507&r2=1097508&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/core20/src/main/javascript/oam.custom.prototype/builder.js (original)
+++ myfaces/tomahawk/trunk/core20/src/main/javascript/oam.custom.prototype/builder.js Thu Apr 28 15:37:06 2011
@@ -1,6 +1,6 @@
-// script.aculo.us builder.js v1.8.3, Thu Oct 08 11:23:33 +0200 2009
+// script.aculo.us builder.js v1.9.0, Thu Dec 23 16:54:48 -0500 2010
 
-// Copyright (c) 2005-2009 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
+// Copyright (c) 2005-2010 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
 //
 // script.aculo.us is freely distributable under the terms of an MIT-style license.
 // For details, see the script.aculo.us web site: http://script.aculo.us/

Modified: myfaces/tomahawk/trunk/core20/src/main/javascript/oam.custom.prototype/controls.js
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core20/src/main/javascript/oam.custom.prototype/controls.js?rev=1097508&r1=1097507&r2=1097508&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/core20/src/main/javascript/oam.custom.prototype/controls.js (original)
+++ myfaces/tomahawk/trunk/core20/src/main/javascript/oam.custom.prototype/controls.js Thu Apr 28 15:37:06 2011
@@ -1,8 +1,8 @@
-// script.aculo.us controls.js v1.8.3, Thu Oct 08 11:23:33 +0200 2009
+// script.aculo.us controls.js v1.9.0, Thu Dec 23 16:54:48 -0500 2010
 
-// Copyright (c) 2005-2009 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
-//           (c) 2005-2009 Ivan Krstic (http://blogs.law.harvard.edu/ivan)
-//           (c) 2005-2009 Jon Tirsen (http://www.tirsen.com)
+// Copyright (c) 2005-2010 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
+//           (c) 2005-2010 Ivan Krstic (http://blogs.law.harvard.edu/ivan)
+//           (c) 2005-2010 Jon Tirsen (http://www.tirsen.com)
 // Contributors:
 //  Richard Livsey
 //  Rahul Bhargava

Modified: myfaces/tomahawk/trunk/core20/src/main/javascript/oam.custom.prototype/dragdrop.js
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core20/src/main/javascript/oam.custom.prototype/dragdrop.js?rev=1097508&r1=1097507&r2=1097508&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/core20/src/main/javascript/oam.custom.prototype/dragdrop.js (original)
+++ myfaces/tomahawk/trunk/core20/src/main/javascript/oam.custom.prototype/dragdrop.js Thu Apr 28 15:37:06 2011
@@ -1,6 +1,6 @@
-// script.aculo.us dragdrop.js v1.8.3, Thu Oct 08 11:23:33 +0200 2009
+// script.aculo.us dragdrop.js v1.9.0, Thu Dec 23 16:54:48 -0500 2010
 
-// Copyright (c) 2005-2009 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
+// Copyright (c) 2005-2010 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
 //
 // script.aculo.us is freely distributable under the terms of an MIT-style license.
 // For details, see the script.aculo.us web site: http://script.aculo.us/
@@ -374,7 +374,7 @@ var Draggable = Class.create({
       if (this.options.scroll == window) {
         with(this._getWindowScroll(this.options.scroll)) { p = [ left, top, left+width, top+height ]; }
       } else {
-        p = Position.page(this.options.scroll);
+        p = Position.page(this.options.scroll).toArray();
         p[0] += this.options.scroll.scrollLeft + Position.deltaX;
         p[1] += this.options.scroll.scrollTop + Position.deltaY;
         p.push(p[0]+this.options.scroll.offsetWidth);

Modified: myfaces/tomahawk/trunk/core20/src/main/javascript/oam.custom.prototype/effects.js
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core20/src/main/javascript/oam.custom.prototype/effects.js?rev=1097508&r1=1097507&r2=1097508&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/core20/src/main/javascript/oam.custom.prototype/effects.js (original)
+++ myfaces/tomahawk/trunk/core20/src/main/javascript/oam.custom.prototype/effects.js Thu Apr 28 15:37:06 2011
@@ -1,6 +1,6 @@
-// script.aculo.us effects.js v1.8.3, Thu Oct 08 11:23:33 +0200 2009
+// script.aculo.us effects.js v1.9.0, Thu Dec 23 16:54:48 -0500 2010
 
-// Copyright (c) 2005-2009 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
+// Copyright (c) 2005-2010 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
 // Contributors:
 //  Justin Palmer (http://encytemedia.com/)
 //  Mark Pilgrim (http://diveintomark.org/)