You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2015/03/22 17:05:22 UTC

[30/54] [partial] camel git commit: CAMEL-7263: Remove not maintained and deprecated camel-web module.

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/plot3d/Cylinders.js
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/plot3d/Cylinders.js b/components/camel-web/src/main/webapp/js/dojox/charting/plot3d/Cylinders.js
deleted file mode 100644
index 5344570..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/plot3d/Cylinders.js
+++ /dev/null
@@ -1,68 +0,0 @@
-/*
-	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);
-}
-}});
-})();
-}

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/scaler/common.js
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/scaler/common.js b/components/camel-web/src/main/webapp/js/dojox/charting/scaler/common.js
deleted file mode 100644
index 1fd86bb..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/scaler/common.js
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
-	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;
-}});
-})();
-}

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/scaler/linear.js
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/scaler/linear.js b/components/camel-web/src/main/webapp/js/dojox/charting/scaler/linear.js
deleted file mode 100644
index 8a614f1..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/scaler/linear.js
+++ /dev/null
@@ -1,217 +0,0 @@
-/*
-	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;
-};
-}});
-})();
-}

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/scaler/primitive.js
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/scaler/primitive.js b/components/camel-web/src/main/webapp/js/dojox/charting/scaler/primitive.js
deleted file mode 100644
index 63efb7e..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/scaler/primitive.js
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
-	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;
-};
-}};
-}

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/themes/Adobebricks.js
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/themes/Adobebricks.js b/components/camel-web/src/main/webapp/js/dojox/charting/themes/Adobebricks.js
deleted file mode 100644
index 010b4ec..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/themes/Adobebricks.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
-	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"]});
-})();
-}

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/themes/Algae.js
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/themes/Algae.js b/components/camel-web/src/main/webapp/js/dojox/charting/themes/Algae.js
deleted file mode 100644
index 2ff4db2..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/themes/Algae.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
-	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"]});
-})();
-}

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/themes/Bahamation.js
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/themes/Bahamation.js b/components/camel-web/src/main/webapp/js/dojox/charting/themes/Bahamation.js
deleted file mode 100644
index 9e5e497..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/themes/Bahamation.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
-	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"]});
-})();
-}

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/themes/BlueDusk.js
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/themes/BlueDusk.js b/components/camel-web/src/main/webapp/js/dojox/charting/themes/BlueDusk.js
deleted file mode 100644
index 86bf3aa..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/themes/BlueDusk.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
-	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"]});
-})();
-}

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/themes/CubanShirts.js
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/themes/CubanShirts.js b/components/camel-web/src/main/webapp/js/dojox/charting/themes/CubanShirts.js
deleted file mode 100644
index b849905..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/themes/CubanShirts.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
-	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"]});
-})();
-}

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/themes/Desert.js
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/themes/Desert.js b/components/camel-web/src/main/webapp/js/dojox/charting/themes/Desert.js
deleted file mode 100644
index c731b74..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/themes/Desert.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
-	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"]});
-})();
-}

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/themes/Dollar.js
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/themes/Dollar.js b/components/camel-web/src/main/webapp/js/dojox/charting/themes/Dollar.js
deleted file mode 100644
index 2342282..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/themes/Dollar.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
-	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"]});
-})();
-}

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/themes/ET/greys.js
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/themes/ET/greys.js b/components/camel-web/src/main/webapp/js/dojox/charting/themes/ET/greys.js
deleted file mode 100644
index fb54b5e..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/themes/ET/greys.js
+++ /dev/null
@@ -1,17 +0,0 @@
-/*
-	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")]});
-})();
-}

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/themes/Grasshopper.js
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/themes/Grasshopper.js b/components/camel-web/src/main/webapp/js/dojox/charting/themes/Grasshopper.js
deleted file mode 100644
index 85f3484..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/themes/Grasshopper.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
-	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"]});
-})();
-}

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/themes/Grasslands.js
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/themes/Grasslands.js b/components/camel-web/src/main/webapp/js/dojox/charting/themes/Grasslands.js
deleted file mode 100644
index 611bc98..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/themes/Grasslands.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
-	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"]});
-})();
-}

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/themes/GreySkies.js
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/themes/GreySkies.js b/components/camel-web/src/main/webapp/js/dojox/charting/themes/GreySkies.js
deleted file mode 100644
index eb3cba5..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/themes/GreySkies.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
-	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);
-})();
-}

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/themes/IndigoNation.js
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/themes/IndigoNation.js b/components/camel-web/src/main/webapp/js/dojox/charting/themes/IndigoNation.js
deleted file mode 100644
index 706d637..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/themes/IndigoNation.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
-	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"]});
-})();
-}

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/themes/Ireland.js
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/themes/Ireland.js b/components/camel-web/src/main/webapp/js/dojox/charting/themes/Ireland.js
deleted file mode 100644
index bec47ad..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/themes/Ireland.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
-	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"]});
-})();
-}

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/themes/MiamiNice.js
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/themes/MiamiNice.js b/components/camel-web/src/main/webapp/js/dojox/charting/themes/MiamiNice.js
deleted file mode 100644
index 1a1714a..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/themes/MiamiNice.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
-	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"]});
-})();
-}

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/themes/Midwest.js
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/themes/Midwest.js b/components/camel-web/src/main/webapp/js/dojox/charting/themes/Midwest.js
deleted file mode 100644
index f1d48b7..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/themes/Midwest.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
-	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"]});
-})();
-}

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/themes/Minty.js
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/themes/Minty.js b/components/camel-web/src/main/webapp/js/dojox/charting/themes/Minty.js
deleted file mode 100644
index 5a290ce..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/themes/Minty.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
-	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"]});
-})();
-}

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/README
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/README b/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/README
deleted file mode 100644
index dbf4c81..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/README
+++ /dev/null
@@ -1,11 +0,0 @@
-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

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/blue.js
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/blue.js b/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/blue.js
deleted file mode 100644
index 733b23b..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/blue.js
+++ /dev/null
@@ -1,17 +0,0 @@
-/*
-	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});
-})();
-}

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/cyan.js
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/cyan.js b/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/cyan.js
deleted file mode 100644
index c97d371..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/cyan.js
+++ /dev/null
@@ -1,17 +0,0 @@
-/*
-	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});
-})();
-}

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/green.js
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/green.js b/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/green.js
deleted file mode 100644
index 1955efd..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/green.js
+++ /dev/null
@@ -1,17 +0,0 @@
-/*
-	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});
-})();
-}

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/orange.js
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/orange.js b/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/orange.js
deleted file mode 100644
index 3f45bf6..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/orange.js
+++ /dev/null
@@ -1,17 +0,0 @@
-/*
-	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});
-})();
-}

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/purple.js
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/purple.js b/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/purple.js
deleted file mode 100644
index 2ca8a18..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/purple.js
+++ /dev/null
@@ -1,17 +0,0 @@
-/*
-	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});
-})();
-}

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/red.js
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/red.js b/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/red.js
deleted file mode 100644
index b47a330..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/themes/PlotKit/red.js
+++ /dev/null
@@ -1,17 +0,0 @@
-/*
-	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});
-})();
-}

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/themes/PurpleRain.js
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/themes/PurpleRain.js b/components/camel-web/src/main/webapp/js/dojox/charting/themes/PurpleRain.js
deleted file mode 100644
index d755fcf..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/themes/PurpleRain.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
-	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"]});
-})();
-}

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/themes/README
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/themes/README b/components/camel-web/src/main/webapp/js/dojox/charting/themes/README
deleted file mode 100644
index 9a3725d..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/themes/README
+++ /dev/null
@@ -1,5 +0,0 @@
-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.)

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/themes/RoyalPurples.js
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/themes/RoyalPurples.js b/components/camel-web/src/main/webapp/js/dojox/charting/themes/RoyalPurples.js
deleted file mode 100644
index a44ae8b..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/themes/RoyalPurples.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
-	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"]});
-})();
-}

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/themes/SageToLime.js
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/themes/SageToLime.js b/components/camel-web/src/main/webapp/js/dojox/charting/themes/SageToLime.js
deleted file mode 100644
index 38db603..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/themes/SageToLime.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
-	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"]});
-})();
-}

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/themes/Shrooms.js
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/themes/Shrooms.js b/components/camel-web/src/main/webapp/js/dojox/charting/themes/Shrooms.js
deleted file mode 100644
index 8524b61..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/themes/Shrooms.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
-	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"]});
-})();
-}

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/themes/Tufte.js
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/themes/Tufte.js b/components/camel-web/src/main/webapp/js/dojox/charting/themes/Tufte.js
deleted file mode 100644
index 5677bc2..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/themes/Tufte.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
-	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")]});
-})();
-}

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/themes/WatersEdge.js
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/themes/WatersEdge.js b/components/camel-web/src/main/webapp/js/dojox/charting/themes/WatersEdge.js
deleted file mode 100644
index 3c1469e..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/themes/WatersEdge.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
-	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"]});
-})();
-}

http://git-wip-us.apache.org/repos/asf/camel/blob/9f5e32db/components/camel-web/src/main/webapp/js/dojox/charting/themes/Wetland.js
----------------------------------------------------------------------
diff --git a/components/camel-web/src/main/webapp/js/dojox/charting/themes/Wetland.js b/components/camel-web/src/main/webapp/js/dojox/charting/themes/Wetland.js
deleted file mode 100644
index a3ff02c..0000000
--- a/components/camel-web/src/main/webapp/js/dojox/charting/themes/Wetland.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
-	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"]});
-})();
-}