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 [21/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/ ato...

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/manager/_NodeMixin.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/manager/_NodeMixin.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/manager/_NodeMixin.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/manager/_NodeMixin.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,239 @@
+/*
+	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.form.manager._NodeMixin"]){
+dojo._hasResource["dojox.form.manager._NodeMixin"]=true;
+dojo.provide("dojox.form.manager._NodeMixin");
+dojo.require("dojox.form.manager._Mixin");
+(function(){
+var fm=dojox.form.manager,aa=fm.actionAdapter,_3=fm._keys,ce=fm.changeEvent=function(_5){
+var _6="onclick";
+switch(_5.tagName.toLowerCase()){
+case "textarea":
+_6="onkeyup";
+break;
+case "select":
+_6="onchange";
+break;
+case "input":
+switch(_5.type.toLowerCase()){
+case "text":
+case "password":
+_6="onkeyup";
+break;
+}
+break;
+}
+return _6;
+},_7=function(_8,_9){
+var _a=dojo.attr(_8,"name");
+_9=_9||this.domNode;
+if(_a&&!(_a in this.formWidgets)){
+for(var n=_8;n&&n!==_9;n=n.parentNode){
+if(dojo.attr(n,"widgetId")&&dijit.byNode(n) instanceof dijit.form._FormWidget){
+return null;
+}
+}
+if(_8.tagName.toLowerCase()=="input"&&_8.type.toLowerCase()=="radio"){
+var a=this.formNodes[_a];
+a=a&&a.node;
+if(a&&dojo.isArray(a)){
+a.push(_8);
+}else{
+this.formNodes[_a]={node:[_8],connections:[]};
+}
+}else{
+this.formNodes[_a]={node:_8,connections:[]};
+}
+}else{
+_a=null;
+}
+return _a;
+},_d=function(_e){
+var _f={};
+aa(function(_,n){
+var o=dojo.attr(n,"observer");
+if(o&&typeof o=="string"){
+dojo.forEach(o.split(","),function(o){
+o=dojo.trim(o);
+if(o&&dojo.isFunction(this[o])){
+_f[o]=1;
+}
+},this);
+}
+}).call(this,null,this.formNodes[_e].node);
+return _3(_f);
+},_14=function(_15,_16){
+var t=this.formNodes[_15],c=t.connections;
+if(c.length){
+dojo.forEach(c,dojo.disconnect);
+c=t.connections=[];
+}
+aa(function(_,n){
+var _1b=ce(n);
+dojo.forEach(_16,function(o){
+c.push(dojo.connect(n,_1b,this,function(evt){
+if(this.watch){
+this[o](this.formNodeValue(_15),_15,n,evt);
+}
+}));
+},this);
+}).call(this,null,t.node);
+};
+dojo.declare("dojox.form.manager._NodeMixin",null,{destroy:function(){
+for(var _1e in this.formNodes){
+dojo.forEach(this.formNodes[_1e].connections,dojo.disconnect);
+}
+this.formNodes={};
+this.inherited(arguments);
+},registerNode:function(_1f){
+if(typeof _1f=="string"){
+_1f=dojo.byId(_1f);
+}
+var _20=_7.call(this,_1f);
+if(_20){
+_14.call(this,_20,_d.call(this,_20));
+}
+return this;
+},unregisterNode:function(_21){
+if(_21 in this.formNodes){
+dojo.forEach(this.formNodes[_21].connections,this.disconnect,this);
+delete this.formNodes[_21];
+}
+return this;
+},registerNodeDescendants:function(_22){
+if(typeof _22=="string"){
+_22=dojo.byId(_22);
+}
+dojo.query("input, select, textarea, button",_22).map(function(n){
+return _7.call(this,n,_22);
+},this).forEach(function(_24){
+if(_24){
+_14.call(this,_24,_d.call(this,_24));
+}
+},this);
+return this;
+},unregisterNodeDescendants:function(_25){
+if(typeof _25=="string"){
+_25=dojo.byId(_25);
+}
+dojo.query("input, select, textarea, button",_25).map(function(n){
+return dojo.attr(_25,"name")||null;
+}).forEach(function(_27){
+if(_27){
+this.unregisterNode(_27);
+}
+},this);
+return this;
+},formNodeValue:function(_28,_29){
+var _2a=arguments.length==2&&_29!==undefined,_2b;
+if(typeof _28=="string"){
+_28=this.formNodes[_28];
+if(_28){
+_28=_28.node;
+}
+}
+if(!_28){
+return null;
+}
+if(dojo.isArray(_28)){
+if(_2a){
+dojo.forEach(_28,function(_2c){
+_2c.checked="";
+});
+dojo.forEach(_28,function(_2d){
+_2d.checked=_2d.value===_29?"checked":"";
+});
+return this;
+}
+dojo.some(_28,function(_2e){
+if(_2e.checked){
+_2b=_2e;
+return true;
+}
+return false;
+});
+return _2b?_2b.value:"";
+}
+switch(_28.tagName.toLowerCase()){
+case "select":
+if(_28.multiple){
+if(_2a){
+if(dojo.isArray(_29)){
+var _2f={};
+dojo.forEach(_29,function(v){
+_2f[v]=1;
+});
+dojo.query("> option",_28).forEach(function(opt){
+opt.selected=opt.value in _2f;
+});
+return this;
+}
+dojo.query("> option",_28).forEach(function(opt){
+opt.selected=opt.value===_29;
+});
+return this;
+}
+var _2b=dojo.query("> option",_28).filter(function(opt){
+return opt.selected;
+}).map(function(opt){
+return opt.value;
+});
+return _2b.length==1?_2b[0]:_2b;
+}
+if(_2a){
+dojo.query("> option",_28).forEach(function(opt){
+opt.selected=opt.value===_29;
+});
+return this;
+}
+return _28.value||"";
+case "button":
+if(_2a){
+_28.innerHTML=""+_29;
+return this;
+}
+return _28.innerHTML;
+case "input":
+if(_28.type.toLowerCase()=="checkbox"){
+if(_2a){
+_28.checked=_29?"checked":"";
+return this;
+}
+return Boolean(_28.checked);
+}
+}
+if(_2a){
+_28.value=""+_29;
+return this;
+}
+return _28.value;
+},inspectFormNodes:function(_36,_37,_38){
+var _39,_3a={};
+if(_37){
+if(dojo.isArray(_37)){
+dojo.forEach(_37,function(_3b){
+if(_3b in this.formNodes){
+_3a[_3b]=_36.call(this,_3b,this.formNodes[_3b].node,_38);
+}
+},this);
+}else{
+for(_39 in _37){
+if(_39 in this.formNodes){
+_3a[_39]=_36.call(this,_39,this.formNodes[_39].node,_37[_39]);
+}
+}
+}
+}else{
+for(_39 in this.formNodes){
+_3a[_39]=_36.call(this,_39,this.formNodes[_39].node,_38);
+}
+}
+return _3a;
+}});
+})();
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/manager/_NodeMixin.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/manager/_ValueMixin.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/manager/_ValueMixin.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/manager/_ValueMixin.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/manager/_ValueMixin.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1,48 @@
+/*
+	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.form.manager._ValueMixin"]){
+dojo._hasResource["dojox.form.manager._ValueMixin"]=true;
+dojo.provide("dojox.form.manager._ValueMixin");
+dojo.declare("dojox.form.manager._ValueMixin",null,{elementValue:function(_1,_2){
+if(_1 in this.formWidgets){
+return this.formWidgetValue(_1,_2);
+}
+if(this.formNodes&&_1 in this.formNodes){
+return this.formNodeValue(_1,_2);
+}
+return this.formPointValue(_1,_2);
+},gatherFormValues:function(_3){
+var _4=this.inspectFormWidgets(function(_5){
+return this.formWidgetValue(_5);
+},_3);
+if(this.inspectFormNodes){
+dojo.mixin(_4,this.inspectFormNodes(function(_6){
+return this.formNodeValue(_6);
+},_3));
+}
+dojo.mixin(_4,this.inspectAttachedPoints(function(_7){
+return this.formPointValue(_7);
+},_3));
+return _4;
+},setFormValues:function(_8){
+if(_8){
+this.inspectFormWidgets(function(_9,_a,_b){
+this.formWidgetValue(_9,_b);
+},_8);
+if(this.inspectFormNodes){
+this.inspectFormNodes(function(_c,_d,_e){
+this.formNodeValue(_c,_e);
+},_8);
+}
+this.inspectAttachedPoints(function(_f,_10,_11){
+this.formPointValue(_f,_11);
+},_8);
+}
+return this;
+}});
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/manager/_ValueMixin.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/PasswordValidator.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/PasswordValidator.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/PasswordValidator.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/PasswordValidator.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1 @@
+({"badPasswordMessage":"Invalid Password.","nomatchMessage":"Passwords do not match."})
\ No newline at end of file

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/PasswordValidator.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/ar/PasswordValidator.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/ar/PasswordValidator.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/ar/PasswordValidator.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/ar/PasswordValidator.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1 @@
+({"badPasswordMessage":"كلمة سرية غير صحيحة.","nomatchMessage":"كلمة السرية غير مطابقة."})
\ No newline at end of file

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/ar/PasswordValidator.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/ca/PasswordValidator.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/ca/PasswordValidator.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/ca/PasswordValidator.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/ca/PasswordValidator.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1 @@
+({"badPasswordMessage":"La contrasenya no és correcta","nomatchMessage":"Les contrasenyes no coincideixen"})
\ No newline at end of file

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/ca/PasswordValidator.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/cs/PasswordValidator.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/cs/PasswordValidator.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/cs/PasswordValidator.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/cs/PasswordValidator.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1 @@
+({"badPasswordMessage":"Neplatné heslo.","nomatchMessage":"Hesla se neshodují."})
\ No newline at end of file

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/cs/PasswordValidator.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/da/PasswordValidator.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/da/PasswordValidator.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/da/PasswordValidator.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/da/PasswordValidator.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1 @@
+({"badPasswordMessage":"Ugyldig adgangskode.","nomatchMessage":"Adgangskoderne stemmer ikke overens."})
\ No newline at end of file

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/da/PasswordValidator.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/de/PasswordValidator.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/de/PasswordValidator.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/de/PasswordValidator.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/de/PasswordValidator.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1 @@
+({"badPasswordMessage":"Ungültiges Kennwort.","nomatchMessage":"Die Kennwörter stimmen nicht überein."})
\ No newline at end of file

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/de/PasswordValidator.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/el/PasswordValidator.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/el/PasswordValidator.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/el/PasswordValidator.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/el/PasswordValidator.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1 @@
+({"badPasswordMessage":"Μη έγκυρος κωδικός πρόσβασης.","nomatchMessage":"Οι κωδικοί πρόσβασης δεν συμφωνούν."})
\ No newline at end of file

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/el/PasswordValidator.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/es/PasswordValidator.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/es/PasswordValidator.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/es/PasswordValidator.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/es/PasswordValidator.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1 @@
+({"badPasswordMessage":"Contraseña no válida.","nomatchMessage":"Las contraseñas no coinciden."})
\ No newline at end of file

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/es/PasswordValidator.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/fi/PasswordValidator.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/fi/PasswordValidator.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/fi/PasswordValidator.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/fi/PasswordValidator.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1 @@
+({"badPasswordMessage":"Salasana ei kelpaa.","nomatchMessage":"Salasanat eivät täsmää."})
\ No newline at end of file

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/fi/PasswordValidator.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/fr/PasswordValidator.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/fr/PasswordValidator.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/fr/PasswordValidator.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/fr/PasswordValidator.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1 @@
+({"badPasswordMessage":"Mot de passe incorrect.","nomatchMessage":"Les mots de passe ne correspondent pas."})
\ No newline at end of file

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/fr/PasswordValidator.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/he/PasswordValidator.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/he/PasswordValidator.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/he/PasswordValidator.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/he/PasswordValidator.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1 @@
+({"badPasswordMessage":"סיסמה לא חוקית.","nomatchMessage":"הסיסמאות אינן זהות."})
\ No newline at end of file

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/he/PasswordValidator.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/hu/PasswordValidator.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/hu/PasswordValidator.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/hu/PasswordValidator.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/hu/PasswordValidator.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1 @@
+({"badPasswordMessage":"Érvénytelen jelszó.","nomatchMessage":"A jelszavak nem egyeznek."})
\ No newline at end of file

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/hu/PasswordValidator.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/it/PasswordValidator.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/it/PasswordValidator.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/it/PasswordValidator.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/it/PasswordValidator.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1 @@
+({"badPasswordMessage":"Password non valida.","nomatchMessage":"Le password non corrispondono."})
\ No newline at end of file

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/it/PasswordValidator.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/ja/PasswordValidator.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/ja/PasswordValidator.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/ja/PasswordValidator.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/ja/PasswordValidator.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1 @@
+({"badPasswordMessage":"無効なパスワードです。","nomatchMessage":"パスワードが一致しません。"})
\ No newline at end of file

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/ja/PasswordValidator.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/ko/PasswordValidator.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/ko/PasswordValidator.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/ko/PasswordValidator.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/ko/PasswordValidator.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1 @@
+({"badPasswordMessage":"비밀번호가 올바르지 않습니다.","nomatchMessage":"비밀번호가 일치하지 않습니다."})
\ No newline at end of file

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/ko/PasswordValidator.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/nb/PasswordValidator.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/nb/PasswordValidator.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/nb/PasswordValidator.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/nb/PasswordValidator.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1 @@
+({"badPasswordMessage":"Ugyldig passord.","nomatchMessage":"Passordene samsvarer ikke."})
\ No newline at end of file

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/nb/PasswordValidator.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/nl/PasswordValidator.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/nl/PasswordValidator.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/nl/PasswordValidator.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/nl/PasswordValidator.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1 @@
+({"badPasswordMessage":"Ongeldig wachtwoord. ","nomatchMessage":"Wachtwoorden komen niet overeen."})
\ No newline at end of file

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/nl/PasswordValidator.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/pl/PasswordValidator.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/pl/PasswordValidator.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/pl/PasswordValidator.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/pl/PasswordValidator.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1 @@
+({"badPasswordMessage":"Niepoprawne hasło.","nomatchMessage":"Hasła nie są zgodne."})
\ No newline at end of file

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/pl/PasswordValidator.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/pt-pt/PasswordValidator.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/pt-pt/PasswordValidator.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/pt-pt/PasswordValidator.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/pt-pt/PasswordValidator.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1 @@
+({"badPasswordMessage":"Palavra-passe não válida.","nomatchMessage":"As palavras-passe não correspondem."})
\ No newline at end of file

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/pt-pt/PasswordValidator.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/pt/PasswordValidator.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/pt/PasswordValidator.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/pt/PasswordValidator.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/pt/PasswordValidator.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1 @@
+({"badPasswordMessage":"Senha Inválida.","nomatchMessage":"As senhas não correspondem."})
\ No newline at end of file

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/pt/PasswordValidator.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/ru/PasswordValidator.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/ru/PasswordValidator.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/ru/PasswordValidator.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/ru/PasswordValidator.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1 @@
+({"badPasswordMessage":"Неправильный пароль.","nomatchMessage":"Пароли не совпадают."})
\ No newline at end of file

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/ru/PasswordValidator.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/sk/PasswordValidator.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/sk/PasswordValidator.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/sk/PasswordValidator.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/sk/PasswordValidator.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1 @@
+({"badPasswordMessage":"Neplatné heslo.","nomatchMessage":"Heslá sa nezhodujú."})
\ No newline at end of file

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/sk/PasswordValidator.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/sl/PasswordValidator.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/sl/PasswordValidator.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/sl/PasswordValidator.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/sl/PasswordValidator.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1 @@
+({"badPasswordMessage":"Neveljavno geslo.","nomatchMessage":"Gesli se ne ujemata."})
\ No newline at end of file

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/sl/PasswordValidator.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/sv/PasswordValidator.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/sv/PasswordValidator.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/sv/PasswordValidator.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/sv/PasswordValidator.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1 @@
+({"badPasswordMessage":"Ogiltigt lösenord.","nomatchMessage":"Lösenorden stämmer inte överens."})
\ No newline at end of file

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/sv/PasswordValidator.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/th/PasswordValidator.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/th/PasswordValidator.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/th/PasswordValidator.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/th/PasswordValidator.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1 @@
+({"badPasswordMessage":"รหัสผ่านไม่ถูกต้อง","nomatchMessage":"รหัสผ่านไม่ตรงกัน"})
\ No newline at end of file

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/th/PasswordValidator.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/tr/PasswordValidator.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/tr/PasswordValidator.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/tr/PasswordValidator.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/tr/PasswordValidator.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1 @@
+({"badPasswordMessage":"Geçersiz Parola.","nomatchMessage":"Parolalar eşleşmiyor."})
\ No newline at end of file

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/tr/PasswordValidator.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/zh-tw/PasswordValidator.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/zh-tw/PasswordValidator.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/zh-tw/PasswordValidator.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/zh-tw/PasswordValidator.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1 @@
+({"badPasswordMessage":"無效的密碼。","nomatchMessage":"密碼不符合。"})
\ No newline at end of file

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/zh-tw/PasswordValidator.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/zh/PasswordValidator.js
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/zh/PasswordValidator.js?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/zh/PasswordValidator.js (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/zh/PasswordValidator.js Thu Mar 19 10:37:00 2009
@@ -0,0 +1 @@
+({"badPasswordMessage":"密码无效。","nomatchMessage":"密码不匹配。"})
\ No newline at end of file

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/nls/zh/PasswordValidator.js
------------------------------------------------------------------------------
    svn:eol-style = native

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/BusyButton.css
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/BusyButton.css?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/BusyButton.css (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/BusyButton.css Thu Mar 19 10:37:00 2009
@@ -0,0 +1,8 @@
+
+.dojoxBusyButtonIcon {
+	width: 10px;
+	height: 10px;
+	vertical-align: middle;
+	margin-left: 4px;
+	background-image: url('images/loading_wheel.gif');
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/BusyButton.css
------------------------------------------------------------------------------
    svn:mime-type = text/css

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/CheckedMultiSelect.css
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/CheckedMultiSelect.css?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/CheckedMultiSelect.css (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/CheckedMultiSelect.css Thu Mar 19 10:37:00 2009
@@ -0,0 +1,66 @@
+
+.dojoxMultiSelectSelect { display: none; }
+.dojoxMultiSelect {
+	border: solid black 1px;
+	margin: 1px 0;
+	overflow: scroll; 
+	overflow-y: scroll; 
+	overflow-x: hidden; 
+	height: 100px;
+}
+.dj_ie .dojoxMultiSelect,
+.dj_webkit .dojoxMultiSelect {
+	
+	padding-right: 15px;
+}
+.dojoxMultiSelectItem {
+	white-space: nowrap;
+	padding:.1em .2em;
+	cursor:default;
+}
+.dojoxMultiSelectDisabled *,
+.dojoxMultiSelectReadOnly * {
+	color:gray !important;
+}
+.dojoxMultiSelectItemLabel {
+	margin-left: .2em;
+}
+.tundra .dojoxMultiSelect {
+	margin: 0em 0.1em;
+}
+.tundra .dojoxMultiSelect {
+	background:#fff url("../../../dijit/themes/tundra/images/validationInputBg.png") repeat-x top left;
+	#background:#fff url('../../../dijit/themes/tundra/images/validationInputBg.gif') repeat-x top left;
+	border:1px solid #b3b3b3;
+	line-height: normal;
+}
+.tundra .dojoxMultiSelectFocused {
+	
+	border-color:#406b9b;
+}
+.soria .dojoxMultiSelect {
+	margin: 0em 0.1em;
+}
+.soria .dojoxMultiSelect {
+	background:#fff url("../../../dijit/themes/soria/images/validationInputBg.png") repeat-x top left;
+	#background:#fff url('../../../dijit/themes/soria/images/validationInputBg.gif') repeat-x top left;
+	border:1px solid #8ba0bd;
+	line-height: normal;
+}
+.soria .dojoxMultiSelectFocused {
+	
+	border-color:#406b9b;
+}
+.nihilo .dojoxMultiSelect {
+	margin: 0em 0.1em;
+}
+.nihilo .dojoxMultiSelect {
+	background:#fff url("../../../dijit/themes/nihilo/images/validationInputBg.png") repeat-x top left;
+	#background:#fff url('../../../dijit/themes/nihilo/images/validationInputBg.gif') repeat-x top left;
+	border:1px solid #d3d3d3;
+	line-height: normal;
+}
+.nihilo .dojoxMultiSelectFocused {
+	
+	border-color:#b3b3b3;
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/CheckedMultiSelect.css
------------------------------------------------------------------------------
    svn:mime-type = text/css

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/CheckedMultiSelect.html
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/CheckedMultiSelect.html?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/CheckedMultiSelect.html (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/CheckedMultiSelect.html Thu Mar 19 10:37:00 2009
@@ -0,0 +1,4 @@
+<div class="dijit dijitReset dijitInline" dojoAttachEvent="onmousedown:_mouseDown,onclick:focus"
+	><select class="${baseClass}Select" multiple="true" dojoAttachPoint="containerNode,focusNode"></select
+	><div dojoAttachPoint="wrapperDiv"></div
+></div>
\ No newline at end of file

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/CheckedMultiSelect.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/DropDownSelect.css
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/DropDownSelect.css?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/DropDownSelect.css (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/DropDownSelect.css Thu Mar 19 10:37:00 2009
@@ -0,0 +1,202 @@
+
+.dojoxDropDownSelect {
+	margin: 0.2em;
+}
+.dojoxDropDownSelect .dijitButtonNode {
+	text-align: left;
+}
+.dijitRtl .dojoxDropDownSelect .dijitButtonNode {
+	text-align: right;
+}
+.dijitToolbar .dojoxDropDownSelect {
+	margin: 0;
+}
+.dj_webkit .dijitToolbar .dojoxDropDownSelect {
+	padding-left: 0.3em;
+}
+.dijit_a11y .dojoxDropDownSelectDisabled .dijitButtonNode {
+	border-style: outset!important;
+	border-width: medium!important;
+	border-color: #999 !important;
+	color:#999 !important;
+}
+.dojoxDropDownSelect .dijitButtonContents {
+	padding: 0px;
+	border-right: none;
+	background: transparent none;
+}
+.dojoxDropDownSelectFixedWidth .dijitButtonContents {
+	width: 100%;
+}
+.dojoxDropDownSelect .dijitArrowButton {
+	width: 16px;
+}
+.dojoxDropDownSelectLabel *
+{
+	vertical-align: baseline;
+}
+.dojoxDropDownSelectSelectedOption * {
+	font-weight: bold;
+}
+.dojoxDropDownSelectMenu {
+	border-width: 1px;
+}
+.dojoxDropDownSelect .dijitButtonContents {
+	white-space: nowrap;
+}
+.tundra .dojoxDropDownSelectDisabled * {
+    cursor: not-allowed !important;
+}
+.tundra .dojoxDropDownSelectReadOnly * {
+    cursor: default !important;
+}
+.tundra .dojoxDropDownSelect .dijitButtonNode {
+	padding: 0px;
+}
+.tundra .dojoxDropDownSelect .dijitButtonContents {
+	padding-top: 1px;
+    background:#fff url("../../../dijit/themes/tundra/images/validationInputBg.png") repeat-x top left;
+    #background:#fff url('../../../dijit/themes/tundra/images/validationInputBg.gif') repeat-x top left;
+}
+.tundra .dojoxDropDownSelectHover .dijitButtonContents,
+.tundra .dojoxDropDownSelectActive .dijitButtonContents,
+.tundra .dojoxDropDownSelectOpened .dijitButtonContents,
+.tundra .dojoxDropDownSelectDisabled .dijitButtonContents,
+.tundra .dojoxDropDownSelectReadOnly .dijitButtonContents{
+	background: transparent none;
+}
+.dj_ie .tundra .dojoxDropDownSelect .dijitButtonContents {
+	padding-top: 0px;
+}
+.tundra .dojoxDropDownSelectDisabled .dijitButtonNode {
+    border-color: #d5d5d5 #bdbdbd #bdbdbd #d5d5d5;
+    background:#e4e4e4 url("../../../dijit/themes/tundra/images/buttonDisabled.png") top repeat-x;
+}
+.dj_ie .tundra .dojoxDropDownSelectDisabled  .dijitButtonNode * {
+	filter: gray() alpha(opacity=50); 
+}
+.tundra .dojoxDropDownSelectHover .dijitButtonNode {
+    border-color:#a5beda;
+    border-bottom-color:#5c7590;
+    border-right-color:#5c7590;
+    color:#243C5F;
+    background:#fcfdff url("../../../dijit/themes/tundra/images/buttonHover.png") repeat-x bottom;
+}
+.tundra .dojoxDropDownSelectActive .dijitButtonNode,
+.tundra .dojoxDropDownSelectOpened .dijitButtonNode {
+    border-color:#366dba;
+    background: #ededed url("../../../dijit/themes/tundra/images/buttonActive.png") bottom repeat-x;
+}
+.tundra .dojoxDropDownSelectMenu td {
+	padding: 0em;
+}
+.tundra .dojoxDropDownSelectMenu .dijitMenuItemIcon {
+	margin: 0.1em 0.2em;
+	display: none;
+}
+.tundra .dojoxDropDownSelectMenu .dijitMenuItemLabel,
+.tundra .dojoxDropDownSelectMenu .dijitMenuArrowCell {
+	padding: 0.1em 0.2em;
+}
+.soria .dojoxDropDownSelectDisabled * {
+    cursor: not-allowed !important;
+}
+.soria .dojoxDropDownSelectReadOnly * {
+    cursor: default !important;
+}
+.soria .dojoxDropDownSelect .dijitButtonNode {
+	padding: 0px;
+}
+.soria .dojoxDropDownSelect .dijitButtonContents {
+	padding-top: 1px;
+    background:#fff url("../../../dijit/themes/soria/images/validationInputBg.png") repeat-x top left;
+    #background:#fff url('../../../dijit/themes/soria/images/validationInputBg.gif') repeat-x top left;
+}
+.soria .dojoxDropDownSelectHover .dijitButtonContents,
+.soria .dojoxDropDownSelectActive .dijitButtonContents,
+.soria .dojoxDropDownSelectOpened .dijitButtonContents,
+.soria .dojoxDropDownSelectDisabled .dijitButtonContents,
+.soria .dojoxDropDownSelectReadOnly .dijitButtonContents{
+	background: transparent none;
+}
+.dj_ie .soria .dojoxDropDownSelect .dijitButtonContents {
+	padding-top: 0px;
+}
+.soria .dojoxDropDownSelectDisabled .dijitButtonNode {
+    border-color: #b9bbdd #b9bbdd #b9bbdd #b9bbdd;
+    background:#c3d3e5 url("../../../dijit/themes/soria/images/buttonDisabled.png") top repeat-x;
+}
+.dj_ie .soria .dojoxDropDownSelectDisabled  .dijitButtonNode * {
+	filter: gray() alpha(opacity=50); 
+}
+.soria .dojoxDropDownSelectHover .dijitButtonNode {
+    color:#000;
+    background:#acc5e2 url("../../../dijit/themes/soria/images/buttonHover.png") repeat-x top left;
+}
+.soria .dojoxDropDownSelectActive .dijitButtonNode,
+.soria .dojoxDropDownSelectOpened .dijitButtonNode {
+    border-color:#657c9c;
+    background: #91b4e5 url("../../../dijit/themes/soria/images/buttonActive.png") top left repeat-x;
+}
+.soria .dojoxDropDownSelectMenu td {
+	padding: 0em;
+}
+.soria .dojoxDropDownSelectMenu .dijitMenuItemIcon {
+	margin: 0.1em 0.2em;
+	display: none;
+}
+.soria .dojoxDropDownSelectMenu .dijitMenuItemLabel,
+.soria .dojoxDropDownSelectMenu .dijitMenuArrowCell {
+	padding: 0.1em 0.2em;
+}
+.nihilo .dojoxDropDownSelectDisabled * {
+    cursor: not-allowed !important;
+}
+.nihilo .dojoxDropDownSelectReadOnly * {
+    cursor: default !important;
+}
+.nihilo .dojoxDropDownSelect .dijitButtonNode {
+	padding: 0px;
+}
+.nihilo .dojoxDropDownSelect .dijitButtonContents {
+	padding-top: 1px;
+    background:#fff url("../../../dijit/themes/nihilo/images/validationInputBg.png") repeat-x top left;
+    #background:#fff url('../../../dijit/themes/nihilo/images/validationInputBg.gif') repeat-x top left;
+}
+.nihilo .dojoxDropDownSelectHover .dijitButtonContents,
+.nihilo .dojoxDropDownSelectActive .dijitButtonContents,
+.nihilo .dojoxDropDownSelectOpened .dijitButtonContents,
+.nihilo .dojoxDropDownSelectDisabled .dijitButtonContents,
+.nihilo .dojoxDropDownSelectReadOnly .dijitButtonContents{
+	background: transparent none;
+}
+.dj_ie .nihilo .dojoxDropDownSelect .dijitButtonContents {
+	padding-top: 0px;
+}
+.nihilo .dojoxDropDownSelectDisabled .dijitButtonNode {
+    border-color: #dedede;
+    background:#fafafa url("../../../dijit/themes/nihilo/images/buttonDisabled.png") top repeat-x;
+}
+.dj_ie .nihilo .dojoxDropDownSelectDisabled  .dijitButtonNode * {
+	filter: gray() alpha(opacity=50); 
+}
+.nihilo .dojoxDropDownSelectHover .dijitButtonNode {
+    color:#000;
+    background:#fcfcfc url("../../../dijit/themes/nihilo/images/buttonHover.png") repeat-x top left;
+}
+.nihilo .dojoxDropDownSelectActive .dijitButtonNode,
+.nihilo .dojoxDropDownSelectOpened .dijitButtonNode {
+    border-color:#dedede;
+    background: #f5f5f5 url("../../../dijit/themes/nihilo/images/buttonActive.png") top left repeat-x;
+}
+.nihilo .dojoxDropDownSelectMenu td {
+	padding: 0em;
+}
+.nihilo .dojoxDropDownSelectMenu .dijitMenuItemIcon {
+	margin: 0.1em 0.2em;
+	display: none;
+}
+.nihilo .dojoxDropDownSelectMenu .dijitMenuItemLabel,
+.nihilo .dojoxDropDownSelectMenu .dijitMenuArrowCell {
+	padding: 0.1em 0.2em;
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/DropDownSelect.css
------------------------------------------------------------------------------
    svn:mime-type = text/css

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/DropDownSelect.html
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/DropDownSelect.html?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/DropDownSelect.html (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/DropDownSelect.html Thu Mar 19 10:37:00 2009
@@ -0,0 +1,14 @@
+<table class='dijit dijitReset dijitInline dijitLeft'
+	dojoAttachPoint="dropDownNode,tableNode" cellspacing='0' cellpadding='0' waiRole="presentation"
+	dojoAttachEvent="onmouseenter:_onMouse,onmouseleave:_onMouse,onmousedown:_onMouse"
+	><tbody waiRole="presentation"><tr waiRole="presentation"
+		><td class="dijitReset dijitStretch dijitButtonContents dijitButtonNode" 
+			><span class="dijitReset dijitInline dijitButtonText"  dojoAttachPoint="containerNode,popupStateNode" id="${id}_label"></span
+			><input type="hidden" ${nameAttrSetting} dojoAttachPoint="valueNode" value="${value}" />
+		</td><td class="dijitReset dijitRight dijitButtonNode dijitArrowButton dijitDownArrowButton" 
+				dojoAttachPoint="focusNode,titleNode" waiRole="button" waiState="haspopup-true,labelledby-${id}_label"
+			><div class="dijitReset dijitArrowButtonInner">&thinsp;</div
+			><div class="dijitReset dijitArrowButtonChar" waiRole="presentation">&#9660;</div
+		></td
+	></tr></tbody
+></table>

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/DropDownSelect.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/FileInput.css
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/FileInput.css?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/FileInput.css (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/FileInput.css Thu Mar 19 10:37:00 2009
@@ -0,0 +1,88 @@
+.dijitFileInput {
+	position:relative;
+	height:1.3em;
+	
+}
+.dijitFileInputReal {
+	position:absolute;
+	z-index:2;
+	filter:alpha(opacity:0);
+	opacity:0;
+	cursor:pointer;
+}
+.dijitFileInputRealBlind {
+	right:0;
+}
+.dijitFileInputReal:hover { cursor:pointer; } 
+.dijitFileInputButton,
+.dijitFileInputText {
+	border:1px solid #333;
+	padding:2px 12px 2px 12px; 
+	cursor:pointer;
+}
+.dijitFileInputButton {
+	z-index:3;
+	visibility:hidden;
+}
+.dijitFakeInput { position:absolute; top:0; left:0; z-index:1; white-space: nowrap; }
+.dijitProgressOverlay {
+	display:none;
+	width:250px;
+	height:1em;
+	position:absolute;
+	top:0; left:0;
+	border:1px solid #333;
+	background:#cad2de url('../../../dijit/themes/tundra/images/dijitProgressBarAnim.gif') repeat-x top left;
+	padding:2px;	
+}
+.tundra .dijitProgressOverlay {
+	border:1px solid #84a3d1;
+	background-color:#cad2de;
+}
+.tundra .dijitFakeInput input {
+	
+	padding: 0;
+	background:#fff url("../../../dijit/themes/tundra/images/validationInputBg.png") repeat-x top left;
+	border:1px solid #9b9b9b;
+	line-height: normal;
+}
+.tundra .dijitFileInputButton, 
+.tundra .dijitFileInputText {
+	border:1px solid #9b9b9b;
+	padding:0px 12px 0px 12px; 
+	background:#e9e9e9 url("../../../dijit/themes/tundra/images/buttonEnabled.png") repeat-x top;
+}
+.soria .dijitProgressOverlay {
+	border:1px solid #8BA0BD;
+	background-color:#cad2de; 
+}
+.soria .dijitFakeInput input {
+	border:1px solid #8BA0BD;
+	background:#fff url("../../../dijit/themes/soria/images/validationInputBg.png") repeat-x top left;
+	line-height:normal;
+	background-position:0 -30px; 
+	padding:0.2em 0.3em;
+}
+.soria .dijitFileInputButton,
+.soria .dijitFileInputText {
+	border:1px solid #8BA0BD;
+	padding:2px 12px 2px 12px;
+	background:#b7cdee url('../../../dijit/themes/soria/images/buttonEnabled.png') repeat-x; 
+}
+.nihilo .dijitProgressOverlay {
+	border:1px solid #DEDEDE;
+	background-color:#cad2de; 
+}
+.nihilo .dijitFakeInput input {
+	border:1px solid #DEDEDE;
+	background:#fff url("../../../dijit/themes/nihilo/images/validationInputBg.png") repeat-x top left;
+	line-height:normal;
+	background-position:0 -30px; 
+	padding:0.2em 0.3em;
+}
+.nihilo .dijitFileInputButton,
+.nihilo .dijitFileInputText {
+	border:1px solid #DEDEDE;
+	padding:2px 12px 2px 12px;
+	background:#b7cdee url('../../../dijit/themes/nihilo/images/buttonEnabled.png') repeat-x; 
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/FileInput.css
------------------------------------------------------------------------------
    svn:mime-type = text/css

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/FileInput.html
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/FileInput.html?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/FileInput.html (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/FileInput.html Thu Mar 19 10:37:00 2009
@@ -0,0 +1,9 @@
+<div class="dijitFileInput">
+	<input id="${id}" class="dijitFileInputReal" type="file" dojoAttachPoint="fileInput" name="${name}" />
+	<div class="dijitFakeInput">
+		<input class="dijitFileInputVisible" type="text" dojoAttachPoint="focusNode, inputNode" />
+		<div class="dijitInline dijitFileInputText" dojoAttachPoint="titleNode">${label}</div>
+		<div class="dijitInline dijitFileInputButton" dojoAttachPoint="cancelNode" 
+			dojoAttachEvent="onclick:reset">${cancelText}</div>
+	</div>
+</div>

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/FileInput.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/FileInputAuto.html
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/FileInputAuto.html?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/FileInputAuto.html (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/FileInputAuto.html Thu Mar 19 10:37:00 2009
@@ -0,0 +1,9 @@
+<div class="dijitFileInput">
+	<input id="${id}" name="${name}" class="dijitFileInputReal" type="file" dojoAttachPoint="fileInput" />
+	<div class="dijitFakeInput" dojoAttachPoint="fakeNodeHolder">
+		<input class="dijitFileInputVisible" type="text" dojoAttachPoint="focusNode, inputNode" />
+		<div class="dijitInline dijitFileInputText" dojoAttachPoint="titleNode">${label}</div>
+		<div class="dijitInline dijitFileInputButton" dojoAttachPoint="cancelNode" dojoAttachEvent="onclick:reset">${cancelText}</div>
+	</div>
+	<div class="dijitProgressOverlay" dojoAttachPoint="overlay">&nbsp;</div>
+</div>

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/FileInputAuto.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/FilePickerTextBox.css
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/FilePickerTextBox.css?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/FilePickerTextBox.css (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/FilePickerTextBox.css Thu Mar 19 10:37:00 2009
@@ -0,0 +1,468 @@
+.dojoxRollingList {
+	border: 1px solid #000;
+	height: 20em;
+	background-color: #FFF;
+	position: relative;
+}
+.dijitPopup .dojoxRollingList {
+	position: static;
+}
+.dojoxRollingListContainer {
+	overflow: scroll;
+	overflow-y: hidden;
+	overflow-x: scroll;
+	white-space: nowrap;
+}
+.dojoxRollingListButtons {
+	position: absolute;
+	right: 5px;
+	padding: 5px 0px;
+}
+.dojoxRollingListButtonsHidden .dojoxRollingListButtons {
+	display: none;
+}
+.dojoxRollingListPane {
+	overflow: scroll;
+	overflow-x: hidden;
+	overflow-y: scroll;
+	display:-moz-inline-box;		
+	display:inline-block;			
+	#zoom: 1; 
+	#display:inline; 
+	border:0;
+	padding:0;
+	vertical-align:middle;
+	#vertical-align: auto;	
+}
+.dojoxRollingListPane .dijitMenuItem td {
+	width: 1px;
+}
+.dojoxRollingListPane .dijitMenuItem td.dijitMenuItemLabel {
+	width: auto;
+}
+.dojoxRollingListPane .dijitMenuItemLabel,
+.dojoxRollingListPane .dijitMenuItemIcon {
+	position: static !important;
+}
+.dj_webkit .dojoxRollingListPane,
+.dj_ie .dojoxRollingListPane {
+	padding-right: 15px; 
+}
+.dojoxRollingListPane .dijitMenu {
+	border: none !important;
+}
+.dojoxRollingListItem {
+	cursor: default;
+}
+.tundra .dojoxRollingList {
+	border-color: #b3b3b3;
+}
+.tundra .dijitPopup .dojoxRollingList {
+	border-color: #406b9b;
+}
+.tundra .dojoxRollingListPane {
+	background-color: #f7f7f7;
+}
+.tundra .dojoxRollingListPane .dojoxRollingListItemHover,
+.tundra .dojoxRollingListPane .dojoxRollingListItemFocus {
+	background-color: #e3e3e3;
+}
+.tundra .dojoxRollingListPane .dojoxRollingListItemSelected {
+	color: #fff;
+	background-color: #999;
+	font-weight: bold;
+}
+.tundra .dojoxRollingListPaneCurrentSelected .dojoxRollingListItemSelected {
+	background-color: #3559ac;
+}
+.tundra .dojoxRollingListPane .dojoxRollingListItemHoverSelected,
+.tundra .dojoxRollingListPane .dojoxRollingListItemFocusSelected {
+	background-color: #9aacd6;
+}
+.tundra .dojoxRollingListItem {
+	font-family: inherit;
+}
+.soria .dojoxRollingList {
+	border-color: #8ba0bd;
+}
+.soria .dijitPopup .dojoxRollingList {
+	border-color: #406b9b;
+}
+.soria .dojoxRollingListPane {
+	background-color: #fff;
+}
+.soria .dojoxRollingListPane .dojoxRollingListItemHover, 
+.soria .dojoxRollingListPane .dojoxRollingListItemFocus {
+	background-color: #e3e3e3;
+}
+.soria .dojoxRollingListPane .dojoxRollingListItemSelected {
+	color: #243C5F;
+	background-color: #ccc;
+	font-weight: bold;
+}
+.soria .dojoxRollingListPaneCurrentSelected .dojoxRollingListItemSelected {
+	background-color: #d9e6f9;
+}
+.soria .dojoxRollingListPane .dojoxRollingListItemHoverSelected,
+.soria .dojoxRollingListPane .dojoxRollingListItemFocusSelected {
+	background-color: #ecf3fc;
+}
+.soria .dojoxRollingListItem {
+	font-family: inherit;
+}
+.nihilo .dojoxRollingList {
+	border-color: #d3d3d3;
+}
+.nihilo .dijitPopup .dojoxRollingList {
+	border-color: #b3b3b3;
+}
+.nihilo .dojoxRollingListPane {
+	background-color: #fff;
+}
+.nihilo .dojoxRollingListPane .dojoxRollingListItemHover,
+.nihilo .dojoxRollingListPane .dojoxRollingListItemFocus {
+	background-color: #e3e3e3;
+}
+.nihilo .dojoxRollingListPane .dojoxRollingListItemSelected {
+	color: #243C5F;
+	background-color: #ccc;
+	font-weight: bold;
+}
+.nihilo .dojoxRollingListPaneCurrentSelected .dojoxRollingListItemSelected {
+	background-color: #ffe284;
+}
+.nihilo .dojoxRollingListPane .dojoxRollingListItemHoverSelected,
+.nihilo .dojoxRollingListPane .dojoxRollingListItemFocusSelected {
+	background-color: #fff1c2;
+}
+.nihilo .dojoxRollingListItem {
+	font-family: inherit;
+}
+.dojoxFileInfoPane *{
+	white-space: normal;
+}
+.dojoxFileInfoLabel {
+	font-weight: bold;
+	white-space: nowrap;
+}
+.dojoxFileInfoPane {
+	width: 20em;
+}
+.tundra .dojoxFilePickerItem .dijitMenuItemIcon {
+	background-image: url(../../widget/FilePicker/images/tundraFileIcons.gif);
+	background-repeat: no-repeat;
+}
+.tundra .dojoxFilePickerItem .dojoxEmpty {
+	background-image: none;
+}
+.tundra .dojoxFilePickerItem .dojoxDirectoryItemIcon {
+	background-position: 0px;
+}
+.tundra .dojoxFilePickerItemSelected .dojoxDirectoryItemIcon {
+	background-position: -16px;
+}
+.tundra .dojoxFilePickerItem .dojoxFileItemIcon {
+	background-position: -32px;
+}
+.tundra .dojoxFilePickerItemSelected .dojoxFileItemIcon {
+	background-position: -48px;
+}
+.soria .dojoxFilePickerItem .dijitMenuItemIcon {
+	background-image: url(../../widget/FilePicker/images/soriaFileIcons.gif);
+	background-repeat: no-repeat;
+}
+.soria .dojoxFilePickerItem .dojoxEmpty {
+	background-image: none;
+}
+.soria .dojoxFilePickerItem .dojoxDirectoryItemIcon {
+	background-position: 0px;
+}
+.soria .dojoxFilePickerItemSelected .dojoxDirectoryItemIcon {
+	background-position: -16px;
+}
+.soria .dojoxFilePickerItem .dojoxFileItemIcon {
+	background-position: -32px;
+}
+.soria .dojoxFilePickerItemSelected .dojoxFileItemIcon {
+	background-position: -48px;
+}
+.nihilo .dojoxFilePickerItem .dijitMenuItemIcon {
+	background-image: url(../../widget/FilePicker/images/nihiloFileIcons.gif);
+	background-repeat: no-repeat;
+}
+.nihilo .dojoxFilePickerItem .dojoxEmpty {
+	background-image: none;
+}
+.nihilo .dojoxFilePickerItem .dojoxDirectoryItemIcon {
+	background-position: 0px;
+}
+.nihilo .dojoxFilePickerItemSelected .dojoxDirectoryItemIcon {
+	background-position: -16px;
+}
+.nihilo .dojoxFilePickerItem .dojoxFileItemIcon {
+	background-position: -32px;
+}
+.nihilo .dojoxFilePickerItemSelected .dojoxFileItemIcon {
+	background-position: -48px;
+}
+.dojoxFilePickerTextBox{
+	width: 30em;
+	vertical-align: middle;
+}
+.dojoxFilePickerTextBox input:focus{
+	outline: none;
+}
+.dojoxFilePickerTextBoxFocused{
+	outline: auto 5px -webkit-focus-ring-color;
+}
+.dojoxFilePickerTextBox INPUT{
+	border-left: solid black 1px;
+	display:inline;
+	position:static !important;
+	border:0 !important;	
+	margin:0 !important;
+	vertical-align:top !important;
+	visibility:visible !important;
+	background-color:transparent !important;
+	background-image:none !important;
+	width:100% !important;
+}
+.dijitRtl .dojoxFilePickerTextBox .dijitInputField {
+	border-right-width:1px !important;
+	border-left-width:0 !important;
+}
+.tundra .dojoxFilePickerTextBoxDisabled *
+{
+	cursor: not-allowed !important;
+}
+.tundra .dojoxFilePickerTextBox {
+	font-family: sans-serif;
+	font-size: 100%;
+}
+.tundra .dojoxFilePickerTextBox {
+	background:#fff url("../../../dijit/themes/tundra/images/validationInputBg.png") repeat-x top left;
+	#background:#fff url('../../../dijit/themes/tundra/images/validationInputBg.gif') repeat-x top left;
+	border:1px solid #b3b3b3;
+	line-height: normal;
+}
+.tundra .dojoxFilePickerTextBoxDisabled {
+	color: gray;
+}
+.dj_webkit .tundra .dojoxFilePickerTextBoxDisabled {
+	color: #eee;
+}
+.tundra .dojoxFilePickerTextBox .dijitInputField {
+	padding: 1px 0;
+}
+.tundra .dojoxFilePickerTextBox .dijitButtonNode {
+	padding: 1px 0.2em;
+}
+.tundra .dojoxFilePickerTextBox .dijitButtonNode{
+	border-color: #9b9b9b;
+	border-width: 0px 0px 0px 1px;
+	border-style: solid;
+}
+.tundra .dojoxFilePickerTextBoxFocused {
+	border-color:#406b9b;
+}
+.tundra .dojoxFilePickerTextBoxFocused .dijitButtonNode {
+	border-left-color:#366dba;
+}
+.dijitRtl .tundra .dojoxFilePickerTextBox .dijitButtonNode{
+	border-color: #9b9b9b;
+	border-width: 0px 1px 0px 0px;
+}
+.tundra .dojoxFilePickerTextBoxDisabled {
+	border-color: #d5d5d5 #d5d5d5 #bdbdbd #d5d5d5; 
+	background:#e4e4e4 url("../../../dijit/themes/tundra/images/buttonDisabled.png") top repeat-x;
+}
+.tundra .dojoxFilePickerTextBoxHover .dijitDownArrowButton {
+	border-color:		#a5beda; 
+	border-bottom-color:#5c7590; 
+	color:#000;
+	background:#fcfdff url("../../../dijit/themes/tundra/images/buttonHover.png") repeat-x bottom;
+}
+.tundra .dojoxFilePickerTextBoxActive .dijitDownArrowButton {
+	border-color:#366dba;
+	background: #ededed url("../../../dijit/themes/tundra/images/buttonActive.png") bottom repeat-x;
+}
+.tundra .dojoxFilePickerTextBox .dijitArrowButton .dijitArrowButtonInner {
+	background-image: url("images/tundraFolderSprite.gif");
+	background-repeat: no-repeat;
+	background-attachment: scroll;
+	background-position: left center;
+	height: auto;
+	width: 16px;
+	font-size: 100%;
+	font-size: inherit;
+}
+.tundra .dojoxFilePickerTextBox .dojoxHasDropDownOpen .dijitArrowButtonInner {
+	background-position: -16px;
+}
+.tundra .dojoxFilePickerTextBoxError {
+	background-color:#f9f7ba;
+	background-image:none;
+}
+.dj_ie6 .tundra .dojoxFilePickerTextBoxError INPUT {
+	background-color:#f9f7ba !important;
+}
+.tundra .dojoxFilePickerTextBoxErrorFocused {
+	background-color:#f9f999;
+	background-image:none;
+}
+.dj_ie6 .tundra .dojoxFilePickerTextBoxErrorFocused INPUT {
+	background-color:#f9f999 !important;
+}
+.nihilo .dojoxFilePickerTextBoxDisabled *
+{
+	cursor: not-allowed !important;
+}
+.nihilo .dojoxFilePickerTextBox{
+	margin: 0em 0.1em;
+}
+.nihilo .dojoxFilePickerTextBox {
+	background:#fff url("../../../dijit/themes/nihilo/images/validationInputBg.png") repeat-x top left;
+	#background:#fff url('../../../dijit/themes/nihilo/images/validationInputBg.gif') repeat-x top left;
+	border:1px solid #d3d3d3;
+	line-height: normal;
+}
+.nihilo .dojoxFilePickerTextBox .dijitButtonNode {
+	padding: 0 0.2em;
+}
+.nihilo .dojoxFilePickerTextBox .dijitButtonNode{
+	border-color: #d3d3d3;
+	border-left: 1px solid #d3d3d3;
+}
+.nihilo .dojoxFilePickerTextBoxDisabled {
+	color: gray;
+}
+.dj_safari .nihilo .dojoxFilePickerTextBoxDisabled {
+	color: #eee;
+}
+.nihilo .dojoxFilePickerTextBoxFocused {
+	border-color:#b3b3b3;
+}
+.nihilo .dojoxFilePickerTextBoxFocused .dijitButtonNode, {
+	border-left-color:#d3d3d3;
+}
+.dijitRtl .nihilo .dojoxFilePickerTextBox .dijitButtonNode {
+	border-color: #8ba0bd;
+	border-left: 0px solid #8ba0bd;
+	border-right: 1px solid #8ba0bd;
+}
+.nihilo .dojoxFilePickerTextBoxDisabled {
+	border-color: #dedede;
+	background:#fafafa url("../../../dijit/themes/nihilo/images/buttonDisabled.png") top repeat-x;
+	opacity: 0.60;
+}
+.nihilo .dojoxFilePickerTextBoxHover .dijitDownArrowButton {
+	color:#000;
+	background:#fcfcfc url("../../../dijit/themes/nihilo/images/buttonHover.png") repeat-x top left;
+}
+.nihilo .dojoxFilePickerTextBoxActive .dijitDownArrowButton {
+	border-color:#dedede;
+	background: #f5f5f5 url("../../../dijit/themes/nihilo/images/buttonActive.png") top left repeat-x;
+}
+.dijitRtl .nihilo .dojoxFilePickerTextBox .dijitButtonNode {
+	border-width: 0px 0px 0px 1px;
+}
+.nihilo .dojoxFilePickerTextBox .dijitArrowButton .dijitArrowButtonInner {
+	background:url("images/nihiloFolderSprite.gif") no-repeat left center;
+	width: 16px;
+}
+.nihilo .dojoxFilePickerTextBox .dojoxHasDropDownOpen .dijitArrowButtonInner {
+	background-position: -16px;
+}
+.nihilo .dojoxFilePickerTextBoxError {
+	border-color:#b3b3b3;
+	background-color:#f9f7ba;
+	background-image:none;
+}
+.dj_ie6 .nihilo .dojoxFilePickerTextBoxError INPUT {
+	background-color:#f9f7ba !important;
+}
+.nihilo .dojoxFilePickerTextBoxErrorFocused {
+	background-color:#ff6;
+	background-image:none;
+}
+.dj_ie6 .nihilo .dojoxFilePickerTextBoxErrorFocused INPUT {
+	background-color:#ff6 !important;
+}
+.soria .dojoxFilePickerTextBoxDisabled *
+{
+	cursor: not-allowed !important;
+}
+.soria .dojoxFilePickerTextBox{
+	margin: 0em 0.1em;
+}
+.soria .dojoxFilePickerTextBox {
+	background:#fff url("../images/validationInputBg.png") repeat-x top left;
+	#background:#fff url('../images/validationInputBg.gif') repeat-x top left;
+	border:1px solid #8ba0bd;
+	line-height: normal;
+}
+.soria .dojoxFilePickerTextBoxDisabled{
+	color: gray;
+}
+.dj_safari .soria .dojoxFilePickerTextBoxDisabled{
+	color: #eee;
+}
+.soria .dojoxFilePickerTextBox .dijitButtonNode {
+	padding: 0 0.2em;
+}
+.soria .dojoxFilePickerTextBox .dijitButtonNode{
+	border-color: #8ba0bd;
+	border-left: 1px solid #8ba0bd;
+}
+.soria .dojoxFilePickerTextBoxFocused {
+	border-color:#406b9b;
+}
+.soria .dojoxFilePickerTextBoxFocused .dijitButtonNode {
+	border-left-color:#8ba0bd;
+}
+.dijitRtl .soria .dojoxFilePickerTextBox .dijitButtonNode{
+	border-color: #8ba0bd;
+	border-left: 0px solid #8ba0bd;
+	border-right: 1px solid #8ba0bd;
+}
+.soria .dojoxFilePickerTextBox .dijitButtonNode {
+	border-width: 0px 0px 0px 1px;
+}
+.soria .dojoxFilePickerTextBoxDisabled{
+	border-color: #b9bbdd #b9bbdd #b9bbdd #b9bbdd;
+	background:#c3d3e5 url("../../../dijit/themes/soria/buttonDisabled.png") top repeat-x;
+	opacity: 0.60; 
+}
+.soria .dojoxFilePickerTextBoxHover .dijitDownArrowButton{
+	color:#000;
+	background:#acc5e2 url("../../../dijit/themes/soria/buttonHover.png") repeat-x top left;
+}
+.soria .dojoxFilePickerTextBoxActive .dijitDownArrowButton {
+	border-color:#657c9c;
+	background: #91b4e5 url("../../../dijit/themes/soria/buttonActive.png") top left repeat-x;
+}
+.dijitRtl .soria .dojoxFilePickerTextBox .dijitButtonNode {
+	border-width: 0px 0px 0px 1px;
+}
+.soria .dojoxFilePickerTextBox .dijitArrowButton .dijitArrowButtonInner {
+	background:url("images/soriaFolderSprite.gif") no-repeat left center;
+	width: 16px;
+}
+.soria .dojoxFilePickerTextBox .dojoxHasDropDownOpen .dijitArrowButtonInner {
+	background-position: -16px;
+}
+.soria .dojoxFilePickerTextBoxError {
+	border-color:#f3d118;
+	background-color:#f9f7ba;
+	background-image:none;
+}
+.dj_ie6 .soria .dojoxFilePickerTextBoxError INPUT {
+	background-color:#f9f7ba !important;
+}
+.soria .dojoxFilePickerTextBoxErrorFocused {
+	background-color:#ff6;
+	background-image:none;
+}
+.dj_ie6 .soria .dojoxFilePickerTextBoxErrorFocused INPUT {
+	background-color:#ff6 !important;
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/FilePickerTextBox.css
------------------------------------------------------------------------------
    svn:mime-type = text/css

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/FilePickerTextBox.html
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/FilePickerTextBox.html?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/FilePickerTextBox.html (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/FilePickerTextBox.html Thu Mar 19 10:37:00 2009
@@ -0,0 +1,18 @@
+<div class="dijit dijitReset dijitInlineTable dijitLeft"
+	id="widget_${id}"
+	dojoAttachEvent="onmouseenter:_onMouse,onmouseleave:_onMouse,onmousedown:_onMouse" waiRole="combobox" tabIndex="-1"
+	><div style="overflow:hidden;"
+		><div class='dijitReset dijitRight dijitButtonNode dijitArrowButton dijitDownArrowButton'
+			dojoAttachPoint="downArrowNode,dropDownNode,popupStateNode" waiRole="presentation"
+			><div class="dijitArrowButtonInner">&thinsp;</div
+			><div class="dijitArrowButtonChar">&#9660;</div
+		></div
+		><div class="dijitReset dijitValidationIcon"><br></div
+		><div class="dijitReset dijitValidationIconText">&Chi;</div
+		><div class="dijitReset dijitInputField"
+			><input type="text" autocomplete="off" ${nameAttrSetting} class='dijitReset'
+				dojoAttachEvent='onkeypress:_onKey' 
+				dojoAttachPoint='textbox,focusNode' waiRole="textbox" waiState="haspopup-true,autocomplete-list"
+		/></div
+	></div
+></div>

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/FilePickerTextBox.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/HorizontalRangeSlider.html
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/HorizontalRangeSlider.html?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/HorizontalRangeSlider.html (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/HorizontalRangeSlider.html Thu Mar 19 10:37:00 2009
@@ -0,0 +1,39 @@
+<table class="dijit dijitReset dijitSlider dojoxRangeSlider" cellspacing="0" cellpadding="0" border="0" rules="none"
+    ><tr class="dijitReset"
+        ><td class="dijitReset" colspan="2"></td
+        ><td dojoAttachPoint="containerNode,topDecoration" class="dijitReset" style="text-align:center;width:100%;"></td
+        ><td class="dijitReset" colspan="2"></td
+    ></tr
+    ><tr class="dijitReset"
+        ><td class="dijitReset dijitSliderButtonContainer dijitSliderButtonContainerH"
+            ><div class="dijitSliderDecrementIconH" tabIndex="-1" style="display:none" dojoAttachPoint="decrementButton" dojoAttachEvent="onclick: decrement"><span class="dijitSliderButtonInner">-</span></div
+        ></td
+        ><td class="dijitReset"
+            ><div class="dijitSliderBar dijitSliderBumper dijitSliderBumperH dijitSliderLeftBumper dijitSliderLeftBumperH" dojoAttachEvent="onclick:_onClkDecBumper"></div
+        ></td
+        ><td class="dijitReset"
+            ><input dojoAttachPoint="valueNode" type="hidden" name="${name}"
+            /><div waiRole="presentation" class="dojoxRangeSliderBarContainer" dojoAttachPoint="sliderBarContainer"
+                ><div dojoAttachPoint="sliderHandle" tabIndex="${tabIndex}" class="dijitSliderMoveable" dojoAttachEvent="onkeypress:_onKeyPress,onmousedown:_onHandleClick" waiRole="slider" valuemin="${minimum}" valuemax="${maximum}"
+                    ><div class="dijitSliderImageHandle dijitSliderImageHandleH"></div
+                ></div
+                ><div waiRole="presentation" dojoAttachPoint="progressBar,focusNode" class="dijitSliderBar dijitSliderBarH dijitSliderProgressBar dijitSliderProgressBarH" dojoAttachEvent="onkeypress:_onKeyPress,onmousedown:_onBarClick"></div
+                ><div dojoAttachPoint="sliderHandleMax,focusNodeMax" tabIndex="${tabIndex}" class="dijitSliderMoveable" dojoAttachEvent="onkeypress:_onKeyPress,onmousedown:_onHandleClickMax" waiRole="sliderMax" valuemin="${minimum}" valuemax="${maximum}"
+                    ><div class="dijitSliderImageHandle dijitSliderImageHandleH"></div
+                ></div
+                ><div waiRole="presentation" dojoAttachPoint="remainingBar" class="dijitSliderBar dijitSliderBarH dijitSliderRemainingBar dijitSliderRemainingBarH" dojoAttachEvent="onmousedown:_onRemainingBarClick"></div
+            ></div
+        ></td
+        ><td class="dijitReset"
+            ><div class="dijitSliderBar dijitSliderBumper dijitSliderBumperH dijitSliderRightBumper dijitSliderRightBumperH" dojoAttachEvent="onclick:_onClkIncBumper"></div
+        ></td
+        ><td class="dijitReset dijitSliderButtonContainer dijitSliderButtonContainerH"
+            ><div class="dijitSliderIncrementIconH" tabIndex="-1" style="display:none" dojoAttachPoint="incrementButton" dojoAttachEvent="onclick: increment"><span class="dijitSliderButtonInner">+</span></div
+        ></td
+    ></tr
+    ><tr class="dijitReset"
+        ><td class="dijitReset" colspan="2"></td
+        ><td dojoAttachPoint="containerNode,bottomDecoration" class="dijitReset" style="text-align:center;"></td
+        ><td class="dijitReset" colspan="2"></td
+    ></tr
+></table>

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/HorizontalRangeSlider.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/PasswordValidator.html
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/PasswordValidator.html?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/PasswordValidator.html (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/PasswordValidator.html Thu Mar 19 10:37:00 2009
@@ -0,0 +1,3 @@
+<div dojoAttachPoint="containerNode">
+	<input type="hidden" name="${name}" value="" dojoAttachPoint="focusNode" />
+</div>
\ No newline at end of file

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/PasswordValidator.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/RangeSlider.css
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/RangeSlider.css?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/RangeSlider.css (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/RangeSlider.css Thu Mar 19 10:37:00 2009
@@ -0,0 +1,18 @@
+.dojoxRangeSlider .dijitSliderLeftBumperH, .dojoxRangeSlider .dijitSliderBottomBumperV  {
+    background:#FFFFFF !important;
+}
+.dojoxRangeSliderBarContainer {
+    position:relative;
+}
+.dojoxRangeSlider .dijitSliderProgressBarV {
+    position:relative !important;
+}
+.dojoxRangeSlider .dijitSliderProgressBar {
+    overflow:hidden;
+    cursor:pointer;
+    
+}
+.dojoxRangeSlider .dijitSliderProgressBarV {
+    position:absolute !important;
+    border-width: 0px;
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/RangeSlider.css
------------------------------------------------------------------------------
    svn:mime-type = text/css

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/Rating.css
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/Rating.css?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/Rating.css (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/Rating.css Thu Mar 19 10:37:00 2009
@@ -0,0 +1,20 @@
+.dojoxRating ul {
+	padding:0;
+	margin:0;
+}
+.dojoxRatingStar {
+	display:inline-block;
+	background-image:url(images/rating_empty.gif);
+	background-position:left center;
+	position:relative;
+	height:15px;
+	width:15px;
+	float:left;
+}
+.dojoxRatingStarChecked {
+	background-image:url(images/rating_full.gif);
+}
+.dojoxRatingStarHover {
+	background-image:url(images/rating_full.gif);
+	opacity:.5;
+}

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/Rating.css
------------------------------------------------------------------------------
    svn:mime-type = text/css

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/RecieveFile.php
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/RecieveFile.php?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/RecieveFile.php (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/RecieveFile.php Thu Mar 19 10:37:00 2009
@@ -0,0 +1,37 @@
+<?php
+
+// THIS IS AN EXAMPLE
+// you will obviously need to do more server side work than I am doing here to check and move your upload.
+// API is up for discussion, jump on http://dojotoolkit.org/forums
+
+// JSON.php is available in dojo svn checkout
+require("../../../dojo/tests/resources/JSON.php");
+$json = new Services_JSON();
+
+// fake delay
+sleep(3);
+$name = empty($_REQUEST['name'])? "default" : $_REQUEST['name'];
+if(is_array($_FILES)){
+	$ar = array(
+		// lets just pass lots of stuff back and see what we find.
+		// the _FILES aren't coming through in IE6 (maybe 7)
+		'status' => "success",
+		'name' => $name,
+		'request' => $_REQUEST,
+		'postvars' => $_POST,
+		'details' => $_FILES,
+		// and some static subarray just to see
+		'foo' => array('foo'=>"bar")
+	);
+
+}else{
+	$ar = array(
+		'status' => "failed",
+		'details' => ""
+	);
+}
+
+// yeah, seems you have to wrap iframeIO stuff in textareas?
+$foo = $json->encode($ar);
+?>
+<textarea><?php print $foo; ?></textarea>

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/UploadFile.php
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/UploadFile.php?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/UploadFile.php (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/UploadFile.php Thu Mar 19 10:37:00 2009
@@ -0,0 +1,207 @@
+<?php
+// summary
+//		Test file to handle image uploads (remove the image size check to upload non-images)
+//
+//		This file handles both Flash and HTML uploads
+//
+//		NOTE: This is obviously a PHP file, and thus you need PHP running for this to work
+//		NOTE: Directories must have write permissions
+//		NOTE: This code uses the GD library (to get image sizes), that sometimes is not pre-installed in a 
+//				standard PHP build. 
+//
+require("cLOG.php");
+function findTempDirectory()
+  {
+    if(isset($_ENV["TMP"]) && is_writable($_ENV["TMP"])) return $_ENV["TMP"];
+    elseif( is_writable(ini_get('upload_tmp_dir'))) return ini_get('upload_tmp_dir');
+    elseif(isset($_ENV["TEMP"]) && is_writable($_ENV["TEMP"])) return $_ENV["TEMP"];
+    elseif(is_writable("/tmp")) return "/tmp";
+    elseif(is_writable("/windows/temp")) return "/windows/temp";
+    elseif(is_writable("/winnt/temp")) return "/winnt/temp";
+    else return null;
+  }
+function trace($txt, $isArray=false){
+	//creating a text file that we can log to
+	// this is helpful on a remote server if you don't
+	//have access to the log files
+	//
+	//echo($txt."<br/>");
+	$log = new cLOG("../resources/upload.txt", false);
+	//$log->clear();
+	if($isArray){
+		$log->printr($txt);
+	}else{
+		$log->write($txt);
+	}
+}
+function getImageType($filename){
+	return strtolower(substr(strrchr($filename,"."),1));
+}
+trace("---------------------------------------------------------");
+trace("TmpDir:".findTempDirectory());
+//
+//
+//	EDIT ME: According to your local directory structure.
+// 	NOTE: Folders must have write permissions
+//
+$upload_path = "../resources/"; 	// where image will be uploaded, relative to this file
+$download_path = "../resources/";	// same folder as above, but relative to the HTML file
+
+//
+// 	NOTE: maintain this path for JSON services
+//
+require("../../../dojo/tests/resources/JSON.php");
+$json = new Services_JSON();
+
+//
+// 	Determine if this is a Flash upload, or an HTML upload
+//	
+//
+
+//		First combine relavant postVars
+$postdata = array();
+$data = "";
+foreach ($_POST as $nm => $val) {
+	$data .= $nm ."=" . $val . ",";
+	$postdata[$nm] = $val;
+}
+
+$fieldName = "flashUploadFiles";//Filedata";
+
+if( isset($_FILES[$fieldName])){
+	//
+	// If the data passed has $fieldName, then it's Flash. That's the default fieldname used.
+	//
+	trace("returnFlashdata.... ");
+	
+	trace("");
+	trace("ID:");
+	trace($_POST['testId']);
+	
+	trace("Flash POST:");
+	trace($_POST, true);
+	
+	trace("POSTDATA:");
+	trace($postdata, true);
+	
+	trace("GET:");
+	trace($_GET, true);
+	
+	trace("FILES:");
+	trace($_FILES[$fieldName], true);
+	
+	trace("REQUEST:");
+	trace($_REQUEST, true);
+	
+	
+	
+	
+	
+	$returnFlashdata = true;
+	$m = move_uploaded_file($_FILES[$fieldName]['tmp_name'],  $upload_path . $_FILES[$fieldName]['name']);
+	$name = $_FILES[$fieldName]['name'];
+	$file = $upload_path . $name;
+	list($width, $height) = getimagesize($file);
+	$type = getImageType($file);
+	trace("file: " . $file ."  ".$type." ".$width);
+	// 		Flash gets a string back:
+	
+	$data .='file='.$file.',name='.$name.',width='.$width.',height='.$height.',type='.$type;
+	if($returnFlashdata){
+		trace("returnFlashdata");
+		trace($data, true);
+		echo($data);
+		return $data;
+	}
+
+
+
+
+}elseif( isset($_FILES['uploadedfile']) ){
+	//
+	// 	If the data passed has 'uploadedfile', then it's HTML. 
+	//	There may be better ways to check this, but this is just a test file.$returnFlashdata = false;
+	//
+	$m = move_uploaded_file($_FILES['uploadedfile']['tmp_name'],  $upload_path . $_FILES['uploadedfile']['name']);
+	trace("moved:".$m);
+	trace("Temp:".$_FILES['uploadedfile']['tmp_name']);
+	
+	
+	
+	
+	trace("HTML single POST:");
+	trace($_POST, true);
+	
+	$name = $_FILES['uploadedfile']['name'];
+	$file = $upload_path . $name;
+	$type = getImageType($file);
+	list($width, $height) = getimagesize($file);
+	trace("file: " . $file );
+	$ar = array(
+		'file' => $file,
+		'name' => $name,
+		'width' => $width,
+		'height' => $height,
+		'type'=> $type
+	);
+	$postdata['file'] = $file;
+	$postdata['name'] = $name;
+	$postdata['width'] = $width;
+	$postdata['height'] = $height;
+	$postdata['type'] = $type;
+
+}elseif( isset($_FILES['uploadedfile0']) ){
+	//
+	//	Multiple files have been passed from HTML
+	//
+	$cnt = 0;
+	$ar = array();
+	trace("HTML multiple POST:");
+	trace($_POST, true);
+
+	while(isset($_FILES['uploadedfile'.$cnt])){
+		$moved = move_uploaded_file($_FILES['uploadedfile'.$cnt]['tmp_name'],  $upload_path . $_FILES['uploadedfile'.$cnt]['name']);
+		if($moved){
+			$name = $_FILES['uploadedfile'.$cnt]['name'];
+			$file = $upload_path . $name;
+			$type = getImageType($file);
+			list($width, $height) = getimagesize($file);
+			trace("file: " . $file );
+			$ar[] = array(
+				'file' => $file,
+				'name' => $name,
+				'width' => $width,
+				'height' => $height,
+				'type'=> $type
+			);
+					
+			$postdata['file'] = $file;
+			$postdata['name'] = $name;
+			$postdata['width'] = $width;
+			$postdata['height'] = $height;
+			$postdata['type'] = $type;
+		}
+		$cnt++;
+	}
+	
+}elseif(isset($_GET['rmFiles'])){
+	trace("DELETING FILES" . $_GET['rmFiles']);
+	$rmFiles = explode(";", $_GET['rmFiles']);
+	foreach($rmFiles as $f){
+		if($f && file_exists($f)){
+			trace("deleted:" . $f. ":" .unlink($f));
+		}
+	}
+
+}else{
+	trace("IMROPER DATA SENT... $FILES:");
+	trace($_FILES);
+}
+
+//HTML gets a json array back:
+//$data = $json->encode($ar);
+$data = $json->encode($postdata);
+trace($data);
+// in a text field:
+?>
+<textarea><?php print $data; ?></textarea>
\ No newline at end of file

Added: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/VerticalRangeSlider.html
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/VerticalRangeSlider.html?rev=755904&view=auto
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/VerticalRangeSlider.html (added)
+++ camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/VerticalRangeSlider.html Thu Mar 19 10:37:00 2009
@@ -0,0 +1,50 @@
+<table class="dijitReset dijitSlider dojoxRangeSlider" cellspacing="0" cellpadding="0" border="0" rules="none"
+><tbody class="dijitReset"
+    ><tr class="dijitReset"
+        ><td class="dijitReset"></td
+        ><td class="dijitReset dijitSliderButtonContainer dijitSliderButtonContainerV"
+            ><div class="dijitSliderIncrementIconV" tabIndex="-1" style="display:none" dojoAttachPoint="incrementButton" dojoAttachEvent="onclick: increment"><span class="dijitSliderButtonInner">+</span></div
+        ></td
+        ><td class="dijitReset"></td
+    ></tr
+    ><tr class="dijitReset"
+        ><td class="dijitReset"></td
+        ><td class="dijitReset"
+            ><center><div class="dijitSliderBar dijitSliderBumper dijitSliderBumperV dijitSliderTopBumper dijitSliderTopBumperV" dojoAttachEvent="onclick:_onClkIncBumper"></div></center
+        ></td
+        ><td class="dijitReset"></td
+    ></tr
+    ><tr class="dijitReset"
+        ><td dojoAttachPoint="leftDecoration" class="dijitReset" style="text-align:center;height:100%;"></td
+        ><td class="dijitReset" style="height:100%;"
+            ><input dojoAttachPoint="valueNode" type="hidden" name="${name}"
+            /><center waiRole="presentation" style="position:relative;height:100%;" dojoAttachPoint="sliderBarContainer"
+                ><div waiRole="presentation" dojoAttachPoint="remainingBar" class="dijitSliderBar dijitSliderBarV dijitSliderRemainingBar dijitSliderRemainingBarV" dojoAttachEvent="onmousedown:_onRemainingBarClick"
+                    ><div dojoAttachPoint="sliderHandle" tabIndex="${tabIndex}" class="dijitSliderMoveable" dojoAttachEvent="onkeypress:_onKeyPress,onmousedown:_onHandleClick" style="vertical-align:top;" waiRole="slider" valuemin="${minimum}" valuemax="${maximum}"
+                        ><div class="dijitSliderImageHandle dijitSliderImageHandleV"></div
+                    ></div
+                    ><div waiRole="presentation" dojoAttachPoint="progressBar,focusNode" tabIndex="${tabIndex}" class="dijitSliderBar dijitSliderBarV dijitSliderProgressBar dijitSliderProgressBarV" dojoAttachEvent="onkeypress:_onKeyPress,onmousedown:_onBarClick"
+                    ></div
+                    ><div dojoAttachPoint="sliderHandleMax,focusNodeMax" tabIndex="${tabIndex}" class="dijitSliderMoveable" dojoAttachEvent="onkeypress:_onKeyPress,onmousedown:_onHandleClickMax" style="vertical-align:top;" waiRole="slider" valuemin="${minimum}" valuemax="${maximum}"
+                        ><div class="dijitSliderImageHandle dijitSliderImageHandleV"></div
+                    ></div
+                ></div
+            ></center
+        ></td
+        ><td dojoAttachPoint="containerNode,rightDecoration" class="dijitReset" style="text-align:center;height:100%;"></td
+    ></tr
+    ><tr class="dijitReset"
+        ><td class="dijitReset"></td
+        ><td class="dijitReset"
+            ><center><div class="dijitSliderBar dijitSliderBumper dijitSliderBumperV dijitSliderBottomBumper dijitSliderBottomBumperV" dojoAttachEvent="onclick:_onClkDecBumper"></div></center
+        ></td
+        ><td class="dijitReset"></td
+    ></tr
+    ><tr class="dijitReset"
+        ><td class="dijitReset"></td
+        ><td class="dijitReset dijitSliderButtonContainer dijitSliderButtonContainerV"
+            ><div class="dijitSliderDecrementIconV" tabIndex="-1" style="display:none" dojoAttachPoint="decrementButton" dojoAttachEvent="onclick: decrement"><span class="dijitSliderButtonInner">-</span></div
+        ></td
+        ><td class="dijitReset"></td
+    ></tr
+></tbody></table>

Propchange: camel/trunk/components/camel-web/src/main/webapp/js/dojox/form/resources/VerticalRangeSlider.html
------------------------------------------------------------------------------
    svn:mime-type = text/html