|
List Info
Thread: yahoo-min.js
|
|
| yahoo-min.js |

|
2006-07-20 13:25:54 |
Update of
/var/cvs/Geeklog-2.x/Geeklog-2.x/public_html/javascript/yui/
build/yahoo
In directory
iowaoutdoors:/tmp/cvs-serv897/public_html/javascript/yui/bui
ld/yahoo
Modified Files:
yahoo-min.js yahoo.js
Log Message:
Upgrade to YUI 0.11.1
Index: yahoo-min.js
============================================================
=======
RCS file:
/var/cvs/Geeklog-2.x/Geeklog-2.x/public_html/javascript/yui/
build/yahoo/yahoo-min.js,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** yahoo-min.js 6 Jul 2006 22:03:33 -0000 1.1
--- yahoo-min.js 20 Jul 2006 13:25:51 -0000 1.2
***************
*** 1 ****
! /*
Copyright (c) 2006, Yahoo!
Inc. All rights reserved.
Code licensed under the BSD License:
http://dev
eloper.yahoo.net/yui/license.txt
version: 0.10.0
*/ var
YAHOO=window.YAHOO||{};YAHOO.namespace=function(_1){if(!_1||
!_1.length){return null;}var
_2=_1.split(".");var _3=YAHOO;for(var
i=(_2[0]=="YAHOO")?1:0;i<_2.length;++i){_3[_2
[i]]=_3[_2[i]]||{};_3=_3[_2[i]];}return _3;};YAHO
O.log=function(_5,_6){if(YAHOO.widget.Logger){YAHOO.widget.
Logger.log(null,_5,_6);}else{return
false;}};YAHOO.namespace("util");YAHOO.namespace
("widget");YAHOO.namespace("example"
);
\ No newline at end of file
--- 1 ----
! /*
Copyright (c) 2006, Yahoo!
Inc. All rights reserved.
Code licensed under the BSD License:
http://dev
eloper.yahoo.net/yui/license.txt
version: 0.11.0
*/ var
YAHOO=window.YAHOO||{};YAHOO.namespace=function(ns){if(!ns||
!ns.length){return null;}var
_2=ns.split(".");var _3=YAHOO;for(var
i=(_2[0]=="YAHOO")?1:0;i<_2.length;++i){_3[_2
[i]]=_3[_2[i]]||{};_3=_3[_2[i]];}return _3;};YAHO
O.log=function(_5,_6,_7){var
l=YAHOO.widget.Logger;if(l&&l.log){return
l.log(_5,_6,_7);}else{return
false;}};YAHOO.extend=function(_9,_10){var
f=function(){};f.prototype=_10.prototype;_9.prototype=new
f();_9.prototype.constructor=_9;_9.superclass=_10.prototype;
if(_10.prototype.constructor==Object.prototype.constructor){
_10.prototype.constructor=_10;}};YAHOO.namespace("util
");YAHOO.namespace("widget");YAHOO.namespa
ce("example");
\ No newline at end of file
Index: yahoo.js
============================================================
=======
RCS file:
/var/cvs/Geeklog-2.x/Geeklog-2.x/public_html/javascript/yui/
build/yahoo/yahoo.js,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** yahoo.js 6 Jul 2006 22:03:33 -0000 1.1
--- yahoo.js 20 Jul 2006 13:25:51 -0000 1.2
***************
*** 3,11 ****
Code licensed under the BSD License:
http://dev
eloper.yahoo.net/yui/license.txt
! version: 0.10.0
*/
- /* Copyright (c) 2006 Yahoo! Inc. All rights reserved. */
-
/**
* The Yahoo global namespace
--- 3,9 ----
Code licensed under the BSD License:
http://dev
eloper.yahoo.net/yui/license.txt
! version: 0.11.0
*/
/**
* The Yahoo global namespace
***************
*** 23,55 ****
* YAHOO.property.package
*
! * param sNameSpace String representation of
the desired
! * namespace
! * return A reference to the
namespace object
*/
! YAHOO.namespace = function( sNameSpace ) {
! if (!sNameSpace || !sNameSpace.length) {
return null;
}
! var levels = sNameSpace.split(".");
!
! var currentNS = YAHOO;
// YAHOO is implied, so it is ignored if it is
included
for (var i=(levels[0] == "YAHOO") ? 1 : 0;
i<levels.length; ++i) {
! currentNS[levels[i]] = currentNS[levels[i]] || {};
! currentNS = currentNS[levels[i]];
}
! return currentNS;
};
/**
! * Global log method.
*/
! YAHOO.log = function(sMsg,sCategory) {
! if(YAHOO.widget.Logger) {
! YAHOO.widget.Logger.log(null, sMsg, sCategory);
} else {
return false;
--- 21,59 ----
* YAHOO.property.package
*
! * param ns The name of the namespace
! * return A reference to the namespace
object
*/
! YAHOO.namespace = function(ns) {
! if (!ns || !ns.length) {
return null;
}
! var levels = ns.split(".");
! var nsobj = YAHOO;
// YAHOO is implied, so it is ignored if it is
included
for (var i=(levels[0] == "YAHOO") ? 1 : 0;
i<levels.length; ++i) {
! nsobj[levels[i]] = nsobj[levels[i]] || {};
! nsobj = nsobj[levels[i]];
}
! return nsobj;
};
/**
! * Uses YAHOO.widget.Logger to output a log message, if
the widget is available.
! *
! * param sMsg The message to log.
! * param sCategory The log category for the
message. Default
! * categories are
"info", "warn", "error",
time".
! * Custom categories can be
used as well. (opt)
! * param sSource The source of the the
message (opt)
! * return True if the log operation
was successful.
*/
! YAHOO.log = function(sMsg, sCategory, sSource) {
! var l = YAHOO.widget.Logger;
! if(l && l.log) {
! return l.log(sMsg, sCategory, sSource);
} else {
return false;
***************
*** 57,61 ****
--- 61,84 ----
};
+ /**
+ * Utility to set up the prototype, constructor and
superclass properties to
+ * support an inheritance strategy that can chain
constructors and methods.
+ *
+ * param subclass the object to modify
+ * param superclass the object to inherit
+ */
+ YAHOO.extend = function(subclass, superclass) {
+ var f = function() {};
+ f.prototype = superclass.prototype;
+ subclass.prototype = new f();
+ subclass.prototype.constructor = subclass;
+ subclass.superclass = superclass.prototype;
+ if (superclass.prototype.constructor ==
Object.prototype.constructor) {
+ superclass.prototype.constructor = superclass;
+ }
+ };
+
YAHOO.namespace("util");
YAHOO.namespace("widget");
YAHOO.namespace("example");
+
_______________________________________________
geeklog2-cvs mailing list
geeklog2-cvs lists.geeklog.net
http://lists.geeklog.net/mailman/listinfo/geeklog2-cvs
|
|
| yahoo-min.js |

|
2006-07-20 13:25:54 |
Update of
/var/cvs/Geeklog-2.x/Geeklog-2.x/public_html/javascript/yui/
build/yahoo
In directory
iowaoutdoors:/tmp/cvs-serv897/public_html/javascript/yui/bui
ld/yahoo
Modified Files:
yahoo-min.js yahoo.js
Log Message:
Upgrade to YUI 0.11.1
Index: yahoo-min.js
============================================================
=======
RCS file:
/var/cvs/Geeklog-2.x/Geeklog-2.x/public_html/javascript/yui/
build/yahoo/yahoo-min.js,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** yahoo-min.js 6 Jul 2006 22:03:33 -0000 1.1
--- yahoo-min.js 20 Jul 2006 13:25:51 -0000 1.2
***************
*** 1 ****
! /*
Copyright (c) 2006, Yahoo!
Inc. All rights reserved.
Code licensed under the BSD License:
http://dev
eloper.yahoo.net/yui/license.txt
version: 0.10.0
*/ var
YAHOO=window.YAHOO||{};YAHOO.namespace=function(_1){if(!_1||
!_1.length){return null;}var
_2=_1.split(".");var _3=YAHOO;for(var
i=(_2[0]=="YAHOO")?1:0;i<_2.length;++i){_3[_2
[i]]=_3[_2[i]]||{};_3=_3[_2[i]];}return _3;};YAHO
O.log=function(_5,_6){if(YAHOO.widget.Logger){YAHOO.widget.
Logger.log(null,_5,_6);}else{return
false;}};YAHOO.namespace("util");YAHOO.namespace
("widget");YAHOO.namespace("example"
);
\ No newline at end of file
--- 1 ----
! /*
Copyright (c) 2006, Yahoo!
Inc. All rights reserved.
Code licensed under the BSD License:
http://dev
eloper.yahoo.net/yui/license.txt
version: 0.11.0
*/ var
YAHOO=window.YAHOO||{};YAHOO.namespace=function(ns){if(!ns||
!ns.length){return null;}var
_2=ns.split(".");var _3=YAHOO;for(var
i=(_2[0]=="YAHOO")?1:0;i<_2.length;++i){_3[_2
[i]]=_3[_2[i]]||{};_3=_3[_2[i]];}return _3;};YAHO
O.log=function(_5,_6,_7){var
l=YAHOO.widget.Logger;if(l&&l.log){return
l.log(_5,_6,_7);}else{return
false;}};YAHOO.extend=function(_9,_10){var
f=function(){};f.prototype=_10.prototype;_9.prototype=new
f();_9.prototype.constructor=_9;_9.superclass=_10.prototype;
if(_10.prototype.constructor==Object.prototype.constructor){
_10.prototype.constructor=_10;}};YAHOO.namespace("util
");YAHOO.namespace("widget");YAHOO.namespa
ce("example");
\ No newline at end of file
Index: yahoo.js
============================================================
=======
RCS file:
/var/cvs/Geeklog-2.x/Geeklog-2.x/public_html/javascript/yui/
build/yahoo/yahoo.js,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** yahoo.js 6 Jul 2006 22:03:33 -0000 1.1
--- yahoo.js 20 Jul 2006 13:25:51 -0000 1.2
***************
*** 3,11 ****
Code licensed under the BSD License:
http://dev
eloper.yahoo.net/yui/license.txt
! version: 0.10.0
*/
- /* Copyright (c) 2006 Yahoo! Inc. All rights reserved. */
-
/**
* The Yahoo global namespace
--- 3,9 ----
Code licensed under the BSD License:
http://dev
eloper.yahoo.net/yui/license.txt
! version: 0.11.0
*/
/**
* The Yahoo global namespace
***************
*** 23,55 ****
* YAHOO.property.package
*
! * param sNameSpace String representation of
the desired
! * namespace
! * return A reference to the
namespace object
*/
! YAHOO.namespace = function( sNameSpace ) {
! if (!sNameSpace || !sNameSpace.length) {
return null;
}
! var levels = sNameSpace.split(".");
!
! var currentNS = YAHOO;
// YAHOO is implied, so it is ignored if it is
included
for (var i=(levels[0] == "YAHOO") ? 1 : 0;
i<levels.length; ++i) {
! currentNS[levels[i]] = currentNS[levels[i]] || {};
! currentNS = currentNS[levels[i]];
}
! return currentNS;
};
/**
! * Global log method.
*/
! YAHOO.log = function(sMsg,sCategory) {
! if(YAHOO.widget.Logger) {
! YAHOO.widget.Logger.log(null, sMsg, sCategory);
} else {
return false;
--- 21,59 ----
* YAHOO.property.package
*
! * param ns The name of the namespace
! * return A reference to the namespace
object
*/
! YAHOO.namespace = function(ns) {
! if (!ns || !ns.length) {
return null;
}
! var levels = ns.split(".");
! var nsobj = YAHOO;
// YAHOO is implied, so it is ignored if it is
included
for (var i=(levels[0] == "YAHOO") ? 1 : 0;
i<levels.length; ++i) {
! nsobj[levels[i]] = nsobj[levels[i]] || {};
! nsobj = nsobj[levels[i]];
}
! return nsobj;
};
/**
! * Uses YAHOO.widget.Logger to output a log message, if
the widget is available.
! *
! * param sMsg The message to log.
! * param sCategory The log category for the
message. Default
! * categories are
"info", "warn", "error",
time".
! * Custom categories can be
used as well. (opt)
! * param sSource The source of the the
message (opt)
! * return True if the log operation
was successful.
*/
! YAHOO.log = function(sMsg, sCategory, sSource) {
! var l = YAHOO.widget.Logger;
! if(l && l.log) {
! return l.log(sMsg, sCategory, sSource);
} else {
return false;
***************
*** 57,61 ****
--- 61,84 ----
};
+ /**
+ * Utility to set up the prototype, constructor and
superclass properties to
+ * support an inheritance strategy that can chain
constructors and methods.
+ *
+ * param subclass the object to modify
+ * param superclass the object to inherit
+ */
+ YAHOO.extend = function(subclass, superclass) {
+ var f = function() {};
+ f.prototype = superclass.prototype;
+ subclass.prototype = new f();
+ subclass.prototype.constructor = subclass;
+ subclass.superclass = superclass.prototype;
+ if (superclass.prototype.constructor ==
Object.prototype.constructor) {
+ superclass.prototype.constructor = superclass;
+ }
+ };
+
YAHOO.namespace("util");
YAHOO.namespace("widget");
YAHOO.namespace("example");
+
_______________________________________________
geeklog2-cvs mailing list
geeklog2-cvs lists.geeklog.net
http://lists.geeklog.net/mailman/listinfo/geeklog2-cvs
|
|
[1-2]
|
|