leave it in a working state for the night
[dygraphs.git] / dygraph-combined.js
CommitLineData
6a1aa64f
DV
1/***
2
3 MochiKit.MochiKit 1.4 : PACKED VERSION
4
5 THIS FILE IS AUTOMATICALLY GENERATED. If creating patches, please
6 diff against the source tree, not this file.
7
8 See <http://mochikit.com/> for documentation, downloads, license, etc.
9
10 (c) 2005 Bob Ippolito. All rights Reserved.
11
12***/
13
14if(typeof (dojo)!="undefined"){
15dojo.provide("MochiKit.Base");
16}
17if(typeof (MochiKit)=="undefined"){
18MochiKit={};
19}
20if(typeof (MochiKit.Base)=="undefined"){
21MochiKit.Base={};
22}
23if(typeof (MochiKit.__export__)=="undefined"){
24MochiKit.__export__=(MochiKit.__compat__||(typeof (JSAN)=="undefined"&&typeof (dojo)=="undefined"));
25}
26MochiKit.Base.VERSION="1.4";
27MochiKit.Base.NAME="MochiKit.Base";
28MochiKit.Base.update=function(_1,_2){
29if(_1===null){
30_1={};
31}
32for(var i=1;i<arguments.length;i++){
33var o=arguments[i];
34if(typeof (o)!="undefined"&&o!==null){
35for(var k in o){
36_1[k]=o[k];
37}
38}
39}
40return _1;
41};
42MochiKit.Base.update(MochiKit.Base,{__repr__:function(){
43return "["+this.NAME+" "+this.VERSION+"]";
44},toString:function(){
45return this.__repr__();
46},camelize:function(_6){
47var _7=_6.split("-");
48var cc=_7[0];
49for(var i=1;i<_7.length;i++){
50cc+=_7[i].charAt(0).toUpperCase()+_7[i].substring(1);
51}
52return cc;
53},counter:function(n){
54if(arguments.length===0){
55n=1;
56}
57return function(){
58return n++;
59};
60},clone:function(_b){
61var me=arguments.callee;
62if(arguments.length==1){
63me.prototype=_b;
64return new me();
65}
66},_flattenArray:function(_d,_e){
67for(var i=0;i<_e.length;i++){
68var o=_e[i];
69if(o instanceof Array){
70arguments.callee(_d,o);
71}else{
72_d.push(o);
73}
74}
75return _d;
76},flattenArray:function(lst){
77return MochiKit.Base._flattenArray([],lst);
78},flattenArguments:function(lst){
79var res=[];
80var m=MochiKit.Base;
81var _15=m.extend(null,arguments);
82while(_15.length){
83var o=_15.shift();
84if(o&&typeof (o)=="object"&&typeof (o.length)=="number"){
85for(var i=o.length-1;i>=0;i--){
86_15.unshift(o[i]);
87}
88}else{
89res.push(o);
90}
91}
92return res;
93},extend:function(_18,obj,_1a){
94if(!_1a){
95_1a=0;
96}
97if(obj){
98var l=obj.length;
99if(typeof (l)!="number"){
100if(typeof (MochiKit.Iter)!="undefined"){
101obj=MochiKit.Iter.list(obj);
102l=obj.length;
103}else{
104throw new TypeError("Argument not an array-like and MochiKit.Iter not present");
105}
106}
107if(!_18){
108_18=[];
109}
110for(var i=_1a;i<l;i++){
111_18.push(obj[i]);
112}
113}
114return _18;
115},updatetree:function(_1d,obj){
116if(_1d===null){
117_1d={};
118}
119for(var i=1;i<arguments.length;i++){
120var o=arguments[i];
121if(typeof (o)!="undefined"&&o!==null){
122for(var k in o){
123var v=o[k];
124if(typeof (_1d[k])=="object"&&typeof (v)=="object"){
125arguments.callee(_1d[k],v);
126}else{
127_1d[k]=v;
128}
129}
130}
131}
132return _1d;
133},setdefault:function(_23,obj){
134if(_23===null){
135_23={};
136}
137for(var i=1;i<arguments.length;i++){
138var o=arguments[i];
139for(var k in o){
140if(!(k in _23)){
141_23[k]=o[k];
142}
143}
144}
145return _23;
146},keys:function(obj){
147var _29=[];
148for(var _2a in obj){
149_29.push(_2a);
150}
151return _29;
152},values:function(obj){
153var _2c=[];
154for(var _2d in obj){
155_2c.push(obj[_2d]);
156}
157return _2c;
158},items:function(obj){
159var _2f=[];
160var e;
161for(var _31 in obj){
162var v;
163try{
164v=obj[_31];
165}
166catch(e){
167continue;
168}
169_2f.push([_31,v]);
170}
171return _2f;
172},_newNamedError:function(_33,_34,_35){
173_35.prototype=new MochiKit.Base.NamedError(_33.NAME+"."+_34);
174_33[_34]=_35;
175},operator:{truth:function(a){
176return !!a;
177},lognot:function(a){
178return !a;
179},identity:function(a){
180return a;
181},not:function(a){
182return ~a;
183},neg:function(a){
184return -a;
185},add:function(a,b){
186return a+b;
187},sub:function(a,b){
188return a-b;
189},div:function(a,b){
190return a/b;
191},mod:function(a,b){
192return a%b;
193},mul:function(a,b){
194return a*b;
195},and:function(a,b){
196return a&b;
197},or:function(a,b){
198return a|b;
199},xor:function(a,b){
200return a^b;
201},lshift:function(a,b){
202return a<<b;
203},rshift:function(a,b){
204return a>>b;
205},zrshift:function(a,b){
206return a>>>b;
207},eq:function(a,b){
208return a==b;
209},ne:function(a,b){
210return a!=b;
211},gt:function(a,b){
212return a>b;
213},ge:function(a,b){
214return a>=b;
215},lt:function(a,b){
216return a<b;
217},le:function(a,b){
218return a<=b;
219},seq:function(a,b){
220return a===b;
221},sne:function(a,b){
222return a!==b;
223},ceq:function(a,b){
224return MochiKit.Base.compare(a,b)===0;
225},cne:function(a,b){
226return MochiKit.Base.compare(a,b)!==0;
227},cgt:function(a,b){
228return MochiKit.Base.compare(a,b)==1;
229},cge:function(a,b){
230return MochiKit.Base.compare(a,b)!=-1;
231},clt:function(a,b){
232return MochiKit.Base.compare(a,b)==-1;
233},cle:function(a,b){
234return MochiKit.Base.compare(a,b)!=1;
235},logand:function(a,b){
236return a&&b;
237},logor:function(a,b){
238return a||b;
239},contains:function(a,b){
240return b in a;
241}},forwardCall:function(_73){
242return function(){
243return this[_73].apply(this,arguments);
244};
245},itemgetter:function(_74){
246return function(arg){
247return arg[_74];
248};
249},typeMatcher:function(){
250var _76={};
251for(var i=0;i<arguments.length;i++){
252var typ=arguments[i];
253_76[typ]=typ;
254}
255return function(){
256for(var i=0;i<arguments.length;i++){
257if(!(typeof (arguments[i]) in _76)){
258return false;
259}
260}
261return true;
262};
263},isNull:function(){
264for(var i=0;i<arguments.length;i++){
265if(arguments[i]!==null){
266return false;
267}
268}
269return true;
270},isUndefinedOrNull:function(){
271for(var i=0;i<arguments.length;i++){
272var o=arguments[i];
273if(!(typeof (o)=="undefined"||o===null)){
274return false;
275}
276}
277return true;
278},isEmpty:function(obj){
279return !MochiKit.Base.isNotEmpty.apply(this,arguments);
280},isNotEmpty:function(obj){
281for(var i=0;i<arguments.length;i++){
282var o=arguments[i];
283if(!(o&&o.length)){
284return false;
285}
286}
287return true;
288},isArrayLike:function(){
289for(var i=0;i<arguments.length;i++){
290var o=arguments[i];
291var typ=typeof (o);
292if((typ!="object"&&!(typ=="function"&&typeof (o.item)=="function"))||o===null||typeof (o.length)!="number"||o.nodeType===3){
293return false;
294}
295}
296return true;
297},isDateLike:function(){
298for(var i=0;i<arguments.length;i++){
299var o=arguments[i];
300if(typeof (o)!="object"||o===null||typeof (o.getTime)!="function"){
301return false;
302}
303}
304return true;
305},xmap:function(fn){
306if(fn===null){
307return MochiKit.Base.extend(null,arguments,1);
308}
309var _87=[];
310for(var i=1;i<arguments.length;i++){
311_87.push(fn(arguments[i]));
312}
313return _87;
314},map:function(fn,lst){
315var m=MochiKit.Base;
316var itr=MochiKit.Iter;
317var _8d=m.isArrayLike;
318if(arguments.length<=2){
319if(!_8d(lst)){
320if(itr){
321lst=itr.list(lst);
322if(fn===null){
323return lst;
324}
325}else{
326throw new TypeError("Argument not an array-like and MochiKit.Iter not present");
327}
328}
329if(fn===null){
330return m.extend(null,lst);
331}
332var _8e=[];
333for(var i=0;i<lst.length;i++){
334_8e.push(fn(lst[i]));
335}
336return _8e;
337}else{
338if(fn===null){
339fn=Array;
340}
341var _90=null;
342for(i=1;i<arguments.length;i++){
343if(!_8d(arguments[i])){
344if(itr){
345return itr.list(itr.imap.apply(null,arguments));
346}else{
347throw new TypeError("Argument not an array-like and MochiKit.Iter not present");
348}
349}
350var l=arguments[i].length;
351if(_90===null||_90>l){
352_90=l;
353}
354}
355_8e=[];
356for(i=0;i<_90;i++){
357var _92=[];
358for(var j=1;j<arguments.length;j++){
359_92.push(arguments[j][i]);
360}
361_8e.push(fn.apply(this,_92));
362}
363return _8e;
364}
365},xfilter:function(fn){
366var _95=[];
367if(fn===null){
368fn=MochiKit.Base.operator.truth;
369}
370for(var i=1;i<arguments.length;i++){
371var o=arguments[i];
372if(fn(o)){
373_95.push(o);
374}
375}
376return _95;
377},filter:function(fn,lst,_9a){
378var _9b=[];
379var m=MochiKit.Base;
380if(!m.isArrayLike(lst)){
381if(MochiKit.Iter){
382lst=MochiKit.Iter.list(lst);
383}else{
384throw new TypeError("Argument not an array-like and MochiKit.Iter not present");
385}
386}
387if(fn===null){
388fn=m.operator.truth;
389}
390if(typeof (Array.prototype.filter)=="function"){
391return Array.prototype.filter.call(lst,fn,_9a);
392}else{
393if(typeof (_9a)=="undefined"||_9a===null){
394for(var i=0;i<lst.length;i++){
395var o=lst[i];
396if(fn(o)){
397_9b.push(o);
398}
399}
400}else{
401for(i=0;i<lst.length;i++){
402o=lst[i];
403if(fn.call(_9a,o)){
404_9b.push(o);
405}
406}
407}
408}
409return _9b;
410},_wrapDumbFunction:function(_9f){
411return function(){
412switch(arguments.length){
413case 0:
414return _9f();
415case 1:
416return _9f(arguments[0]);
417case 2:
418return _9f(arguments[0],arguments[1]);
419case 3:
420return _9f(arguments[0],arguments[1],arguments[2]);
421}
422var _a0=[];
423for(var i=0;i<arguments.length;i++){
424_a0.push("arguments["+i+"]");
425}
426return eval("(func("+_a0.join(",")+"))");
427};
428},methodcaller:function(_a2){
429var _a3=MochiKit.Base.extend(null,arguments,1);
430if(typeof (_a2)=="function"){
431return function(obj){
432return _a2.apply(obj,_a3);
433};
434}else{
435return function(obj){
436return obj[_a2].apply(obj,_a3);
437};
438}
439},method:function(_a6,_a7){
440var m=MochiKit.Base;
441return m.bind.apply(this,m.extend([_a7,_a6],arguments,2));
442},compose:function(f1,f2){
443var _ab=[];
444var m=MochiKit.Base;
445if(arguments.length===0){
446throw new TypeError("compose() requires at least one argument");
447}
448for(var i=0;i<arguments.length;i++){
449var fn=arguments[i];
450if(typeof (fn)!="function"){
451throw new TypeError(m.repr(fn)+" is not a function");
452}
453_ab.push(fn);
454}
455return function(){
456var _af=arguments;
457for(var i=_ab.length-1;i>=0;i--){
458_af=[_ab[i].apply(this,_af)];
459}
460return _af[0];
461};
462},bind:function(_b1,_b2){
463if(typeof (_b1)=="string"){
464_b1=_b2[_b1];
465}
466var _b3=_b1.im_func;
467var _b4=_b1.im_preargs;
468var _b5=_b1.im_self;
469var m=MochiKit.Base;
470if(typeof (_b1)=="function"&&typeof (_b1.apply)=="undefined"){
471_b1=m._wrapDumbFunction(_b1);
472}
473if(typeof (_b3)!="function"){
474_b3=_b1;
475}
476if(typeof (_b2)!="undefined"){
477_b5=_b2;
478}
479if(typeof (_b4)=="undefined"){
480_b4=[];
481}else{
482_b4=_b4.slice();
483}
484m.extend(_b4,arguments,2);
485var _b7=function(){
486var _b8=arguments;
487var me=arguments.callee;
488if(me.im_preargs.length>0){
489_b8=m.concat(me.im_preargs,_b8);
490}
491var _ba=me.im_self;
492if(!_ba){
493_ba=this;
494}
495return me.im_func.apply(_ba,_b8);
496};
497_b7.im_self=_b5;
498_b7.im_func=_b3;
499_b7.im_preargs=_b4;
500return _b7;
501},bindMethods:function(_bb){
502var _bc=MochiKit.Base.bind;
503for(var k in _bb){
504var _be=_bb[k];
505if(typeof (_be)=="function"){
506_bb[k]=_bc(_be,_bb);
507}
508}
509},registerComparator:function(_bf,_c0,_c1,_c2){
510MochiKit.Base.comparatorRegistry.register(_bf,_c0,_c1,_c2);
511},_primitives:{"boolean":true,"string":true,"number":true},compare:function(a,b){
512if(a==b){
513return 0;
514}
515var _c5=(typeof (a)=="undefined"||a===null);
516var _c6=(typeof (b)=="undefined"||b===null);
517if(_c5&&_c6){
518return 0;
519}else{
520if(_c5){
521return -1;
522}else{
523if(_c6){
524return 1;
525}
526}
527}
528var m=MochiKit.Base;
529var _c8=m._primitives;
530if(!(typeof (a) in _c8&&typeof (b) in _c8)){
531try{
532return m.comparatorRegistry.match(a,b);
533}
534catch(e){
535if(e!=m.NotFound){
536throw e;
537}
538}
539}
540if(a<b){
541return -1;
542}else{
543if(a>b){
544return 1;
545}
546}
547var _c9=m.repr;
548throw new TypeError(_c9(a)+" and "+_c9(b)+" can not be compared");
549},compareDateLike:function(a,b){
550return MochiKit.Base.compare(a.getTime(),b.getTime());
551},compareArrayLike:function(a,b){
552var _ce=MochiKit.Base.compare;
553var _cf=a.length;
554var _d0=0;
555if(_cf>b.length){
556_d0=1;
557_cf=b.length;
558}else{
559if(_cf<b.length){
560_d0=-1;
561}
562}
563for(var i=0;i<_cf;i++){
564var cmp=_ce(a[i],b[i]);
565if(cmp){
566return cmp;
567}
568}
569return _d0;
570},registerRepr:function(_d3,_d4,_d5,_d6){
571MochiKit.Base.reprRegistry.register(_d3,_d4,_d5,_d6);
572},repr:function(o){
573if(typeof (o)=="undefined"){
574return "undefined";
575}else{
576if(o===null){
577return "null";
578}
579}
580try{
581if(typeof (o.__repr__)=="function"){
582return o.__repr__();
583}else{
584if(typeof (o.repr)=="function"&&o.repr!=arguments.callee){
585return o.repr();
586}
587}
588return MochiKit.Base.reprRegistry.match(o);
589}
590catch(e){
591if(typeof (o.NAME)=="string"&&(o.toString==Function.prototype.toString||o.toString==Object.prototype.toString)){
592return o.NAME;
593}
594}
595try{
596var _d8=(o+"");
597}
598catch(e){
599return "["+typeof (o)+"]";
600}
601if(typeof (o)=="function"){
602o=_d8.replace(/^\s+/,"");
603var idx=o.indexOf("{");
604if(idx!=-1){
605o=o.substr(0,idx)+"{...}";
606}
607}
608return _d8;
609},reprArrayLike:function(o){
610var m=MochiKit.Base;
611return "["+m.map(m.repr,o).join(", ")+"]";
612},reprString:function(o){
613return ("\""+o.replace(/(["\\])/g,"\\$1")+"\"").replace(/[\f]/g,"\\f").replace(/[\b]/g,"\\b").replace(/[\n]/g,"\\n").replace(/[\t]/g,"\\t").replace(/[\r]/g,"\\r");
614},reprNumber:function(o){
615return o+"";
616},registerJSON:function(_de,_df,_e0,_e1){
617MochiKit.Base.jsonRegistry.register(_de,_df,_e0,_e1);
618},evalJSON:function(){
619return eval("("+arguments[0]+")");
620},serializeJSON:function(o){
621var _e3=typeof (o);
622if(_e3=="number"||_e3=="boolean"){
623return o+"";
624}else{
625if(o===null){
626return "null";
627}
628}
629var m=MochiKit.Base;
630var _e5=m.reprString;
631if(_e3=="string"){
632return _e5(o);
633}
634var me=arguments.callee;
635var _e7;
636if(typeof (o.__json__)=="function"){
637_e7=o.__json__();
638if(o!==_e7){
639return me(_e7);
640}
641}
642if(typeof (o.json)=="function"){
643_e7=o.json();
644if(o!==_e7){
645return me(_e7);
646}
647}
648if(_e3!="function"&&typeof (o.length)=="number"){
649var res=[];
650for(var i=0;i<o.length;i++){
651var val=me(o[i]);
652if(typeof (val)!="string"){
653val="undefined";
654}
655res.push(val);
656}
657return "["+res.join(", ")+"]";
658}
659try{
660_e7=m.jsonRegistry.match(o);
661if(o!==_e7){
662return me(_e7);
663}
664}
665catch(e){
666if(e!=m.NotFound){
667throw e;
668}
669}
670if(_e3=="undefined"){
671throw new TypeError("undefined can not be serialized as JSON");
672}
673if(_e3=="function"){
674return null;
675}
676res=[];
677for(var k in o){
678var _ec;
679if(typeof (k)=="number"){
680_ec="\""+k+"\"";
681}else{
682if(typeof (k)=="string"){
683_ec=_e5(k);
684}else{
685continue;
686}
687}
688val=me(o[k]);
689if(typeof (val)!="string"){
690continue;
691}
692res.push(_ec+":"+val);
693}
694return "{"+res.join(", ")+"}";
695},objEqual:function(a,b){
696return (MochiKit.Base.compare(a,b)===0);
697},arrayEqual:function(_ef,arr){
698if(_ef.length!=arr.length){
699return false;
700}
701return (MochiKit.Base.compare(_ef,arr)===0);
702},concat:function(){
703var _f1=[];
704var _f2=MochiKit.Base.extend;
705for(var i=0;i<arguments.length;i++){
706_f2(_f1,arguments[i]);
707}
708return _f1;
709},keyComparator:function(key){
710var m=MochiKit.Base;
711var _f6=m.compare;
712if(arguments.length==1){
713return function(a,b){
714return _f6(a[key],b[key]);
715};
716}
717var _f9=m.extend(null,arguments);
718return function(a,b){
719var _fc=0;
720for(var i=0;(_fc===0)&&(i<_f9.length);i++){
721var key=_f9[i];
722_fc=_f6(a[key],b[key]);
723}
724return _fc;
725};
726},reverseKeyComparator:function(key){
727var _100=MochiKit.Base.keyComparator.apply(this,arguments);
728return function(a,b){
729return _100(b,a);
730};
731},partial:function(func){
732var m=MochiKit.Base;
733return m.bind.apply(this,m.extend([func,undefined],arguments,1));
734},listMinMax:function(_105,lst){
735if(lst.length===0){
736return null;
737}
738var cur=lst[0];
739var _108=MochiKit.Base.compare;
740for(var i=1;i<lst.length;i++){
741var o=lst[i];
742if(_108(o,cur)==_105){
743cur=o;
744}
745}
746return cur;
747},objMax:function(){
748return MochiKit.Base.listMinMax(1,arguments);
749},objMin:function(){
750return MochiKit.Base.listMinMax(-1,arguments);
751},findIdentical:function(lst,_10c,_10d,end){
752if(typeof (end)=="undefined"||end===null){
753end=lst.length;
754}
755if(typeof (_10d)=="undefined"||_10d===null){
756_10d=0;
757}
758for(var i=_10d;i<end;i++){
759if(lst[i]===_10c){
760return i;
761}
762}
763return -1;
764},mean:function(){
765var sum=0;
766var m=MochiKit.Base;
767var args=m.extend(null,arguments);
768var _113=args.length;
769while(args.length){
770var o=args.shift();
771if(o&&typeof (o)=="object"&&typeof (o.length)=="number"){
772_113+=o.length-1;
773for(var i=o.length-1;i>=0;i--){
774sum+=o[i];
775}
776}else{
777sum+=o;
778}
779}
780if(_113<=0){
781throw new TypeError("mean() requires at least one argument");
782}
783return sum/_113;
784},median:function(){
785var data=MochiKit.Base.flattenArguments(arguments);
786if(data.length===0){
787throw new TypeError("median() requires at least one argument");
788}
789data.sort(compare);
790if(data.length%2==0){
791var _117=data.length/2;
792return (data[_117]+data[_117-1])/2;
793}else{
794return data[(data.length-1)/2];
795}
796},findValue:function(lst,_119,_11a,end){
797if(typeof (end)=="undefined"||end===null){
798end=lst.length;
799}
800if(typeof (_11a)=="undefined"||_11a===null){
801_11a=0;
802}
803var cmp=MochiKit.Base.compare;
804for(var i=_11a;i<end;i++){
805if(cmp(lst[i],_119)===0){
806return i;
807}
808}
809return -1;
810},nodeWalk:function(node,_11f){
811var _120=[node];
812var _121=MochiKit.Base.extend;
813while(_120.length){
814var res=_11f(_120.shift());
815if(res){
816_121(_120,res);
817}
818}
819},nameFunctions:function(_123){
820var base=_123.NAME;
821if(typeof (base)=="undefined"){
822base="";
823}else{
824base=base+".";
825}
826for(var name in _123){
827var o=_123[name];
828if(typeof (o)=="function"&&typeof (o.NAME)=="undefined"){
829try{
830o.NAME=base+name;
831}
832catch(e){
833}
834}
835}
836},queryString:function(_127,_128){
837if(typeof (MochiKit.DOM)!="undefined"&&arguments.length==1&&(typeof (_127)=="string"||(typeof (_127.nodeType)!="undefined"&&_127.nodeType>0))){
838var kv=MochiKit.DOM.formContents(_127);
839_127=kv[0];
840_128=kv[1];
841}else{
842if(arguments.length==1){
843if(typeof (_127.length)=="number"&&_127.length==2){
844return arguments.callee(_127[0],_127[1]);
845}
846var o=_127;
847_127=[];
848_128=[];
849for(var k in o){
850var v=o[k];
851if(typeof (v)=="function"){
852continue;
853}else{
854if(typeof (v)!="string"&&typeof (v.length)=="number"){
855for(var i=0;i<v.length;i++){
856_127.push(k);
857_128.push(v[i]);
858}
859}else{
860_127.push(k);
861_128.push(v);
862}
863}
864}
865}
866}
867var rval=[];
868var len=Math.min(_127.length,_128.length);
869var _130=MochiKit.Base.urlEncode;
870for(var i=0;i<len;i++){
871v=_128[i];
872if(typeof (v)!="undefined"&&v!==null){
873rval.push(_130(_127[i])+"="+_130(v));
874}
875}
876return rval.join("&");
877},parseQueryString:function(_131,_132){
878var qstr=(_131.charAt(0)=="?")?_131.substring(1):_131;
879var _134=qstr.replace(/\+/g,"%20").split(/(\&amp\;|\&\#38\;|\&#x26;|\&)/);
880var o={};
881var _136;
882if(typeof (decodeURIComponent)!="undefined"){
883_136=decodeURIComponent;
884}else{
885_136=unescape;
886}
887if(_132){
888for(var i=0;i<_134.length;i++){
889var pair=_134[i].split("=");
890var name=_136(pair.shift());
891if(!name){
892continue;
893}
894var arr=o[name];
895if(!(arr instanceof Array)){
896arr=[];
897o[name]=arr;
898}
899arr.push(_136(pair.join("=")));
900}
901}else{
902for(i=0;i<_134.length;i++){
903pair=_134[i].split("=");
904var name=pair.shift();
905if(!name){
906continue;
907}
908o[_136(name)]=_136(pair.join("="));
909}
910}
911return o;
912}});
913MochiKit.Base.AdapterRegistry=function(){
914this.pairs=[];
915};
916MochiKit.Base.AdapterRegistry.prototype={register:function(name,_13c,wrap,_13e){
917if(_13e){
918this.pairs.unshift([name,_13c,wrap]);
919}else{
920this.pairs.push([name,_13c,wrap]);
921}
922},match:function(){
923for(var i=0;i<this.pairs.length;i++){
924var pair=this.pairs[i];
925if(pair[1].apply(this,arguments)){
926return pair[2].apply(this,arguments);
927}
928}
929throw MochiKit.Base.NotFound;
930},unregister:function(name){
931for(var i=0;i<this.pairs.length;i++){
932var pair=this.pairs[i];
933if(pair[0]==name){
934this.pairs.splice(i,1);
935return true;
936}
937}
938return false;
939}};
940MochiKit.Base.EXPORT=["flattenArray","noop","camelize","counter","clone","extend","update","updatetree","setdefault","keys","values","items","NamedError","operator","forwardCall","itemgetter","typeMatcher","isCallable","isUndefined","isUndefinedOrNull","isNull","isEmpty","isNotEmpty","isArrayLike","isDateLike","xmap","map","xfilter","filter","methodcaller","compose","bind","bindMethods","NotFound","AdapterRegistry","registerComparator","compare","registerRepr","repr","objEqual","arrayEqual","concat","keyComparator","reverseKeyComparator","partial","merge","listMinMax","listMax","listMin","objMax","objMin","nodeWalk","zip","urlEncode","queryString","serializeJSON","registerJSON","evalJSON","parseQueryString","findValue","findIdentical","flattenArguments","method","average","mean","median"];
941MochiKit.Base.EXPORT_OK=["nameFunctions","comparatorRegistry","reprRegistry","jsonRegistry","compareDateLike","compareArrayLike","reprArrayLike","reprString","reprNumber"];
942MochiKit.Base._exportSymbols=function(_144,_145){
943if(!MochiKit.__export__){
944return;
945}
946var all=_145.EXPORT_TAGS[":all"];
947for(var i=0;i<all.length;i++){
948_144[all[i]]=_145[all[i]];
949}
950};
951MochiKit.Base.__new__=function(){
952var m=this;
953m.noop=m.operator.identity;
954m.forward=m.forwardCall;
955m.find=m.findValue;
956if(typeof (encodeURIComponent)!="undefined"){
957m.urlEncode=function(_149){
958return encodeURIComponent(_149).replace(/\'/g,"%27");
959};
960}else{
961m.urlEncode=function(_14a){
962return escape(_14a).replace(/\+/g,"%2B").replace(/\"/g,"%22").rval.replace(/\'/g,"%27");
963};
964}
965m.NamedError=function(name){
966this.message=name;
967this.name=name;
968};
969m.NamedError.prototype=new Error();
970m.update(m.NamedError.prototype,{repr:function(){
971if(this.message&&this.message!=this.name){
972return this.name+"("+m.repr(this.message)+")";
973}else{
974return this.name+"()";
975}
976},toString:m.forwardCall("repr")});
977m.NotFound=new m.NamedError("MochiKit.Base.NotFound");
978m.listMax=m.partial(m.listMinMax,1);
979m.listMin=m.partial(m.listMinMax,-1);
980m.isCallable=m.typeMatcher("function");
981m.isUndefined=m.typeMatcher("undefined");
982m.merge=m.partial(m.update,null);
983m.zip=m.partial(m.map,null);
984m.average=m.mean;
985m.comparatorRegistry=new m.AdapterRegistry();
986m.registerComparator("dateLike",m.isDateLike,m.compareDateLike);
987m.registerComparator("arrayLike",m.isArrayLike,m.compareArrayLike);
988m.reprRegistry=new m.AdapterRegistry();
989m.registerRepr("arrayLike",m.isArrayLike,m.reprArrayLike);
990m.registerRepr("string",m.typeMatcher("string"),m.reprString);
991m.registerRepr("numbers",m.typeMatcher("number","boolean"),m.reprNumber);
992m.jsonRegistry=new m.AdapterRegistry();
993var all=m.concat(m.EXPORT,m.EXPORT_OK);
994m.EXPORT_TAGS={":common":m.concat(m.EXPORT_OK),":all":all};
995m.nameFunctions(this);
996};
997MochiKit.Base.__new__();
998if(MochiKit.__export__){
999compare=MochiKit.Base.compare;
1000compose=MochiKit.Base.compose;
1001serializeJSON=MochiKit.Base.serializeJSON;
1002}
1003MochiKit.Base._exportSymbols(this,MochiKit.Base);
1004if(typeof (dojo)!="undefined"){
5fb1199a
DV
1005dojo.provide("MochiKit.Iter");
1006dojo.require("MochiKit.Base");
1007}
1008if(typeof (JSAN)!="undefined"){
1009JSAN.use("MochiKit.Base",[]);
1010}
1011try{
1012if(typeof (MochiKit.Base)=="undefined"){
1013throw "";
1014}
1015}
1016catch(e){
1017throw "MochiKit.Iter depends on MochiKit.Base!";
1018}
1019if(typeof (MochiKit.Iter)=="undefined"){
1020MochiKit.Iter={};
1021}
1022MochiKit.Iter.NAME="MochiKit.Iter";
1023MochiKit.Iter.VERSION="1.4";
1024MochiKit.Base.update(MochiKit.Iter,{__repr__:function(){
1025return "["+this.NAME+" "+this.VERSION+"]";
1026},toString:function(){
1027return this.__repr__();
1028},registerIteratorFactory:function(name,_14e,_14f,_150){
1029MochiKit.Iter.iteratorRegistry.register(name,_14e,_14f,_150);
1030},iter:function(_151,_152){
1031var self=MochiKit.Iter;
1032if(arguments.length==2){
1033return self.takewhile(function(a){
1034return a!=_152;
1035},_151);
1036}
1037if(typeof (_151.next)=="function"){
1038return _151;
1039}else{
1040if(typeof (_151.iter)=="function"){
1041return _151.iter();
1042}
1043}
1044try{
1045return self.iteratorRegistry.match(_151);
1046}
1047catch(e){
1048var m=MochiKit.Base;
1049if(e==m.NotFound){
1050e=new TypeError(typeof (_151)+": "+m.repr(_151)+" is not iterable");
1051}
1052throw e;
1053}
1054},count:function(n){
1055if(!n){
1056n=0;
1057}
1058var m=MochiKit.Base;
1059return {repr:function(){
1060return "count("+n+")";
1061},toString:m.forwardCall("repr"),next:m.counter(n)};
1062},cycle:function(p){
1063var self=MochiKit.Iter;
1064var m=MochiKit.Base;
1065var lst=[];
1066var _15c=self.iter(p);
1067return {repr:function(){
1068return "cycle(...)";
1069},toString:m.forwardCall("repr"),next:function(){
1070try{
1071var rval=_15c.next();
1072lst.push(rval);
1073return rval;
1074}
1075catch(e){
1076if(e!=self.StopIteration){
1077throw e;
1078}
1079if(lst.length===0){
1080this.next=function(){
1081throw self.StopIteration;
1082};
1083}else{
1084var i=-1;
1085this.next=function(){
1086i=(i+1)%lst.length;
1087return lst[i];
1088};
1089}
1090return this.next();
1091}
1092}};
1093},repeat:function(elem,n){
1094var m=MochiKit.Base;
1095if(typeof (n)=="undefined"){
1096return {repr:function(){
1097return "repeat("+m.repr(elem)+")";
1098},toString:m.forwardCall("repr"),next:function(){
1099return elem;
1100}};
1101}
1102return {repr:function(){
1103return "repeat("+m.repr(elem)+", "+n+")";
1104},toString:m.forwardCall("repr"),next:function(){
1105if(n<=0){
1106throw MochiKit.Iter.StopIteration;
1107}
1108n-=1;
1109return elem;
1110}};
1111},next:function(_162){
1112return _162.next();
1113},izip:function(p,q){
1114var m=MochiKit.Base;
1115var self=MochiKit.Iter;
1116var next=self.next;
1117var _168=m.map(self.iter,arguments);
1118return {repr:function(){
1119return "izip(...)";
1120},toString:m.forwardCall("repr"),next:function(){
1121return m.map(next,_168);
1122}};
1123},ifilter:function(pred,seq){
1124var m=MochiKit.Base;
1125seq=MochiKit.Iter.iter(seq);
1126if(pred===null){
1127pred=m.operator.truth;
1128}
1129return {repr:function(){
1130return "ifilter(...)";
1131},toString:m.forwardCall("repr"),next:function(){
1132while(true){
1133var rval=seq.next();
1134if(pred(rval)){
1135return rval;
1136}
1137}
1138return undefined;
1139}};
1140},ifilterfalse:function(pred,seq){
1141var m=MochiKit.Base;
1142seq=MochiKit.Iter.iter(seq);
1143if(pred===null){
1144pred=m.operator.truth;
1145}
1146return {repr:function(){
1147return "ifilterfalse(...)";
1148},toString:m.forwardCall("repr"),next:function(){
1149while(true){
1150var rval=seq.next();
1151if(!pred(rval)){
1152return rval;
1153}
1154}
1155return undefined;
1156}};
1157},islice:function(seq){
1158var self=MochiKit.Iter;
1159var m=MochiKit.Base;
1160seq=self.iter(seq);
1161var _174=0;
1162var stop=0;
1163var step=1;
1164var i=-1;
1165if(arguments.length==2){
1166stop=arguments[1];
1167}else{
1168if(arguments.length==3){
1169_174=arguments[1];
1170stop=arguments[2];
1171}else{
1172_174=arguments[1];
1173stop=arguments[2];
1174step=arguments[3];
1175}
1176}
1177return {repr:function(){
1178return "islice("+["...",_174,stop,step].join(", ")+")";
1179},toString:m.forwardCall("repr"),next:function(){
1180var rval;
1181while(i<_174){
1182rval=seq.next();
1183i++;
1184}
1185if(_174>=stop){
1186throw self.StopIteration;
1187}
1188_174+=step;
1189return rval;
1190}};
1191},imap:function(fun,p,q){
1192var m=MochiKit.Base;
1193var self=MochiKit.Iter;
1194var _17e=m.map(self.iter,m.extend(null,arguments,1));
1195var map=m.map;
1196var next=self.next;
1197return {repr:function(){
1198return "imap(...)";
1199},toString:m.forwardCall("repr"),next:function(){
1200return fun.apply(this,map(next,_17e));
1201}};
1202},applymap:function(fun,seq,self){
1203seq=MochiKit.Iter.iter(seq);
1204var m=MochiKit.Base;
1205return {repr:function(){
1206return "applymap(...)";
1207},toString:m.forwardCall("repr"),next:function(){
1208return fun.apply(self,seq.next());
1209}};
1210},chain:function(p,q){
1211var self=MochiKit.Iter;
1212var m=MochiKit.Base;
1213if(arguments.length==1){
1214return self.iter(arguments[0]);
1215}
1216var _189=m.map(self.iter,arguments);
1217return {repr:function(){
1218return "chain(...)";
1219},toString:m.forwardCall("repr"),next:function(){
1220while(_189.length>1){
1221try{
1222return _189[0].next();
1223}
1224catch(e){
1225if(e!=self.StopIteration){
1226throw e;
1227}
1228_189.shift();
1229}
1230}
1231if(_189.length==1){
1232var arg=_189.shift();
1233this.next=m.bind("next",arg);
1234return this.next();
1235}
1236throw self.StopIteration;
1237}};
1238},takewhile:function(pred,seq){
1239var self=MochiKit.Iter;
1240seq=self.iter(seq);
1241return {repr:function(){
1242return "takewhile(...)";
1243},toString:MochiKit.Base.forwardCall("repr"),next:function(){
1244var rval=seq.next();
1245if(!pred(rval)){
1246this.next=function(){
1247throw self.StopIteration;
1248};
1249this.next();
1250}
1251return rval;
1252}};
1253},dropwhile:function(pred,seq){
1254seq=MochiKit.Iter.iter(seq);
1255var m=MochiKit.Base;
1256var bind=m.bind;
1257return {"repr":function(){
1258return "dropwhile(...)";
1259},"toString":m.forwardCall("repr"),"next":function(){
1260while(true){
1261var rval=seq.next();
1262if(!pred(rval)){
1263break;
1264}
1265}
1266this.next=bind("next",seq);
1267return rval;
1268}};
1269},_tee:function(_194,sync,_196){
1270sync.pos[_194]=-1;
1271var m=MochiKit.Base;
1272var _198=m.listMin;
1273return {repr:function(){
1274return "tee("+_194+", ...)";
1275},toString:m.forwardCall("repr"),next:function(){
1276var rval;
1277var i=sync.pos[_194];
1278if(i==sync.max){
1279rval=_196.next();
1280sync.deque.push(rval);
1281sync.max+=1;
1282sync.pos[_194]+=1;
1283}else{
1284rval=sync.deque[i-sync.min];
1285sync.pos[_194]+=1;
1286if(i==sync.min&&_198(sync.pos)!=sync.min){
1287sync.min+=1;
1288sync.deque.shift();
1289}
1290}
1291return rval;
1292}};
1293},tee:function(_19b,n){
1294var rval=[];
1295var sync={"pos":[],"deque":[],"max":-1,"min":-1};
1296if(arguments.length==1||typeof (n)=="undefined"||n===null){
1297n=2;
1298}
1299var self=MochiKit.Iter;
1300_19b=self.iter(_19b);
1301var _tee=self._tee;
1302for(var i=0;i<n;i++){
1303rval.push(_tee(i,sync,_19b));
1304}
1305return rval;
1306},list:function(_1a2){
1307var rval;
1308if(_1a2 instanceof Array){
1309return _1a2.slice();
1310}
1311if(typeof (_1a2)=="function"&&!(_1a2 instanceof Function)&&typeof (_1a2.length)=="number"){
1312rval=[];
1313for(var i=0;i<_1a2.length;i++){
1314rval.push(_1a2[i]);
1315}
1316return rval;
1317}
1318var self=MochiKit.Iter;
1319_1a2=self.iter(_1a2);
1320var rval=[];
1321try{
1322while(true){
1323rval.push(_1a2.next());
1324}
1325}
1326catch(e){
1327if(e!=self.StopIteration){
1328throw e;
1329}
1330return rval;
1331}
1332return undefined;
1333},reduce:function(fn,_1a7,_1a8){
1334var i=0;
1335var x=_1a8;
1336var self=MochiKit.Iter;
1337_1a7=self.iter(_1a7);
1338if(arguments.length<3){
1339try{
1340x=_1a7.next();
1341}
1342catch(e){
1343if(e==self.StopIteration){
1344e=new TypeError("reduce() of empty sequence with no initial value");
1345}
1346throw e;
1347}
1348i++;
1349}
1350try{
1351while(true){
1352x=fn(x,_1a7.next());
1353}
1354}
1355catch(e){
1356if(e!=self.StopIteration){
1357throw e;
1358}
1359}
1360return x;
1361},range:function(){
1362var _1ac=0;
1363var stop=0;
1364var step=1;
1365if(arguments.length==1){
1366stop=arguments[0];
1367}else{
1368if(arguments.length==2){
1369_1ac=arguments[0];
1370stop=arguments[1];
1371}else{
1372if(arguments.length==3){
1373_1ac=arguments[0];
1374stop=arguments[1];
1375step=arguments[2];
1376}else{
1377throw new TypeError("range() takes 1, 2, or 3 arguments!");
1378}
1379}
1380}
1381if(step===0){
1382throw new TypeError("range() step must not be 0");
1383}
1384return {next:function(){
1385if((step>0&&_1ac>=stop)||(step<0&&_1ac<=stop)){
1386throw MochiKit.Iter.StopIteration;
1387}
1388var rval=_1ac;
1389_1ac+=step;
1390return rval;
1391},repr:function(){
1392return "range("+[_1ac,stop,step].join(", ")+")";
1393},toString:MochiKit.Base.forwardCall("repr")};
1394},sum:function(_1b0,_1b1){
1395if(typeof (_1b1)=="undefined"||_1b1===null){
1396_1b1=0;
1397}
1398var x=_1b1;
1399var self=MochiKit.Iter;
1400_1b0=self.iter(_1b0);
1401try{
1402while(true){
1403x+=_1b0.next();
1404}
1405}
1406catch(e){
1407if(e!=self.StopIteration){
1408throw e;
1409}
1410}
1411return x;
1412},exhaust:function(_1b4){
1413var self=MochiKit.Iter;
1414_1b4=self.iter(_1b4);
1415try{
1416while(true){
1417_1b4.next();
1418}
1419}
1420catch(e){
1421if(e!=self.StopIteration){
1422throw e;
1423}
1424}
1425},forEach:function(_1b6,func,self){
1426var m=MochiKit.Base;
1427if(arguments.length>2){
1428func=m.bind(func,self);
1429}
1430if(m.isArrayLike(_1b6)){
1431try{
1432for(var i=0;i<_1b6.length;i++){
1433func(_1b6[i]);
1434}
1435}
1436catch(e){
1437if(e!=MochiKit.Iter.StopIteration){
1438throw e;
1439}
1440}
1441}else{
1442self=MochiKit.Iter;
1443self.exhaust(self.imap(func,_1b6));
1444}
1445},every:function(_1bb,func){
1446var self=MochiKit.Iter;
1447try{
1448self.ifilterfalse(func,_1bb).next();
1449return false;
1450}
1451catch(e){
1452if(e!=self.StopIteration){
1453throw e;
1454}
1455return true;
1456}
1457},sorted:function(_1be,cmp){
1458var rval=MochiKit.Iter.list(_1be);
1459if(arguments.length==1){
1460cmp=MochiKit.Base.compare;
1461}
1462rval.sort(cmp);
1463return rval;
1464},reversed:function(_1c1){
1465var rval=MochiKit.Iter.list(_1c1);
1466rval.reverse();
1467return rval;
1468},some:function(_1c3,func){
1469var self=MochiKit.Iter;
1470try{
1471self.ifilter(func,_1c3).next();
1472return true;
1473}
1474catch(e){
1475if(e!=self.StopIteration){
1476throw e;
1477}
1478return false;
1479}
1480},iextend:function(lst,_1c7){
1481if(MochiKit.Base.isArrayLike(_1c7)){
1482for(var i=0;i<_1c7.length;i++){
1483lst.push(_1c7[i]);
1484}
1485}else{
1486var self=MochiKit.Iter;
1487_1c7=self.iter(_1c7);
1488try{
1489while(true){
1490lst.push(_1c7.next());
1491}
1492}
1493catch(e){
1494if(e!=self.StopIteration){
1495throw e;
1496}
1497}
1498}
1499return lst;
1500},groupby:function(_1ca,_1cb){
1501var m=MochiKit.Base;
1502var self=MochiKit.Iter;
1503if(arguments.length<2){
1504_1cb=m.operator.identity;
1505}
1506_1ca=self.iter(_1ca);
1507var pk=undefined;
1508var k=undefined;
1509var v;
1510function fetch(){
1511v=_1ca.next();
1512k=_1cb(v);
1513}
1514function eat(){
1515var ret=v;
1516v=undefined;
1517return ret;
1518}
1519var _1d2=true;
1520var _1d3=m.compare;
1521return {repr:function(){
1522return "groupby(...)";
1523},next:function(){
1524while(_1d3(k,pk)===0){
1525fetch();
1526if(_1d2){
1527_1d2=false;
1528break;
1529}
1530}
1531pk=k;
1532return [k,{next:function(){
1533if(v==undefined){
1534fetch();
1535}
1536if(_1d3(k,pk)!==0){
1537throw self.StopIteration;
1538}
1539return eat();
1540}}];
1541}};
1542},groupby_as_array:function(_1d4,_1d5){
1543var m=MochiKit.Base;
1544var self=MochiKit.Iter;
1545if(arguments.length<2){
1546_1d5=m.operator.identity;
1547}
1548_1d4=self.iter(_1d4);
1549var _1d8=[];
1550var _1d9=true;
1551var _1da;
1552var _1db=m.compare;
1553while(true){
1554try{
1555var _1dc=_1d4.next();
1556var key=_1d5(_1dc);
1557}
1558catch(e){
1559if(e==self.StopIteration){
1560break;
1561}
1562throw e;
1563}
1564if(_1d9||_1db(key,_1da)!==0){
1565var _1de=[];
1566_1d8.push([key,_1de]);
1567}
1568_1de.push(_1dc);
1569_1d9=false;
1570_1da=key;
1571}
1572return _1d8;
1573},arrayLikeIter:function(_1df){
1574var i=0;
1575return {repr:function(){
1576return "arrayLikeIter(...)";
1577},toString:MochiKit.Base.forwardCall("repr"),next:function(){
1578if(i>=_1df.length){
1579throw MochiKit.Iter.StopIteration;
1580}
1581return _1df[i++];
1582}};
1583},hasIterateNext:function(_1e1){
1584return (_1e1&&typeof (_1e1.iterateNext)=="function");
1585},iterateNextIter:function(_1e2){
1586return {repr:function(){
1587return "iterateNextIter(...)";
1588},toString:MochiKit.Base.forwardCall("repr"),next:function(){
1589var rval=_1e2.iterateNext();
1590if(rval===null||rval===undefined){
1591throw MochiKit.Iter.StopIteration;
1592}
1593return rval;
1594}};
1595}});
1596MochiKit.Iter.EXPORT_OK=["iteratorRegistry","arrayLikeIter","hasIterateNext","iterateNextIter"];
1597MochiKit.Iter.EXPORT=["StopIteration","registerIteratorFactory","iter","count","cycle","repeat","next","izip","ifilter","ifilterfalse","islice","imap","applymap","chain","takewhile","dropwhile","tee","list","reduce","range","sum","exhaust","forEach","every","sorted","reversed","some","iextend","groupby","groupby_as_array"];
1598MochiKit.Iter.__new__=function(){
1599var m=MochiKit.Base;
1600if(typeof (StopIteration)!="undefined"){
1601this.StopIteration=StopIteration;
1602}else{
1603this.StopIteration=new m.NamedError("StopIteration");
1604}
1605this.iteratorRegistry=new m.AdapterRegistry();
1606this.registerIteratorFactory("arrayLike",m.isArrayLike,this.arrayLikeIter);
1607this.registerIteratorFactory("iterateNext",this.hasIterateNext,this.iterateNextIter);
1608this.EXPORT_TAGS={":common":this.EXPORT,":all":m.concat(this.EXPORT,this.EXPORT_OK)};
1609m.nameFunctions(this);
1610};
1611MochiKit.Iter.__new__();
1612if(MochiKit.__export__){
1613reduce=MochiKit.Iter.reduce;
1614}
1615MochiKit.Base._exportSymbols(this,MochiKit.Iter);
1616if(typeof (dojo)!="undefined"){
79f17b42
DV
1617dojo.provide("MochiKit.DOM");
1618dojo.require("MochiKit.Base");
6a1aa64f 1619}
79f17b42
DV
1620if(typeof (JSAN)!="undefined"){
1621JSAN.use("MochiKit.Base",[]);
6a1aa64f 1622}
6a1aa64f 1623try{
79f17b42
DV
1624if(typeof (MochiKit.Base)=="undefined"){
1625throw "";
6a1aa64f
DV
1626}
1627}
1628catch(e){
79f17b42 1629throw "MochiKit.DOM depends on MochiKit.Base!";
6a1aa64f 1630}
79f17b42
DV
1631if(typeof (MochiKit.DOM)=="undefined"){
1632MochiKit.DOM={};
6a1aa64f 1633}
79f17b42
DV
1634MochiKit.DOM.NAME="MochiKit.DOM";
1635MochiKit.DOM.VERSION="1.4";
1636MochiKit.DOM.__repr__=function(){
1637return "["+this.NAME+" "+this.VERSION+"]";
1638};
1639MochiKit.DOM.toString=function(){
1640return this.__repr__();
1641};
1642MochiKit.DOM.EXPORT=["removeEmptyTextNodes","formContents","currentWindow","currentDocument","withWindow","withDocument","registerDOMConverter","coerceToDOM","createDOM","createDOMFunc","isChildNode","getNodeAttribute","removeNodeAttribute","setNodeAttribute","updateNodeAttributes","appendChildNodes","insertSiblingNodesAfter","insertSiblingNodesBefore","replaceChildNodes","removeElement","swapDOM","BUTTON","TT","PRE","H1","H2","H3","BR","CANVAS","HR","LABEL","TEXTAREA","FORM","STRONG","SELECT","OPTION","OPTGROUP","LEGEND","FIELDSET","P","UL","OL","LI","TD","TR","THEAD","TBODY","TFOOT","TABLE","TH","INPUT","SPAN","A","DIV","IMG","getElement","$","getElementsByTagAndClassName","addToCallStack","addLoadEvent","focusOnLoad","setElementClass","toggleElementClass","addElementClass","removeElementClass","swapElementClass","hasElementClass","escapeHTML","toHTML","emitHTML","scrapeText","isParent","getFirstParentByTagAndClassName","makeClipping","undoClipping","makePositioned","undoPositioned","getFirstElementByTagAndClassName"];
1643MochiKit.DOM.EXPORT_OK=["domConverters"];
1644MochiKit.DOM.DEPRECATED=[["computedStyle","MochiKit.Style.getStyle","1.4"],["elementDimensions","MochiKit.Style.getElementDimensions","1.4"],["elementPosition","MochiKit.Style.getElementPosition","1.4"],["hideElement","MochiKit.Style.hideElement","1.4"],["setElementDimensions","MochiKit.Style.setElementDimensions","1.4"],["setElementPosition","MochiKit.Style.setElementPosition","1.4"],["setDisplayForElement","MochiKit.Style.setDisplayForElement","1.4"],["setOpacity","MochiKit.Style.setOpacity","1.4"],["showElement","MochiKit.Style.showElement","1.4"],["Coordinates","MochiKit.Style.Coordinates","1.4"],["Dimensions","MochiKit.Style.Dimensions","1.4"]];
1645MochiKit.DOM.getViewportDimensions=new Function(""+"if (!MochiKit[\"Style\"]) {"+" throw new Error(\"This function has been deprecated and depends on MochiKit.Style.\");"+"}"+"return MochiKit.Style.getViewportDimensions.apply(this, arguments);");
1646MochiKit.Base.update(MochiKit.DOM,{currentWindow:function(){
1647return MochiKit.DOM._window;
1648},currentDocument:function(){
1649return MochiKit.DOM._document;
1650},withWindow:function(win,func){
1651var self=MochiKit.DOM;
5fb1199a
DV
1652var _1e8=self._document;
1653var _1e9=self._window;
79f17b42 1654var rval;
6a1aa64f 1655try{
79f17b42
DV
1656self._window=win;
1657self._document=win.document;
1658rval=func();
6a1aa64f
DV
1659}
1660catch(e){
5fb1199a
DV
1661self._window=_1e9;
1662self._document=_1e8;
6a1aa64f
DV
1663throw e;
1664}
5fb1199a
DV
1665self._window=_1e9;
1666self._document=_1e8;
79f17b42
DV
1667return rval;
1668},formContents:function(elem){
5fb1199a
DV
1669var _1ec=[];
1670var _1ed=[];
6a1aa64f 1671var m=MochiKit.Base;
79f17b42
DV
1672var self=MochiKit.DOM;
1673if(typeof (elem)=="undefined"||elem===null){
1674elem=self._document.body;
1675}else{
1676elem=self.getElement(elem);
6a1aa64f 1677}
79f17b42
DV
1678m.nodeWalk(elem,function(elem){
1679var name=elem.name;
1680if(m.isNotEmpty(name)){
5fb1199a
DV
1681var _1f2=elem.tagName.toUpperCase();
1682if(_1f2==="INPUT"&&(elem.type=="radio"||elem.type=="checkbox")&&!elem.checked){
79f17b42 1683return null;
6a1aa64f 1684}
5fb1199a 1685if(_1f2==="SELECT"){
79f17b42
DV
1686if(elem.type=="select-one"){
1687if(elem.selectedIndex>=0){
1688var opt=elem.options[elem.selectedIndex];
1689var v=opt.value;
1690if(!v){
1691var h=opt.outerHTML;
1692if(h&&!h.match(/^[^>]+\svalue\s*=/i)){
1693v=opt.text;
6a1aa64f 1694}
6a1aa64f 1695}
5fb1199a
DV
1696_1ec.push(name);
1697_1ed.push(v);
79f17b42 1698return null;
6a1aa64f 1699}
5fb1199a
DV
1700_1ec.push(name);
1701_1ed.push("");
79f17b42 1702return null;
6a1aa64f 1703}else{
79f17b42
DV
1704var opts=elem.options;
1705if(!opts.length){
5fb1199a
DV
1706_1ec.push(name);
1707_1ed.push("");
79f17b42 1708return null;
6a1aa64f 1709}
79f17b42
DV
1710for(var i=0;i<opts.length;i++){
1711var opt=opts[i];
1712if(!opt.selected){
1713continue;
6a1aa64f 1714}
79f17b42
DV
1715var v=opt.value;
1716if(!v){
1717var h=opt.outerHTML;
1718if(h&&!h.match(/^[^>]+\svalue\s*=/i)){
1719v=opt.text;
6a1aa64f 1720}
6a1aa64f 1721}
5fb1199a
DV
1722_1ec.push(name);
1723_1ed.push(v);
6a1aa64f 1724}
79f17b42 1725return null;
6a1aa64f 1726}
6a1aa64f 1727}
5fb1199a 1728if(_1f2==="FORM"||_1f2==="P"||_1f2==="SPAN"||_1f2==="DIV"){
79f17b42 1729return elem.childNodes;
6a1aa64f 1730}
5fb1199a
DV
1731_1ec.push(name);
1732_1ed.push(elem.value||"");
79f17b42 1733return null;
6a1aa64f 1734}
79f17b42
DV
1735return elem.childNodes;
1736});
5fb1199a 1737return [_1ec,_1ed];
79f17b42
DV
1738},withDocument:function(doc,func){
1739var self=MochiKit.DOM;
5fb1199a 1740var _1fb=self._document;
79f17b42 1741var rval;
6a1aa64f 1742try{
79f17b42
DV
1743self._document=doc;
1744rval=func();
6a1aa64f
DV
1745}
1746catch(e){
5fb1199a 1747self._document=_1fb;
6a1aa64f
DV
1748throw e;
1749}
5fb1199a 1750self._document=_1fb;
79f17b42 1751return rval;
5fb1199a
DV
1752},registerDOMConverter:function(name,_1fe,wrap,_200){
1753MochiKit.DOM.domConverters.register(name,_1fe,wrap,_200);
79f17b42
DV
1754},coerceToDOM:function(node,ctx){
1755var m=MochiKit.Base;
1756var im=MochiKit.Iter;
1757var self=MochiKit.DOM;
1758if(im){
1759var iter=im.iter;
5fb1199a 1760var _207=im.repeat;
79f17b42
DV
1761var map=m.map;
1762}
5fb1199a
DV
1763var _209=self.domConverters;
1764var _20a=arguments.callee;
1765var _20b=m.NotFound;
79f17b42
DV
1766while(true){
1767if(typeof (node)=="undefined"||node===null){
1768return null;
6a1aa64f 1769}
79f17b42
DV
1770if(typeof (node)=="function"&&typeof (node.length)=="number"&&!(node instanceof Function)){
1771node=im.list(node);
6a1aa64f 1772}
79f17b42
DV
1773if(typeof (node.nodeType)!="undefined"&&node.nodeType>0){
1774return node;
6a1aa64f 1775}
79f17b42
DV
1776if(typeof (node)=="number"||typeof (node)=="boolean"){
1777node=node.toString();
6a1aa64f 1778}
79f17b42
DV
1779if(typeof (node)=="string"){
1780return self._document.createTextNode(node);
6a1aa64f 1781}
79f17b42
DV
1782if(typeof (node.__dom__)=="function"){
1783node=node.__dom__(ctx);
1784continue;
6a1aa64f 1785}
79f17b42
DV
1786if(typeof (node.dom)=="function"){
1787node=node.dom(ctx);
1788continue;
6a1aa64f 1789}
79f17b42
DV
1790if(typeof (node)=="function"){
1791node=node.apply(ctx,[ctx]);
1792continue;
6a1aa64f 1793}
79f17b42 1794if(im){
5fb1199a 1795var _20c=null;
6a1aa64f 1796try{
5fb1199a 1797_20c=iter(node);
6a1aa64f
DV
1798}
1799catch(e){
6a1aa64f 1800}
5fb1199a
DV
1801if(_20c){
1802return map(_20a,_20c,_207(ctx));
79f17b42
DV
1803}
1804}
1805try{
5fb1199a 1806node=_209.match(node,ctx);
79f17b42
DV
1807continue;
1808}
1809catch(e){
5fb1199a 1810if(e!=_20b){
6a1aa64f
DV
1811throw e;
1812}
6a1aa64f 1813}
79f17b42 1814return self._document.createTextNode(node.toString());
6a1aa64f 1815}
79f17b42 1816return undefined;
5fb1199a 1817},isChildNode:function(node,_20e){
79f17b42
DV
1818var self=MochiKit.DOM;
1819if(typeof (node)=="string"){
1820node=self.getElement(node);
6a1aa64f 1821}
5fb1199a
DV
1822if(typeof (_20e)=="string"){
1823_20e=self.getElement(_20e);
6a1aa64f 1824}
5fb1199a 1825if(node===_20e){
79f17b42 1826return true;
6a1aa64f 1827}
79f17b42
DV
1828while(node&&node.tagName.toUpperCase()!="BODY"){
1829node=node.parentNode;
5fb1199a 1830if(node===_20e){
79f17b42 1831return true;
6a1aa64f 1832}
6a1aa64f 1833}
79f17b42 1834return false;
5fb1199a 1835},setNodeAttribute:function(node,attr,_212){
79f17b42 1836var o={};
5fb1199a 1837o[attr]=_212;
79f17b42
DV
1838try{
1839return MochiKit.DOM.updateNodeAttributes(node,o);
6a1aa64f 1840}
79f17b42
DV
1841catch(e){
1842}
1843return null;
1844},getNodeAttribute:function(node,attr){
1845var self=MochiKit.DOM;
5fb1199a 1846var _217=self.attributeArray.renames[attr];
79f17b42 1847node=self.getElement(node);
6a1aa64f 1848try{
5fb1199a
DV
1849if(_217){
1850return node[_217];
6a1aa64f 1851}
79f17b42 1852return node.getAttribute(attr);
6a1aa64f
DV
1853}
1854catch(e){
6a1aa64f 1855}
79f17b42
DV
1856return null;
1857},removeNodeAttribute:function(node,attr){
1858var self=MochiKit.DOM;
5fb1199a 1859var _21b=self.attributeArray.renames[attr];
79f17b42
DV
1860node=self.getElement(node);
1861try{
5fb1199a
DV
1862if(_21b){
1863return node[_21b];
6a1aa64f 1864}
79f17b42 1865return node.removeAttribute(attr);
6a1aa64f 1866}
79f17b42 1867catch(e){
6a1aa64f 1868}
79f17b42 1869return null;
5fb1199a 1870},updateNodeAttributes:function(node,_21d){
79f17b42
DV
1871var elem=node;
1872var self=MochiKit.DOM;
1873if(typeof (node)=="string"){
1874elem=self.getElement(node);
1875}
5fb1199a
DV
1876if(_21d){
1877var _220=MochiKit.Base.updatetree;
79f17b42 1878if(self.attributeArray.compliant){
5fb1199a
DV
1879for(var k in _21d){
1880var v=_21d[k];
79f17b42
DV
1881if(typeof (v)=="object"&&typeof (elem[k])=="object"){
1882if(k=="style"&&MochiKit.Style){
1883MochiKit.Style.setStyle(elem,v);
6a1aa64f 1884}else{
5fb1199a 1885_220(elem[k],v);
79f17b42 1886}
6a1aa64f 1887}else{
79f17b42
DV
1888if(k.substring(0,2)=="on"){
1889if(typeof (v)=="string"){
1890v=new Function(v);
1891}
1892elem[k]=v;
6a1aa64f 1893}else{
79f17b42 1894elem.setAttribute(k,v);
6a1aa64f
DV
1895}
1896}
1897}
79f17b42 1898}else{
5fb1199a
DV
1899var _223=self.attributeArray.renames;
1900for(var k in _21d){
1901v=_21d[k];
1902var _224=_223[k];
79f17b42
DV
1903if(k=="style"&&typeof (v)=="string"){
1904elem.style.cssText=v;
1905}else{
5fb1199a
DV
1906if(typeof (_224)=="string"){
1907elem[_224]=v;
79f17b42
DV
1908}else{
1909if(typeof (elem[k])=="object"&&typeof (v)=="object"){
1910if(k=="style"&&MochiKit.Style){
1911MochiKit.Style.setStyle(elem,v);
1912}else{
5fb1199a 1913_220(elem[k],v);
6a1aa64f 1914}
79f17b42
DV
1915}else{
1916if(k.substring(0,2)=="on"){
1917if(typeof (v)=="string"){
1918v=new Function(v);
6a1aa64f 1919}
79f17b42
DV
1920elem[k]=v;
1921}else{
1922elem.setAttribute(k,v);
6a1aa64f 1923}
6a1aa64f 1924}
6a1aa64f 1925}
6a1aa64f 1926}
6a1aa64f 1927}
6a1aa64f 1928}
6a1aa64f 1929}
79f17b42
DV
1930return elem;
1931},appendChildNodes:function(node){
1932var elem=node;
1933var self=MochiKit.DOM;
1934if(typeof (node)=="string"){
1935elem=self.getElement(node);
6a1aa64f 1936}
5fb1199a
DV
1937var _228=[self.coerceToDOM(MochiKit.Base.extend(null,arguments,1),elem)];
1938var _229=MochiKit.Base.concat;
1939while(_228.length){
1940var n=_228.shift();
79f17b42
DV
1941if(typeof (n)=="undefined"||n===null){
1942}else{
1943if(typeof (n.nodeType)=="number"){
1944elem.appendChild(n);
1945}else{
5fb1199a 1946_228=_229(n,_228);
6a1aa64f 1947}
6a1aa64f 1948}
6a1aa64f 1949}
79f17b42
DV
1950return elem;
1951},insertSiblingNodesBefore:function(node){
1952var elem=node;
1953var self=MochiKit.DOM;
1954if(typeof (node)=="string"){
1955elem=self.getElement(node);
6a1aa64f 1956}
5fb1199a
DV
1957var _22e=[self.coerceToDOM(MochiKit.Base.extend(null,arguments,1),elem)];
1958var _22f=elem.parentNode;
1959var _230=MochiKit.Base.concat;
1960while(_22e.length){
1961var n=_22e.shift();
79f17b42 1962if(typeof (n)=="undefined"||n===null){
6a1aa64f 1963}else{
79f17b42 1964if(typeof (n.nodeType)=="number"){
5fb1199a 1965_22f.insertBefore(n,elem);
79f17b42 1966}else{
5fb1199a 1967_22e=_230(n,_22e);
6a1aa64f 1968}
6a1aa64f 1969}
6a1aa64f 1970}
5fb1199a 1971return _22f;
79f17b42
DV
1972},insertSiblingNodesAfter:function(node){
1973var elem=node;
1974var self=MochiKit.DOM;
1975if(typeof (node)=="string"){
1976elem=self.getElement(node);
6a1aa64f 1977}
5fb1199a 1978var _235=[self.coerceToDOM(MochiKit.Base.extend(null,arguments,1),elem)];
79f17b42 1979if(elem.nextSibling){
5fb1199a 1980return self.insertSiblingNodesBefore(elem.nextSibling,_235);
6a1aa64f 1981}else{
5fb1199a 1982return self.appendChildNodes(elem.parentNode,_235);
6a1aa64f 1983}
79f17b42
DV
1984},replaceChildNodes:function(node){
1985var elem=node;
1986var self=MochiKit.DOM;
1987if(typeof (node)=="string"){
1988elem=self.getElement(node);
1989arguments[0]=elem;
6a1aa64f 1990}
5fb1199a
DV
1991var _239;
1992while((_239=elem.firstChild)){
1993elem.removeChild(_239);
6a1aa64f 1994}
79f17b42
DV
1995if(arguments.length<2){
1996return elem;
1997}else{
1998return self.appendChildNodes.apply(this,arguments);
6a1aa64f 1999}
5fb1199a 2000},createDOM:function(name,_23b){
79f17b42
DV
2001var elem;
2002var self=MochiKit.DOM;
2003var m=MochiKit.Base;
5fb1199a 2004if(typeof (_23b)=="string"||typeof (_23b)=="number"){
79f17b42
DV
2005var args=m.extend([name,null],arguments,1);
2006return arguments.callee.apply(this,args);
6a1aa64f 2007}
79f17b42 2008if(typeof (name)=="string"){
5fb1199a
DV
2009var _240=self._xhtml;
2010if(_23b&&!self.attributeArray.compliant){
2011var _241="";
2012if("name" in _23b){
2013_241+=" name=\""+self.escapeHTML(_23b.name)+"\"";
6a1aa64f 2014}
5fb1199a
DV
2015if(name=="input"&&"type" in _23b){
2016_241+=" type=\""+self.escapeHTML(_23b.type)+"\"";
6a1aa64f 2017}
5fb1199a
DV
2018if(_241){
2019name="<"+name+_241+">";
2020_240=false;
6a1aa64f 2021}
6a1aa64f 2022}
79f17b42 2023var d=self._document;
5fb1199a 2024if(_240&&d===document){
79f17b42
DV
2025elem=d.createElementNS("http://www.w3.org/1999/xhtml",name);
2026}else{
2027elem=d.createElement(name);
6a1aa64f 2028}
79f17b42
DV
2029}else{
2030elem=name;
6a1aa64f 2031}
5fb1199a
DV
2032if(_23b){
2033self.updateNodeAttributes(elem,_23b);
6a1aa64f 2034}
79f17b42
DV
2035if(arguments.length<=2){
2036return elem;
6a1aa64f 2037}else{
79f17b42
DV
2038var args=m.extend([elem],arguments,2);
2039return self.appendChildNodes.apply(this,args);
6a1aa64f 2040}
79f17b42
DV
2041},createDOMFunc:function(){
2042var m=MochiKit.Base;
2043return m.partial.apply(this,m.extend([MochiKit.DOM.createDOM],arguments));
2044},removeElement:function(elem){
2045var e=MochiKit.DOM.getElement(elem);
2046e.parentNode.removeChild(e);
2047return e;
2048},swapDOM:function(dest,src){
2049var self=MochiKit.DOM;
2050dest=self.getElement(dest);
5fb1199a 2051var _249=dest.parentNode;
79f17b42
DV
2052if(src){
2053src=self.getElement(src);
5fb1199a 2054_249.replaceChild(src,dest);
79f17b42 2055}else{
5fb1199a 2056_249.removeChild(dest);
6a1aa64f 2057}
79f17b42
DV
2058return src;
2059},getElement:function(id){
2060var self=MochiKit.DOM;
2061if(arguments.length==1){
2062return ((typeof (id)=="string")?self._document.getElementById(id):id);
2063}else{
2064return MochiKit.Base.map(self.getElement,arguments);
6a1aa64f 2065}
5fb1199a 2066},getElementsByTagAndClassName:function(_24c,_24d,_24e){
79f17b42 2067var self=MochiKit.DOM;
5fb1199a
DV
2068if(typeof (_24c)=="undefined"||_24c===null){
2069_24c="*";
6a1aa64f 2070}
5fb1199a
DV
2071if(typeof (_24e)=="undefined"||_24e===null){
2072_24e=self._document;
6a1aa64f 2073}
5fb1199a
DV
2074_24e=self.getElement(_24e);
2075var _250=(_24e.getElementsByTagName(_24c)||self._document.all);
2076if(typeof (_24d)=="undefined"||_24d===null){
2077return MochiKit.Base.extend(null,_250);
6a1aa64f 2078}
5fb1199a
DV
2079var _251=[];
2080for(var i=0;i<_250.length;i++){
2081var _253=_250[i];
2082var cls=_253.className;
79f17b42
DV
2083if(!cls){
2084continue;
6a1aa64f 2085}
5fb1199a
DV
2086var _255=cls.split(" ");
2087for(var j=0;j<_255.length;j++){
2088if(_255[j]==_24d){
2089_251.push(_253);
79f17b42 2090break;
6a1aa64f 2091}
6a1aa64f 2092}
6a1aa64f 2093}
5fb1199a 2094return _251;
79f17b42
DV
2095},_newCallStack:function(path,once){
2096var rval=function(){
5fb1199a
DV
2097var _25a=arguments.callee.callStack;
2098for(var i=0;i<_25a.length;i++){
2099if(_25a[i].apply(this,arguments)===false){
79f17b42 2100break;
6a1aa64f
DV
2101}
2102}
79f17b42
DV
2103if(once){
2104try{
2105this[path]=null;
6a1aa64f 2106}
79f17b42 2107catch(e){
6a1aa64f 2108}
6a1aa64f 2109}
79f17b42
DV
2110};
2111rval.callStack=[];
2112return rval;
5fb1199a 2113},addToCallStack:function(_25c,path,func,once){
79f17b42 2114var self=MochiKit.DOM;
5fb1199a
DV
2115var _261=_25c[path];
2116var _262=_261;
2117if(!(typeof (_261)=="function"&&typeof (_261.callStack)=="object"&&_261.callStack!==null)){
2118_262=self._newCallStack(path,once);
2119if(typeof (_261)=="function"){
2120_262.callStack.push(_261);
6a1aa64f 2121}
5fb1199a 2122_25c[path]=_262;
6a1aa64f 2123}
5fb1199a 2124_262.callStack.push(func);
79f17b42
DV
2125},addLoadEvent:function(func){
2126var self=MochiKit.DOM;
2127self.addToCallStack(self._window,"onload",func,true);
5fb1199a 2128},focusOnLoad:function(_265){
79f17b42
DV
2129var self=MochiKit.DOM;
2130self.addLoadEvent(function(){
5fb1199a
DV
2131_265=self.getElement(_265);
2132if(_265){
2133_265.focus();
6a1aa64f 2134}
79f17b42 2135});
5fb1199a 2136},setElementClass:function(_267,_268){
79f17b42 2137var self=MochiKit.DOM;
5fb1199a 2138var obj=self.getElement(_267);
79f17b42 2139if(self.attributeArray.compliant){
5fb1199a 2140obj.setAttribute("class",_268);
6a1aa64f 2141}else{
5fb1199a 2142obj.setAttribute("className",_268);
6a1aa64f 2143}
5fb1199a 2144},toggleElementClass:function(_26b){
79f17b42
DV
2145var self=MochiKit.DOM;
2146for(var i=1;i<arguments.length;i++){
2147var obj=self.getElement(arguments[i]);
5fb1199a
DV
2148if(!self.addElementClass(obj,_26b)){
2149self.removeElementClass(obj,_26b);
6a1aa64f 2150}
6a1aa64f 2151}
5fb1199a 2152},addElementClass:function(_26f,_270){
79f17b42 2153var self=MochiKit.DOM;
5fb1199a 2154var obj=self.getElement(_26f);
79f17b42
DV
2155var cls=obj.className;
2156if(cls==undefined||cls.length===0){
5fb1199a 2157self.setElementClass(obj,_270);
79f17b42 2158return true;
6a1aa64f 2159}
5fb1199a 2160if(cls==_270){
79f17b42 2161return false;
6a1aa64f 2162}
5fb1199a
DV
2163var _274=cls.split(" ");
2164for(var i=0;i<_274.length;i++){
2165if(_274[i]==_270){
79f17b42 2166return false;
6a1aa64f 2167}
6a1aa64f 2168}
5fb1199a 2169self.setElementClass(obj,cls+" "+_270);
79f17b42 2170return true;
5fb1199a 2171},removeElementClass:function(_276,_277){
79f17b42 2172var self=MochiKit.DOM;
5fb1199a 2173var obj=self.getElement(_276);
79f17b42
DV
2174var cls=obj.className;
2175if(cls==undefined||cls.length===0){
2176return false;
6a1aa64f 2177}
5fb1199a 2178if(cls==_277){
79f17b42
DV
2179self.setElementClass(obj,"");
2180return true;
6a1aa64f 2181}
5fb1199a
DV
2182var _27b=cls.split(" ");
2183for(var i=0;i<_27b.length;i++){
2184if(_27b[i]==_277){
2185_27b.splice(i,1);
2186self.setElementClass(obj,_27b.join(" "));
79f17b42 2187return true;
6a1aa64f
DV
2188}
2189}
79f17b42 2190return false;
5fb1199a
DV
2191},swapElementClass:function(_27d,_27e,_27f){
2192var obj=MochiKit.DOM.getElement(_27d);
2193var res=MochiKit.DOM.removeElementClass(obj,_27e);
79f17b42 2194if(res){
5fb1199a 2195MochiKit.DOM.addElementClass(obj,_27f);
6a1aa64f 2196}
79f17b42 2197return res;
5fb1199a
DV
2198},hasElementClass:function(_282,_283){
2199var obj=MochiKit.DOM.getElement(_282);
79f17b42
DV
2200var cls=obj.className;
2201if(!cls){
2202return false;
6a1aa64f 2203}
5fb1199a 2204var _286=cls.split(" ");
79f17b42
DV
2205for(var i=1;i<arguments.length;i++){
2206var good=false;
5fb1199a
DV
2207for(var j=0;j<_286.length;j++){
2208if(_286[j]==arguments[i]){
79f17b42
DV
2209good=true;
2210break;
6a1aa64f 2211}
6a1aa64f 2212}
79f17b42
DV
2213if(!good){
2214return false;
6a1aa64f 2215}
6a1aa64f 2216}
79f17b42
DV
2217return true;
2218},escapeHTML:function(s){
2219return s.replace(/&/g,"&amp;").replace(/"/g,"&quot;").replace(/</g,"&lt;").replace(/>/g,"&gt;");
2220},toHTML:function(dom){
2221return MochiKit.DOM.emitHTML(dom).join("");
2222},emitHTML:function(dom,lst){
2223if(typeof (lst)=="undefined"||lst===null){
2224lst=[];
6a1aa64f 2225}
5fb1199a 2226var _28e=[dom];
79f17b42 2227var self=MochiKit.DOM;
5fb1199a
DV
2228var _290=self.escapeHTML;
2229var _291=self.attributeArray;
2230while(_28e.length){
2231dom=_28e.pop();
79f17b42
DV
2232if(typeof (dom)=="string"){
2233lst.push(dom);
2234}else{
2235if(dom.nodeType==1){
2236lst.push("<"+dom.tagName.toLowerCase());
5fb1199a
DV
2237var _292=[];
2238var _293=_291(dom);
2239for(var i=0;i<_293.length;i++){
2240var a=_293[i];
2241_292.push([" ",a.name,"=\"",_290(a.value),"\""]);
6a1aa64f 2242}
5fb1199a
DV
2243_292.sort();
2244for(i=0;i<_292.length;i++){
2245var _296=_292[i];
2246for(var j=0;j<_296.length;j++){
2247lst.push(_296[j]);
6a1aa64f
DV
2248}
2249}
79f17b42
DV
2250if(dom.hasChildNodes()){
2251lst.push(">");
5fb1199a
DV
2252_28e.push("</"+dom.tagName.toLowerCase()+">");
2253var _298=dom.childNodes;
2254for(i=_298.length-1;i>=0;i--){
2255_28e.push(_298[i]);
6a1aa64f 2256}
6a1aa64f 2257}else{
79f17b42 2258lst.push("/>");
6a1aa64f 2259}
79f17b42
DV
2260}else{
2261if(dom.nodeType==3){
5fb1199a 2262lst.push(_290(dom.nodeValue));
6a1aa64f 2263}
6a1aa64f 2264}
6a1aa64f 2265}
6a1aa64f 2266}
79f17b42 2267return lst;
5fb1199a 2268},scrapeText:function(node,_29a){
79f17b42
DV
2269var rval=[];
2270(function(node){
2271var cn=node.childNodes;
2272if(cn){
2273for(var i=0;i<cn.length;i++){
2274arguments.callee.call(this,cn[i]);
6a1aa64f 2275}
6a1aa64f 2276}
5fb1199a
DV
2277var _29f=node.nodeValue;
2278if(typeof (_29f)=="string"){
2279rval.push(_29f);
6a1aa64f 2280}
79f17b42 2281})(MochiKit.DOM.getElement(node));
5fb1199a 2282if(_29a){
79f17b42 2283return rval;
6a1aa64f 2284}else{
79f17b42 2285return rval.join("");
6a1aa64f 2286}
5fb1199a
DV
2287},removeEmptyTextNodes:function(_2a0){
2288_2a0=MochiKit.DOM.getElement(_2a0);
2289for(var i=0;i<_2a0.childNodes.length;i++){
2290var node=_2a0.childNodes[i];
79f17b42
DV
2291if(node.nodeType==3&&!/\S/.test(node.nodeValue)){
2292node.parentNode.removeChild(node);
6a1aa64f 2293}
6a1aa64f 2294}
5fb1199a
DV
2295},makeClipping:function(_2a3){
2296_2a3=MochiKit.DOM.getElement(_2a3);
2297var _2a4=_2a3.style.overflow;
2298if((MochiKit.Style.getStyle(_2a3,"overflow")||"visible")!="hidden"){
2299_2a3.style.overflow="hidden";
6a1aa64f 2300}
5fb1199a
DV
2301return _2a4;
2302},undoClipping:function(_2a5,_2a6){
2303_2a5=MochiKit.DOM.getElement(_2a5);
2304if(!_2a6){
79f17b42 2305return;
6a1aa64f 2306}
5fb1199a
DV
2307_2a5.style.overflow=_2a6;
2308},makePositioned:function(_2a7){
2309_2a7=MochiKit.DOM.getElement(_2a7);
2310var pos=MochiKit.Style.getStyle(_2a7,"position");
79f17b42 2311if(pos=="static"||!pos){
5fb1199a 2312_2a7.style.position="relative";
79f17b42 2313if(/Opera/.test(navigator.userAgent)){
5fb1199a
DV
2314_2a7.style.top=0;
2315_2a7.style.left=0;
6a1aa64f 2316}
6a1aa64f 2317}
5fb1199a
DV
2318},undoPositioned:function(_2a9){
2319_2a9=MochiKit.DOM.getElement(_2a9);
2320if(_2a9.style.position=="relative"){
2321_2a9.style.position=_2a9.style.top=_2a9.style.left=_2a9.style.bottom=_2a9.style.right="";
6a1aa64f 2322}
5fb1199a 2323},getFirstElementByTagAndClassName:function(_2aa,_2ab,_2ac){
79f17b42 2324var self=MochiKit.DOM;
5fb1199a
DV
2325if(typeof (_2aa)=="undefined"||_2aa===null){
2326_2aa="*";
6a1aa64f 2327}
5fb1199a
DV
2328if(typeof (_2ac)=="undefined"||_2ac===null){
2329_2ac=self._document;
6a1aa64f 2330}
5fb1199a
DV
2331_2ac=self.getElement(_2ac);
2332var _2ae=(_2ac.getElementsByTagName(_2aa)||self._document.all);
2333if(typeof (_2ab)=="undefined"||_2ab===null){
2334return _2ae[0];
6a1aa64f 2335}
5fb1199a
DV
2336for(var i=0;i<_2ae.length;i++){
2337var _2b0=_2ae[i];
2338var _2b1=_2b0.className.split(" ");
2339for(var j=0;j<_2b1.length;j++){
2340if(_2b1[j]==_2ab){
2341return _2b0;
6a1aa64f 2342}
6a1aa64f 2343}
6a1aa64f 2344}
5fb1199a 2345},getFirstParentByTagAndClassName:function(elem,_2b4,_2b5){
79f17b42
DV
2346var self=MochiKit.DOM;
2347elem=self.getElement(elem);
5fb1199a
DV
2348if(typeof (_2b4)=="undefined"||_2b4===null){
2349_2b4="*";
79f17b42 2350}else{
5fb1199a 2351_2b4=_2b4.toUpperCase();
6a1aa64f 2352}
5fb1199a
DV
2353if(typeof (_2b5)=="undefined"||_2b5===null){
2354_2b5=null;
6a1aa64f 2355}
5fb1199a
DV
2356var _2b7="";
2357var _2b8="";
79f17b42
DV
2358while(elem&&elem.tagName){
2359elem=elem.parentNode;
5fb1199a 2360if(_2b4=="*"&&_2b5===null){
79f17b42 2361return elem;
6a1aa64f 2362}
5fb1199a
DV
2363_2b7=elem.className.split(" ");
2364_2b8=elem.tagName.toUpperCase();
2365if(_2b5===null&&_2b4==_2b8){
79f17b42
DV
2366return elem;
2367}else{
5fb1199a
DV
2368if(_2b5!==null){
2369for(var i=0;i<_2b7.length;i++){
2370if(_2b4=="*"&&_2b7[i]==_2b5){
79f17b42
DV
2371return elem;
2372}else{
5fb1199a 2373if(_2b4==_2b8&&_2b7[i]==_2b5){
79f17b42 2374return elem;
6a1aa64f 2375}
6a1aa64f
DV
2376}
2377}
6a1aa64f 2378}
6a1aa64f 2379}
6a1aa64f 2380}
79f17b42 2381return elem;
5fb1199a
DV
2382},isParent:function(_2ba,_2bb){
2383if(!_2ba.parentNode||_2ba==_2bb){
79f17b42 2384return false;
6a1aa64f 2385}
5fb1199a 2386if(_2ba.parentNode==_2bb){
79f17b42 2387return true;
6a1aa64f 2388}
5fb1199a 2389return MochiKit.DOM.isParent(_2ba.parentNode,_2bb);
79f17b42 2390},__new__:function(win){
6a1aa64f 2391var m=MochiKit.Base;
79f17b42
DV
2392if(typeof (document)!="undefined"){
2393this._document=document;
5fb1199a
DV
2394var _2be="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
2395this._xhtml=(document.documentElement&&document.createElementNS&&document.documentElement.namespaceURI===_2be);
79f17b42
DV
2396}else{
2397if(MochiKit.MockDOM){
2398this._document=MochiKit.MockDOM.document;
2399}
2400}
2401this._window=win;
2402this.domConverters=new m.AdapterRegistry();
5fb1199a
DV
2403var _2bf=this._document.createElement("span");
2404var _2c0;
2405if(_2bf&&_2bf.attributes&&_2bf.attributes.length>0){
2406var _2c1=m.filter;
2407_2c0=function(node){
2408return _2c1(_2c0.ignoreAttrFilter,node.attributes);
2409};
2410_2c0.ignoreAttr={};
2411var _2c3=_2bf.attributes;
2412var _2c4=_2c0.ignoreAttr;
2413for(var i=0;i<_2c3.length;i++){
2414var a=_2c3[i];
2415_2c4[a.name]=a.value;
2416}
2417_2c0.ignoreAttrFilter=function(a){
2418return (_2c0.ignoreAttr[a.name]!=a.value);
2419};
2420_2c0.compliant=false;
2421_2c0.renames={"class":"className","checked":"defaultChecked","usemap":"useMap","for":"htmlFor","readonly":"readOnly","colspan":"colSpan","bgcolor":"bgColor","cellspacing":"cellSpacing","cellpadding":"cellPadding"};
2422}else{
2423_2c0=function(node){
79f17b42
DV
2424return node.attributes;
2425};
5fb1199a
DV
2426_2c0.compliant=true;
2427_2c0.renames={};
79f17b42 2428}
5fb1199a
DV
2429this.attributeArray=_2c0;
2430var _2c9=function(_2ca,arr){
2431var _2cc=arr[1].split(".");
79f17b42
DV
2432var str="";
2433var obj={};
5fb1199a 2434str+="if (!MochiKit."+_2cc[1]+") { throw new Error(\"";
79f17b42 2435str+="This function has been deprecated and depends on MochiKit.";
5fb1199a
DV
2436str+=_2cc[1]+".\");}";
2437str+="return MochiKit."+_2cc[1]+"."+arr[0];
79f17b42 2438str+=".apply(this, arguments);";
5fb1199a
DV
2439obj[_2cc[2]]=new Function(str);
2440MochiKit.Base.update(MochiKit[_2ca],obj);
79f17b42
DV
2441};
2442for(var i;i<MochiKit.DOM.DEPRECATED.length;i++){
5fb1199a
DV
2443_2c9("DOM",MochiKit.DOM.DEPRECATED[i]);
2444}
2445var _2cf=this.createDOMFunc;
2446this.UL=_2cf("ul");
2447this.OL=_2cf("ol");
2448this.LI=_2cf("li");
2449this.TD=_2cf("td");
2450this.TR=_2cf("tr");
2451this.TBODY=_2cf("tbody");
2452this.THEAD=_2cf("thead");
2453this.TFOOT=_2cf("tfoot");
2454this.TABLE=_2cf("table");
2455this.TH=_2cf("th");
2456this.INPUT=_2cf("input");
2457this.SPAN=_2cf("span");
2458this.A=_2cf("a");
2459this.DIV=_2cf("div");
2460this.IMG=_2cf("img");
2461this.BUTTON=_2cf("button");
2462this.TT=_2cf("tt");
2463this.PRE=_2cf("pre");
2464this.H1=_2cf("h1");
2465this.H2=_2cf("h2");
2466this.H3=_2cf("h3");
2467this.BR=_2cf("br");
2468this.HR=_2cf("hr");
2469this.LABEL=_2cf("label");
2470this.TEXTAREA=_2cf("textarea");
2471this.FORM=_2cf("form");
2472this.P=_2cf("p");
2473this.SELECT=_2cf("select");
2474this.OPTION=_2cf("option");
2475this.OPTGROUP=_2cf("optgroup");
2476this.LEGEND=_2cf("legend");
2477this.FIELDSET=_2cf("fieldset");
2478this.STRONG=_2cf("strong");
2479this.CANVAS=_2cf("canvas");
79f17b42
DV
2480this.$=this.getElement;
2481this.EXPORT_TAGS={":common":this.EXPORT,":all":m.concat(this.EXPORT,this.EXPORT_OK)};
2482m.nameFunctions(this);
2483}});
2484MochiKit.DOM.__new__(((typeof (window)=="undefined")?this:window));
2485if(MochiKit.__export__){
2486withWindow=MochiKit.DOM.withWindow;
2487withDocument=MochiKit.DOM.withDocument;
2488}
2489MochiKit.Base._exportSymbols(this,MochiKit.DOM);
2490if(typeof (dojo)!="undefined"){
2491dojo.provide("MochiKit.Style");
2492dojo.require("MochiKit.Base");
2493dojo.require("MochiKit.DOM");
2494}
2495if(typeof (JSAN)!="undefined"){
2496JSAN.use("MochiKit.Base",[]);
2497JSAN.use("MochiKit.DOM",[]);
2498}
6a1aa64f 2499try{
79f17b42
DV
2500if(typeof (MochiKit.Base)=="undefined"){
2501throw "";
2502}
6a1aa64f
DV
2503}
2504catch(e){
79f17b42
DV
2505throw "MochiKit.Style depends on MochiKit.Base!";
2506}
6a1aa64f 2507try{
79f17b42
DV
2508if(typeof (MochiKit.DOM)=="undefined"){
2509throw "";
2510}
6a1aa64f
DV
2511}
2512catch(e){
79f17b42 2513throw "MochiKit.Style depends on MochiKit.DOM!";
6a1aa64f 2514}
79f17b42
DV
2515if(typeof (MochiKit.Style)=="undefined"){
2516MochiKit.Style={};
6a1aa64f 2517}
79f17b42
DV
2518MochiKit.Style.NAME="MochiKit.Style";
2519MochiKit.Style.VERSION="1.4";
2520MochiKit.Style.__repr__=function(){
2521return "["+this.NAME+" "+this.VERSION+"]";
2522};
2523MochiKit.Style.toString=function(){
2524return this.__repr__();
2525};
2526MochiKit.Style.EXPORT_OK=[];
2527MochiKit.Style.EXPORT=["setStyle","setOpacity","getStyle","getElementDimensions","elementDimensions","setElementDimensions","getElementPosition","elementPosition","setElementPosition","setDisplayForElement","hideElement","showElement","getViewportDimensions","getViewportPosition","Dimensions","Coordinates"];
2528MochiKit.Style.Dimensions=function(w,h){
2529this.w=w;
2530this.h=h;
2531};
2532MochiKit.Style.Dimensions.prototype.__repr__=function(){
2533var repr=MochiKit.Base.repr;
2534return "{w: "+repr(this.w)+", h: "+repr(this.h)+"}";
2535};
2536MochiKit.Style.Dimensions.prototype.toString=function(){
2537return this.__repr__();
2538};
2539MochiKit.Style.Coordinates=function(x,y){
2540this.x=x;
2541this.y=y;
2542};
2543MochiKit.Style.Coordinates.prototype.__repr__=function(){
2544var repr=MochiKit.Base.repr;
2545return "{x: "+repr(this.x)+", y: "+repr(this.y)+"}";
2546};
2547MochiKit.Style.Coordinates.prototype.toString=function(){
2548return this.__repr__();
2549};
5fb1199a 2550MochiKit.Base.update(MochiKit.Style,{getStyle:function(elem,_2d7){
79f17b42
DV
2551var dom=MochiKit.DOM;
2552var d=dom._document;
2553elem=dom.getElement(elem);
5fb1199a 2554_2d7=MochiKit.Base.camelize(_2d7);
79f17b42
DV
2555if(!elem||elem==d){
2556return undefined;
6a1aa64f 2557}
5fb1199a
DV
2558if(_2d7=="opacity"&&elem.filters){
2559var _2da=(MochiKit.Style.getStyle(elem,"filter")||"").match(/alpha\(opacity=(.*)\)/);
2560if(_2da&&_2da[1]){
2561return parseFloat(_2da[1])/100;
6a1aa64f 2562}
79f17b42 2563return 1;
6a1aa64f 2564}
5fb1199a
DV
2565var _2db=elem.style?elem.style[_2d7]:null;
2566if(!_2db){
79f17b42
DV
2567if(d.defaultView&&d.defaultView.getComputedStyle){
2568var css=d.defaultView.getComputedStyle(elem,null);
5fb1199a
DV
2569_2d7=_2d7.replace(/([A-Z])/g,"-$1").toLowerCase();
2570_2db=css?css.getPropertyValue(_2d7):null;
6a1aa64f 2571}else{
79f17b42 2572if(elem.currentStyle){
5fb1199a 2573_2db=elem.currentStyle[_2d7];
6a1aa64f
DV
2574}
2575}
6a1aa64f 2576}
5fb1199a
DV
2577if(_2d7=="opacity"){
2578_2db=parseFloat(_2db);
6a1aa64f 2579}
5fb1199a 2580if(/Opera/.test(navigator.userAgent)&&(MochiKit.Base.find(["left","top","right","bottom"],_2d7)!=-1)){
79f17b42 2581if(MochiKit.Style.getStyle(elem,"position")=="static"){
5fb1199a 2582_2db="auto";
6a1aa64f
DV
2583}
2584}
5fb1199a
DV
2585return _2db=="auto"?null:_2db;
2586},setStyle:function(elem,_2de){
79f17b42 2587elem=MochiKit.DOM.getElement(elem);
5fb1199a 2588for(var name in _2de){
79f17b42 2589if(name=="opacity"){
5fb1199a 2590MochiKit.Style.setOpacity(elem,_2de[name]);
79f17b42 2591}else{
5fb1199a 2592elem.style[MochiKit.Base.camelize(name)]=_2de[name];
6a1aa64f 2593}
6a1aa64f 2594}
79f17b42
DV
2595},setOpacity:function(elem,o){
2596elem=MochiKit.DOM.getElement(elem);
2597var self=MochiKit.Style;
2598if(o==1){
5fb1199a
DV
2599var _2e3=/Gecko/.test(navigator.userAgent)&&!(/Konqueror|AppleWebKit|KHTML/.test(navigator.userAgent));
2600elem.style["opacity"]=_2e3?0.999999:1;
79f17b42
DV
2601if(/MSIE/.test(navigator.userAgent)){
2602elem.style["filter"]=self.getStyle(elem,"filter").replace(/alpha\([^\)]*\)/gi,"");
6a1aa64f 2603}
79f17b42
DV
2604}else{
2605if(o<0.00001){
2606o=0;
6a1aa64f 2607}
79f17b42
DV
2608elem.style["opacity"]=o;
2609if(/MSIE/.test(navigator.userAgent)){
2610elem.style["filter"]=self.getStyle(elem,"filter").replace(/alpha\([^\)]*\)/gi,"")+"alpha(opacity="+o*100+")";
6a1aa64f 2611}
6a1aa64f 2612}
5fb1199a 2613},getElementPosition:function(elem,_2e5){
79f17b42
DV
2614var self=MochiKit.Style;
2615var dom=MochiKit.DOM;
2616elem=dom.getElement(elem);
2617if(!elem||(!(elem.x&&elem.y)&&(!elem.parentNode===null||self.getStyle(elem,"display")=="none"))){
2618return undefined;
6a1aa64f 2619}
79f17b42
DV
2620var c=new self.Coordinates(0,0);
2621var box=null;
5fb1199a 2622var _2ea=null;
79f17b42
DV
2623var d=MochiKit.DOM._document;
2624var de=d.documentElement;
2625var b=d.body;
2626if(!elem.parentNode&&elem.x&&elem.y){
2627c.x+=elem.x||0;
2628c.y+=elem.y||0;
2629}else{
2630if(elem.getBoundingClientRect){
2631box=elem.getBoundingClientRect();
2632c.x+=box.left+(de.scrollLeft||b.scrollLeft)-(de.clientLeft||0);
2633c.y+=box.top+(de.scrollTop||b.scrollTop)-(de.clientTop||0);
6a1aa64f 2634}else{
79f17b42
DV
2635if(elem.offsetParent){
2636c.x+=elem.offsetLeft;
2637c.y+=elem.offsetTop;
5fb1199a
DV
2638_2ea=elem.offsetParent;
2639if(_2ea!=elem){
2640while(_2ea){
2641c.x+=_2ea.offsetLeft;
2642c.y+=_2ea.offsetTop;
2643_2ea=_2ea.offsetParent;
6a1aa64f 2644}
6a1aa64f 2645}
79f17b42
DV
2646var ua=navigator.userAgent.toLowerCase();
2647if((typeof (opera)!="undefined"&&parseFloat(opera.version())<9)||(ua.indexOf("AppleWebKit")!=-1&&self.getStyle(elem,"position")=="absolute")){
2648c.x-=b.offsetLeft;
2649c.y-=b.offsetTop;
6a1aa64f 2650}
6a1aa64f
DV
2651}
2652}
6a1aa64f 2653}
5fb1199a
DV
2654if(typeof (_2e5)!="undefined"){
2655_2e5=arguments.callee(_2e5);
2656if(_2e5){
2657c.x-=(_2e5.x||0);
2658c.y-=(_2e5.y||0);
6a1aa64f 2659}
6a1aa64f 2660}
79f17b42 2661if(elem.parentNode){
5fb1199a 2662_2ea=elem.parentNode;
6a1aa64f 2663}else{
5fb1199a 2664_2ea=null;
6a1aa64f 2665}
5fb1199a
DV
2666while(_2ea){
2667var _2ef=_2ea.tagName.toUpperCase();
2668if(_2ef==="BODY"||_2ef==="HTML"){
79f17b42 2669break;
6a1aa64f 2670}
5fb1199a 2671var disp=self.getStyle(_2ea,"display");
79f17b42 2672if(disp!="inline"&&disp!="table-row"){
5fb1199a
DV
2673c.x-=_2ea.scrollLeft;
2674c.y-=_2ea.scrollTop;
6a1aa64f 2675}
5fb1199a
DV
2676if(_2ea.parentNode){
2677_2ea=_2ea.parentNode;
79f17b42 2678}else{
5fb1199a 2679_2ea=null;
6a1aa64f
DV
2680}
2681}
79f17b42 2682return c;
5fb1199a 2683},setElementPosition:function(elem,_2f2,_2f3){
79f17b42 2684elem=MochiKit.DOM.getElement(elem);
5fb1199a
DV
2685if(typeof (_2f3)=="undefined"){
2686_2f3="px";
6a1aa64f 2687}
5fb1199a
DV
2688var _2f4={};
2689var _2f5=MochiKit.Base.isUndefinedOrNull;
2690if(!_2f5(_2f2.x)){
2691_2f4["left"]=_2f2.x+_2f3;
6a1aa64f 2692}
5fb1199a
DV
2693if(!_2f5(_2f2.y)){
2694_2f4["top"]=_2f2.y+_2f3;
6a1aa64f 2695}
5fb1199a 2696MochiKit.DOM.updateNodeAttributes(elem,{"style":_2f4});
79f17b42
DV
2697},getElementDimensions:function(elem){
2698var self=MochiKit.Style;
2699var dom=MochiKit.DOM;
2700if(typeof (elem.w)=="number"||typeof (elem.h)=="number"){
2701return new self.Dimensions(elem.w||0,elem.h||0);
6a1aa64f 2702}
79f17b42
DV
2703elem=dom.getElement(elem);
2704if(!elem){
2705return undefined;
6a1aa64f 2706}
79f17b42
DV
2707var disp=self.getStyle(elem,"display");
2708if(disp!="none"&&disp!==""&&typeof (disp)!="undefined"){
2709return new self.Dimensions(elem.offsetWidth||0,elem.offsetHeight||0);
6a1aa64f 2710}
79f17b42 2711var s=elem.style;
5fb1199a
DV
2712var _2fb=s.visibility;
2713var _2fc=s.position;
79f17b42
DV
2714s.visibility="hidden";
2715s.position="absolute";
2716s.display="";
5fb1199a
DV
2717var _2fd=elem.offsetWidth;
2718var _2fe=elem.offsetHeight;
79f17b42 2719s.display="none";
5fb1199a
DV
2720s.position=_2fc;
2721s.visibility=_2fb;
2722return new self.Dimensions(_2fd,_2fe);
2723},setElementDimensions:function(elem,_300,_301){
79f17b42 2724elem=MochiKit.DOM.getElement(elem);
5fb1199a
DV
2725if(typeof (_301)=="undefined"){
2726_301="px";
6a1aa64f 2727}
5fb1199a
DV
2728var _302={};
2729var _303=MochiKit.Base.isUndefinedOrNull;
2730if(!_303(_300.w)){
2731_302["width"]=_300.w+_301;
6a1aa64f 2732}
5fb1199a
DV
2733if(!_303(_300.h)){
2734_302["height"]=_300.h+_301;
6a1aa64f 2735}
5fb1199a
DV
2736MochiKit.DOM.updateNodeAttributes(elem,{"style":_302});
2737},setDisplayForElement:function(_304,_305){
2738var _306=MochiKit.Base.extend(null,arguments,1);
2739var _307=MochiKit.DOM.getElement;
2740for(var i=0;i<_306.length;i++){
2741_305=_307(_306[i]);
2742if(_305){
2743_305.style.display=_304;
6a1aa64f 2744}
6a1aa64f 2745}
79f17b42
DV
2746},getViewportDimensions:function(){
2747var d=new MochiKit.Style.Dimensions();
2748var w=MochiKit.DOM._window;
2749var b=MochiKit.DOM._document.body;
2750if(w.innerWidth){
2751d.w=w.innerWidth;
2752d.h=w.innerHeight;
2753}else{
2754if(b.parentElement.clientWidth){
2755d.w=b.parentElement.clientWidth;
2756d.h=b.parentElement.clientHeight;
2757}else{
2758if(b&&b.clientWidth){
2759d.w=b.clientWidth;
2760d.h=b.clientHeight;
6a1aa64f 2761}
6a1aa64f 2762}
6a1aa64f 2763}
79f17b42
DV
2764return d;
2765},getViewportPosition:function(){
2766var c=new MochiKit.Style.Coordinates(0,0);
2767var d=MochiKit.DOM._document;
2768var de=d.documentElement;
2769var db=d.body;
2770if(de&&(de.scrollTop||de.scrollLeft)){
2771c.x=de.scrollLeft;
2772c.y=de.scrollTop;
6a1aa64f 2773}else{
79f17b42
DV
2774if(db){
2775c.x=db.scrollLeft;
2776c.y=db.scrollTop;
6a1aa64f
DV
2777}
2778}
79f17b42
DV
2779return c;
2780},__new__:function(){
2781var m=MochiKit.Base;
2782this.elementPosition=this.getElementPosition;
2783this.elementDimensions=this.getElementDimensions;
2784this.hideElement=m.partial(this.setDisplayForElement,"none");
2785this.showElement=m.partial(this.setDisplayForElement,"block");
6a1aa64f 2786this.EXPORT_TAGS={":common":this.EXPORT,":all":m.concat(this.EXPORT,this.EXPORT_OK)};
79f17b42 2787m.nameFunctions(this);
6a1aa64f 2788}});
79f17b42
DV
2789MochiKit.Style.__new__();
2790MochiKit.Base._exportSymbols(this,MochiKit.Style);
6a1aa64f 2791if(typeof (dojo)!="undefined"){
79f17b42 2792dojo.provide("MochiKit.Color");
6a1aa64f
DV
2793dojo.require("MochiKit.Base");
2794dojo.require("MochiKit.DOM");
2795dojo.require("MochiKit.Style");
2796}
2797if(typeof (JSAN)!="undefined"){
2798JSAN.use("MochiKit.Base",[]);
2799JSAN.use("MochiKit.DOM",[]);
2800JSAN.use("MochiKit.Style",[]);
2801}
2802try{
2803if(typeof (MochiKit.Base)=="undefined"){
2804throw "";
2805}
2806}
2807catch(e){
79f17b42 2808throw "MochiKit.Color depends on MochiKit.Base";
6a1aa64f
DV
2809}
2810try{
2811if(typeof (MochiKit.DOM)=="undefined"){
2812throw "";
2813}
2814}
2815catch(e){
79f17b42 2816throw "MochiKit.Color depends on MochiKit.DOM";
6a1aa64f
DV
2817}
2818try{
2819if(typeof (MochiKit.Style)=="undefined"){
2820throw "";
2821}
2822}
2823catch(e){
79f17b42 2824throw "MochiKit.Color depends on MochiKit.Style";
6a1aa64f 2825}
79f17b42
DV
2826if(typeof (MochiKit.Color)=="undefined"){
2827MochiKit.Color={};
6a1aa64f 2828}
79f17b42
DV
2829MochiKit.Color.NAME="MochiKit.Color";
2830MochiKit.Color.VERSION="1.4";
2831MochiKit.Color.__repr__=function(){
2832return "["+this.NAME+" "+this.VERSION+"]";
6a1aa64f 2833};
79f17b42 2834MochiKit.Color.toString=function(){
6a1aa64f 2835return this.__repr__();
79f17b42 2836};
5fb1199a
DV
2837MochiKit.Color.Color=function(red,_312,blue,_314){
2838if(typeof (_314)=="undefined"||_314===null){
2839_314=1;
6a1aa64f 2840}
5fb1199a 2841this.rgb={r:red,g:_312,b:blue,a:_314};
79f17b42 2842};
5fb1199a 2843MochiKit.Color.Color.prototype={__class__:MochiKit.Color.Color,colorWithAlpha:function(_315){
79f17b42
DV
2844var rgb=this.rgb;
2845var m=MochiKit.Color;
5fb1199a 2846return m.Color.fromRGB(rgb.r,rgb.g,rgb.b,_315);
79f17b42
DV
2847},colorWithHue:function(hue){
2848var hsl=this.asHSL();
2849hsl.h=hue;
2850var m=MochiKit.Color;
2851return m.Color.fromHSL(hsl);
5fb1199a 2852},colorWithSaturation:function(_31b){
79f17b42 2853var hsl=this.asHSL();
5fb1199a 2854hsl.s=_31b;
79f17b42
DV
2855var m=MochiKit.Color;
2856return m.Color.fromHSL(hsl);
5fb1199a 2857},colorWithLightness:function(_31e){
79f17b42 2858var hsl=this.asHSL();
5fb1199a 2859hsl.l=_31e;
79f17b42
DV
2860var m=MochiKit.Color;
2861return m.Color.fromHSL(hsl);
5fb1199a 2862},darkerColorWithLevel:function(_321){
79f17b42 2863var hsl=this.asHSL();
5fb1199a 2864hsl.l=Math.max(hsl.l-_321,0);
79f17b42
DV
2865var m=MochiKit.Color;
2866return m.Color.fromHSL(hsl);
5fb1199a 2867},lighterColorWithLevel:function(_324){
79f17b42 2868var hsl=this.asHSL();
5fb1199a 2869hsl.l=Math.min(hsl.l+_324,1);
79f17b42
DV
2870var m=MochiKit.Color;
2871return m.Color.fromHSL(hsl);
5fb1199a
DV
2872},blendedColor:function(_327,_328){
2873if(typeof (_328)=="undefined"||_328===null){
2874_328=0.5;
6a1aa64f 2875}
5fb1199a 2876var sf=1-_328;
79f17b42 2877var s=this.rgb;
5fb1199a
DV
2878var d=_327.rgb;
2879var df=_328;
79f17b42 2880return MochiKit.Color.Color.fromRGB((s.r*sf)+(d.r*df),(s.g*sf)+(d.g*df),(s.b*sf)+(d.b*df),(s.a*sf)+(d.a*df));
5fb1199a 2881},compareRGB:function(_32d){
79f17b42 2882var a=this.asRGB();
5fb1199a 2883var b=_32d.asRGB();
79f17b42
DV
2884return MochiKit.Base.compare([a.r,a.g,a.b,a.a],[b.r,b.g,b.b,b.a]);
2885},isLight:function(){
2886return this.asHSL().b>0.5;
2887},isDark:function(){
2888return (!this.isLight());
2889},toHSLString:function(){
2890var c=this.asHSL();
2891var ccc=MochiKit.Color.clampColorComponent;
2892var rval=this._hslString;
2893if(!rval){
2894var mid=(ccc(c.h,360).toFixed(0)+","+ccc(c.s,100).toPrecision(4)+"%"+","+ccc(c.l,100).toPrecision(4)+"%");
2895var a=c.a;
2896if(a>=1){
2897a=1;
2898rval="hsl("+mid+")";
6a1aa64f 2899}else{
79f17b42
DV
2900if(a<=0){
2901a=0;
6a1aa64f 2902}
79f17b42 2903rval="hsla("+mid+","+a+")";
6a1aa64f 2904}
79f17b42 2905this._hslString=rval;
6a1aa64f 2906}
79f17b42
DV
2907return rval;
2908},toRGBString:function(){
2909var c=this.rgb;
2910var ccc=MochiKit.Color.clampColorComponent;
2911var rval=this._rgbString;
2912if(!rval){
2913var mid=(ccc(c.r,255).toFixed(0)+","+ccc(c.g,255).toFixed(0)+","+ccc(c.b,255).toFixed(0));
2914if(c.a!=1){
2915rval="rgba("+mid+","+c.a+")";
6a1aa64f 2916}else{
79f17b42 2917rval="rgb("+mid+")";
6a1aa64f 2918}
79f17b42 2919this._rgbString=rval;
6a1aa64f 2920}
79f17b42
DV
2921return rval;
2922},asRGB:function(){
2923return MochiKit.Base.clone(this.rgb);
2924},toHexString:function(){
2925var m=MochiKit.Color;
2926var c=this.rgb;
2927var ccc=MochiKit.Color.clampColorComponent;
2928var rval=this._hexString;
2929if(!rval){
2930rval=("#"+m.toColorPart(ccc(c.r,255))+m.toColorPart(ccc(c.g,255))+m.toColorPart(ccc(c.b,255)));
2931this._hexString=rval;
6a1aa64f 2932}
79f17b42
DV
2933return rval;
2934},asHSV:function(){
2935var hsv=this.hsv;
2936var c=this.rgb;
2937if(typeof (hsv)=="undefined"||hsv===null){
2938hsv=MochiKit.Color.rgbToHSV(this.rgb);
2939this.hsv=hsv;
6a1aa64f 2940}
79f17b42
DV
2941return MochiKit.Base.clone(hsv);
2942},asHSL:function(){
2943var hsl=this.hsl;
2944var c=this.rgb;
2945if(typeof (hsl)=="undefined"||hsl===null){
2946hsl=MochiKit.Color.rgbToHSL(this.rgb);
2947this.hsl=hsl;
6a1aa64f 2948}
79f17b42 2949return MochiKit.Base.clone(hsl);
6a1aa64f 2950},toString:function(){
79f17b42
DV
2951return this.toRGBString();
2952},repr:function(){
2953var c=this.rgb;
2954var col=[c.r,c.g,c.b,c.a];
2955return this.__class__.NAME+"("+col.join(", ")+")";
2956}};
5fb1199a
DV
2957MochiKit.Base.update(MochiKit.Color.Color,{fromRGB:function(red,_344,blue,_346){
2958var _347=MochiKit.Color.Color;
79f17b42
DV
2959if(arguments.length==1){
2960var rgb=red;
2961red=rgb.r;
5fb1199a 2962_344=rgb.g;
79f17b42
DV
2963blue=rgb.b;
2964if(typeof (rgb.a)=="undefined"){
5fb1199a 2965_346=undefined;
79f17b42 2966}else{
5fb1199a 2967_346=rgb.a;
6a1aa64f
DV
2968}
2969}
5fb1199a
DV
2970return new _347(red,_344,blue,_346);
2971},fromHSL:function(hue,_34a,_34b,_34c){
79f17b42
DV
2972var m=MochiKit.Color;
2973return m.Color.fromRGB(m.hslToRGB.apply(m,arguments));
5fb1199a 2974},fromHSV:function(hue,_34f,_350,_351){
79f17b42
DV
2975var m=MochiKit.Color;
2976return m.Color.fromRGB(m.hsvToRGB.apply(m,arguments));
2977},fromName:function(name){
5fb1199a 2978var _354=MochiKit.Color.Color;
79f17b42
DV
2979if(name.charAt(0)=="\""){
2980name=name.substr(1,name.length-2);
6a1aa64f 2981}
5fb1199a
DV
2982var _355=_354._namedColors[name.toLowerCase()];
2983if(typeof (_355)=="string"){
2984return _354.fromHexString(_355);
6a1aa64f 2985}else{
79f17b42 2986if(name=="transparent"){
5fb1199a 2987return _354.transparentColor();
6a1aa64f 2988}
79f17b42
DV
2989}
2990return null;
5fb1199a 2991},fromString:function(_356){
79f17b42 2992var self=MochiKit.Color.Color;
5fb1199a
DV
2993var _358=_356.substr(0,3);
2994if(_358=="rgb"){
2995return self.fromRGBString(_356);
6a1aa64f 2996}else{
5fb1199a
DV
2997if(_358=="hsl"){
2998return self.fromHSLString(_356);
6a1aa64f 2999}else{
5fb1199a
DV
3000if(_356.charAt(0)=="#"){
3001return self.fromHexString(_356);
6a1aa64f
DV
3002}
3003}
6a1aa64f 3004}
5fb1199a
DV
3005return self.fromName(_356);
3006},fromHexString:function(_359){
3007if(_359.charAt(0)=="#"){
3008_359=_359.substring(1);
6a1aa64f 3009}
5fb1199a 3010var _35a=[];
79f17b42 3011var i,hex;
5fb1199a 3012if(_359.length==3){
79f17b42 3013for(i=0;i<3;i++){
5fb1199a
DV
3014hex=_359.substr(i,1);
3015_35a.push(parseInt(hex+hex,16)/255);
6a1aa64f 3016}
6a1aa64f 3017}else{
79f17b42 3018for(i=0;i<6;i+=2){
5fb1199a
DV
3019hex=_359.substr(i,2);
3020_35a.push(parseInt(hex,16)/255);
6a1aa64f 3021}
6a1aa64f 3022}
5fb1199a
DV
3023var _35d=MochiKit.Color.Color;
3024return _35d.fromRGB.apply(_35d,_35a);
3025},_fromColorString:function(pre,_35f,_360,_361){
3026if(_361.indexOf(pre)===0){
3027_361=_361.substring(_361.indexOf("(",3)+1,_361.length-1);
6a1aa64f 3028}
5fb1199a
DV
3029var _362=_361.split(/\s*,\s*/);
3030var _363=[];
3031for(var i=0;i<_362.length;i++){
3032var c=_362[i];
79f17b42 3033var val;
5fb1199a 3034var _367=c.substring(c.length-3);
79f17b42
DV
3035if(c.charAt(c.length-1)=="%"){
3036val=0.01*parseFloat(c.substring(0,c.length-1));
6a1aa64f 3037}else{
5fb1199a 3038if(_367=="deg"){
79f17b42 3039val=parseFloat(c)/360;
6a1aa64f 3040}else{
5fb1199a 3041if(_367=="rad"){
79f17b42 3042val=parseFloat(c)/(Math.PI*2);
6a1aa64f 3043}else{
5fb1199a 3044val=_360[i]*parseFloat(c);
6a1aa64f 3045}
6a1aa64f 3046}
6a1aa64f 3047}
5fb1199a 3048_363.push(val);
6a1aa64f 3049}
5fb1199a
DV
3050return this[_35f].apply(this,_363);
3051},fromComputedStyle:function(elem,_369){
79f17b42
DV
3052var d=MochiKit.DOM;
3053var cls=MochiKit.Color.Color;
3054for(elem=d.getElement(elem);elem;elem=elem.parentNode){
5fb1199a
DV
3055var _36c=MochiKit.Style.getStyle.apply(d,arguments);
3056if(!_36c){
79f17b42 3057continue;
6a1aa64f 3058}
5fb1199a
DV
3059var _36d=cls.fromString(_36c);
3060if(!_36d){
79f17b42 3061break;
6a1aa64f 3062}
5fb1199a
DV
3063if(_36d.asRGB().a>0){
3064return _36d;
6a1aa64f 3065}
79f17b42
DV
3066}
3067return null;
3068},fromBackground:function(elem){
3069var cls=MochiKit.Color.Color;
3070return cls.fromComputedStyle(elem,"backgroundColor","background-color")||cls.whiteColor();
3071},fromText:function(elem){
3072var cls=MochiKit.Color.Color;
3073return cls.fromComputedStyle(elem,"color","color")||cls.blackColor();
3074},namedColors:function(){
3075return MochiKit.Base.clone(MochiKit.Color.Color._namedColors);
3076}});
5fb1199a
DV
3077MochiKit.Base.update(MochiKit.Color,{clampColorComponent:function(v,_373){
3078v*=_373;
79f17b42
DV
3079if(v<0){
3080return 0;
6a1aa64f 3081}else{
5fb1199a
DV
3082if(v>_373){
3083return _373;
6a1aa64f 3084}else{
79f17b42 3085return v;
6a1aa64f
DV
3086}
3087}
79f17b42
DV
3088},_hslValue:function(n1,n2,hue){
3089if(hue>6){
3090hue-=6;
6a1aa64f 3091}else{
79f17b42
DV
3092if(hue<0){
3093hue+=6;
6a1aa64f
DV
3094}
3095}
79f17b42
DV
3096var val;
3097if(hue<1){
3098val=n1+(n2-n1)*hue;
6a1aa64f 3099}else{
79f17b42
DV
3100if(hue<3){
3101val=n2;
6a1aa64f 3102}else{
79f17b42
DV
3103if(hue<4){
3104val=n1+(n2-n1)*(4-hue);
3105}else{
3106val=n1;
6a1aa64f 3107}
6a1aa64f
DV
3108}
3109}
79f17b42 3110return val;
5fb1199a 3111},hsvToRGB:function(hue,_379,_37a,_37b){
79f17b42
DV
3112if(arguments.length==1){
3113var hsv=hue;
3114hue=hsv.h;
5fb1199a
DV
3115_379=hsv.s;
3116_37a=hsv.v;
3117_37b=hsv.a;
6a1aa64f 3118}
79f17b42 3119var red;
5fb1199a 3120var _37e;
79f17b42 3121var blue;
5fb1199a
DV
3122if(_379===0){
3123red=_37a;
3124_37e=_37a;
3125blue=_37a;
6a1aa64f 3126}else{
79f17b42
DV
3127var i=Math.floor(hue*6);
3128var f=(hue*6)-i;
5fb1199a
DV
3129var p=_37a*(1-_379);
3130var q=_37a*(1-(_379*f));
3131var t=_37a*(1-(_379*(1-f)));
79f17b42
DV
3132switch(i){
3133case 1:
3134red=q;
5fb1199a 3135_37e=_37a;
79f17b42
DV
3136blue=p;
3137break;
3138case 2:
3139red=p;
5fb1199a 3140_37e=_37a;
79f17b42
DV
3141blue=t;
3142break;
3143case 3:
3144red=p;
5fb1199a
DV
3145_37e=q;
3146blue=_37a;
79f17b42
DV
3147break;
3148case 4:
3149red=t;
5fb1199a
DV
3150_37e=p;
3151blue=_37a;
79f17b42
DV
3152break;
3153case 5:
5fb1199a
DV
3154red=_37a;
3155_37e=p;
79f17b42
DV
3156blue=q;
3157break;
3158case 6:
3159case 0:
5fb1199a
DV
3160red=_37a;
3161_37e=t;
79f17b42
DV
3162blue=p;
3163break;
6a1aa64f
DV
3164}
3165}
5fb1199a
DV
3166return {r:red,g:_37e,b:blue,a:_37b};
3167},hslToRGB:function(hue,_386,_387,_388){
79f17b42
DV
3168if(arguments.length==1){
3169var hsl=hue;
3170hue=hsl.h;
5fb1199a
DV
3171_386=hsl.s;
3172_387=hsl.l;
3173_388=hsl.a;
6a1aa64f 3174}
79f17b42 3175var red;
5fb1199a 3176var _38b;
79f17b42 3177var blue;
5fb1199a
DV
3178if(_386===0){
3179red=_387;
3180_38b=_387;
3181blue=_387;
79f17b42
DV
3182}else{
3183var m2;
5fb1199a
DV
3184if(_387<=0.5){
3185m2=_387*(1+_386);
6a1aa64f 3186}else{
5fb1199a 3187m2=_387+_386-(_387*_386);
6a1aa64f 3188}
5fb1199a 3189var m1=(2*_387)-m2;
79f17b42
DV
3190var f=MochiKit.Color._hslValue;
3191var h6=hue*6;
3192red=f(m1,m2,h6+2);
5fb1199a 3193_38b=f(m1,m2,h6);
79f17b42 3194blue=f(m1,m2,h6-2);
6a1aa64f 3195}
5fb1199a
DV
3196return {r:red,g:_38b,b:blue,a:_388};
3197},rgbToHSV:function(red,_392,blue,_394){
79f17b42
DV
3198if(arguments.length==1){
3199var rgb=red;
3200red=rgb.r;
5fb1199a 3201_392=rgb.g;
79f17b42 3202blue=rgb.b;
5fb1199a 3203_394=rgb.a;
6a1aa64f 3204}
5fb1199a
DV
3205var max=Math.max(Math.max(red,_392),blue);
3206var min=Math.min(Math.min(red,_392),blue);
79f17b42 3207var hue;
5fb1199a
DV
3208var _399;
3209var _39a=max;
79f17b42
DV
3210if(min==max){
3211hue=0;
5fb1199a 3212_399=0;
6a1aa64f 3213}else{
5fb1199a
DV
3214var _39b=(max-min);
3215_399=_39b/max;
79f17b42 3216if(red==max){
5fb1199a 3217hue=(_392-blue)/_39b;
79f17b42 3218}else{
5fb1199a
DV
3219if(_392==max){
3220hue=2+((blue-red)/_39b);
6a1aa64f 3221}else{
5fb1199a 3222hue=4+((red-_392)/_39b);
6a1aa64f
DV
3223}
3224}
79f17b42
DV
3225hue/=6;
3226if(hue<0){
3227hue+=1;
6a1aa64f 3228}
79f17b42
DV
3229if(hue>1){
3230hue-=1;
6a1aa64f 3231}
6a1aa64f 3232}
5fb1199a
DV
3233return {h:hue,s:_399,v:_39a,a:_394};
3234},rgbToHSL:function(red,_39d,blue,_39f){
79f17b42
DV
3235if(arguments.length==1){
3236var rgb=red;
3237red=rgb.r;
5fb1199a 3238_39d=rgb.g;
79f17b42 3239blue=rgb.b;
5fb1199a 3240_39f=rgb.a;
6a1aa64f 3241}
5fb1199a
DV
3242var max=Math.max(red,Math.max(_39d,blue));
3243var min=Math.min(red,Math.min(_39d,blue));
79f17b42 3244var hue;
5fb1199a
DV
3245var _3a4;
3246var _3a5=(max+min)/2;
3247var _3a6=max-min;
3248if(_3a6===0){
79f17b42 3249hue=0;
5fb1199a 3250_3a4=0;
79f17b42 3251}else{
5fb1199a
DV
3252if(_3a5<=0.5){
3253_3a4=_3a6/(max+min);
79f17b42 3254}else{
5fb1199a 3255_3a4=_3a6/(2-max-min);
6a1aa64f 3256}
79f17b42 3257if(red==max){
5fb1199a 3258hue=(_39d-blue)/_3a6;
79f17b42 3259}else{
5fb1199a
DV
3260if(_39d==max){
3261hue=2+((blue-red)/_3a6);
79f17b42 3262}else{
5fb1199a 3263hue=4+((red-_39d)/_3a6);
6a1aa64f 3264}
6a1aa64f 3265}
79f17b42
DV
3266hue/=6;
3267if(hue<0){
3268hue+=1;
6a1aa64f 3269}
79f17b42
DV
3270if(hue>1){
3271hue-=1;
6a1aa64f 3272}
6a1aa64f 3273}
5fb1199a 3274return {h:hue,s:_3a4,l:_3a5,a:_39f};
79f17b42
DV
3275},toColorPart:function(num){
3276num=Math.round(num);
5fb1199a 3277var _3a8=num.toString(16);
79f17b42 3278if(num<16){
5fb1199a 3279return "0"+_3a8;
6a1aa64f 3280}
5fb1199a 3281return _3a8;
79f17b42 3282},__new__:function(){
6a1aa64f 3283var m=MochiKit.Base;
79f17b42
DV
3284this.Color.fromRGBString=m.bind(this.Color._fromColorString,this.Color,"rgb","fromRGB",[1/255,1/255,1/255,1]);
3285this.Color.fromHSLString=m.bind(this.Color._fromColorString,this.Color,"hsl","fromHSL",[1/360,0.01,0.01,1]);
5fb1199a
DV
3286var _3aa=1/3;
3287var _3ab={black:[0,0,0],blue:[0,0,1],brown:[0.6,0.4,0.2],cyan:[0,1,1],darkGray:[_3aa,_3aa,_3aa],gray:[0.5,0.5,0.5],green:[0,1,0],lightGray:[2*_3aa,2*_3aa,2*_3aa],magenta:[1,0,1],orange:[1,0.5,0],purple:[0.5,0,0.5],red:[1,0,0],transparent:[0,0,0,0],white:[1,1,1],yellow:[1,1,0]};
3288var _3ac=function(name,r,g,b,a){
79f17b42
DV
3289var rval=this.fromRGB(r,g,b,a);
3290this[name]=function(){
3291return rval;
3292};
3293return rval;
3294};
5fb1199a 3295for(var k in _3ab){
79f17b42 3296var name=k+"Color";
5fb1199a
DV
3297var _3b5=m.concat([_3ac,this.Color,name],_3ab[k]);
3298this.Color[name]=m.bind.apply(null,_3b5);
6a1aa64f 3299}
5fb1199a 3300var _3b6=function(){
79f17b42
DV
3301for(var i=0;i<arguments.length;i++){
3302if(!(arguments[i] instanceof Color)){
3303return false;
6a1aa64f 3304}
6a1aa64f 3305}
79f17b42
DV
3306return true;
3307};
5fb1199a 3308var _3b8=function(a,b){
79f17b42
DV
3309return a.compareRGB(b);
3310};
3311m.nameFunctions(this);
5fb1199a 3312m.registerComparator(this.Color.NAME,_3b6,_3b8);
79f17b42
DV
3313this.EXPORT_TAGS={":common":this.EXPORT,":all":m.concat(this.EXPORT,this.EXPORT_OK)};
3314}});
3315MochiKit.Color.EXPORT=["Color"];
3316MochiKit.Color.EXPORT_OK=["clampColorComponent","rgbToHSL","hslToRGB","rgbToHSV","hsvToRGB","toColorPart"];
3317MochiKit.Color.__new__();
3318MochiKit.Base._exportSymbols(this,MochiKit.Color);
3319MochiKit.Color.Color._namedColors={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderblush:"#fff0f5",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"};
6a1aa64f 3320if(typeof (dojo)!="undefined"){
79f17b42 3321dojo.provide("MochiKit.Signal");
6a1aa64f
DV
3322dojo.require("MochiKit.Base");
3323dojo.require("MochiKit.DOM");
3324dojo.require("MochiKit.Style");
3325}
3326if(typeof (JSAN)!="undefined"){
3327JSAN.use("MochiKit.Base",[]);
3328JSAN.use("MochiKit.DOM",[]);
3329JSAN.use("MochiKit.Style",[]);
3330}
3331try{
79f17b42 3332if(typeof (MochiKit.Base)=="undefined"){
6a1aa64f
DV
3333throw "";
3334}
3335}
3336catch(e){
79f17b42 3337throw "MochiKit.Signal depends on MochiKit.Base!";
6a1aa64f 3338}
79f17b42
DV
3339try{
3340if(typeof (MochiKit.DOM)=="undefined"){
3341throw "";
6a1aa64f 3342}
6a1aa64f 3343}
79f17b42
DV
3344catch(e){
3345throw "MochiKit.Signal depends on MochiKit.DOM!";
6a1aa64f 3346}
79f17b42
DV
3347try{
3348if(typeof (MochiKit.Style)=="undefined"){
3349throw "";
6a1aa64f
DV
3350}
3351}
79f17b42
DV
3352catch(e){
3353throw "MochiKit.Signal depends on MochiKit.Style!";
6a1aa64f 3354}
79f17b42
DV
3355if(typeof (MochiKit.Signal)=="undefined"){
3356MochiKit.Signal={};
6a1aa64f 3357}
79f17b42
DV
3358MochiKit.Signal.NAME="MochiKit.Signal";
3359MochiKit.Signal.VERSION="1.4";
3360MochiKit.Signal._observers=[];
3361MochiKit.Signal.Event=function(src,e){
3362this._event=e||window.event;
3363this._src=src;
6a1aa64f 3364};
79f17b42
DV
3365MochiKit.Base.update(MochiKit.Signal.Event.prototype,{__repr__:function(){
3366var repr=MochiKit.Base.repr;
3367var str="{event(): "+repr(this.event())+", src(): "+repr(this.src())+", type(): "+repr(this.type())+", target(): "+repr(this.target());
3368if(this.type()&&this.type().indexOf("key")===0||this.type().indexOf("mouse")===0||this.type().indexOf("click")!=-1||this.type()=="contextmenu"){
3369str+=", modifier(): "+"{alt: "+repr(this.modifier().alt)+", ctrl: "+repr(this.modifier().ctrl)+", meta: "+repr(this.modifier().meta)+", shift: "+repr(this.modifier().shift)+", any: "+repr(this.modifier().any)+"}";
6a1aa64f 3370}
79f17b42
DV
3371if(this.type()&&this.type().indexOf("key")===0){
3372str+=", key(): {code: "+repr(this.key().code)+", string: "+repr(this.key().string)+"}";
6a1aa64f 3373}
79f17b42
DV
3374if(this.type()&&(this.type().indexOf("mouse")===0||this.type().indexOf("click")!=-1||this.type()=="contextmenu")){
3375str+=", mouse(): {page: "+repr(this.mouse().page)+", client: "+repr(this.mouse().client);
3376if(this.type()!="mousemove"){
3377str+=", button: {left: "+repr(this.mouse().button.left)+", middle: "+repr(this.mouse().button.middle)+", right: "+repr(this.mouse().button.right)+"}}";
3378}else{
3379str+="}";
6a1aa64f 3380}
6a1aa64f 3381}
79f17b42
DV
3382if(this.type()=="mouseover"||this.type()=="mouseout"){
3383str+=", relatedTarget(): "+repr(this.relatedTarget());
6a1aa64f 3384}
79f17b42
DV
3385str+="}";
3386return str;
3387},toString:function(){
6a1aa64f 3388return this.__repr__();
79f17b42
DV
3389},src:function(){
3390return this._src;
3391},event:function(){
3392return this._event;
3393},type:function(){
3394return this._event.type||undefined;
3395},target:function(){
3396return this._event.target||this._event.srcElement;
3397},_relatedTarget:null,relatedTarget:function(){
3398if(this._relatedTarget!==null){
3399return this._relatedTarget;
6a1aa64f 3400}
79f17b42
DV
3401var elem=null;
3402if(this.type()=="mouseover"){
3403elem=(this._event.relatedTarget||this._event.fromElement);
6a1aa64f 3404}else{
79f17b42
DV
3405if(this.type()=="mouseout"){
3406elem=(this._event.relatedTarget||this._event.toElement);
3407}
3408}
3409if(elem!==null){
3410this._relatedTarget=elem;
3411return elem;
3412}
3413return undefined;
3414},_modifier:null,modifier:function(){
3415if(this._modifier!==null){
3416return this._modifier;
6a1aa64f 3417}
79f17b42
DV
3418var m={};
3419m.alt=this._event.altKey;
3420m.ctrl=this._event.ctrlKey;
3421m.meta=this._event.metaKey||false;
3422m.shift=this._event.shiftKey;
3423m.any=m.alt||m.ctrl||m.shift||m.meta;
3424this._modifier=m;
3425return m;
3426},_key:null,key:function(){
3427if(this._key!==null){
3428return this._key;
6a1aa64f 3429}
79f17b42
DV
3430var k={};
3431if(this.type()&&this.type().indexOf("key")===0){
3432if(this.type()=="keydown"||this.type()=="keyup"){
3433k.code=this._event.keyCode;
3434k.string=(MochiKit.Signal._specialKeys[k.code]||"KEY_UNKNOWN");
3435this._key=k;
3436return k;
3437}else{
3438if(this.type()=="keypress"){
3439k.code=0;
3440k.string="";
3441if(typeof (this._event.charCode)!="undefined"&&this._event.charCode!==0&&!MochiKit.Signal._specialMacKeys[this._event.charCode]){
3442k.code=this._event.charCode;
3443k.string=String.fromCharCode(k.code);
6a1aa64f 3444}else{
79f17b42
DV
3445if(this._event.keyCode&&typeof (this._event.charCode)=="undefined"){
3446k.code=this._event.keyCode;
3447k.string=String.fromCharCode(k.code);
6a1aa64f
DV
3448}
3449}
79f17b42
DV
3450this._key=k;
3451return k;
6a1aa64f 3452}
6a1aa64f
DV
3453}
3454}
79f17b42
DV
3455return undefined;
3456},_mouse:null,mouse:function(){
3457if(this._mouse!==null){
3458return this._mouse;
6a1aa64f 3459}
79f17b42
DV
3460var m={};
3461var e=this._event;
3462if(this.type()&&(this.type().indexOf("mouse")===0||this.type().indexOf("click")!=-1||this.type()=="contextmenu")){
3463m.client=new MochiKit.Style.Coordinates(0,0);
3464if(e.clientX||e.clientY){
3465m.client.x=(!e.clientX||e.clientX<0)?0:e.clientX;
3466m.client.y=(!e.clientY||e.clientY<0)?0:e.clientY;
3467}
3468m.page=new MochiKit.Style.Coordinates(0,0);
3469if(e.pageX||e.pageY){
3470m.page.x=(!e.pageX||e.pageX<0)?0:e.pageX;
3471m.page.y=(!e.pageY||e.pageY<0)?0:e.pageY;
6a1aa64f 3472}else{
79f17b42
DV
3473var de=MochiKit.DOM._document.documentElement;
3474var b=MochiKit.DOM._document.body;
3475m.page.x=e.clientX+(de.scrollLeft||b.scrollLeft)-(de.clientLeft||0);
3476m.page.y=e.clientY+(de.scrollTop||b.scrollTop)-(de.clientTop||0);
3477}
3478if(this.type()!="mousemove"){
3479m.button={};
3480m.button.left=false;
3481m.button.right=false;
3482m.button.middle=false;
3483if(e.which){
3484m.button.left=(e.which==1);
3485m.button.middle=(e.which==2);
3486m.button.right=(e.which==3);
6a1aa64f 3487}else{
79f17b42
DV
3488m.button.left=!!(e.button&1);
3489m.button.right=!!(e.button&2);
3490m.button.middle=!!(e.button&4);
6a1aa64f
DV
3491}
3492}
79f17b42
DV
3493this._mouse=m;
3494return m;
6a1aa64f 3495}
79f17b42
DV
3496return undefined;
3497},stop:function(){
3498this.stopPropagation();
3499this.preventDefault();
3500},stopPropagation:function(){
3501if(this._event.stopPropagation){
3502this._event.stopPropagation();
6a1aa64f 3503}else{
79f17b42
DV
3504this._event.cancelBubble=true;
3505}
3506},preventDefault:function(){
3507if(this._event.preventDefault){
3508this._event.preventDefault();
6a1aa64f 3509}else{
79f17b42
DV
3510if(this._confirmUnload===null){
3511this._event.returnValue=false;
3512}
6a1aa64f 3513}
79f17b42
DV
3514},_confirmUnload:null,confirmUnload:function(msg){
3515if(this.type()=="beforeunload"){
3516this._confirmUnload=msg;
3517this._event.returnValue=msg;
6a1aa64f 3518}
79f17b42
DV
3519}});
3520MochiKit.Signal._specialMacKeys={3:"KEY_ENTER",63289:"KEY_NUM_PAD_CLEAR",63276:"KEY_PAGE_UP",63277:"KEY_PAGE_DOWN",63275:"KEY_END",63273:"KEY_HOME",63234:"KEY_ARROW_LEFT",63232:"KEY_ARROW_UP",63235:"KEY_ARROW_RIGHT",63233:"KEY_ARROW_DOWN",63302:"KEY_INSERT",63272:"KEY_DELETE"};
3521(function(){
5fb1199a 3522var _3c7=MochiKit.Signal._specialMacKeys;
79f17b42 3523for(i=63236;i<=63242;i++){
5fb1199a 3524_3c7[i]="KEY_F"+(i-63236+1);
6a1aa64f 3525}
79f17b42
DV
3526})();
3527MochiKit.Signal._specialKeys={8:"KEY_BACKSPACE",9:"KEY_TAB",12:"KEY_NUM_PAD_CLEAR",13:"KEY_ENTER",16:"KEY_SHIFT",17:"KEY_CTRL",18:"KEY_ALT",19:"KEY_PAUSE",20:"KEY_CAPS_LOCK",27:"KEY_ESCAPE",32:"KEY_SPACEBAR",33:"KEY_PAGE_UP",34:"KEY_PAGE_DOWN",35:"KEY_END",36:"KEY_HOME",37:"KEY_ARROW_LEFT",38:"KEY_ARROW_UP",39:"KEY_ARROW_RIGHT",40:"KEY_ARROW_DOWN",44:"KEY_PRINT_SCREEN",45:"KEY_INSERT",46:"KEY_DELETE",59:"KEY_SEMICOLON",91:"KEY_WINDOWS_LEFT",92:"KEY_WINDOWS_RIGHT",93:"KEY_SELECT",106:"KEY_NUM_PAD_ASTERISK",107:"KEY_NUM_PAD_PLUS_SIGN",109:"KEY_NUM_PAD_HYPHEN-MINUS",110:"KEY_NUM_PAD_FULL_STOP",111:"KEY_NUM_PAD_SOLIDUS",144:"KEY_NUM_LOCK",145:"KEY_SCROLL_LOCK",186:"KEY_SEMICOLON",187:"KEY_EQUALS_SIGN",188:"KEY_COMMA",189:"KEY_HYPHEN-MINUS",190:"KEY_FULL_STOP",191:"KEY_SOLIDUS",192:"KEY_GRAVE_ACCENT",219:"KEY_LEFT_SQUARE_BRACKET",220:"KEY_REVERSE_SOLIDUS",221:"KEY_RIGHT_SQUARE_BRACKET",222:"KEY_APOSTROPHE"};
3528(function(){
5fb1199a 3529var _3c8=MochiKit.Signal._specialKeys;
79f17b42 3530for(var i=48;i<=57;i++){
5fb1199a 3531_3c8[i]="KEY_"+(i-48);
6a1aa64f 3532}
79f17b42 3533for(i=65;i<=90;i++){
5fb1199a 3534_3c8[i]="KEY_"+String.fromCharCode(i);
6a1aa64f 3535}
79f17b42 3536for(i=96;i<=105;i++){
5fb1199a 3537_3c8[i]="KEY_NUM_PAD_"+(i-96);
6a1aa64f 3538}
79f17b42 3539for(i=112;i<=123;i++){
5fb1199a 3540_3c8[i]="KEY_F"+(i-112+1);
6a1aa64f 3541}
79f17b42 3542})();
5fb1199a
DV
3543MochiKit.Signal.Ident=function(_3ca){
3544this.source=_3ca.source;
3545this.signal=_3ca.signal;
3546this.listener=_3ca.listener;
3547this.isDOM=_3ca.isDOM;
3548this.objOrFunc=_3ca.objOrFunc;
3549this.funcOrStr=_3ca.funcOrStr;
3550this.connected=_3ca.connected;
6a1aa64f 3551};
79f17b42
DV
3552MochiKit.Signal.Ident.prototype={};
3553MochiKit.Base.update(MochiKit.Signal,{__repr__:function(){
3554return "["+this.NAME+" "+this.VERSION+"]";
3555},toString:function(){
3556return this.__repr__();
3557},_unloadCache:function(){
3558var self=MochiKit.Signal;
5fb1199a
DV
3559var _3cc=self._observers;
3560for(var i=0;i<_3cc.length;i++){
3561if(_3cc[i].signal!=="onload"&&_3cc[i].signal!=="onunload"){
3562self._disconnect(_3cc[i]);
6a1aa64f 3563}
6a1aa64f 3564}
5fb1199a 3565},_listener:function(src,sig,func,obj,_3d2){
79f17b42
DV
3566var self=MochiKit.Signal;
3567var E=self.Event;
5fb1199a 3568if(!_3d2){
79f17b42 3569return MochiKit.Base.bind(func,obj);
6a1aa64f 3570}
79f17b42
DV
3571obj=obj||src;
3572if(typeof (func)=="string"){
3573if(sig==="onload"||sig==="onunload"){
5fb1199a
DV
3574return function(_3d5){
3575obj[func].apply(obj,[new E(src,_3d5)]);
3576var _3d6=new MochiKit.Signal.Ident({source:src,signal:sig,objOrFunc:obj,funcOrStr:func});
3577MochiKit.Signal._disconnect(_3d6);
6a1aa64f 3578};
79f17b42 3579}else{
5fb1199a
DV
3580return function(_3d7){
3581obj[func].apply(obj,[new E(src,_3d7)]);
6a1aa64f 3582};
6a1aa64f 3583}
79f17b42
DV
3584}else{
3585if(sig==="onload"||sig==="onunload"){
5fb1199a
DV
3586return function(_3d8){
3587func.apply(obj,[new E(src,_3d8)]);
79f17b42 3588MochiKit.Signal.disconnect(src,sig,func);
5fb1199a
DV
3589var _3d9=new MochiKit.Signal.Ident({source:src,signal:sig,objOrFunc:func});
3590MochiKit.Signal._disconnect(_3d9);
6a1aa64f 3591};
79f17b42 3592}else{
5fb1199a
DV
3593return function(_3da){
3594func.apply(obj,[new E(src,_3da)]);
6a1aa64f 3595};
6a1aa64f 3596}
6a1aa64f 3597}
79f17b42
DV
3598},_browserAlreadyHasMouseEnterAndLeave:function(){
3599return /MSIE/.test(navigator.userAgent);
3600},_mouseEnterListener:function(src,sig,func,obj){
3601var E=MochiKit.Signal.Event;
5fb1199a
DV
3602return function(_3e0){
3603var e=new E(src,_3e0);
79f17b42
DV
3604try{
3605e.relatedTarget().nodeName;
6a1aa64f 3606}
79f17b42
DV
3607catch(err){
3608return;
6a1aa64f 3609}
79f17b42
DV
3610e.stop();
3611if(MochiKit.DOM.isChildNode(e.relatedTarget(),src)){
3612return;
6a1aa64f 3613}
79f17b42
DV
3614e.type=function(){
3615return sig;
6a1aa64f 3616};
79f17b42
DV
3617if(typeof (func)=="string"){
3618return obj[func].apply(obj,[e]);
3619}else{
3620return func.apply(obj,[e]);
6a1aa64f 3621}
6a1aa64f 3622};
5fb1199a 3623},_getDestPair:function(_3e2,_3e3){
79f17b42
DV
3624var obj=null;
3625var func=null;
5fb1199a
DV
3626if(typeof (_3e3)!="undefined"){
3627obj=_3e2;
3628func=_3e3;
3629if(typeof (_3e3)=="string"){
3630if(typeof (_3e2[_3e3])!="function"){
79f17b42 3631throw new Error("'funcOrStr' must be a function on 'objOrFunc'");
6a1aa64f 3632}
79f17b42 3633}else{
5fb1199a 3634if(typeof (_3e3)!="function"){
79f17b42 3635throw new Error("'funcOrStr' must be a function or string");
6a1aa64f 3636}
6a1aa64f 3637}
79f17b42 3638}else{
5fb1199a 3639if(typeof (_3e2)!="function"){
79f17b42
DV
3640throw new Error("'objOrFunc' must be a function if 'funcOrStr' is not given");
3641}else{
5fb1199a 3642func=_3e2;
6a1aa64f 3643}
6a1aa64f 3644}
79f17b42 3645return [obj,func];
5fb1199a 3646},connect:function(src,sig,_3e8,_3e9){
79f17b42
DV
3647src=MochiKit.DOM.getElement(src);
3648var self=MochiKit.Signal;
3649if(typeof (sig)!="string"){
3650throw new Error("'sig' must be a string");
6a1aa64f 3651}
5fb1199a
DV
3652var _3eb=self._getDestPair(_3e8,_3e9);
3653var obj=_3eb[0];
3654var func=_3eb[1];
79f17b42
DV
3655if(typeof (obj)=="undefined"||obj===null){
3656obj=src;
6a1aa64f 3657}
5fb1199a
DV
3658var _3ee=!!(src.addEventListener||src.attachEvent);
3659if(_3ee&&(sig==="onmouseenter"||sig==="onmouseleave")&&!self._browserAlreadyHasMouseEnterAndLeave()){
3660var _3ef=self._mouseEnterListener(src,sig.substr(2),func,obj);
79f17b42
DV
3661if(sig==="onmouseenter"){
3662sig="onmouseover";
3663}else{
3664sig="onmouseout";
6a1aa64f
DV
3665}
3666}else{
5fb1199a 3667var _3ef=self._listener(src,sig,func,obj,_3ee);
6a1aa64f 3668}
79f17b42 3669if(src.addEventListener){
5fb1199a 3670src.addEventListener(sig.substr(2),_3ef,false);
79f17b42
DV
3671}else{
3672if(src.attachEvent){
5fb1199a 3673src.attachEvent(sig,_3ef);
6a1aa64f
DV
3674}
3675}
5fb1199a
DV
3676var _3f0=new MochiKit.Signal.Ident({source:src,signal:sig,listener:_3ef,isDOM:_3ee,objOrFunc:_3e8,funcOrStr:_3e9,connected:true});
3677self._observers.push(_3f0);
3678if(!_3ee&&typeof (src.__connect__)=="function"){
3679var args=MochiKit.Base.extend([_3f0],arguments,1);
79f17b42 3680src.__connect__.apply(src,args);
6a1aa64f 3681}
5fb1199a
DV
3682return _3f0;
3683},_disconnect:function(_3f2){
3684if(!_3f2.connected){
79f17b42 3685return;
6a1aa64f 3686}
5fb1199a
DV
3687_3f2.connected=false;
3688if(!_3f2.isDOM){
6a1aa64f
DV
3689return;
3690}
5fb1199a
DV
3691var src=_3f2.source;
3692var sig=_3f2.signal;
3693var _3f5=_3f2.listener;
79f17b42 3694if(src.removeEventListener){
5fb1199a 3695src.removeEventListener(sig.substr(2),_3f5,false);
79f17b42
DV
3696}else{
3697if(src.detachEvent){
5fb1199a 3698src.detachEvent(sig,_3f5);
79f17b42
DV
3699}else{
3700throw new Error("'src' must be a DOM element");
6a1aa64f 3701}
6a1aa64f 3702}
5fb1199a 3703},disconnect:function(_3f6){
79f17b42 3704var self=MochiKit.Signal;
5fb1199a 3705var _3f8=self._observers;
79f17b42
DV
3706var m=MochiKit.Base;
3707if(arguments.length>1){
3708var src=MochiKit.DOM.getElement(arguments[0]);
3709var sig=arguments[1];
3710var obj=arguments[2];
3711var func=arguments[3];
5fb1199a
DV
3712for(var i=_3f8.length-1;i>=0;i--){
3713var o=_3f8[i];
79f17b42
DV
3714if(o.source===src&&o.signal===sig&&o.objOrFunc===obj&&o.funcOrStr===func){
3715self._disconnect(o);
3716if(!self._lock){
5fb1199a 3717_3f8.splice(i,1);
79f17b42
DV
3718}else{
3719self._dirty=true;
6a1aa64f 3720}
79f17b42 3721return true;
6a1aa64f 3722}
6a1aa64f 3723}
6a1aa64f 3724}else{
5fb1199a 3725var idx=m.findIdentical(_3f8,_3f6);
79f17b42 3726if(idx>=0){
5fb1199a 3727self._disconnect(_3f6);
79f17b42 3728if(!self._lock){
5fb1199a 3729_3f8.splice(idx,1);
79f17b42
DV
3730}else{
3731self._dirty=true;
6a1aa64f 3732}
79f17b42 3733return true;
6a1aa64f 3734}
6a1aa64f 3735}
79f17b42 3736return false;
5fb1199a 3737},disconnectAllTo:function(_401,_402){
79f17b42 3738var self=MochiKit.Signal;
5fb1199a
DV
3739var _404=self._observers;
3740var _405=self._disconnect;
3741var _406=self._lock;
3742var _407=self._dirty;
3743if(typeof (_402)==="undefined"){
3744_402=null;
79f17b42 3745}
5fb1199a
DV
3746for(var i=_404.length-1;i>=0;i--){
3747var _409=_404[i];
3748if(_409.objOrFunc===_401&&(_402===null||_409.funcOrStr===_402)){
3749_405(_409);
3750if(_406){
3751_407=true;
79f17b42 3752}else{
5fb1199a 3753_404.splice(i,1);
79f17b42
DV
3754}
3755}
3756}
5fb1199a 3757self._dirty=_407;
79f17b42
DV
3758},disconnectAll:function(src,sig){
3759src=MochiKit.DOM.getElement(src);
6a1aa64f 3760var m=MochiKit.Base;
5fb1199a 3761var _40d=m.flattenArguments(m.extend(null,arguments,1));
79f17b42 3762var self=MochiKit.Signal;
5fb1199a
DV
3763var _40f=self._disconnect;
3764var _410=self._observers;
3765var i,_412;
3766var _413=self._lock;
3767var _414=self._dirty;
3768if(_40d.length===0){
3769for(i=_410.length-1;i>=0;i--){
3770_412=_410[i];
3771if(_412.source===src){
3772_40f(_412);
3773if(!_413){
3774_410.splice(i,1);
79f17b42 3775}else{
5fb1199a 3776_414=true;
6a1aa64f 3777}
6a1aa64f 3778}
6a1aa64f 3779}
79f17b42
DV
3780}else{
3781var sigs={};
5fb1199a
DV
3782for(i=0;i<_40d.length;i++){
3783sigs[_40d[i]]=true;
6a1aa64f 3784}
5fb1199a
DV
3785for(i=_410.length-1;i>=0;i--){
3786_412=_410[i];
3787if(_412.source===src&&_412.signal in sigs){
3788_40f(_412);
3789if(!_413){
3790_410.splice(i,1);
79f17b42 3791}else{
5fb1199a 3792_414=true;
6a1aa64f 3793}
6a1aa64f 3794}
6a1aa64f 3795}
6a1aa64f 3796}
5fb1199a 3797self._dirty=_414;
79f17b42
DV
3798},signal:function(src,sig){
3799var self=MochiKit.Signal;
5fb1199a 3800var _419=self._observers;
79f17b42
DV
3801src=MochiKit.DOM.getElement(src);
3802var args=MochiKit.Base.extend(null,arguments,2);
5fb1199a 3803var _41b=[];
79f17b42 3804self._lock=true;
5fb1199a
DV
3805for(var i=0;i<_419.length;i++){
3806var _41d=_419[i];
3807if(_41d.source===src&&_41d.signal===sig){
79f17b42 3808try{
5fb1199a 3809_41d.listener.apply(src,args);
6a1aa64f 3810}
79f17b42 3811catch(e){
5fb1199a 3812_41b.push(e);
6a1aa64f 3813}
6a1aa64f 3814}
6a1aa64f 3815}
79f17b42
DV
3816self._lock=false;
3817if(self._dirty){
3818self._dirty=false;
5fb1199a
DV
3819for(var i=_419.length-1;i>=0;i--){
3820if(!_419[i].connected){
3821_419.splice(i,1);
79f17b42 3822}
6a1aa64f 3823}
79f17b42 3824}
5fb1199a
DV
3825if(_41b.length==1){
3826throw _41b[0];
6a1aa64f 3827}else{
5fb1199a 3828if(_41b.length>1){
79f17b42 3829var e=new Error("Multiple errors thrown in handling 'sig', see errors property");
5fb1199a 3830e.errors=_41b;
79f17b42 3831throw e;
6a1aa64f
DV
3832}
3833}
79f17b42
DV
3834}});
3835MochiKit.Signal.EXPORT_OK=[];
3836MochiKit.Signal.EXPORT=["connect","disconnect","signal","disconnectAll","disconnectAllTo"];
3837MochiKit.Signal.__new__=function(win){
3838var m=MochiKit.Base;
3839this._document=document;
3840this._window=win;
3841this._lock=false;
3842this._dirty=false;
3843try{
3844this.connect(window,"onunload",this._unloadCache);
3845}
3846catch(e){
3847}
3848this.EXPORT_TAGS={":common":this.EXPORT,":all":m.concat(this.EXPORT,this.EXPORT_OK)};
3849m.nameFunctions(this);
3850};
3851MochiKit.Signal.__new__(this);
3852if(MochiKit.__export__){
3853connect=MochiKit.Signal.connect;
3854disconnect=MochiKit.Signal.disconnect;
3855disconnectAll=MochiKit.Signal.disconnectAll;
3856signal=MochiKit.Signal.signal;
6a1aa64f 3857}
79f17b42 3858MochiKit.Base._exportSymbols(this,MochiKit.Signal);
6a1aa64f
DV
3859
3860
6219c9d6 3861Date.ext={};Date.ext.util={};Date.ext.util.xPad=function(x,pad,r){if(typeof (r)=="undefined"){r=10}for(;parseInt(x,10)<r&&r>1;r/=10){x=pad.toString()+x}return x.toString()};Date.prototype.locale="en-GB";if(document.getElementsByTagName("html")&&document.getElementsByTagName("html")[0].lang){Date.prototype.locale=document.getElementsByTagName("html")[0].lang}Date.ext.locales={};Date.ext.locales.en={a:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],A:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],b:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],B:["January","February","March","April","May","June","July","August","September","October","November","December"],c:"%a %d %b %Y %T %Z",p:["AM","PM"],P:["am","pm"],x:"%d/%m/%y",X:"%T"};Date.ext.locales["en-US"]=Date.ext.locales.en;Date.ext.locales["en-US"].c="%a %d %b %Y %r %Z";Date.ext.locales["en-US"].x="%D";Date.ext.locales["en-US"].X="%r";Date.ext.locales["en-GB"]=Date.ext.locales.en;Date.ext.locales["en-AU"]=Date.ext.locales["en-GB"];Date.ext.formats={a:function(d){return Date.ext.locales[d.locale].a[d.getDay()]},A:function(d){return Date.ext.locales[d.locale].A[d.getDay()]},b:function(d){return Date.ext.locales[d.locale].b[d.getMonth()]},B:function(d){return Date.ext.locales[d.locale].B[d.getMonth()]},c:"toLocaleString",C:function(d){return Date.ext.util.xPad(parseInt(d.getFullYear()/100,10),0)},d:["getDate","0"],e:["getDate"," "],g:function(d){return Date.ext.util.xPad(parseInt(Date.ext.util.G(d)/100,10),0)},G:function(d){var y=d.getFullYear();var V=parseInt(Date.ext.formats.V(d),10);var W=parseInt(Date.ext.formats.W(d),10);if(W>V){y++}else{if(W===0&&V>=52){y--}}return y},H:["getHours","0"],I:function(d){var I=d.getHours()%12;return Date.ext.util.xPad(I===0?12:I,0)},j:function(d){var ms=d-new Date(""+d.getFullYear()+"/1/1 GMT");ms+=d.getTimezoneOffset()*60000;var doy=parseInt(ms/60000/60/24,10)+1;return Date.ext.util.xPad(doy,0,100)},m:function(d){return Date.ext.util.xPad(d.getMonth()+1,0)},M:["getMinutes","0"],p:function(d){return Date.ext.locales[d.locale].p[d.getHours()>=12?1:0]},P:function(d){return Date.ext.locales[d.locale].P[d.getHours()>=12?1:0]},S:["getSeconds","0"],u:function(d){var dow=d.getDay();return dow===0?7:dow},U:function(d){var doy=parseInt(Date.ext.formats.j(d),10);var rdow=6-d.getDay();var woy=parseInt((doy+rdow)/7,10);return Date.ext.util.xPad(woy,0)},V:function(d){var woy=parseInt(Date.ext.formats.W(d),10);var dow1_1=(new Date(""+d.getFullYear()+"/1/1")).getDay();var idow=woy+(dow1_1>4||dow1_1<=1?0:1);if(idow==53&&(new Date(""+d.getFullYear()+"/12/31")).getDay()<4){idow=1}else{if(idow===0){idow=Date.ext.formats.V(new Date(""+(d.getFullYear()-1)+"/12/31"))}}return Date.ext.util.xPad(idow,0)},w:"getDay",W:function(d){var doy=parseInt(Date.ext.formats.j(d),10);var rdow=7-Date.ext.formats.u(d);var woy=parseInt((doy+rdow)/7,10);return Date.ext.util.xPad(woy,0,10)},y:function(d){return Date.ext.util.xPad(d.getFullYear()%100,0)},Y:"getFullYear",z:function(d){var o=d.getTimezoneOffset();var H=Date.ext.util.xPad(parseInt(Math.abs(o/60),10),0);var M=Date.ext.util.xPad(o%60,0);return(o>0?"-":"+")+H+M},Z:function(d){return d.toString().replace(/^.*\(([^)]+)\)$/,"$1")},"%":function(d){return"%"}};Date.ext.aggregates={c:"locale",D:"%m/%d/%y",h:"%b",n:"\n",r:"%I:%M:%S %p",R:"%H:%M",t:"\t",T:"%H:%M:%S",x:"locale",X:"locale"};Date.ext.aggregates.z=Date.ext.formats.z(new Date());Date.ext.aggregates.Z=Date.ext.formats.Z(new Date());Date.ext.unsupported={};Date.prototype.strftime=function(fmt){if(!(this.locale in Date.ext.locales)){if(this.locale.replace(/-[a-zA-Z]+$/,"") in Date.ext.locales){this.locale=this.locale.replace(/-[a-zA-Z]+$/,"")}else{this.locale="en-GB"}}var d=this;while(fmt.match(/%[cDhnrRtTxXzZ]/)){fmt=fmt.replace(/%([cDhnrRtTxXzZ])/g,function(m0,m1){var f=Date.ext.aggregates[m1];return(f=="locale"?Date.ext.locales[d.locale][m1]:f)})}var str=fmt.replace(/%([aAbBCdegGHIjmMpPSuUVwWyY%])/g,function(m0,m1){var f=Date.ext.formats[m1];if(typeof (f)=="string"){return d[f]()}else{if(typeof (f)=="function"){return f.call(d,d)}else{if(typeof (f)=="object"&&typeof (f[0])=="string"){return Date.ext.util.xPad(d[f[0]](),f[1])}else{return m1}}}});d=null;return str};
efe0829a
DV
3862DygraphLayout=function(_1,_2){
3863this.dygraph_=_1;
3864this.options={};
3865MochiKit.Base.update(this.options,_2?_2:{});
3866this.datasets=new Array();
3867};
3868DygraphLayout.prototype.attr_=function(_3){
3869return this.dygraph_.attr_(_3);
3870};
3871DygraphLayout.prototype.addDataset=function(_4,_5){
3872this.datasets[_4]=_5;
3873};
3874DygraphLayout.prototype.evaluate=function(){
3875this._evaluateLimits();
3876this._evaluateLineCharts();
3877this._evaluateLineTicks();
3878};
3879DygraphLayout.prototype._evaluateLimits=function(){
3880this.minxval=this.maxxval=null;
3881for(var _6 in this.datasets){
3882var _7=this.datasets[_6];
3883var x1=_7[0][0];
3884if(!this.minxval||x1<this.minxval){
3885this.minxval=x1;
3886}
3887var x2=_7[_7.length-1][0];
3888if(!this.maxxval||x2>this.maxxval){
3889this.maxxval=x2;
3890}
3891}
3892this.xrange=this.maxxval-this.minxval;
3893this.xscale=(this.xrange!=0?1/this.xrange:1);
3894this.minyval=this.options.yAxis[0];
3895this.maxyval=this.options.yAxis[1];
3896this.yrange=this.maxyval-this.minyval;
3897this.yscale=(this.yrange!=0?1/this.yrange:1);
3898};
3899DygraphLayout.prototype._evaluateLineCharts=function(){
3900this.points=new Array();
3901for(var _10 in this.datasets){
3902var _11=this.datasets[_10];
3903for(var j=0;j<_11.length;j++){
3904var _13=_11[j];
3905var _14={x:((parseFloat(_13[0])-this.minxval)*this.xscale),y:1-((parseFloat(_13[1])-this.minyval)*this.yscale),xval:parseFloat(_13[0]),yval:parseFloat(_13[1]),name:_10};
3906if(_14.y<=0){
3907_14.y=0;
3908}
3909if(_14.y>=1){
3910_14.y=1;
3911}
3912if((_14.x>=0)&&(_14.x<=1)){
3913this.points.push(_14);
3914}
3915}
3916}
3917};
3918DygraphLayout.prototype._evaluateLineTicks=function(){
3919this.xticks=new Array();
3920for(var i=0;i<this.options.xTicks.length;i++){
3921var _16=this.options.xTicks[i];
3922var _17=_16.label;
3923var pos=this.xscale*(_16.v-this.minxval);
3924if((pos>=0)&&(pos<=1)){
3925this.xticks.push([pos,_17]);
3926}
3927}
3928this.yticks=new Array();
3929for(var i=0;i<this.options.yTicks.length;i++){
3930var _16=this.options.yTicks[i];
3931var _17=_16.label;
3932var pos=1-(this.yscale*(_16.v-this.minyval));
3933if((pos>=0)&&(pos<=1)){
3934this.yticks.push([pos,_17]);
3935}
3936}
6a1aa64f 3937};
285a6bda 3938DygraphLayout.prototype.evaluateWithError=function(){
b2a516b8
DV
3939this.evaluate();
3940if(!this.options.errorBars){
3941return;
3942}
3943var i=0;
efe0829a 3944for(var _19 in this.datasets){
b2a516b8 3945var j=0;
efe0829a 3946var _20=this.datasets[_19];
efe0829a
DV
3947for(var j=0;j<_20.length;j++,i++){
3948var _21=_20[j];
3949var xv=parseFloat(_21[0]);
3950var yv=parseFloat(_21[1]);
b2a516b8 3951if(xv==this.points[i].xval&&yv==this.points[i].yval){
efe0829a
DV
3952this.points[i].errorMinus=parseFloat(_21[2]);
3953this.points[i].errorPlus=parseFloat(_21[3]);
b2a516b8
DV
3954}
3955}
3956}
6a1aa64f 3957};
285a6bda 3958DygraphLayout.prototype.removeAllDatasets=function(){
b2a516b8
DV
3959delete this.datasets;
3960this.datasets=new Array();
6a1aa64f 3961};
efe0829a
DV
3962DygraphLayout.prototype.updateOptions=function(_24){
3963MochiKit.Base.update(this.options,_24?_24:{});
b2a516b8 3964};
efe0829a 3965DygraphCanvasRenderer=function(_25,_26,_27,_28){
efe0829a 3966this.dygraph_=_25;
fbe31dc8 3967this.options={"strokeWidth":0.5,"drawXAxis":true,"drawYAxis":true,"axisLineColor":Color.blackColor(),"axisLineWidth":0.5,"axisTickSize":3,"axisLabelColor":Color.blackColor(),"axisLabelFont":"Arial","axisLabelFontSize":9,"axisLabelWidth":50,"drawYGrid":true,"drawXGrid":true,"gridLineColor":MochiKit.Color.Color.grayColor()};
efe0829a 3968MochiKit.Base.update(this.options,_28);
fbe31dc8
DV
3969this.layout=_27;
3970this.element=MochiKit.DOM.getElement(_26);
3971this.container=this.element.parentNode;
3df0ccf0 3972this.isIE=(/MSIE/.test(navigator.userAgent)&&!window.opera);
fbe31dc8
DV
3973if(this.isIE&&!isNil(G_vmlCanvasManager)){
3974this.IEDelay=0.5;
3975this.maxTries=5;
3976this.renderDelay=null;
3977this.clearDelay=null;
3978this.element=G_vmlCanvasManager.initElement(this.element);
3979}
3980this.height=this.element.height;
3981this.width=this.element.width;
3982if(!this.isIE&&!(DygraphCanvasRenderer.isSupported(this.element))){
3983throw "Canvas is not supported.";
3984}
3985this.xlabels=new Array();
3986this.ylabels=new Array();
3987this.area={x:this.options.yAxisLabelWidth+2*this.options.axisTickSize,y:0};
3988this.area.w=this.width-this.area.x-this.options.rightGap;
3989this.area.h=this.height-this.options.axisLabelFontSize-2*this.options.axisTickSize;
3990MochiKit.DOM.updateNodeAttributes(this.container,{"style":{"position":"relative","width":this.width+"px"}});
3991};
3992DygraphCanvasRenderer.prototype.clear=function(){
3993if(this.isIE){
3994try{
3995if(this.clearDelay){
3996this.clearDelay.cancel();
3997this.clearDelay=null;
3998}
3999var _29=this.element.getContext("2d");
4000}
4001catch(e){
4002this.clearDelay=MochiKit.Async.wait(this.IEDelay);
4003this.clearDelay.addCallback(bind(this.clear,this));
4004return;
4005}
4006}
4007var _29=this.element.getContext("2d");
4008_29.clearRect(0,0,this.width,this.height);
2160ed4a
DV
4009for(var i=0;i<this.xlabels.length;i++){
4010MochiKit.DOM.removeElement(this.xlabels[i]);
4011}
4012for(var i=0;i<this.ylabels.length;i++){
4013MochiKit.DOM.removeElement(this.ylabels[i]);
4014}
fbe31dc8
DV
4015this.xlabels=new Array();
4016this.ylabels=new Array();
4017};
4018DygraphCanvasRenderer.isSupported=function(_30){
4019var _31=null;
4020try{
4021if(MochiKit.Base.isUndefinedOrNull(_30)){
4022_31=MochiKit.DOM.CANVAS({});
4023}else{
4024_31=MochiKit.DOM.getElement(_30);
4025}
4026var _32=_31.getContext("2d");
4027}
4028catch(e){
4029var ie=navigator.appVersion.match(/MSIE (\d\.\d)/);
4030var _34=(navigator.userAgent.toLowerCase().indexOf("opera")!=-1);
4031if((!ie)||(ie[1]<6)||(_34)){
4032return false;
4033}
4034return true;
4035}
4036return true;
b2a516b8 4037};
285a6bda 4038DygraphCanvasRenderer.prototype.render=function(){
b2a516b8
DV
4039var ctx=this.element.getContext("2d");
4040if(this.options.drawYGrid){
fbe31dc8 4041var _36=this.layout.yticks;
b2a516b8
DV
4042ctx.save();
4043ctx.strokeStyle=this.options.gridLineColor.toRGBString();
4044ctx.lineWidth=this.options.axisLineWidth;
fbe31dc8 4045for(var i=0;i<_36.length;i++){
b2a516b8 4046var x=this.area.x;
fbe31dc8 4047var y=this.area.y+_36[i][0]*this.area.h;
b2a516b8
DV
4048ctx.beginPath();
4049ctx.moveTo(x,y);
4050ctx.lineTo(x+this.area.w,y);
4051ctx.closePath();
4052ctx.stroke();
4053}
4054}
4055if(this.options.drawXGrid){
fbe31dc8 4056var _36=this.layout.xticks;
b2a516b8
DV
4057ctx.save();
4058ctx.strokeStyle=this.options.gridLineColor.toRGBString();
4059ctx.lineWidth=this.options.axisLineWidth;
fbe31dc8
DV
4060for(var i=0;i<_36.length;i++){
4061var x=this.area.x+_36[i][0]*this.area.w;
b2a516b8
DV
4062var y=this.area.y+this.area.h;
4063ctx.beginPath();
4064ctx.moveTo(x,y);
4065ctx.lineTo(x,this.area.y);
4066ctx.closePath();
4067ctx.stroke();
4068}
4069}
2ce09b19 4070this._renderLineChart();
fbe31dc8 4071this._renderAxis();
b2a516b8 4072};
fbe31dc8
DV
4073DygraphCanvasRenderer.prototype._renderAxis=function(){
4074if(!this.options.drawXAxis&&!this.options.drawYAxis){
4075return;
4076}
4077var _39=this.element.getContext("2d");
4078var _40={"style":{"position":"absolute","fontSize":this.options.axisLabelFontSize+"px","zIndex":10,"color":this.options.axisLabelColor.toRGBString(),"width":this.options.axisLabelWidth+"px","overflow":"hidden"}};
4079_39.save();
4080_39.strokeStyle=this.options.axisLineColor.toRGBString();
4081_39.lineWidth=this.options.axisLineWidth;
4082if(this.options.drawYAxis){
4083if(this.layout.yticks){
2160ed4a
DV
4084for(var i=0;i<this.layout.yticks.length;i++){
4085var _41=this.layout.yticks[i];
4086if(typeof (_41)=="function"){
fbe31dc8
DV
4087return;
4088}
4089var x=this.area.x;
2160ed4a 4090var y=this.area.y+_41[0]*this.area.h;
fbe31dc8
DV
4091_39.beginPath();
4092_39.moveTo(x,y);
4093_39.lineTo(x-this.options.axisTickSize,y);
4094_39.closePath();
4095_39.stroke();
2160ed4a 4096var _42=DIV(_40,_41[1]);
fbe31dc8
DV
4097var top=(y-this.options.axisLabelFontSize/2);
4098if(top<0){
4099top=0;
4100}
4101if(top+this.options.axisLabelFontSize+3>this.height){
2160ed4a 4102_42.style.bottom="0px";
fbe31dc8 4103}else{
2160ed4a 4104_42.style.top=top+"px";
fbe31dc8 4105}
2160ed4a
DV
4106_42.style.left="0px";
4107_42.style.textAlign="right";
4108_42.style.width=this.options.yAxisLabelWidth+"px";
4109MochiKit.DOM.appendChildNodes(this.container,_42);
4110this.ylabels.push(_42);
4111}
4112var _44=this.ylabels[0];
4113var _45=this.options.axisLabelFontSize;
4114var _46=parseInt(_44.style.top)+_45;
4115if(_46>this.height-_45){
4116_44.style.top=(parseInt(_44.style.top)-_45/2)+"px";
fbe31dc8
DV
4117}
4118}
4119_39.beginPath();
4120_39.moveTo(this.area.x,this.area.y);
4121_39.lineTo(this.area.x,this.area.y+this.area.h);
4122_39.closePath();
4123_39.stroke();
4124}
4125if(this.options.drawXAxis){
4126if(this.layout.xticks){
2160ed4a
DV
4127for(var i=0;i<this.layout.xticks.length;i++){
4128var _41=this.layout.xticks[i];
fbe31dc8
DV
4129if(typeof (dataset)=="function"){
4130return;
4131}
2160ed4a 4132var x=this.area.x+_41[0]*this.area.w;
fbe31dc8
DV
4133var y=this.area.y+this.area.h;
4134_39.beginPath();
4135_39.moveTo(x,y);
4136_39.lineTo(x,y+this.options.axisTickSize);
4137_39.closePath();
4138_39.stroke();
2160ed4a
DV
4139var _42=DIV(_40,_41[1]);
4140_42.style.textAlign="center";
4141_42.style.bottom="0px";
4142var _47=(x-this.options.axisLabelWidth/2);
4143if(_47+this.options.axisLabelWidth>this.width){
4144_47=this.width-this.options.xAxisLabelWidth;
4145_42.style.textAlign="right";
4146}
4147if(_47<0){
4148_47=0;
4149_42.style.textAlign="left";
4150}
4151_42.style.left=_47+"px";
4152_42.style.width=this.options.xAxisLabelWidth+"px";
4153MochiKit.DOM.appendChildNodes(this.container,_42);
4154this.xlabels.push(_42);
4155}
fbe31dc8
DV
4156}
4157_39.beginPath();
4158_39.moveTo(this.area.x,this.area.y+this.area.h);
4159_39.lineTo(this.area.x+this.area.w,this.area.y+this.area.h);
4160_39.closePath();
4161_39.stroke();
4162}
4163_39.restore();
efe0829a 4164};
fbe31dc8 4165DygraphCanvasRenderer.prototype._renderLineChart=function(){
2160ed4a
DV
4166var _48=this.element.getContext("2d");
4167var _49=this.options.colorScheme.length;
4168var _50=this.options.colorScheme;
4169var _51=MochiKit.Base.keys(this.layout.datasets);
4170var _52=this.layout.options.errorBars;
4171var _53=_51.length;
4172var _54=MochiKit.Base.bind;
4173var _55=MochiKit.Base.partial;
4174for(var i=0;i<this.layout.points.length;i++){
4175var _56=this.layout.points[i];
4176_56.canvasx=this.area.w*_56.x+this.area.x;
4177_56.canvasy=this.area.h*_56.y+this.area.y;
4178}
4179var _57=function(x){
9317362d
DV
4180return x&&!isNaN(x);
4181};
2160ed4a
DV
4182var _58=function(ctx){
4183for(var i=0;i<_53;i++){
4184var _59=_51[i];
4185var _60=_50[i%_49];
4186var _61=this.options.strokeColorTransform;
4187_48.save();
4188_48.strokeStyle=_60.toRGBString();
4189_48.lineWidth=this.options.strokeWidth;
4190var _56=this.layout.points[0];
4191var _62=this.dygraph_.attr_("pointSize");
4192var _63=null,prevY=null;
4193var _64=this.dygraph_.attr_("drawPoints");
4194var _65=this.layout.points;
4195for(var j=0;j<_65.length;j++){
4196var _56=_65[j];
4197if(_56.name==_59){
4198if(!_57(_56.canvasy)){
4199_63=prevY=null;
4200}else{
4201var _66=(!_63&&(j==_65.length-1||!_57(_65[j+1].canvasy)));
4202if(!_63){
4203_63=_56.canvasx;
4204prevY=_56.canvasy;
b2a516b8 4205}else{
9317362d 4206ctx.beginPath();
2160ed4a
DV
4207ctx.moveTo(_63,prevY);
4208_63=_56.canvasx;
4209prevY=_56.canvasy;
4210ctx.lineTo(_63,prevY);
9317362d
DV
4211ctx.stroke();
4212}
2160ed4a 4213if(_64||_66){
9317362d 4214ctx.beginPath();
2160ed4a
DV
4215ctx.fillStyle=_60.toRGBString();
4216ctx.arc(_56.canvasx,_56.canvasy,_62,0,360,false);
9317362d
DV
4217ctx.fill();
4218}
b2a516b8 4219}
648acd28 4220}
b2a516b8 4221}
b2a516b8
DV
4222}
4223};
2160ed4a
DV
4224var _67=function(ctx){
4225for(var i=0;i<_53;i++){
4226var _68=_51[i];
4227var _69=_50[i%_49];
4228var _70=this.options.strokeColorTransform;
4229_48.save();
4230_48.strokeStyle=_69.toRGBString();
4231_48.lineWidth=this.options.strokeWidth;
4232var _71=-1;
4233var _72=[-1,-1];
4234var _73=0;
4235var _74=this.layout.yscale;
5fb1199a
DV
4236var _75=_69.colorWithAlpha(0.15);
4237ctx.fillStyle=_75.toRGBString();
4238ctx.beginPath();
4239for(var j=0;j<this.layout.points.length;j++){
4240var _76=this.layout.points[j];
2160ed4a 4241_73++;
5fb1199a
DV
4242if(_76.name==_68){
4243if(!_76.y||isNaN(_76.y)){
2160ed4a 4244_71=-1;
648acd28
DV
4245return;
4246}
5fb1199a
DV
4247var _77=[_76.y-_76.errorPlus*_74,_76.y+_76.errorMinus*_74];
4248_77[0]=this.area.h*_77[0]+this.area.y;
4249_77[1]=this.area.h*_77[1]+this.area.y;
2160ed4a 4250if(_71>=0){
5fb1199a
DV
4251ctx.moveTo(_71,_72[0]);
4252ctx.lineTo(_76.canvasx,_77[0]);
4253ctx.lineTo(_76.canvasx,_77[1]);
4254ctx.lineTo(_71,_72[1]);
4255ctx.closePath();
4256}
4257_72[0]=_77[0];
4258_72[1]=_77[1];
4259_71=_76.canvasx;
b2a516b8 4260}
b2a516b8 4261}
b2a516b8
DV
4262ctx.fill();
4263}
6a1aa64f 4264};
2160ed4a
DV
4265if(_52){
4266_54(_67,this)(_48);
b2a516b8 4267}
2160ed4a
DV
4268_54(_58,this)(_48);
4269_48.restore();
6a1aa64f 4270};
5fb1199a 4271Dygraph=function(div,_79,_80){
b2a516b8 4272if(arguments.length>0){
285a6bda
DV
4273if(arguments.length==4){
4274this.warn("Using deprecated four-argument dygraph constructor");
5fb1199a 4275this.__old_init__(div,_79,arguments[2],arguments[3]);
285a6bda 4276}else{
5fb1199a 4277this.__init__(div,_79,_80);
285a6bda 4278}
b2a516b8 4279}
6a1aa64f 4280};
285a6bda
DV
4281Dygraph.NAME="Dygraph";
4282Dygraph.VERSION="1.2";
4283Dygraph.__repr__=function(){
b2a516b8 4284return "["+this.NAME+" "+this.VERSION+"]";
6a1aa64f 4285};
285a6bda 4286Dygraph.toString=function(){
b2a516b8 4287return this.__repr__();
6a1aa64f 4288};
285a6bda
DV
4289Dygraph.DEFAULT_ROLL_PERIOD=1;
4290Dygraph.DEFAULT_WIDTH=480;
4291Dygraph.DEFAULT_HEIGHT=320;
4292Dygraph.AXIS_LINE_WIDTH=0.3;
8846615a 4293Dygraph.DEFAULT_ATTRS={highlightCircleSize:3,pixelsPerXLabel:60,pixelsPerYLabel:30,labelsDivWidth:250,labelsDivStyles:{},labelsSeparateLines:false,labelsKMB:false,strokeWidth:1,axisTickSize:3,axisLabelFontSize:14,xAxisLabelWidth:50,yAxisLabelWidth:50,rightGap:5,showRoller:false,xValueFormatter:Dygraph.dateString_,xValueParser:Dygraph.dateParser,xTicker:Dygraph.dateTicker,sigma:2,errorBars:false,fractions:false,wilsonInterval:true,customBars:false};
285a6bda
DV
4294Dygraph.DEBUG=1;
4295Dygraph.INFO=2;
4296Dygraph.WARNING=3;
4297Dygraph.ERROR=3;
5fb1199a
DV
4298Dygraph.prototype.__old_init__=function(div,_81,_82,_83){
4299if(_82!=null){
4300var _84=["Date"];
4301for(var i=0;i<_82.length;i++){
4302_84.push(_82[i]);
285a6bda 4303}
5fb1199a 4304MochiKit.Base.update(_83,{"labels":_84});
285a6bda 4305}
5fb1199a 4306this.__init__(div,_81,_83);
285a6bda 4307};
5fb1199a
DV
4308Dygraph.prototype.__init__=function(div,_85,_86){
4309if(_86==null){
4310_86={};
285a6bda 4311}
b2a516b8 4312this.maindiv_=div;
5fb1199a
DV
4313this.file_=_85;
4314this.rollPeriod_=_86.rollPeriod||Dygraph.DEFAULT_ROLL_PERIOD;
b2a516b8 4315this.previousVerticalX_=-1;
5fb1199a
DV
4316this.fractions_=_86.fractions||false;
4317this.dateWindow_=_86.dateWindow||null;
4318this.valueRange_=_86.valueRange||null;
4319this.wilsonInterval_=_86.wilsonInterval||true;
caf49918 4320div.innerHTML="";
285a6bda
DV
4321if(div.style.width==""){
4322div.style.width=Dygraph.DEFAULT_WIDTH+"px";
4323}
4324if(div.style.height==""){
4325div.style.height=Dygraph.DEFAULT_HEIGHT+"px";
4326}
b2a516b8
DV
4327this.width_=parseInt(div.style.width,10);
4328this.height_=parseInt(div.style.height,10);
285a6bda 4329this.user_attrs_={};
5fb1199a 4330MochiKit.Base.update(this.user_attrs_,_86);
b8339f6e 4331this.attrs_={};
285a6bda
DV
4332MochiKit.Base.update(this.attrs_,Dygraph.DEFAULT_ATTRS);
4333this.labelsFromCSV_=(this.attr_("labels")==null);
b2a516b8 4334this.createInterface_();
b64a4f1a 4335this.layoutOptions_={"errorBars":(this.attr_("errorBars")||this.attr_("customBars")),"xOriginIsZero":false};
285a6bda
DV
4336MochiKit.Base.update(this.layoutOptions_,this.attrs_);
4337MochiKit.Base.update(this.layoutOptions_,this.user_attrs_);
efe0829a 4338this.layout_=new DygraphLayout(this,this.layoutOptions_);
8846615a 4339this.renderOptions_={colorScheme:this.colors_,strokeColor:null,axisLineWidth:Dygraph.AXIS_LINE_WIDTH};
285a6bda
DV
4340MochiKit.Base.update(this.renderOptions_,this.attrs_);
4341MochiKit.Base.update(this.renderOptions_,this.user_attrs_);
9317362d 4342this.plotter_=new DygraphCanvasRenderer(this,this.hidden_,this.layout_,this.renderOptions_);
b2a516b8
DV
4343this.createStatusMessage_();
4344this.createRollInterface_();
4345this.createDragInterface_();
b2a516b8 4346this.start_();
6a1aa64f 4347};
5fb1199a
DV
4348Dygraph.prototype.attr_=function(_87){
4349if(typeof (this.user_attrs_[_87])!="undefined"){
4350return this.user_attrs_[_87];
285a6bda 4351}else{
5fb1199a
DV
4352if(typeof (this.attrs_[_87])!="undefined"){
4353return this.attrs_[_87];
285a6bda
DV
4354}else{
4355return null;
4356}
4357}
4358};
5fb1199a 4359Dygraph.prototype.log=function(_88,_89){
285a6bda 4360if(typeof (console)!="undefined"){
5fb1199a 4361switch(_88){
285a6bda 4362case Dygraph.DEBUG:
5fb1199a 4363console.debug("dygraphs: "+_89);
285a6bda
DV
4364break;
4365case Dygraph.INFO:
5fb1199a 4366console.info("dygraphs: "+_89);
285a6bda
DV
4367break;
4368case Dygraph.WARNING:
5fb1199a 4369console.warn("dygraphs: "+_89);
285a6bda
DV
4370break;
4371case Dygraph.ERROR:
5fb1199a 4372console.error("dygraphs: "+_89);
285a6bda
DV
4373break;
4374}
4375}
4376};
5fb1199a
DV
4377Dygraph.prototype.info=function(_90){
4378this.log(Dygraph.INFO,_90);
285a6bda 4379};
5fb1199a
DV
4380Dygraph.prototype.warn=function(_91){
4381this.log(Dygraph.WARNING,_91);
285a6bda 4382};
5fb1199a
DV
4383Dygraph.prototype.error=function(_92){
4384this.log(Dygraph.ERROR,_92);
285a6bda
DV
4385};
4386Dygraph.prototype.rollPeriod=function(){
b2a516b8
DV
4387return this.rollPeriod_;
4388};
285a6bda 4389Dygraph.prototype.createInterface_=function(){
5fb1199a 4390var _93=this.maindiv_;
b2a516b8 4391this.graphDiv=MochiKit.DOM.DIV({style:{"width":this.width_+"px","height":this.height_+"px"}});
5fb1199a
DV
4392appendChildNodes(_93,this.graphDiv);
4393var _94=MochiKit.DOM.CANVAS;
4394this.canvas_=_94({style:{"position":"absolute"},width:this.width_,height:this.height_});
b2a516b8
DV
4395appendChildNodes(this.graphDiv,this.canvas_);
4396this.hidden_=this.createPlotKitCanvas_(this.canvas_);
4397connect(this.hidden_,"onmousemove",this,function(e){
4398this.mouseMove_(e);
4399});
4400connect(this.hidden_,"onmouseout",this,function(e){
4401this.mouseOut_(e);
4402});
6a1aa64f 4403};
5fb1199a 4404Dygraph.prototype.createPlotKitCanvas_=function(_96){
b2a516b8
DV
4405var h=document.createElement("canvas");
4406h.style.position="absolute";
5fb1199a
DV
4407h.style.top=_96.style.top;
4408h.style.left=_96.style.left;
b2a516b8
DV
4409h.width=this.width_;
4410h.height=this.height_;
4411MochiKit.DOM.appendChildNodes(this.graphDiv,h);
4412return h;
4413};
285a6bda
DV
4414Dygraph.prototype.setColors_=function(){
4415var num=this.attr_("labels").length-1;
b2a516b8 4416this.colors_=[];
5fb1199a
DV
4417var _99=this.attr_("colors");
4418if(!_99){
285a6bda
DV
4419var sat=this.attr_("colorSaturation")||1;
4420var val=this.attr_("colorValue")||0.5;
b2a516b8
DV
4421for(var i=1;i<=num;i++){
4422var hue=(1*i/(1+num));
4423this.colors_.push(MochiKit.Color.Color.fromHSV(hue,sat,val));
4424}
4425}else{
4426for(var i=0;i<num;i++){
5fb1199a
DV
4427var _103=_99[i%_99.length];
4428this.colors_.push(MochiKit.Color.Color.fromString(_103));
b2a516b8 4429}
b2a516b8 4430}
285a6bda
DV
4431this.renderOptions_.colorScheme=this.colors_;
4432MochiKit.Base.update(this.plotter_.options,this.renderOptions_);
4433MochiKit.Base.update(this.layoutOptions_,this.user_attrs_);
4434MochiKit.Base.update(this.layoutOptions_,this.attrs_);
b2a516b8 4435};
3df0ccf0 4436Dygraph.findPosX=function(obj){
5fb1199a 4437var _105=0;
3df0ccf0
DV
4438if(obj.offsetParent){
4439while(obj.offsetParent){
5fb1199a 4440_105+=obj.offsetLeft;
3df0ccf0
DV
4441obj=obj.offsetParent;
4442}
4443}else{
4444if(obj.x){
5fb1199a 4445_105+=obj.x;
3df0ccf0
DV
4446}
4447}
5fb1199a 4448return _105;
3df0ccf0
DV
4449};
4450Dygraph.findPosY=function(obj){
5fb1199a 4451var _106=0;
3df0ccf0
DV
4452if(obj.offsetParent){
4453while(obj.offsetParent){
5fb1199a 4454_106+=obj.offsetTop;
3df0ccf0
DV
4455obj=obj.offsetParent;
4456}
4457}else{
4458if(obj.y){
5fb1199a 4459_106+=obj.y;
3df0ccf0
DV
4460}
4461}
5fb1199a 4462return _106;
3df0ccf0 4463};
285a6bda
DV
4464Dygraph.prototype.createStatusMessage_=function(){
4465if(!this.attr_("labelsDiv")){
5fb1199a
DV
4466var _107=this.attr_("labelsDivWidth");
4467var _108={"style":{"position":"absolute","fontSize":"14px","zIndex":10,"width":_107+"px","top":"0px","left":(this.width_-_107-2)+"px","background":"white","textAlign":"left","overflow":"hidden"}};
4468MochiKit.Base.update(_108["style"],this.attr_("labelsDivStyles"));
4469var div=MochiKit.DOM.DIV(_108);
285a6bda
DV
4470MochiKit.DOM.appendChildNodes(this.graphDiv,div);
4471this.attrs_.labelsDiv=div;
4472}
4473};
4474Dygraph.prototype.createRollInterface_=function(){
5fb1199a
DV
4475var _109=this.attr_("showRoller")?"block":"none";
4476var _110={"type":"text","size":"2","value":this.rollPeriod_,"style":{"position":"absolute","zIndex":10,"top":(this.plotter_.area.h-25)+"px","left":(this.plotter_.area.x+1)+"px","display":_109}};
4477var _111=MochiKit.DOM.INPUT(_110);
b2a516b8 4478var pa=this.graphDiv;
5fb1199a
DV
4479MochiKit.DOM.appendChildNodes(pa,_111);
4480connect(_111,"onchange",this,function(){
4481this.adjustRoll(_111.value);
b2a516b8 4482});
5fb1199a 4483return _111;
285a6bda
DV
4484};
4485Dygraph.prototype.createDragInterface_=function(){
fbe31dc8 4486var self=this;
5fb1199a
DV
4487var _114=false;
4488var _115=null;
4489var _116=null;
2160ed4a
DV
4490var _117=null;
4491var _118=null;
4492var _119=null;
353a0294
DV
4493var px=0;
4494var py=0;
efe0829a 4495var getX=function(e){
b2a516b8
DV
4496return e.mouse().page.x-px;
4497};
efe0829a 4498var getY=function(e){
b2a516b8
DV
4499return e.mouse().page.y-py;
4500};
5fb1199a
DV
4501connect(this.hidden_,"onmousemove",function(_124){
4502if(_114){
4503_117=getX(_124);
4504_118=getY(_124);
4505self.drawZoomRect_(_115,_117,_119);
4506_119=_117;
6a1aa64f 4507}
b2a516b8 4508});
5fb1199a
DV
4509connect(this.hidden_,"onmousedown",function(_125){
4510_114=true;
3df0ccf0
DV
4511px=Dygraph.findPosX(self.canvas_);
4512py=Dygraph.findPosY(self.canvas_);
5fb1199a
DV
4513_115=getX(_125);
4514_116=getY(_125);
b2a516b8 4515});
5fb1199a
DV
4516connect(document,"onmouseup",this,function(_126){
4517if(_114){
4518_114=false;
4519_115=null;
4520_116=null;
6a1aa64f 4521}
b2a516b8 4522});
5fb1199a
DV
4523connect(this.hidden_,"onmouseout",this,function(_127){
4524if(_114){
4525_117=null;
4526_118=null;
6a1aa64f 4527}
b2a516b8 4528});
5fb1199a
DV
4529connect(this.hidden_,"onmouseup",this,function(_128){
4530if(_114){
4531_114=false;
4532_117=getX(_128);
4533_118=getY(_128);
4534var _129=Math.abs(_117-_115);
4535var _130=Math.abs(_118-_116);
4536if(_129<2&&_130<2&&self.attr_("clickCallback")!=null&&self.lastx_!=undefined){
4537self.attr_("clickCallback")(_128,new Date(self.lastx_));
4538}
4539if(_129>=10){
4540self.doZoom_(Math.min(_115,_117),Math.max(_115,_117));
b2a516b8 4541}else{
fbe31dc8 4542self.canvas_.getContext("2d").clearRect(0,0,self.canvas_.width,self.canvas_.height);
b2a516b8 4543}
5fb1199a
DV
4544_115=null;
4545_116=null;
b2a516b8
DV
4546}
4547});
5fb1199a 4548connect(this.hidden_,"ondblclick",this,function(_131){
fbe31dc8
DV
4549self.dateWindow_=null;
4550self.drawGraph_(self.rawData_);
5fb1199a
DV
4551var _132=self.rawData_[0][0];
4552var _133=self.rawData_[self.rawData_.length-1][0];
fbe31dc8 4553if(self.attr_("zoomCallback")){
5fb1199a 4554self.attr_("zoomCallback")(_132,_133);
67e650dc 4555}
b2a516b8 4556});
6a1aa64f 4557};
5fb1199a 4558Dygraph.prototype.drawZoomRect_=function(_134,endX,_136){
b2a516b8 4559var ctx=this.canvas_.getContext("2d");
5fb1199a
DV
4560if(_136){
4561ctx.clearRect(Math.min(_134,_136),0,Math.abs(_134-_136),this.height_);
b2a516b8 4562}
5fb1199a 4563if(endX&&_134){
b2a516b8 4564ctx.fillStyle="rgba(128,128,128,0.33)";
5fb1199a 4565ctx.fillRect(Math.min(_134,endX),0,Math.abs(endX-_134),this.height_);
b2a516b8
DV
4566}
4567};
5fb1199a
DV
4568Dygraph.prototype.doZoom_=function(lowX,_138){
4569var _139=this.layout_.points;
4570var _140=null;
4571var _141=null;
4572for(var i=0;i<_139.length;i++){
4573var cx=_139[i].canvasx;
4574var x=_139[i].xval;
4575if(cx<lowX&&(_140==null||x>_140)){
4576_140=x;
8846615a 4577}
5fb1199a
DV
4578if(cx>_138&&(_141==null||x<_141)){
4579_141=x;
b2a516b8
DV
4580}
4581}
5fb1199a
DV
4582if(_140==null){
4583_140=_139[0].xval;
b2a516b8 4584}
5fb1199a
DV
4585if(_141==null){
4586_141=_139[_139.length-1].xval;
b2a516b8 4587}
5fb1199a 4588this.dateWindow_=[_140,_141];
b2a516b8 4589this.drawGraph_(this.rawData_);
285a6bda 4590if(this.attr_("zoomCallback")){
5fb1199a 4591this.attr_("zoomCallback")(_140,_141);
67e650dc 4592}
b2a516b8 4593};
5fb1199a
DV
4594Dygraph.prototype.mouseMove_=function(_143){
4595var _144=_143.mouse().page.x-Dygraph.findPosX(this.hidden_);
4596var _145=this.layout_.points;
4597var _146=-1;
4598var _147=-1;
4599var _148=1e+100;
b2a516b8 4600var idx=-1;
5fb1199a
DV
4601for(var i=0;i<_145.length;i++){
4602var dist=Math.abs(_145[i].canvasx-_144);
4603if(dist>_148){
b2a516b8
DV
4604break;
4605}
5fb1199a 4606_148=dist;
b2a516b8
DV
4607idx=i;
4608}
4609if(idx>=0){
5fb1199a 4610_146=_145[idx].xval;
b2a516b8 4611}
5fb1199a
DV
4612if(_144>_145[_145.length-1].canvasx){
4613_146=_145[_145.length-1].xval;
b2a516b8 4614}
5fb1199a
DV
4615var _151=[];
4616for(var i=0;i<_145.length;i++){
4617if(_145[i].xval==_146){
4618_151.push(_145[i]);
b2a516b8
DV
4619}
4620}
5fb1199a 4621var _152=this.attr_("highlightCircleSize");
b2a516b8
DV
4622var ctx=this.canvas_.getContext("2d");
4623if(this.previousVerticalX_>=0){
4624var px=this.previousVerticalX_;
5fb1199a 4625ctx.clearRect(px-_152-1,0,2*_152+2,this.height_);
b2a516b8 4626}
648acd28
DV
4627var isOK=function(x){
4628return x&&!isNaN(x);
4629};
5fb1199a
DV
4630if(_151.length>0){
4631var _144=_151[0].canvasx;
4632var _154=this.attr_("xValueFormatter")(_146,this)+":";
b2a516b8 4633var clen=this.colors_.length;
5fb1199a
DV
4634for(var i=0;i<_151.length;i++){
4635if(!isOK(_151[i].canvasy)){
648acd28
DV
4636continue;
4637}
285a6bda 4638if(this.attr_("labelsSeparateLines")){
5fb1199a 4639_154+="<br/>";
b2a516b8 4640}
5fb1199a
DV
4641var _156=_151[i];
4642_154+=" <b><font color='"+this.colors_[i%clen].toHexString()+"'>"+_156.name+"</font></b>:"+this.round_(_156.yval,2);
b2a516b8 4643}
5fb1199a
DV
4644this.attr_("labelsDiv").innerHTML=_154;
4645this.lastx_=_146;
b2a516b8 4646ctx.save();
5fb1199a
DV
4647for(var i=0;i<_151.length;i++){
4648if(!isOK(_151[i%clen].canvasy)){
648acd28
DV
4649continue;
4650}
b2a516b8
DV
4651ctx.beginPath();
4652ctx.fillStyle=this.colors_[i%clen].toRGBString();
5fb1199a 4653ctx.arc(_144,_151[i%clen].canvasy,_152,0,360,false);
b2a516b8
DV
4654ctx.fill();
4655}
4656ctx.restore();
5fb1199a 4657this.previousVerticalX_=_144;
b2a516b8 4658}
6a1aa64f 4659};
5fb1199a 4660Dygraph.prototype.mouseOut_=function(_157){
b2a516b8
DV
4661var ctx=this.canvas_.getContext("2d");
4662ctx.clearRect(0,0,this.width_,this.height_);
285a6bda 4663this.attr_("labelsDiv").innerHTML="";
6a1aa64f 4664};
285a6bda 4665Dygraph.zeropad=function(x){
6372d433
DV
4666if(x<10){
4667return "0"+x;
4668}else{
4669return ""+x;
4670}
4671};
285a6bda 4672Dygraph.prototype.hmsString_=function(date){
5fb1199a 4673var _159=Dygraph.zeropad;
6372d433
DV
4674var d=new Date(date);
4675if(d.getSeconds()){
5fb1199a 4676return _159(d.getHours())+":"+_159(d.getMinutes())+":"+_159(d.getSeconds());
6372d433
DV
4677}else{
4678if(d.getMinutes()){
5fb1199a 4679return _159(d.getHours())+":"+_159(d.getMinutes());
6372d433 4680}else{
5fb1199a 4681return _159(d.getHours());
6372d433
DV
4682}
4683}
4684};
285a6bda 4685Dygraph.dateString_=function(date,self){
5fb1199a 4686var _161=Dygraph.zeropad;
b2a516b8
DV
4687var d=new Date(date);
4688var year=""+d.getFullYear();
5fb1199a
DV
4689var _163=_161(d.getMonth()+1);
4690var day=_161(d.getDate());
6372d433
DV
4691var ret="";
4692var frac=d.getHours()*3600+d.getMinutes()*60+d.getSeconds();
4693if(frac){
285a6bda 4694ret=" "+self.hmsString_(date);
b2a516b8 4695}
5fb1199a 4696return year+"/"+_163+"/"+day+ret;
6a1aa64f 4697};
5fb1199a
DV
4698Dygraph.prototype.round_=function(num,_167){
4699var _168=Math.pow(10,_167);
4700return Math.round(num*_168)/_168;
6a1aa64f 4701};
285a6bda 4702Dygraph.prototype.loadedEvent_=function(data){
b2a516b8
DV
4703this.rawData_=this.parseCSV_(data);
4704this.drawGraph_(this.rawData_);
6a1aa64f 4705};
285a6bda
DV
4706Dygraph.prototype.months=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];
4707Dygraph.prototype.quarters=["Jan","Apr","Jul","Oct"];
4708Dygraph.prototype.addXTicks_=function(){
5fb1199a 4709var _170,endDate;
b2a516b8 4710if(this.dateWindow_){
5fb1199a 4711_170=this.dateWindow_[0];
b2a516b8
DV
4712endDate=this.dateWindow_[1];
4713}else{
5fb1199a 4714_170=this.rawData_[0][0];
b2a516b8
DV
4715endDate=this.rawData_[this.rawData_.length-1][0];
4716}
5fb1199a
DV
4717var _171=this.attr_("xTicker")(_170,endDate,this);
4718this.layout_.updateOptions({xTicks:_171});
285a6bda
DV
4719};
4720Dygraph.SECONDLY=0;
4721Dygraph.TEN_SECONDLY=1;
4722Dygraph.THIRTY_SECONDLY=2;
4723Dygraph.MINUTELY=3;
4724Dygraph.TEN_MINUTELY=4;
4725Dygraph.THIRTY_MINUTELY=5;
4726Dygraph.HOURLY=6;
4727Dygraph.SIX_HOURLY=7;
4728Dygraph.DAILY=8;
4729Dygraph.WEEKLY=9;
4730Dygraph.MONTHLY=10;
4731Dygraph.QUARTERLY=11;
4732Dygraph.BIANNUAL=12;
4733Dygraph.ANNUAL=13;
4734Dygraph.DECADAL=14;
4735Dygraph.NUM_GRANULARITIES=15;
4736Dygraph.SHORT_SPACINGS=[];
4737Dygraph.SHORT_SPACINGS[Dygraph.SECONDLY]=1000*1;
4738Dygraph.SHORT_SPACINGS[Dygraph.TEN_SECONDLY]=1000*10;
4739Dygraph.SHORT_SPACINGS[Dygraph.THIRTY_SECONDLY]=1000*30;
4740Dygraph.SHORT_SPACINGS[Dygraph.MINUTELY]=1000*60;
4741Dygraph.SHORT_SPACINGS[Dygraph.TEN_MINUTELY]=1000*60*10;
4742Dygraph.SHORT_SPACINGS[Dygraph.THIRTY_MINUTELY]=1000*60*30;
4743Dygraph.SHORT_SPACINGS[Dygraph.HOURLY]=1000*3600;
4744Dygraph.SHORT_SPACINGS[Dygraph.HOURLY]=1000*3600*6;
4745Dygraph.SHORT_SPACINGS[Dygraph.DAILY]=1000*86400;
4746Dygraph.SHORT_SPACINGS[Dygraph.WEEKLY]=1000*604800;
5fb1199a
DV
4747Dygraph.prototype.NumXTicks=function(_172,_173,_174){
4748if(_174<Dygraph.MONTHLY){
4749var _175=Dygraph.SHORT_SPACINGS[_174];
4750return Math.floor(0.5+1*(_173-_172)/_175);
285a6bda 4751}else{
5fb1199a
DV
4752var _176=1;
4753var _177=12;
4754if(_174==Dygraph.QUARTERLY){
4755_177=3;
285a6bda 4756}
5fb1199a
DV
4757if(_174==Dygraph.BIANNUAL){
4758_177=2;
285a6bda 4759}
5fb1199a
DV
4760if(_174==Dygraph.ANNUAL){
4761_177=1;
285a6bda 4762}
5fb1199a
DV
4763if(_174==Dygraph.DECADAL){
4764_177=1;
4765_176=10;
285a6bda 4766}
5fb1199a
DV
4767var _178=365.2524*24*3600*1000;
4768var _179=1*(_173-_172)/_178;
4769return Math.floor(0.5+1*_179*_177/_176);
285a6bda
DV
4770}
4771};
5fb1199a
DV
4772Dygraph.prototype.GetXAxis=function(_180,_181,_182){
4773var _183=[];
4774if(_182<Dygraph.MONTHLY){
4775var _184=Dygraph.SHORT_SPACINGS[_182];
4776var _185="%d%b";
4777if(_182<Dygraph.HOURLY){
4778_180=_184*Math.floor(0.5+_180/_184);
4779}
4780for(var t=_180;t<=_181;t+=_184){
36615faf
DV
4781var d=new Date(t);
4782var frac=d.getHours()*3600+d.getMinutes()*60+d.getSeconds();
5fb1199a
DV
4783if(frac==0||_182>=Dygraph.DAILY){
4784_183.push({v:t,label:new Date(t+3600*1000).strftime(_185)});
b2a516b8 4785}else{
5fb1199a 4786_183.push({v:t,label:this.hmsString_(t)});
36615faf
DV
4787}
4788}
b2a516b8 4789}else{
5fb1199a
DV
4790var _187;
4791var _188=1;
4792if(_182==Dygraph.MONTHLY){
4793_187=[0,1,2,3,4,5,6,7,8,9,10,11,12];
b2a516b8 4794}else{
5fb1199a
DV
4795if(_182==Dygraph.QUARTERLY){
4796_187=[0,3,6,9];
b2a516b8 4797}else{
5fb1199a
DV
4798if(_182==Dygraph.BIANNUAL){
4799_187=[0,6];
b2a516b8 4800}else{
5fb1199a
DV
4801if(_182==Dygraph.ANNUAL){
4802_187=[0];
6372d433 4803}else{
5fb1199a
DV
4804if(_182==Dygraph.DECADAL){
4805_187=[0];
4806_188=10;
b2a516b8
DV
4807}
4808}
4809}
4810}
6372d433 4811}
5fb1199a
DV
4812var _189=new Date(_180).getFullYear();
4813var _190=new Date(_181).getFullYear();
4814var _191=Dygraph.zeropad;
4815for(var i=_189;i<=_190;i++){
4816if(i%_188!=0){
36615faf 4817continue;
6372d433 4818}
5fb1199a
DV
4819for(var j=0;j<_187.length;j++){
4820var _192=i+"/"+_191(1+_187[j])+"/01";
4821var t=Date.parse(_192);
4822if(t<_180||t>_181){
b2a516b8
DV
4823continue;
4824}
5fb1199a 4825_183.push({v:t,label:new Date(t).strftime("%b %y")});
b2a516b8
DV
4826}
4827}
b2a516b8 4828}
5fb1199a 4829return _183;
36615faf 4830};
5fb1199a
DV
4831Dygraph.dateTicker=function(_193,_194,self){
4832var _195=-1;
285a6bda 4833for(var i=0;i<Dygraph.NUM_GRANULARITIES;i++){
5fb1199a
DV
4834var _196=self.NumXTicks(_193,_194,i);
4835if(self.width_/_196>=self.attr_("pixelsPerXLabel")){
4836_195=i;
36615faf
DV
4837break;
4838}
b2a516b8 4839}
5fb1199a
DV
4840if(_195>=0){
4841return self.GetXAxis(_193,_194,_195);
36615faf 4842}else{
6372d433 4843}
6a1aa64f 4844};
285a6bda 4845Dygraph.numericTicks=function(minV,maxV,self){
5fb1199a
DV
4846var _199=[1,2,5];
4847var _200,low_val,high_val,nTicks;
4848var _201=self.attr_("pixelsPerYLabel");
2ce09b19 4849for(var i=-10;i<50;i++){
5fb1199a
DV
4850var _202=Math.pow(10,i);
4851for(var j=0;j<_199.length;j++){
4852_200=_202*_199[j];
4853low_val=Math.floor(minV/_200)*_200;
4854high_val=Math.ceil(maxV/_200)*_200;
4855nTicks=(high_val-low_val)/_200;
4856var _203=self.height_/nTicks;
4857if(_203>_201){
2ce09b19 4858break;
6a1aa64f 4859}
b2a516b8 4860}
5fb1199a 4861if(_203>_201){
2ce09b19 4862break;
b2a516b8 4863}
2ce09b19 4864}
5fb1199a 4865var _204=[];
2ce09b19 4866for(var i=0;i<nTicks;i++){
5fb1199a
DV
4867var _205=low_val+i*_200;
4868var _206=self.round_(_205,2);
285a6bda 4869if(self.attr_("labelsKMB")){
b2a516b8 4870var k=1000;
5fb1199a
DV
4871if(_205>=k*k*k){
4872_206=self.round_(_205/(k*k*k),1)+"B";
b2a516b8 4873}else{
5fb1199a
DV
4874if(_205>=k*k){
4875_206=self.round_(_205/(k*k),1)+"M";
b2a516b8 4876}else{
5fb1199a
DV
4877if(_205>=k){
4878_206=self.round_(_205/k,1)+"K";
b2a516b8
DV
4879}
4880}
4881}
4882}
5fb1199a 4883_204.push({label:_206,v:_205});
b2a516b8 4884}
5fb1199a 4885return _204;
6a1aa64f 4886};
285a6bda 4887Dygraph.prototype.addYTicks_=function(minY,maxY){
5fb1199a
DV
4888var _210=Dygraph.numericTicks(minY,maxY,this);
4889this.layout_.updateOptions({yAxis:[minY,maxY],yTicks:_210});
6a1aa64f 4890};
5fb1199a 4891Dygraph.prototype.extremeValues_=function(_211){
e4007107 4892var minY=null,maxY=null;
b64a4f1a 4893var bars=this.attr_("errorBars")||this.attr_("customBars");
648acd28 4894if(bars){
5fb1199a
DV
4895for(var j=0;j<_211.length;j++){
4896var y=_211[j][1][0];
648acd28
DV
4897if(!y){
4898continue;
e4007107 4899}
5fb1199a
DV
4900var low=y-_211[j][1][1];
4901var high=y+_211[j][1][2];
648acd28
DV
4902if(low>y){
4903low=y;
b2a516b8 4904}
648acd28
DV
4905if(high<y){
4906high=y;
b2a516b8 4907}
648acd28
DV
4908if(maxY==null||high>maxY){
4909maxY=high;
285a6bda 4910}
648acd28
DV
4911if(minY==null||low<minY){
4912minY=low;
e4007107 4913}
285a6bda 4914}
b2a516b8 4915}else{
5fb1199a
DV
4916for(var j=0;j<_211.length;j++){
4917var y=_211[j][1];
648acd28
DV
4918if(!y){
4919continue;
285a6bda 4920}
b2a516b8 4921if(maxY==null||y>maxY){
285a6bda
DV
4922maxY=y;
4923}
e4007107
DV
4924if(minY==null||y<minY){
4925minY=y;
4926}
b2a516b8
DV
4927}
4928}
648acd28
DV
4929return [minY,maxY];
4930};
4931Dygraph.prototype.drawGraph_=function(data){
4932var minY=null,maxY=null;
4933this.layout_.removeAllDatasets();
4934this.setColors_();
9317362d 4935this.attrs_["pointSize"]=0.5*this.attr_("highlightCircleSize");
648acd28 4936for(var i=1;i<data[0].length;i++){
5fb1199a 4937var _215=[];
648acd28
DV
4938for(var j=0;j<data.length;j++){
4939var date=data[j][0];
5fb1199a 4940_215[j]=[date,data[j][i]];
648acd28 4941}
5fb1199a 4942_215=this.rollingAverage(_215,this.rollPeriod_);
b64a4f1a 4943var bars=this.attr_("errorBars")||this.attr_("customBars");
648acd28
DV
4944if(this.dateWindow_){
4945var low=this.dateWindow_[0];
4946var high=this.dateWindow_[1];
5fb1199a
DV
4947var _216=[];
4948for(var k=0;k<_215.length;k++){
4949if(_215[k][0]>=low&&_215[k][0]<=high){
4950_216.push(_215[k]);
648acd28
DV
4951}
4952}
5fb1199a 4953_215=_216;
648acd28 4954}
5fb1199a
DV
4955var _217=this.extremeValues_(_215);
4956var _218=_217[0];
4957var _219=_217[1];
4958if(!minY||_218<minY){
4959minY=_218;
648acd28 4960}
5fb1199a
DV
4961if(!maxY||_219>maxY){
4962maxY=_219;
b2a516b8
DV
4963}
4964if(bars){
4965var vals=[];
5fb1199a
DV
4966for(var j=0;j<_215.length;j++){
4967vals[j]=[_215[j][0],_215[j][1][0],_215[j][1][1],_215[j][1][2]];
b2a516b8 4968}
285a6bda 4969this.layout_.addDataset(this.attr_("labels")[i],vals);
b2a516b8 4970}else{
5fb1199a 4971this.layout_.addDataset(this.attr_("labels")[i],_215);
b2a516b8
DV
4972}
4973}
4974if(this.valueRange_!=null){
4975this.addYTicks_(this.valueRange_[0],this.valueRange_[1]);
4976}else{
e4007107 4977var span=maxY-minY;
5fb1199a
DV
4978var _222=maxY+0.1*span;
4979var _223=minY-0.1*span;
4980if(_223<0&&minY>=0){
4981_223=0;
e4007107 4982}
5fb1199a
DV
4983if(_222>0&&maxY<=0){
4984_222=0;
e4007107
DV
4985}
4986if(this.attr_("includeZero")){
4987if(maxY<0){
5fb1199a 4988_222=0;
e4007107
DV
4989}
4990if(minY>0){
5fb1199a 4991_223=0;
e4007107 4992}
b2a516b8 4993}
5fb1199a 4994this.addYTicks_(_223,_222);
b2a516b8
DV
4995}
4996this.addXTicks_();
4997this.layout_.evaluateWithError();
4998this.plotter_.clear();
4999this.plotter_.render();
5000this.canvas_.getContext("2d").clearRect(0,0,this.canvas_.width,this.canvas_.height);
6a1aa64f 5001};
5fb1199a
DV
5002Dygraph.prototype.rollingAverage=function(_224,_225){
5003if(_224.length<2){
5004return _224;
b2a516b8 5005}
5fb1199a
DV
5006var _225=Math.min(_225,_224.length-1);
5007var _226=[];
5008var _227=this.attr_("sigma");
b2a516b8
DV
5009if(this.fractions_){
5010var num=0;
5011var den=0;
5012var mult=100;
5fb1199a
DV
5013for(var i=0;i<_224.length;i++){
5014num+=_224[i][1][0];
5015den+=_224[i][1][1];
5016if(i-_225>=0){
5017num-=_224[i-_225][1][0];
5018den-=_224[i-_225][1][1];
5019}
5020var date=_224[i][0];
5021var _230=den?num/den:0;
285a6bda 5022if(this.attr_("errorBars")){
b2a516b8
DV
5023if(this.wilsonInterval_){
5024if(den){
5fb1199a
DV
5025var p=_230<0?0:_230,n=den;
5026var pm=_227*Math.sqrt(p*(1-p)/n+_227*_227/(4*n*n));
5027var _233=1+_227*_227/den;
5028var low=(p+_227*_227/(2*den)-pm)/_233;
5029var high=(p+_227*_227/(2*den)+pm)/_233;
5030_226[i]=[date,[p*mult,(p-low)*mult,(high-p)*mult]];
b2a516b8 5031}else{
5fb1199a 5032_226[i]=[date,[0,0,0]];
b2a516b8
DV
5033}
5034}else{
5fb1199a
DV
5035var _234=den?_227*Math.sqrt(_230*(1-_230)/den):1;
5036_226[i]=[date,[mult*_230,mult*_234,mult*_234]];
b2a516b8
DV
5037}
5038}else{
5fb1199a 5039_226[i]=[date,mult*_230];
b2a516b8
DV
5040}
5041}
5042}else{
b64a4f1a 5043if(this.attr_("customBars")){
6372d433
DV
5044var low=0;
5045var mid=0;
5046var high=0;
5fb1199a
DV
5047var _236=0;
5048for(var i=0;i<_224.length;i++){
5049var data=_224[i][1];
b2a516b8 5050var y=data[1];
5fb1199a 5051_226[i]=[_224[i][0],[y,y-data[0],data[2]-y]];
6372d433
DV
5052low+=data[0];
5053mid+=y;
5054high+=data[2];
5fb1199a
DV
5055_236+=1;
5056if(i-_225>=0){
5057var prev=_224[i-_225];
6372d433
DV
5058low-=prev[1][0];
5059mid-=prev[1][1];
5060high-=prev[1][2];
5fb1199a 5061_236-=1;
6372d433 5062}
5fb1199a 5063_226[i]=[_224[i][0],[1*mid/_236,1*(mid-low)/_236,1*(high-mid)/_236]];
6372d433
DV
5064}
5065}else{
5fb1199a 5066var _238=Math.min(_225-1,_224.length-2);
285a6bda 5067if(!this.attr_("errorBars")){
5fb1199a
DV
5068if(_225==1){
5069return _224;
648acd28 5070}
5fb1199a 5071for(var i=0;i<_224.length;i++){
b2a516b8 5072var sum=0;
5fb1199a
DV
5073var _240=0;
5074for(var j=Math.max(0,i-_225+1);j<i+1;j++){
5075var y=_224[j][1];
648acd28
DV
5076if(!y||isNaN(y)){
5077continue;
b2a516b8 5078}
5fb1199a
DV
5079_240++;
5080sum+=_224[j][1];
648acd28 5081}
5fb1199a
DV
5082if(_240){
5083_226[i]=[_224[i][0],sum/_240];
648acd28 5084}else{
5fb1199a 5085_226[i]=[_224[i][0],null];
b2a516b8 5086}
648acd28 5087}
2847c1cf 5088}else{
5fb1199a 5089for(var i=0;i<_224.length;i++){
b2a516b8 5090var sum=0;
5fb1199a
DV
5091var _241=0;
5092var _240=0;
5093for(var j=Math.max(0,i-_225+1);j<i+1;j++){
5094var y=_224[j][1][0];
648acd28
DV
5095if(!y||isNaN(y)){
5096continue;
b2a516b8 5097}
5fb1199a
DV
5098_240++;
5099sum+=_224[j][1][0];
5100_241+=Math.pow(_224[j][1][1],2);
b2a516b8 5101}
5fb1199a
DV
5102if(_240){
5103var _234=Math.sqrt(_241)/_240;
5104_226[i]=[_224[i][0],[sum/_240,_227*_234,_227*_234]];
648acd28 5105}else{
5fb1199a 5106_226[i]=[_224[i][0],[null,null,null]];
b2a516b8
DV
5107}
5108}
5109}
648acd28
DV
5110}
5111}
5fb1199a 5112return _226;
6a1aa64f 5113};
5fb1199a
DV
5114Dygraph.dateParser=function(_242,self){
5115var _243;
285a6bda 5116var d;
5fb1199a
DV
5117if(_242.length==10&&_242.search("-")!=-1){
5118_243=_242.replace("-","/","g");
5119while(_243.search("-")!=-1){
5120_243=_243.replace("-","/");
353a0294 5121}
5fb1199a 5122d=Date.parse(_243);
b2a516b8 5123}else{
5fb1199a
DV
5124if(_242.length==8){
5125_243=_242.substr(0,4)+"/"+_242.substr(4,2)+"/"+_242.substr(6,2);
5126d=Date.parse(_243);
8846615a 5127}else{
5fb1199a 5128d=Date.parse(_242);
285a6bda 5129}
b2a516b8 5130}
285a6bda 5131if(!d||isNaN(d)){
5fb1199a 5132self.error("Couldn't parse "+_242+" as a date");
b2a516b8 5133}
285a6bda 5134return d;
6a1aa64f 5135};
285a6bda 5136Dygraph.prototype.detectTypeFromString_=function(str){
5fb1199a 5137var _245=false;
285a6bda 5138if(str.indexOf("-")>=0||str.indexOf("/")>=0||isNaN(parseFloat(str))){
5fb1199a 5139_245=true;
285a6bda
DV
5140}else{
5141if(str.length==8&&str>"19700101"&&str<"20371231"){
5fb1199a 5142_245=true;
285a6bda
DV
5143}
5144}
5fb1199a 5145if(_245){
285a6bda
DV
5146this.attrs_.xValueFormatter=Dygraph.dateString_;
5147this.attrs_.xValueParser=Dygraph.dateParser;
5148this.attrs_.xTicker=Dygraph.dateTicker;
5149}else{
5150this.attrs_.xValueFormatter=function(x){
5151return x;
5152};
5153this.attrs_.xValueParser=function(x){
5154return parseFloat(x);
5155};
5156this.attrs_.xTicker=Dygraph.numericTicks;
5157}
5158};
5159Dygraph.prototype.parseCSV_=function(data){
b2a516b8 5160var ret=[];
5fb1199a
DV
5161var _246=data.split("\n");
5162var _247=0;
b2a516b8 5163if(this.labelsFromCSV_){
5fb1199a
DV
5164_247=1;
5165this.attrs_.labels=_246[0].split(",");
5166}
5167var _248;
5168var _249=false;
5169var _250=this.attr_("labels").length;
5170for(var i=_247;i<_246.length;i++){
5171var line=_246[i];
b2a516b8
DV
5172if(line.length==0){
5173continue;
5174}
5fb1199a
DV
5175var _252=line.split(",");
5176if(_252.length<2){
b2a516b8
DV
5177continue;
5178}
5fb1199a
DV
5179var _253=[];
5180if(!_249){
5181this.detectTypeFromString_(_252[0]);
5182_248=this.attr_("xValueParser");
5183_249=true;
285a6bda 5184}
5fb1199a 5185_253[0]=_248(_252[0],this);
b2a516b8 5186if(this.fractions_){
5fb1199a
DV
5187for(var j=1;j<_252.length;j++){
5188var vals=_252[j].split("/");
5189_253[j]=[parseFloat(vals[0]),parseFloat(vals[1])];
b2a516b8
DV
5190}
5191}else{
285a6bda 5192if(this.attr_("errorBars")){
5fb1199a
DV
5193for(var j=1;j<_252.length;j+=2){
5194_253[(j+1)/2]=[parseFloat(_252[j]),parseFloat(_252[j+1])];
b2a516b8
DV
5195}
5196}else{
b64a4f1a 5197if(this.attr_("customBars")){
5fb1199a
DV
5198for(var j=1;j<_252.length;j++){
5199var vals=_252[j].split(";");
5200_253[j]=[parseFloat(vals[0]),parseFloat(vals[1]),parseFloat(vals[2])];
b2a516b8
DV
5201}
5202}else{
5fb1199a
DV
5203for(var j=1;j<_252.length;j++){
5204_253[j]=parseFloat(_252[j]);
285a6bda 5205}
b2a516b8
DV
5206}
5207}
5208}
5fb1199a
DV
5209ret.push(_253);
5210if(_253.length!=_250){
5211this.error("Number of columns in line "+i+" ("+_253.length+") does not agree with number of labels ("+_250+") "+line);
b2a516b8 5212}
b2a516b8
DV
5213}
5214return ret;
6a1aa64f 5215};
285a6bda
DV
5216Dygraph.prototype.parseArray_=function(data){
5217if(data.length==0){
5218this.error("Can't plot empty data set");
5219return null;
5220}
5221if(data[0].length==0){
5222this.error("Data set cannot contain an empty row");
5223return null;
5224}
5225if(this.attr_("labels")==null){
5226this.warn("Using default labels. Set labels explicitly via 'labels' "+"in the options parameter");
5227this.attrs_.labels=["X"];
5228for(var i=1;i<data[0].length;i++){
5229this.attrs_.labels.push("Y"+i);
5230}
5231}
5232if(MochiKit.Base.isDateLike(data[0][0])){
5233this.attrs_.xValueFormatter=Dygraph.dateString_;
5234this.attrs_.xTicker=Dygraph.dateTicker;
5fb1199a 5235var _254=MochiKit.Base.clone(data);
285a6bda 5236for(var i=0;i<data.length;i++){
5fb1199a 5237if(_254[i].length==0){
285a6bda
DV
5238this.error("Row "<<(1+i)<<" of data is empty");
5239return null;
5240}
5fb1199a 5241if(_254[i][0]==null||typeof (_254[i][0].getTime)!="function"){
285a6bda
DV
5242this.error("x value in row "<<(1+i)<<" is not a Date");
5243return null;
5244}
5fb1199a 5245_254[i][0]=_254[i][0].getTime();
285a6bda 5246}
5fb1199a 5247return _254;
285a6bda
DV
5248}else{
5249this.attrs_.xValueFormatter=function(x){
5250return x;
5251};
5252this.attrs_.xTicker=Dygraph.numericTicks;
5253return data;
5254}
5255};
5256Dygraph.prototype.parseDataTable_=function(data){
6219c9d6
DV
5257var cols=data.getNumberOfColumns();
5258var rows=data.getNumberOfRows();
5fb1199a 5259var _257=[];
6219c9d6 5260for(var i=0;i<cols;i++){
5fb1199a 5261_257.push(data.getColumnLabel(i));
6219c9d6 5262}
5fb1199a
DV
5263this.attrs_.labels=_257;
5264var _258=data.getColumnType(0);
5265if(_258=="date"){
285a6bda
DV
5266this.attrs_.xValueFormatter=Dygraph.dateString_;
5267this.attrs_.xValueParser=Dygraph.dateParser;
5268this.attrs_.xTicker=Dygraph.dateTicker;
5269}else{
5fb1199a 5270if(_258=="number"){
285a6bda
DV
5271this.attrs_.xValueFormatter=function(x){
5272return x;
5273};
5274this.attrs_.xValueParser=function(x){
5275return parseFloat(x);
5276};
5277this.attrs_.xTicker=Dygraph.numericTicks;
5278}else{
5fb1199a 5279this.error("only 'date' and 'number' types are supported for column 1 "+"of DataTable input (Got '"+_258+"')");
6219c9d6
DV
5280return null;
5281}
285a6bda 5282}
6219c9d6
DV
5283var ret=[];
5284for(var i=0;i<rows;i++){
5285var row=[];
b3b20e24
DV
5286if(!data.getValue(i,0)){
5287continue;
5288}
5fb1199a 5289if(_258=="date"){
6219c9d6 5290row.push(data.getValue(i,0).getTime());
36615faf
DV
5291}else{
5292row.push(data.getValue(i,0));
5293}
6219c9d6
DV
5294for(var j=1;j<cols;j++){
5295row.push(data.getValue(i,j));
5296}
5297ret.push(row);
5298}
5299return ret;
5300};
285a6bda 5301Dygraph.prototype.start_=function(){
b2a516b8
DV
5302if(typeof this.file_=="function"){
5303this.loadedEvent_(this.file_());
5304}else{
285a6bda
DV
5305if(MochiKit.Base.isArrayLike(this.file_)){
5306this.rawData_=this.parseArray_(this.file_);
5307this.drawGraph_(this.rawData_);
5308}else{
6219c9d6
DV
5309if(typeof this.file_=="object"&&typeof this.file_.getColumnRange=="function"){
5310this.rawData_=this.parseDataTable_(this.file_);
5311this.drawGraph_(this.rawData_);
5312}else{
285a6bda
DV
5313if(typeof this.file_=="string"){
5314if(this.file_.indexOf("\n")>=0){
5315this.loadedEvent_(this.file_);
5316}else{
b2a516b8 5317var req=new XMLHttpRequest();
5fb1199a 5318var _261=this;
b2a516b8
DV
5319req.onreadystatechange=function(){
5320if(req.readyState==4){
5321if(req.status==200){
5fb1199a 5322_261.loadedEvent_(req.responseText);
b2a516b8
DV
5323}
5324}
6a1aa64f 5325};
b2a516b8
DV
5326req.open("GET",this.file_,true);
5327req.send(null);
5328}
285a6bda
DV
5329}else{
5330this.error("Unknown data format: "+(typeof this.file_));
6219c9d6 5331}
b2a516b8 5332}
b2a516b8 5333}
b2a516b8 5334}
285a6bda 5335};
5fb1199a
DV
5336Dygraph.prototype.updateOptions=function(_262){
5337if(_262.rollPeriod){
5338this.rollPeriod_=_262.rollPeriod;
b2a516b8 5339}
5fb1199a
DV
5340if(_262.dateWindow){
5341this.dateWindow_=_262.dateWindow;
b2a516b8 5342}
5fb1199a
DV
5343if(_262.valueRange){
5344this.valueRange_=_262.valueRange;
b2a516b8 5345}
5fb1199a 5346MochiKit.Base.update(this.user_attrs_,_262);
285a6bda
DV
5347this.labelsFromCSV_=(this.attr_("labels")==null);
5348this.layout_.updateOptions({"errorBars":this.attr_("errorBars")});
5fb1199a
DV
5349if(_262["file"]&&_262["file"]!=this.file_){
5350this.file_=_262["file"];
b2a516b8
DV
5351this.start_();
5352}else{
5353this.drawGraph_(this.rawData_);
5354}
6a1aa64f 5355};
5fb1199a
DV
5356Dygraph.prototype.adjustRoll=function(_263){
5357this.rollPeriod_=_263;
b2a516b8 5358this.drawGraph_(this.rawData_);
6a1aa64f 5359};
5fb1199a
DV
5360Dygraph.GVizChart=function(_264){
5361this.container=_264;
6219c9d6 5362};
5fb1199a 5363Dygraph.GVizChart.prototype.draw=function(data,_265){
6219c9d6 5364this.container.innerHTML="";
5fb1199a 5365this.date_graph=new Dygraph(this.container,data,_265);
6219c9d6 5366};
285a6bda 5367DateGraph=Dygraph;
b2a516b8 5368