You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by js...@apache.org on 2009/03/19 11:37:20 UTC

svn commit: r755904 [7/40] - in /camel/trunk/components/camel-web/src/main/webapp/js/dojox: ./ analytics/ analytics/logger/ analytics/plugins/ analytics/profiles/ atom/ atom/io/ atom/widget/ atom/widget/nls/ atom/widget/nls/cs/ atom/widget/nls/de/ atom...

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/plot3d/Base.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/plot3d/Base.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/plot3d/Base.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/plot3d/Base.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,22 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.plot3d.Base"]){
+dojo._hasResource["dojox.charting.plot3d.Base"]=true;
+dojo.provide("dojox.charting.plot3d.Base");
+dojo.require("dojox.charting.Chart3D");
+dojo.declare("dojox.charting.plot3d.Base",null,{constructor:function(_1,_2,_3){
+this.width=_1;
+this.height=_2;
+},setData:function(_4){
+this.data=_4?_4:[];
+return this;
+},getDepth:function(){
+return this.depth;
+},generate:function(_5,_6){
+}});
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/plot3d/Base.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/plot3d/Cylinders.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/plot3d/Cylinders.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/plot3d/Cylinders.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/plot3d/Cylinders.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,68 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.plot3d.Cylinders"]){
+dojo._hasResource["dojox.charting.plot3d.Cylinders"]=true;
+dojo.provide("dojox.charting.plot3d.Cylinders");
+dojo.require("dojox.charting.plot3d.Base");
+(function(){
+var _1=function(a,f,o){
+a=typeof a=="string"?a.split(""):a;
+o=o||dojo.global;
+var z=a[0];
+for(var i=1;i<a.length;z=f.call(o,z,a[i++])){
+}
+return z;
+};
+dojo.declare("dojox.charting.plot3d.Cylinders",dojox.charting.plot3d.Base,{constructor:function(_7,_8,_9){
+this.depth="auto";
+this.gap=0;
+this.data=[];
+this.material={type:"plastic",finish:"shiny",color:"lime"};
+this.outline=null;
+if(_9){
+if("depth" in _9){
+this.depth=_9.depth;
+}
+if("gap" in _9){
+this.gap=_9.gap;
+}
+if("material" in _9){
+var m=_9.material;
+if(typeof m=="string"||m instanceof dojo.Color){
+this.material.color=m;
+}else{
+this.material=m;
+}
+}
+if("outline" in _9){
+this.outline=_9.outline;
+}
+}
+},getDepth:function(){
+if(this.depth=="auto"){
+var w=this.width;
+if(this.data&&this.data.length){
+w=w/this.data.length;
+}
+return w-2*this.gap;
+}
+return this.depth;
+},generate:function(_c,_d){
+if(!this.data){
+return this;
+}
+var _e=this.width/this.data.length,_f=0,_10=this.height/_1(this.data,Math.max);
+if(!_d){
+_d=_c.view;
+}
+for(var i=0;i<this.data.length;++i,_f+=_e){
+_d.createCylinder({center:{x:_f+_e/2,y:0,z:0},radius:_e/2-this.gap,height:this.data[i]*_10}).setTransform(dojox.gfx3d.matrix.rotateXg(-90)).setFill(this.material).setStroke(this.outline);
+}
+}});
+})();
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/plot3d/Cylinders.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/scaler/common.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/scaler/common.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/scaler/common.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/scaler/common.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,56 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.scaler.common"]){
+dojo._hasResource["dojox.charting.scaler.common"]=true;
+dojo.provide("dojox.charting.scaler.common");
+(function(){
+var eq=function(a,b){
+return Math.abs(a-b)<=0.000001*(Math.abs(a)+Math.abs(b));
+};
+dojo.mixin(dojox.charting.scaler.common,{findString:function(_4,_5){
+_4=_4.toLowerCase();
+for(var i=0;i<_5.length;++i){
+if(_4==_5[i]){
+return true;
+}
+}
+return false;
+},getNumericLabel:function(_7,_8,_9){
+var _a=_9.fixed?_7.toFixed(_8<0?-_8:0):_7.toString();
+if(_9.labelFunc){
+var r=_9.labelFunc(_a,_7,_8);
+if(r){
+return r;
+}
+}
+if(_9.labels){
+var l=_9.labels,lo=0,hi=l.length;
+while(lo<hi){
+var _f=Math.floor((lo+hi)/2),val=l[_f].value;
+if(val<_7){
+lo=_f+1;
+}else{
+hi=_f;
+}
+}
+if(lo<l.length&&eq(l[lo].value,_7)){
+return l[lo].text;
+}
+--lo;
+if(lo>=0&&lo<l.length&&eq(l[lo].value,_7)){
+return l[lo].text;
+}
+lo+=2;
+if(lo<l.length&&eq(l[lo].value,_7)){
+return l[lo].text;
+}
+}
+return _a;
+}});
+})();
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/scaler/common.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/scaler/linear.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/scaler/linear.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/scaler/linear.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/scaler/linear.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,217 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.scaler.linear"]){
+dojo._hasResource["dojox.charting.scaler.linear"]=true;
+dojo.provide("dojox.charting.scaler.linear");
+dojo.require("dojox.charting.scaler.common");
+(function(){
+var _1=3,dc=dojox.charting,_3=dc.scaler,_4=_3.common,_5=_4.findString,_6=_4.getNumericLabel;
+var _7=function(_8,_9,_a,_b,_c,_d,_e){
+_a=dojo.delegate(_a);
+if(!_b){
+if(_a.fixUpper=="major"){
+_a.fixUpper="minor";
+}
+if(_a.fixLower=="major"){
+_a.fixLower="minor";
+}
+}
+if(!_c){
+if(_a.fixUpper=="minor"){
+_a.fixUpper="micro";
+}
+if(_a.fixLower=="minor"){
+_a.fixLower="micro";
+}
+}
+if(!_d){
+if(_a.fixUpper=="micro"){
+_a.fixUpper="none";
+}
+if(_a.fixLower=="micro"){
+_a.fixLower="none";
+}
+}
+var _f=_5(_a.fixLower,["major"])?Math.floor(_a.min/_b)*_b:_5(_a.fixLower,["minor"])?Math.floor(_a.min/_c)*_c:_5(_a.fixLower,["micro"])?Math.floor(_a.min/_d)*_d:_a.min,_10=_5(_a.fixUpper,["major"])?Math.ceil(_a.max/_b)*_b:_5(_a.fixUpper,["minor"])?Math.ceil(_a.max/_c)*_c:_5(_a.fixUpper,["micro"])?Math.ceil(_a.max/_d)*_d:_a.max;
+if(_a.useMin){
+_8=_f;
+}
+if(_a.useMax){
+_9=_10;
+}
+var _11=(!_b||_a.useMin&&_5(_a.fixLower,["major"]))?_8:Math.ceil(_8/_b)*_b,_12=(!_c||_a.useMin&&_5(_a.fixLower,["major","minor"]))?_8:Math.ceil(_8/_c)*_c,_13=(!_d||_a.useMin&&_5(_a.fixLower,["major","minor","micro"]))?_8:Math.ceil(_8/_d)*_d,_14=!_b?0:(_a.useMax&&_5(_a.fixUpper,["major"])?Math.round((_9-_11)/_b):Math.floor((_9-_11)/_b))+1,_15=!_c?0:(_a.useMax&&_5(_a.fixUpper,["major","minor"])?Math.round((_9-_12)/_c):Math.floor((_9-_12)/_c))+1,_16=!_d?0:(_a.useMax&&_5(_a.fixUpper,["major","minor","micro"])?Math.round((_9-_13)/_d):Math.floor((_9-_13)/_d))+1,_17=_c?Math.round(_b/_c):0,_18=_d?Math.round(_c/_d):0,_19=_b?Math.floor(Math.log(_b)/Math.LN10):0,_1a=_c?Math.floor(Math.log(_c)/Math.LN10):0,_1b=_e/(_9-_8);
+if(!isFinite(_1b)){
+_1b=1;
+}
+return {bounds:{lower:_f,upper:_10,from:_8,to:_9,scale:_1b,span:_e},major:{tick:_b,start:_11,count:_14,prec:_19},minor:{tick:_c,start:_12,count:_15,prec:_1a},micro:{tick:_d,start:_13,count:_16,prec:0},minorPerMajor:_17,microPerMinor:_18,scaler:_3.linear};
+};
+dojo.mixin(dojox.charting.scaler.linear,{buildScaler:function(min,max,_1e,_1f){
+var h={fixUpper:"none",fixLower:"none",natural:false};
+if(_1f){
+if("fixUpper" in _1f){
+h.fixUpper=String(_1f.fixUpper);
+}
+if("fixLower" in _1f){
+h.fixLower=String(_1f.fixLower);
+}
+if("natural" in _1f){
+h.natural=Boolean(_1f.natural);
+}
+}
+if("min" in _1f){
+min=_1f.min;
+}
+if("max" in _1f){
+max=_1f.max;
+}
+if(_1f.includeZero){
+if(min>0){
+min=0;
+}
+if(max<0){
+max=0;
+}
+}
+h.min=min;
+h.useMin=true;
+h.max=max;
+h.useMax=true;
+if("from" in _1f){
+min=_1f.from;
+h.useMin=false;
+}
+if("to" in _1f){
+max=_1f.to;
+h.useMax=false;
+}
+if(max<=min){
+return _7(min,max,h,0,0,0,_1e);
+}
+var mag=Math.floor(Math.log(max-min)/Math.LN10),_22=_1f&&("majorTickStep" in _1f)?_1f.majorTickStep:Math.pow(10,mag),_23=0,_24=0,_25;
+if(_1f&&("minorTickStep" in _1f)){
+_23=_1f.minorTickStep;
+}else{
+do{
+_23=_22/10;
+if(!h.natural||_23>0.9){
+_25=_7(min,max,h,_22,_23,0,_1e);
+if(_25.bounds.scale*_25.minor.tick>_1){
+break;
+}
+}
+_23=_22/5;
+if(!h.natural||_23>0.9){
+_25=_7(min,max,h,_22,_23,0,_1e);
+if(_25.bounds.scale*_25.minor.tick>_1){
+break;
+}
+}
+_23=_22/2;
+if(!h.natural||_23>0.9){
+_25=_7(min,max,h,_22,_23,0,_1e);
+if(_25.bounds.scale*_25.minor.tick>_1){
+break;
+}
+}
+return _7(min,max,h,_22,0,0,_1e);
+}while(false);
+}
+if(_1f&&("microTickStep" in _1f)){
+_24=_1f.microTickStep;
+_25=_7(min,max,h,_22,_23,_24,_1e);
+}else{
+do{
+_24=_23/10;
+if(!h.natural||_24>0.9){
+_25=_7(min,max,h,_22,_23,_24,_1e);
+if(_25.bounds.scale*_25.micro.tick>_1){
+break;
+}
+}
+_24=_23/5;
+if(!h.natural||_24>0.9){
+_25=_7(min,max,h,_22,_23,_24,_1e);
+if(_25.bounds.scale*_25.micro.tick>_1){
+break;
+}
+}
+_24=_23/2;
+if(!h.natural||_24>0.9){
+_25=_7(min,max,h,_22,_23,_24,_1e);
+if(_25.bounds.scale*_25.micro.tick>_1){
+break;
+}
+}
+_24=0;
+}while(false);
+}
+return _24?_25:_7(min,max,h,_22,_23,0,_1e);
+},buildTicks:function(_26,_27){
+var _28,_29,_2a,_2b=_26.major.start,_2c=_26.minor.start,_2d=_26.micro.start;
+if(_27.microTicks&&_26.micro.tick){
+_28=_26.micro.tick,_29=_2d;
+}else{
+if(_27.minorTicks&&_26.minor.tick){
+_28=_26.minor.tick,_29=_2c;
+}else{
+if(_26.major.tick){
+_28=_26.major.tick,_29=_2b;
+}else{
+return null;
+}
+}
+}
+var _2e=1/_26.bounds.scale;
+if(_26.bounds.to<=_26.bounds.from||isNaN(_2e)||!isFinite(_2e)||_28<=0||isNaN(_28)||!isFinite(_28)){
+return null;
+}
+var _2f=[],_30=[],_31=[];
+while(_29<=_26.bounds.to+_2e){
+if(Math.abs(_2b-_29)<_28/2){
+_2a={value:_2b};
+if(_27.majorLabels){
+_2a.label=_6(_2b,_26.major.prec,_27);
+}
+_2f.push(_2a);
+_2b+=_26.major.tick;
+_2c+=_26.minor.tick;
+_2d+=_26.micro.tick;
+}else{
+if(Math.abs(_2c-_29)<_28/2){
+if(_27.minorTicks){
+_2a={value:_2c};
+if(_27.minorLabels&&(_26.minMinorStep<=_26.minor.tick*_26.bounds.scale)){
+_2a.label=_6(_2c,_26.minor.prec,_27);
+}
+_30.push(_2a);
+}
+_2c+=_26.minor.tick;
+_2d+=_26.micro.tick;
+}else{
+if(_27.microTicks){
+_31.push({value:_2d});
+}
+_2d+=_26.micro.tick;
+}
+}
+_29+=_28;
+}
+return {major:_2f,minor:_30,micro:_31};
+},getTransformerFromModel:function(_32){
+var _33=_32.bounds.from,_34=_32.bounds.scale;
+return function(x){
+return (x-_33)*_34;
+};
+},getTransformerFromPlot:function(_36){
+var _37=_36.bounds.from,_38=_36.bounds.scale;
+return function(x){
+return x/_38+_37;
+};
+}});
+})();
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/scaler/linear.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/scaler/primitive.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/scaler/primitive.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/scaler/primitive.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/scaler/primitive.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,26 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.scaler.primitive"]){
+dojo._hasResource["dojox.charting.scaler.primitive"]=true;
+dojo.provide("dojox.charting.scaler.primitive");
+dojox.charting.scaler.primitive={buildScaler:function(_1,_2,_3,_4){
+return {bounds:{lower:_1,upper:_2,from:_1,to:_2,scale:_3/(_2-_1),span:_3},scaler:dojox.charting.scaler.primitive};
+},buildTicks:function(_5,_6){
+return {major:[],minor:[],micro:[]};
+},getTransformerFromModel:function(_7){
+var _8=_7.bounds.from,_9=_7.bounds.scale;
+return function(x){
+return (x-_8)*_9;
+};
+},getTransformerFromPlot:function(_b){
+var _c=_b.bounds.from,_d=_b.bounds.scale;
+return function(x){
+return x/_d+_c;
+};
+}};
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/scaler/primitive.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Adobebricks.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Adobebricks.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Adobebricks.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Adobebricks.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,16 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.Adobebricks"]){
+dojo._hasResource["dojox.charting.themes.Adobebricks"]=true;
+dojo.provide("dojox.charting.themes.Adobebricks");
+dojo.require("dojox.charting.Theme");
+(function(){
+var _1=dojox.charting;
+_1.themes.Adobebricks=new _1.Theme({colors:["#7f2518","#3e170c","#cc3927","#651f0e","#8c271c"]});
+})();
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Adobebricks.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Algae.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Algae.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Algae.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Algae.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,16 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.Algae"]){
+dojo._hasResource["dojox.charting.themes.Algae"]=true;
+dojo.provide("dojox.charting.themes.Algae");
+dojo.require("dojox.charting.Theme");
+(function(){
+var _1=dojox.charting;
+_1.themes.Algae=new _1.Theme({colors:["#57808f","#506885","#4f7878","#558f7f","#508567"]});
+})();
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Algae.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Bahamation.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Bahamation.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Bahamation.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Bahamation.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,16 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.Bahamation"]){
+dojo._hasResource["dojox.charting.themes.Bahamation"]=true;
+dojo.provide("dojox.charting.themes.Bahamation");
+dojo.require("dojox.charting.Theme");
+(function(){
+var _1=dojox.charting;
+_1.themes.Bahamation=new _1.Theme({colors:["#3f9998","#3fc0c3","#70c058","#ef446f","#c663a6"]});
+})();
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Bahamation.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/BlueDusk.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/BlueDusk.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/BlueDusk.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/BlueDusk.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,16 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.BlueDusk"]){
+dojo._hasResource["dojox.charting.themes.BlueDusk"]=true;
+dojo.provide("dojox.charting.themes.BlueDusk");
+dojo.require("dojox.charting.Theme");
+(function(){
+var _1=dojox.charting;
+_1.themes.BlueDusk=new _1.Theme({colors:["#292e76","#3e56a6","#10143f","#33449c","#798dcd"]});
+})();
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/BlueDusk.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/CubanShirts.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/CubanShirts.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/CubanShirts.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/CubanShirts.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,16 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.CubanShirts"]){
+dojo._hasResource["dojox.charting.themes.CubanShirts"]=true;
+dojo.provide("dojox.charting.themes.CubanShirts");
+dojo.require("dojox.charting.Theme");
+(function(){
+var _1=dojox.charting;
+_1.themes.CubanShirts=new _1.Theme({colors:["#d42d2a","#004f80","#989736","#2085c7","#7f7f33"]});
+})();
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/CubanShirts.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Desert.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Desert.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Desert.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Desert.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,16 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.Desert"]){
+dojo._hasResource["dojox.charting.themes.Desert"]=true;
+dojo.provide("dojox.charting.themes.Desert");
+dojo.require("dojox.charting.Theme");
+(function(){
+var _1=dojox.charting;
+_1.themes.Desert=new _1.Theme({colors:["#ffebd5","#806544","#fdc888","#80766b","#cda26e"]});
+})();
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Desert.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Dollar.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Dollar.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Dollar.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Dollar.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,16 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.Dollar"]){
+dojo._hasResource["dojox.charting.themes.Dollar"]=true;
+dojo.provide("dojox.charting.themes.Dollar");
+dojo.require("dojox.charting.Theme");
+(function(){
+var _1=dojox.charting;
+_1.themes.Dollar=new _1.Theme({colors:["#A4CE67","#739363","#6B824A","#343434","#636563"]});
+})();
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Dollar.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/ET/greys.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/ET/greys.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/ET/greys.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/ET/greys.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,17 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.ET.greys"]){
+dojo._hasResource["dojox.charting.themes.ET.greys"]=true;
+dojo.provide("dojox.charting.themes.ET.greys");
+dojo.require("dojox.charting.Theme");
+dojo.deprecated("dojox.charting.themes.ET.greys","1.3");
+(function(){
+var _1=dojox.charting;
+_1.themes.ET.greys=new _1.Theme({antiAlias:false,chart:{stroke:null,fill:"inherit"},plotarea:{stroke:null,fill:"transparent"},axis:{stroke:{width:0},line:{width:0},majorTick:{color:"#666666",width:1,length:5},minorTick:{color:"black",width:0.5,length:2},font:"normal normal normal 8pt Tahoma",fontColor:"#999999"},series:{outline:{width:0,color:"black"},stroke:{width:1,color:"black"},fill:dojo.colorFromHex("#3b444b"),font:"normal normal normal 7pt Tahoma",fontColor:"#717171"},marker:{stroke:{width:1},fill:"#333",font:"normal normal normal 7pt Tahoma",fontColor:"#000"},colors:[dojo.colorFromHex("#8a8c8f"),dojo.colorFromHex("#4b4b4b"),dojo.colorFromHex("#3b444b"),dojo.colorFromHex("#2e2d30"),dojo.colorFromHex("#000000")]});
+})();
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/ET/greys.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Grasshopper.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Grasshopper.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Grasshopper.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Grasshopper.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,16 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.Grasshopper"]){
+dojo._hasResource["dojox.charting.themes.Grasshopper"]=true;
+dojo.provide("dojox.charting.themes.Grasshopper");
+dojo.require("dojox.charting.Theme");
+(function(){
+var _1=dojox.charting;
+_1.themes.Grasshopper=new _1.Theme({colors:["#208040","#40b657","#78c25e","#14401f","#64bd5f"]});
+})();
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Grasshopper.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Grasslands.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Grasslands.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Grasslands.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Grasslands.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,16 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.Grasslands"]){
+dojo._hasResource["dojox.charting.themes.Grasslands"]=true;
+dojo.provide("dojox.charting.themes.Grasslands");
+dojo.require("dojox.charting.Theme");
+(function(){
+var _1=dojox.charting;
+_1.themes.Grasslands=new _1.Theme({colors:["#70803a","#dde574","#788062","#b1cc5d","#eff2c2"]});
+})();
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Grasslands.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/GreySkies.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/GreySkies.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/GreySkies.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/GreySkies.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,16 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.GreySkies"]){
+dojo._hasResource["dojox.charting.themes.GreySkies"]=true;
+dojo.provide("dojox.charting.themes.GreySkies");
+dojo.require("dojox.charting.Theme");
+(function(){
+var _1=dojox.charting;
+_1.themes.GreySkies=new _1.Theme(_1.Theme._def);
+})();
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/GreySkies.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/IndigoNation.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/IndigoNation.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/IndigoNation.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/IndigoNation.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,16 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.IndigoNation"]){
+dojo._hasResource["dojox.charting.themes.IndigoNation"]=true;
+dojo.provide("dojox.charting.themes.IndigoNation");
+dojo.require("dojox.charting.Theme");
+(function(){
+var _1=dojox.charting;
+_1.themes.IndigoNation=new _1.Theme({colors:["#93a4d0","#3b4152","#687291","#9faed9","#8290b8"]});
+})();
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/IndigoNation.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Ireland.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Ireland.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Ireland.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Ireland.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,16 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.Ireland"]){
+dojo._hasResource["dojox.charting.themes.Ireland"]=true;
+dojo.provide("dojox.charting.themes.Ireland");
+dojo.require("dojox.charting.Theme");
+(function(){
+var _1=dojox.charting;
+_1.themes.Ireland=new _1.Theme({colors:["#abdbcb","#435a51","#70998b","#78q596","#5f8074"]});
+})();
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Ireland.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/MiamiNice.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/MiamiNice.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/MiamiNice.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/MiamiNice.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,16 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.MiamiNice"]){
+dojo._hasResource["dojox.charting.themes.MiamiNice"]=true;
+dojo.provide("dojox.charting.themes.MiamiNice");
+dojo.require("dojox.charting.Theme");
+(function(){
+var _1=dojox.charting;
+_1.themes.MiamiNice=new _1.Theme({colors:["#7f9599","#45b8cc","#8ecfb0","#f8acac","#cc4482"]});
+})();
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/MiamiNice.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Midwest.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Midwest.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Midwest.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Midwest.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,16 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.Midwest"]){
+dojo._hasResource["dojox.charting.themes.Midwest"]=true;
+dojo.provide("dojox.charting.themes.Midwest");
+dojo.require("dojox.charting.Theme");
+(function(){
+var _1=dojox.charting;
+_1.themes.Midwest=new _1.Theme({colors:["#927b51","#a89166","#80c31c","#bcdd5a","#aebc21"]});
+})();
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Midwest.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Minty.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Minty.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Minty.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Minty.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,16 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.Minty"]){
+dojo._hasResource["dojox.charting.themes.Minty"]=true;
+dojo.provide("dojox.charting.themes.Minty");
+dojo.require("dojox.charting.Theme");
+(function(){
+var _1=dojox.charting;
+_1.themes.Minty=new _1.Theme({colors:["#80ccbb","#539e8b","#335f54","#8dd1c2","#68c5ad"]});
+})();
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Minty.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/README
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/README?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/README (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/README Thu Mar 19 10:37:00 2009
@@ -0,0 +1,11 @@
+This directory contains a set of themes for the DojoX Charting 
+engine that are based on the visual stylings of the PlotKit
+chart kit, created by Alastair Tse:
+
+http://www.liquidx.net/plotkit/
+
+...whose work we admire.  Consider these themes to not be a 
+ripoff of his fine work, but instead a true homage: his charts
+are beautiful, and we stand in awe.
+
+--trt, 2007-06-08

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/README
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/blue.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/blue.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/blue.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/blue.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,17 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.PlotKit.blue"]){
+dojo._hasResource["dojox.charting.themes.PlotKit.blue"]=true;
+dojo.provide("dojox.charting.themes.PlotKit.blue");
+dojo.require("dojox.charting.Theme");
+(function(){
+var _1=dojox.charting;
+_1.themes.PlotKit.blue=new _1.Theme({chart:{stroke:null,fill:"white"},plotarea:{stroke:null,fill:"#e7eef6"},axis:{stroke:{color:"#fff",width:2},line:{color:"#fff",width:1},majorTick:{color:"#fff",width:2,length:12},minorTick:{color:"#fff",width:1,length:8},font:"normal normal normal 8pt Tahoma",fontColor:"#999"},series:{outline:{width:0.1,color:"#fff"},stroke:{width:1.5,color:"#666"},fill:new dojo.Color([102,102,102,0.8]),font:"normal normal normal 7pt Tahoma",fontColor:"#000"},marker:{stroke:{width:2},fill:"#333",font:"normal normal normal 7pt Tahoma",fontColor:"#000"},colors:[]});
+_1.themes.PlotKit.blue.defineColors({hue:217,saturation:60,low:40,high:88});
+})();
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/blue.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/cyan.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/cyan.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/cyan.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/cyan.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,17 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.PlotKit.cyan"]){
+dojo._hasResource["dojox.charting.themes.PlotKit.cyan"]=true;
+dojo.provide("dojox.charting.themes.PlotKit.cyan");
+dojo.require("dojox.charting.Theme");
+(function(){
+var _1=dojox.charting;
+_1.themes.PlotKit.cyan=new _1.Theme({chart:{stroke:null,fill:"white"},plotarea:{stroke:null,fill:"#e6f1f5"},axis:{stroke:{color:"#fff",width:2},line:{color:"#fff",width:1},majorTick:{color:"#fff",width:2,length:12},minorTick:{color:"#fff",width:1,length:8},font:"normal normal normal 8pt Tahoma",fontColor:"#999"},series:{outline:{width:1,color:"#fff"},stroke:{width:2,color:"#666"},fill:new dojo.Color([102,102,102,0.8]),font:"normal normal normal 7pt Tahoma",fontColor:"#000"},marker:{stroke:{width:2},fill:"#333",font:"normal normal normal 7pt Tahoma",fontColor:"#000"},colors:[]});
+_1.themes.PlotKit.cyan.defineColors({hue:194,saturation:60,low:40,high:88});
+})();
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/cyan.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/green.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/green.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/green.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/green.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,17 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.PlotKit.green"]){
+dojo._hasResource["dojox.charting.themes.PlotKit.green"]=true;
+dojo.provide("dojox.charting.themes.PlotKit.green");
+dojo.require("dojox.charting.Theme");
+(function(){
+var _1=dojox.charting;
+_1.themes.PlotKit.green=new _1.Theme({chart:{stroke:null,fill:"white"},plotarea:{stroke:null,fill:"#eff5e6"},axis:{stroke:{color:"#fff",width:2},line:{color:"#fff",width:1},majorTick:{color:"#fff",width:2,length:12},minorTick:{color:"#fff",width:1,length:8},font:"normal normal normal 8pt Tahoma",fontColor:"#999"},series:{outline:{width:1,color:"#fff"},stroke:{width:2,color:"#666"},fill:new dojo.Color([102,102,102,0.8]),font:"normal normal normal 7pt Tahoma",fontColor:"#000"},marker:{stroke:{width:2},fill:"#333",font:"normal normal normal 7pt Tahoma",fontColor:"#000"},colors:[]});
+_1.themes.PlotKit.green.defineColors({hue:82,saturation:60,low:40,high:88});
+})();
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/green.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/orange.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/orange.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/orange.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/orange.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,17 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.PlotKit.orange"]){
+dojo._hasResource["dojox.charting.themes.PlotKit.orange"]=true;
+dojo.provide("dojox.charting.themes.PlotKit.orange");
+dojo.require("dojox.charting.Theme");
+(function(){
+var _1=dojox.charting;
+_1.themes.PlotKit.orange=new _1.Theme({chart:{stroke:null,fill:"white"},plotarea:{stroke:null,fill:"#f5eee6"},axis:{stroke:{color:"#fff",width:2},line:{color:"#fff",width:1},majorTick:{color:"#fff",width:2,length:12},minorTick:{color:"#fff",width:1,length:8},font:"normal normal normal 8pt Tahoma",fontColor:"#999"},series:{outline:{width:0.15,color:"#fff"},stroke:{width:1.5,color:"#666"},fill:new dojo.Color([102,102,102,0.8]),font:"normal normal normal 7pt Tahoma",fontColor:"#000"},marker:{stroke:{width:2},fill:"#333",font:"normal normal normal 7pt Tahoma",fontColor:"#000"},colors:[]});
+_1.themes.PlotKit.orange.defineColors({hue:31,saturation:60,low:40,high:88});
+})();
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/orange.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/purple.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/purple.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/purple.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/purple.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,17 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.PlotKit.purple"]){
+dojo._hasResource["dojox.charting.themes.PlotKit.purple"]=true;
+dojo.provide("dojox.charting.themes.PlotKit.purple");
+dojo.require("dojox.charting.Theme");
+(function(){
+var _1=dojox.charting;
+_1.themes.PlotKit.purple=new _1.Theme({chart:{stroke:null,fill:"white"},plotarea:{stroke:null,fill:"#eee6f5"},axis:{stroke:{color:"#fff",width:2},line:{color:"#fff",width:1},majorTick:{color:"#fff",width:2,length:12},minorTick:{color:"#fff",width:1,length:8},font:"normal normal normal 8pt Tahoma",fontColor:"#999"},series:{outline:{width:1,color:"#fff"},stroke:{width:2,color:"#666"},fill:new dojo.Color([102,102,102,0.8]),font:"normal normal normal 7pt Tahoma",fontColor:"#000"},marker:{stroke:{width:2},fill:"#333",font:"normal normal normal 7pt Tahoma",fontColor:"#000"},colors:[]});
+_1.themes.PlotKit.purple.defineColors({hue:271,saturation:60,low:40,high:88});
+})();
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/purple.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/red.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/red.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/red.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/red.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,17 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.PlotKit.red"]){
+dojo._hasResource["dojox.charting.themes.PlotKit.red"]=true;
+dojo.provide("dojox.charting.themes.PlotKit.red");
+dojo.require("dojox.charting.Theme");
+(function(){
+var _1=dojox.charting;
+_1.themes.PlotKit.red=new _1.Theme({chart:{stroke:null,fill:"white"},plotarea:{stroke:null,fill:"#f5e6e6"},axis:{stroke:{color:"#fff",width:2},line:{color:"#fff",width:1},majorTick:{color:"#fff",width:2,length:12},minorTick:{color:"#fff",width:1,length:8},font:"normal normal normal 8pt Tahoma",fontColor:"#999"},series:{outline:{width:1,color:"#fff"},stroke:{width:2,color:"#666"},fill:new dojo.Color([102,102,102,0.8]),font:"normal normal normal 7pt Tahoma",fontColor:"#000"},marker:{stroke:{width:2},fill:"#333",font:"normal normal normal 7pt Tahoma",fontColor:"#000"},colors:[]});
+_1.themes.PlotKit.red.defineColors({hue:1,saturation:60,low:40,high:88});
+})();
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/red.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PurpleRain.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PurpleRain.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PurpleRain.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PurpleRain.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,16 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.PurpleRain"]){
+dojo._hasResource["dojox.charting.themes.PurpleRain"]=true;
+dojo.provide("dojox.charting.themes.PurpleRain");
+dojo.require("dojox.charting.Theme");
+(function(){
+var _1=dojox.charting;
+_1.themes.PurpleRain=new _1.Theme({colors:["#4879bc","#ef446f","#3f58a7","#8254a2","#4956a6"]});
+})();
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/PurpleRain.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/README
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/README?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/README (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/README Thu Mar 19 10:37:00 2009
@@ -0,0 +1,5 @@
+Theme authors:
+
+GreySkies, Shrooms, PlotKit (all): Tom Trenka (ttrenka AT gmail.com)
+ET (all): Alex Russell (alex AT dojotoolkit.org)
+Ireland, SageToLime, Minty: Damon Dimmick (SitePen, Inc.)

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/README
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/RoyalPurples.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/RoyalPurples.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/RoyalPurples.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/RoyalPurples.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,16 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.RoyalPurples"]){
+dojo._hasResource["dojox.charting.themes.RoyalPurples"]=true;
+dojo.provide("dojox.charting.themes.RoyalPurples");
+dojo.require("dojox.charting.Theme");
+(function(){
+var _1=dojox.charting;
+_1.themes.RoyalPurples=new _1.Theme({colors:["#473980","#685aa7","#7970b3","#231c3f","#7267ae"]});
+})();
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/RoyalPurples.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/SageToLime.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/SageToLime.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/SageToLime.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/SageToLime.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,16 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.SageToLime"]){
+dojo._hasResource["dojox.charting.themes.SageToLime"]=true;
+dojo.provide("dojox.charting.themes.SageToLime");
+dojo.require("dojox.charting.Theme");
+(function(){
+var _1=dojox.charting;
+_1.themes.SageToLime=new _1.Theme({colors:["#abdbcb","#435a51","#70998b","#5f8074","#80ccbb","#539e8b","#78a596","#335f54","#8dd1c2","#68c5ad"]});
+})();
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/SageToLime.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Shrooms.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Shrooms.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Shrooms.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Shrooms.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,16 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.Shrooms"]){
+dojo._hasResource["dojox.charting.themes.Shrooms"]=true;
+dojo.provide("dojox.charting.themes.Shrooms");
+dojo.require("dojox.charting.Theme");
+(function(){
+var _1=dojox.charting;
+_1.themes.Shrooms=new _1.Theme({colors:["#bf1313","#69bf13","#13bfbf","#6913bf","#bf6913","#13bf13","#1369bf","#bf13bf","#bfbf13","#13bf69","#1313bf","#bf1369"]});
+})();
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Shrooms.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Tufte.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Tufte.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Tufte.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Tufte.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,16 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.Tufte"]){
+dojo._hasResource["dojox.charting.themes.Tufte"]=true;
+dojo.provide("dojox.charting.themes.Tufte");
+dojo.require("dojox.charting.Theme");
+(function(){
+var _1=dojox.charting;
+_1.themes.Tufte=new _1.Theme({antiAlias:false,chart:{stroke:null,fill:"inherit"},plotarea:{stroke:null,fill:"transparent"},axis:{stroke:{width:0},line:{width:0},majorTick:{color:"#666666",width:1,length:5},minorTick:{color:"black",width:1,length:2},font:"normal normal normal 8pt Tahoma",fontColor:"#999999"},series:{outline:{width:0,color:"black"},stroke:{width:1,color:"black"},fill:new dojo.Color([59,68,75,0.85]),font:"normal normal normal 7pt Tahoma",fontColor:"#717171"},marker:{stroke:{width:1},fill:"#333",font:"normal normal normal 7pt Tahoma",fontColor:"#000"},colors:[dojo.colorFromHex("#8a8c8f"),dojo.colorFromHex("#4b4b4b"),dojo.colorFromHex("#3b444b"),dojo.colorFromHex("#2e2d30"),dojo.colorFromHex("#000000")]});
+})();
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Tufte.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/WatersEdge.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/WatersEdge.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/WatersEdge.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/WatersEdge.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,16 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.WatersEdge"]){
+dojo._hasResource["dojox.charting.themes.WatersEdge"]=true;
+dojo.provide("dojox.charting.themes.WatersEdge");
+dojo.require("dojox.charting.Theme");
+(function(){
+var _1=dojox.charting;
+_1.themes.WatersEdge=new _1.Theme({colors:["#437cc0","#6256a5","#4552a3","#43c4f2","#4b66b0"]});
+})();
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/WatersEdge.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Wetland.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Wetland.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Wetland.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Wetland.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,16 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.Wetland"]){
+dojo._hasResource["dojox.charting.themes.Wetland"]=true;
+dojo.provide("dojox.charting.themes.Wetland");
+dojo.require("dojox.charting.Theme");
+(function(){
+var _1=dojox.charting;
+_1.themes.Wetland=new _1.Theme({colors:["#bfbc64","#737130","#73373b","#7dafca","#8d3c42"]});
+})();
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/themes/Wetland.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/widget/Chart2D.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/widget/Chart2D.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/widget/Chart2D.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/widget/Chart2D.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,16 @@
+/*
+	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
+	Available via Academic Free License >= 2.1 OR the modified BSD license.
+	see: http://dojotoolkit.org/license for details
+*/
+
+/*
+	This is a compiled version of Dojo, built for deployment and not for
+	development. To get an editable version, please visit:
+
+		http://dojotoolkit.org
+
+	for documentation and information on getting the source.
+*/
+

[... 2 lines stripped ...]
Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/charting/widget/Chart2D.js
------------------------------------------------------------------------------
    svn:eol-style = native