You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by jk...@apache.org on 2008/02/04 23:08:37 UTC

svn commit: r618461 [21/43] - in /tapestry/tapestry4/trunk/tapestry-framework/src/js: dojo-0.4.3-custom-4.1.5/ dojo-0.4.3-custom-4.1.5/nls/ dojo-0.4.3-custom-4.1.5/src/ dojo-0.4.3-custom-4.1.5/src/animation/ dojo-0.4.3-custom-4.1.5/src/cal/ dojo-0.4.3-...

Added: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/html/selection.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/html/selection.js?rev=618461&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/html/selection.js (added)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/html/selection.js Mon Feb  4 14:07:13 2008
@@ -0,0 +1,326 @@
+dojo.require("dojo.html.common");
+dojo.provide("dojo.html.selection");
+dojo.require("dojo.dom");
+dojo.require("dojo.lang.common");
+dojo.html.selectionType={NONE:0,TEXT:1,CONTROL:2};
+dojo.html.clearSelection=function(){
+var _1=dojo.global();
+var _2=dojo.doc();
+try{
+if(_1["getSelection"]){
+if(dojo.render.html.safari){
+_1.getSelection().collapse();
+}else{
+_1.getSelection().removeAllRanges();
+}
+}else{
+if(_2.selection){
+if(_2.selection.empty){
+_2.selection.empty();
+}else{
+if(_2.selection.clear){
+_2.selection.clear();
+}
+}
+}
+}
+return true;
+}
+catch(e){
+dojo.debug(e);
+return false;
+}
+};
+dojo.html.disableSelection=function(_3){
+_3=dojo.byId(_3)||dojo.body();
+var h=dojo.render.html;
+if(h.mozilla){
+_3.style.MozUserSelect="none";
+}else{
+if(h.safari){
+_3.style.KhtmlUserSelect="none";
+}else{
+if(h.ie){
+_3.unselectable="on";
+}else{
+return false;
+}
+}
+}
+return true;
+};
+dojo.html.enableSelection=function(_5){
+_5=dojo.byId(_5)||dojo.body();
+var h=dojo.render.html;
+if(h.mozilla){
+_5.style.MozUserSelect="";
+}else{
+if(h.safari){
+_5.style.KhtmlUserSelect="";
+}else{
+if(h.ie){
+_5.unselectable="off";
+}else{
+return false;
+}
+}
+}
+return true;
+};
+dojo.html.selectElement=function(_7){
+dojo.deprecated("dojo.html.selectElement","replaced by dojo.html.selection.selectElementChildren",0.5);
+};
+dojo.html.selectInputText=function(_8){
+var _9=dojo.global();
+var _a=dojo.doc();
+_8=dojo.byId(_8);
+if(_a["selection"]&&dojo.body()["createTextRange"]){
+var _b=_8.createTextRange();
+_b.moveStart("character",0);
+_b.moveEnd("character",_8.value.length);
+_b.select();
+}else{
+if(_9["getSelection"]){
+var _c=_9.getSelection();
+_8.setSelectionRange(0,_8.value.length);
+}
+}
+_8.focus();
+};
+dojo.html.isSelectionCollapsed=function(){
+dojo.deprecated("dojo.html.isSelectionCollapsed","replaced by dojo.html.selection.isCollapsed",0.5);
+return dojo.html.selection.isCollapsed();
+};
+dojo.lang.mixin(dojo.html.selection,{getType:function(){
+if(dojo.doc()["selection"]){
+return dojo.html.selectionType[dojo.doc().selection.type.toUpperCase()];
+}else{
+var _d=dojo.html.selectionType.TEXT;
+var _e;
+try{
+_e=dojo.global().getSelection();
+}
+catch(e){
+}
+if(_e&&_e.rangeCount==1){
+var _f=_e.getRangeAt(0);
+if(_f.startContainer==_f.endContainer&&(_f.endOffset-_f.startOffset)==1&&_f.startContainer.nodeType!=dojo.dom.TEXT_NODE){
+_d=dojo.html.selectionType.CONTROL;
+}
+}
+return _d;
+}
+},isCollapsed:function(){
+var _10=dojo.global();
+var _11=dojo.doc();
+if(_11["selection"]){
+return _11.selection.createRange().text=="";
+}else{
+if(_10["getSelection"]){
+var _12=_10.getSelection();
+if(dojo.lang.isString(_12)){
+return _12=="";
+}else{
+return _12.isCollapsed||_12.toString()=="";
+}
+}
+}
+},getSelectedElement:function(){
+if(dojo.html.selection.getType()==dojo.html.selectionType.CONTROL){
+if(dojo.doc()["selection"]){
+var _13=dojo.doc().selection.createRange();
+if(_13&&_13.item){
+return dojo.doc().selection.createRange().item(0);
+}
+}else{
+var _14=dojo.global().getSelection();
+return _14.anchorNode.childNodes[_14.anchorOffset];
+}
+}
+},getParentElement:function(){
+if(dojo.html.selection.getType()==dojo.html.selectionType.CONTROL){
+var p=dojo.html.selection.getSelectedElement();
+if(p){
+return p.parentNode;
+}
+}else{
+if(dojo.doc()["selection"]){
+return dojo.doc().selection.createRange().parentElement();
+}else{
+var _16=dojo.global().getSelection();
+if(_16){
+var _17=_16.anchorNode;
+while(_17&&_17.nodeType!=dojo.dom.ELEMENT_NODE){
+_17=_17.parentNode;
+}
+return _17;
+}
+}
+}
+},getSelectedText:function(){
+if(dojo.doc()["selection"]){
+if(dojo.html.selection.getType()==dojo.html.selectionType.CONTROL){
+return null;
+}
+return dojo.doc().selection.createRange().text;
+}else{
+var _18=dojo.global().getSelection();
+if(_18){
+return _18.toString();
+}
+}
+},getSelectedHtml:function(){
+if(dojo.doc()["selection"]){
+if(dojo.html.selection.getType()==dojo.html.selectionType.CONTROL){
+return null;
+}
+return dojo.doc().selection.createRange().htmlText;
+}else{
+var _19=dojo.global().getSelection();
+if(_19&&_19.rangeCount){
+var _1a=_19.getRangeAt(0).cloneContents();
+var div=document.createElement("div");
+div.appendChild(_1a);
+return div.innerHTML;
+}
+return null;
+}
+},hasAncestorElement:function(_1c){
+return (dojo.html.selection.getAncestorElement.apply(this,arguments)!=null);
+},getAncestorElement:function(_1d){
+var _1e=dojo.html.selection.getSelectedElement()||dojo.html.selection.getParentElement();
+while(_1e){
+if(dojo.html.selection.isTag(_1e,arguments).length>0){
+return _1e;
+}
+_1e=_1e.parentNode;
+}
+return null;
+},isTag:function(_1f,_20){
+if(_1f&&_1f.tagName){
+for(var i=0;i<_20.length;i++){
+if(_1f.tagName.toLowerCase()==String(_20[i]).toLowerCase()){
+return String(_20[i]).toLowerCase();
+}
+}
+}
+return "";
+},selectElement:function(_22){
+var _23=dojo.global();
+var _24=dojo.doc();
+_22=dojo.byId(_22);
+if(_24.selection&&dojo.body().createTextRange){
+try{
+var _25=dojo.body().createControlRange();
+_25.addElement(_22);
+_25.select();
+}
+catch(e){
+dojo.html.selection.selectElementChildren(_22);
+}
+}else{
+if(_23["getSelection"]){
+var _26=_23.getSelection();
+if(_26["removeAllRanges"]){
+var _25=_24.createRange();
+_25.selectNode(_22);
+_26.removeAllRanges();
+_26.addRange(_25);
+}
+}
+}
+},selectElementChildren:function(_27){
+var _28=dojo.global();
+var _29=dojo.doc();
+_27=dojo.byId(_27);
+if(_29.selection&&dojo.body().createTextRange){
+var _2a=dojo.body().createTextRange();
+_2a.moveToElementText(_27);
+_2a.select();
+}else{
+if(_28["getSelection"]){
+var _2b=_28.getSelection();
+if(_2b["setBaseAndExtent"]){
+_2b.setBaseAndExtent(_27,0,_27,_27.innerText.length-1);
+}else{
+if(_2b["selectAllChildren"]){
+_2b.selectAllChildren(_27);
+}
+}
+}
+}
+},getBookmark:function(){
+var _2c;
+var _2d=dojo.doc();
+if(_2d["selection"]){
+var _2e=_2d.selection.createRange();
+_2c=_2e.getBookmark();
+}else{
+var _2f;
+try{
+_2f=dojo.global().getSelection();
+}
+catch(e){
+}
+if(_2f){
+var _2e=_2f.getRangeAt(0);
+_2c=_2e.cloneRange();
+}else{
+dojo.debug("No idea how to store the current selection for this browser!");
+}
+}
+return _2c;
+},moveToBookmark:function(_30){
+var _31=dojo.doc();
+if(_31["selection"]){
+var _32=_31.selection.createRange();
+_32.moveToBookmark(_30);
+_32.select();
+}else{
+var _33;
+try{
+_33=dojo.global().getSelection();
+}
+catch(e){
+}
+if(_33&&_33["removeAllRanges"]){
+_33.removeAllRanges();
+_33.addRange(_30);
+}else{
+dojo.debug("No idea how to restore selection for this browser!");
+}
+}
+},collapse:function(_34){
+if(dojo.global()["getSelection"]){
+var _35=dojo.global().getSelection();
+if(_35.removeAllRanges){
+if(_34){
+_35.collapseToStart();
+}else{
+_35.collapseToEnd();
+}
+}else{
+dojo.global().getSelection().collapse(_34);
+}
+}else{
+if(dojo.doc().selection){
+var _36=dojo.doc().selection.createRange();
+_36.collapse(_34);
+_36.select();
+}
+}
+},remove:function(){
+if(dojo.doc().selection){
+var _37=dojo.doc().selection;
+if(_37.type.toUpperCase()!="NONE"){
+_37.clear();
+}
+return _37;
+}else{
+var _37=dojo.global().getSelection();
+for(var i=0;i<_37.rangeCount;i++){
+_37.getRangeAt(i).deleteContents();
+}
+return _37;
+}
+}});

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/html/selection.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/html/selection.js
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/html/selection.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/html/shadow.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/html/shadow.js?rev=618461&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/html/shadow.js (added)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/html/shadow.js Mon Feb  4 14:07:13 2008
@@ -0,0 +1,4 @@
+dojo.provide("dojo.html.shadow");
+dojo.require("dojo.lfx.shadow");
+dojo.deprecated("dojo.html.shadow has been moved to dojo.lfx.","0.5");
+dojo.html.shadow=dojo.lfx.shadow;

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/html/shadow.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/html/shadow.js
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/html/shadow.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/html/style.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/html/style.js?rev=618461&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/html/style.js (added)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/html/style.js Mon Feb  4 14:07:13 2008
@@ -0,0 +1,470 @@
+dojo.provide("dojo.html.style");
+dojo.require("dojo.html.common");
+dojo.require("dojo.uri.Uri");
+dojo.html.getClass=function(_1){
+_1=dojo.byId(_1);
+if(!_1){
+return "";
+}
+var cs="";
+if(_1.className){
+cs=_1.className;
+}else{
+if(dojo.html.hasAttribute(_1,"class")){
+cs=dojo.html.getAttribute(_1,"class");
+}
+}
+return cs.replace(/^\s+|\s+$/g,"");
+};
+dojo.html.getClasses=function(_3){
+var c=dojo.html.getClass(_3);
+return (c=="")?[]:c.split(/\s+/g);
+};
+dojo.html.hasClass=function(_5,_6){
+return (new RegExp("(^|\\s+)"+_6+"(\\s+|$)")).test(dojo.html.getClass(_5));
+};
+dojo.html.prependClass=function(_7,_8){
+_8+=" "+dojo.html.getClass(_7);
+return dojo.html.setClass(_7,_8);
+};
+dojo.html.addClass=function(_9,_a){
+if(dojo.html.hasClass(_9,_a)){
+return false;
+}
+_a=(dojo.html.getClass(_9)+" "+_a).replace(/^\s+|\s+$/g,"");
+return dojo.html.setClass(_9,_a);
+};
+dojo.html.setClass=function(_b,_c){
+_b=dojo.byId(_b);
+var cs=new String(_c);
+try{
+if(typeof _b.className=="string"){
+_b.className=cs;
+}else{
+if(_b.setAttribute){
+_b.setAttribute("class",_c);
+_b.className=cs;
+}else{
+return false;
+}
+}
+}
+catch(e){
+dojo.debug("dojo.html.setClass() failed",e);
+}
+return true;
+};
+dojo.html.removeClass=function(_e,_f,_10){
+try{
+if(!_10){
+var _11=dojo.html.getClass(_e).replace(new RegExp("(^|\\s+)"+_f+"(\\s+|$)"),"$1$2");
+}else{
+var _11=dojo.html.getClass(_e).replace(_f,"");
+}
+dojo.html.setClass(_e,_11);
+}
+catch(e){
+dojo.debug("dojo.html.removeClass() failed",e);
+}
+return true;
+};
+dojo.html.replaceClass=function(_12,_13,_14){
+dojo.html.removeClass(_12,_14);
+dojo.html.addClass(_12,_13);
+};
+dojo.html.classMatchType={ContainsAll:0,ContainsAny:1,IsOnly:2};
+dojo.html.getElementsByClass=function(_15,_16,_17,_18,_19){
+_19=false;
+var _1a=dojo.doc();
+_16=dojo.byId(_16)||_1a;
+var _1b=_15.split(/\s+/g);
+var _1c=[];
+if(_18!=1&&_18!=2){
+_18=0;
+}
+var _1d=new RegExp("(\\s|^)(("+_1b.join(")|(")+"))(\\s|$)");
+var _1e=_1b.join(" ").length;
+var _1f=[];
+if(!_19&&_1a.evaluate){
+var _20=".//"+(_17||"*")+"[contains(";
+if(_18!=dojo.html.classMatchType.ContainsAny){
+_20+="concat(' ',@class,' '), ' "+_1b.join(" ') and contains(concat(' ',@class,' '), ' ")+" ')";
+if(_18==2){
+_20+=" and string-length(@class)="+_1e+"]";
+}else{
+_20+="]";
+}
+}else{
+_20+="concat(' ',@class,' '), ' "+_1b.join(" ') or contains(concat(' ',@class,' '), ' ")+" ')]";
+}
+var _21=_1a.evaluate(_20,_16,null,XPathResult.ANY_TYPE,null);
+var _22=_21.iterateNext();
+while(_22){
+try{
+_1f.push(_22);
+_22=_21.iterateNext();
+}
+catch(e){
+break;
+}
+}
+return _1f;
+}else{
+if(!_17){
+_17="*";
+}
+_1f=_16.getElementsByTagName(_17);
+var _23,i=0;
+outer:
+while(_23=_1f[i++]){
+var _25=dojo.html.getClasses(_23);
+if(_25.length==0){
+continue outer;
+}
+var _26=0;
+for(var j=0;j<_25.length;j++){
+if(_1d.test(_25[j])){
+if(_18==dojo.html.classMatchType.ContainsAny){
+_1c.push(_23);
+continue outer;
+}else{
+_26++;
+}
+}else{
+if(_18==dojo.html.classMatchType.IsOnly){
+continue outer;
+}
+}
+}
+if(_26==_1b.length){
+if((_18==dojo.html.classMatchType.IsOnly)&&(_26==_25.length)){
+_1c.push(_23);
+}else{
+if(_18==dojo.html.classMatchType.ContainsAll){
+_1c.push(_23);
+}
+}
+}
+}
+return _1c;
+}
+};
+dojo.html.getElementsByClassName=dojo.html.getElementsByClass;
+dojo.html.toCamelCase=function(_28){
+var arr=_28.split("-"),cc=arr[0];
+for(var i=1;i<arr.length;i++){
+cc+=arr[i].charAt(0).toUpperCase()+arr[i].substring(1);
+}
+return cc;
+};
+dojo.html.toSelectorCase=function(_2c){
+return _2c.replace(/([A-Z])/g,"-$1").toLowerCase();
+};
+if(dojo.render.html.ie){
+dojo.html.getComputedStyle=function(_2d,_2e,_2f){
+_2d=dojo.byId(_2d);
+if(!_2d||!_2d.currentStyle){
+return _2f;
+}
+return _2d.currentStyle[dojo.html.toCamelCase(_2e)];
+};
+dojo.html.getComputedStyles=function(_30){
+return _30.currentStyle;
+};
+}else{
+dojo.html.getComputedStyle=function(_31,_32,_33){
+_31=dojo.byId(_31);
+if(!_31||!_31.style){
+return _33;
+}
+var s=document.defaultView.getComputedStyle(_31,null);
+return (s&&s[dojo.html.toCamelCase(_32)])||"";
+};
+dojo.html.getComputedStyles=function(_35){
+return document.defaultView.getComputedStyle(_35,null);
+};
+}
+dojo.html.getStyleProperty=function(_36,_37){
+_36=dojo.byId(_36);
+return (_36&&_36.style?_36.style[dojo.html.toCamelCase(_37)]:undefined);
+};
+dojo.html.getStyle=function(_38,_39){
+var _3a=dojo.html.getStyleProperty(_38,_39);
+return (_3a?_3a:dojo.html.getComputedStyle(_38,_39));
+};
+dojo.html.setStyle=function(_3b,_3c,_3d){
+_3b=dojo.byId(_3b);
+if(_3b&&_3b.style){
+var _3e=dojo.html.toCamelCase(_3c);
+_3b.style[_3e]=_3d;
+}
+};
+dojo.html.setStyleText=function(_3f,_40){
+try{
+_3f.style.cssText=_40;
+}
+catch(e){
+_3f.setAttribute("style",_40);
+}
+};
+dojo.html.copyStyle=function(_41,_42){
+if(!_42.style.cssText){
+_41.setAttribute("style",_42.getAttribute("style"));
+}else{
+_41.style.cssText=_42.style.cssText;
+}
+dojo.html.addClass(_41,dojo.html.getClass(_42));
+};
+dojo.html.getUnitValue=function(_43,_44,_45){
+var s=dojo.html.getComputedStyle(_43,_44);
+if((!s)||((s=="auto")&&(_45))){
+return {value:0,units:"px"};
+}
+var _47=s.match(/(\-?[\d.]+)([a-z%]*)/i);
+if(!_47){
+return dojo.html.getUnitValue.bad;
+}
+return {value:Number(_47[1]),units:_47[2].toLowerCase()};
+};
+dojo.html.getUnitValue.bad={value:NaN,units:""};
+if(dojo.render.html.ie){
+dojo.html.toPixelValue=function(_48,_49){
+if(!_49){
+return 0;
+}
+if(_49.slice(-2)=="px"){
+return parseFloat(_49);
+}
+var _4a=0;
+with(_48){
+var _4b=style.left;
+var _4c=runtimeStyle.left;
+runtimeStyle.left=currentStyle.left;
+try{
+style.left=_49||0;
+_4a=style.pixelLeft;
+style.left=_4b;
+runtimeStyle.left=_4c;
+}
+catch(e){
+}
+}
+return _4a;
+};
+}else{
+dojo.html.toPixelValue=function(_4d,_4e){
+return (_4e&&(_4e.slice(-2)=="px")?parseFloat(_4e):0);
+};
+}
+dojo.html.getPixelValue=function(_4f,_50,_51){
+return dojo.html.toPixelValue(_4f,dojo.html.getComputedStyle(_4f,_50));
+};
+dojo.html.setPositivePixelValue=function(_52,_53,_54){
+if(isNaN(_54)){
+return false;
+}
+_52.style[_53]=Math.max(0,_54)+"px";
+return true;
+};
+dojo.html.styleSheet=null;
+dojo.html.insertCssRule=function(_55,_56,_57){
+if(!dojo.html.styleSheet){
+if(document.createStyleSheet){
+dojo.html.styleSheet=document.createStyleSheet();
+}else{
+if(document.styleSheets[0]){
+dojo.html.styleSheet=document.styleSheets[0];
+}else{
+return null;
+}
+}
+}
+if(arguments.length<3){
+if(dojo.html.styleSheet.cssRules){
+_57=dojo.html.styleSheet.cssRules.length;
+}else{
+if(dojo.html.styleSheet.rules){
+_57=dojo.html.styleSheet.rules.length;
+}else{
+return null;
+}
+}
+}
+if(dojo.html.styleSheet.insertRule){
+var _58=_55+" { "+_56+" }";
+return dojo.html.styleSheet.insertRule(_58,_57);
+}else{
+if(dojo.html.styleSheet.addRule){
+return dojo.html.styleSheet.addRule(_55,_56,_57);
+}else{
+return null;
+}
+}
+};
+dojo.html.removeCssRule=function(_59){
+if(!dojo.html.styleSheet){
+dojo.debug("no stylesheet defined for removing rules");
+return false;
+}
+if(dojo.render.html.ie){
+if(!_59){
+_59=dojo.html.styleSheet.rules.length;
+dojo.html.styleSheet.removeRule(_59);
+}
+}else{
+if(document.styleSheets[0]){
+if(!_59){
+_59=dojo.html.styleSheet.cssRules.length;
+}
+dojo.html.styleSheet.deleteRule(_59);
+}
+}
+return true;
+};
+dojo.html._insertedCssFiles=[];
+dojo.html.insertCssFile=function(URI,doc,_5c,_5d){
+if(!URI){
+return;
+}
+if(!doc){
+doc=document;
+}
+var _5e=dojo.hostenv.getText(URI,false,_5d);
+if(_5e===null){
+return;
+}
+_5e=dojo.html.fixPathsInCssText(_5e,URI);
+if(_5c){
+var idx=-1,_60,ent=dojo.html._insertedCssFiles;
+for(var i=0;i<ent.length;i++){
+if((ent[i].doc==doc)&&(ent[i].cssText==_5e)){
+idx=i;
+_60=ent[i].nodeRef;
+break;
+}
+}
+if(_60){
+var _63=doc.getElementsByTagName("style");
+for(var i=0;i<_63.length;i++){
+if(_63[i]==_60){
+return;
+}
+}
+dojo.html._insertedCssFiles.shift(idx,1);
+}
+}
+var _64=dojo.html.insertCssText(_5e,doc);
+dojo.html._insertedCssFiles.push({"doc":doc,"cssText":_5e,"nodeRef":_64});
+if(_64&&djConfig.isDebug){
+_64.setAttribute("dbgHref",URI);
+}
+return _64;
+};
+dojo.html.insertCssText=function(_65,doc,URI){
+if(!_65){
+return;
+}
+if(!doc){
+doc=document;
+}
+if(URI){
+_65=dojo.html.fixPathsInCssText(_65,URI);
+}
+var _68=doc.createElement("style");
+_68.setAttribute("type","text/css");
+var _69=doc.getElementsByTagName("head")[0];
+if(!_69){
+dojo.debug("No head tag in document, aborting styles");
+return;
+}else{
+_69.appendChild(_68);
+}
+if(_68.styleSheet){
+var _6a=function(){
+try{
+_68.styleSheet.cssText=_65;
+}
+catch(e){
+dojo.debug(e);
+}
+};
+if(_68.styleSheet.disabled){
+setTimeout(_6a,10);
+}else{
+_6a();
+}
+}else{
+var _6b=doc.createTextNode(_65);
+_68.appendChild(_6b);
+}
+return _68;
+};
+dojo.html.fixPathsInCssText=function(_6c,URI){
+if(!_6c||!URI){
+return;
+}
+var _6e,str="",url="",_71="[\\t\\s\\w\\(\\)\\/\\.\\\\'\"-:#=&?~]+";
+var _72=new RegExp("url\\(\\s*("+_71+")\\s*\\)");
+var _73=/(file|https?|ftps?):\/\//;
+regexTrim=new RegExp("^[\\s]*(['\"]?)("+_71+")\\1[\\s]*?$");
+if(dojo.render.html.ie55||dojo.render.html.ie60){
+var _74=new RegExp("AlphaImageLoader\\((.*)src=['\"]("+_71+")['\"]");
+while(_6e=_74.exec(_6c)){
+url=_6e[2].replace(regexTrim,"$2");
+if(!_73.exec(url)){
+url=(new dojo.uri.Uri(URI,url).toString());
+}
+str+=_6c.substring(0,_6e.index)+"AlphaImageLoader("+_6e[1]+"src='"+url+"'";
+_6c=_6c.substr(_6e.index+_6e[0].length);
+}
+_6c=str+_6c;
+str="";
+}
+while(_6e=_72.exec(_6c)){
+url=_6e[1].replace(regexTrim,"$2");
+if(!_73.exec(url)){
+url=(new dojo.uri.Uri(URI,url).toString());
+}
+str+=_6c.substring(0,_6e.index)+"url("+url+")";
+_6c=_6c.substr(_6e.index+_6e[0].length);
+}
+return str+_6c;
+};
+dojo.html.setActiveStyleSheet=function(_75){
+var i=0,a,els=dojo.doc().getElementsByTagName("link");
+while(a=els[i++]){
+if(a.getAttribute("rel").indexOf("style")!=-1&&a.getAttribute("title")){
+a.disabled=true;
+if(a.getAttribute("title")==_75){
+a.disabled=false;
+}
+}
+}
+};
+dojo.html.getActiveStyleSheet=function(){
+var i=0,a,els=dojo.doc().getElementsByTagName("link");
+while(a=els[i++]){
+if(a.getAttribute("rel").indexOf("style")!=-1&&a.getAttribute("title")&&!a.disabled){
+return a.getAttribute("title");
+}
+}
+return null;
+};
+dojo.html.getPreferredStyleSheet=function(){
+var i=0,a,els=dojo.doc().getElementsByTagName("link");
+while(a=els[i++]){
+if(a.getAttribute("rel").indexOf("style")!=-1&&a.getAttribute("rel").indexOf("alt")==-1&&a.getAttribute("title")){
+return a.getAttribute("title");
+}
+}
+return null;
+};
+dojo.html.applyBrowserClass=function(_7f){
+var drh=dojo.render.html;
+var _81={dj_ie:drh.ie,dj_ie55:drh.ie55,dj_ie6:drh.ie60,dj_ie7:drh.ie70,dj_iequirks:drh.ie&&drh.quirks,dj_opera:drh.opera,dj_opera8:drh.opera&&(Math.floor(dojo.render.version)==8),dj_opera9:drh.opera&&(Math.floor(dojo.render.version)==9),dj_khtml:drh.khtml,dj_safari:drh.safari,dj_gecko:drh.mozilla};
+for(var p in _81){
+if(_81[p]){
+dojo.html.addClass(_7f,p);
+}
+}
+};

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/html/style.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/html/style.js
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/html/style.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/html/util.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/html/util.js?rev=618461&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/html/util.js (added)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/html/util.js Mon Feb  4 14:07:13 2008
@@ -0,0 +1,343 @@
+dojo.provide("dojo.html.util");
+dojo.require("dojo.html.layout");
+dojo.html.getElementWindow=function(_1){
+return dojo.html.getDocumentWindow(_1.ownerDocument);
+};
+dojo.html.getDocumentWindow=function(_2){
+if(dojo.render.html.safari&&!_2._parentWindow){
+var _3=function(_4){
+_4.document._parentWindow=_4;
+for(var i=0;i<_4.frames.length;i++){
+_3(_4.frames[i]);
+}
+};
+_3(window.top);
+}
+if(dojo.render.html.ie&&window!==document.parentWindow&&!_2._parentWindow){
+_2.parentWindow.execScript("document._parentWindow = window;","Javascript");
+var _6=_2._parentWindow;
+_2._parentWindow=null;
+return _6;
+}
+return _2._parentWindow||_2.parentWindow||_2.defaultView;
+};
+dojo.html.gravity=function(_7,e){
+_7=dojo.byId(_7);
+var _9=dojo.html.getCursorPosition(e);
+with(dojo.html){
+var _a=getAbsolutePosition(_7,true);
+var bb=getBorderBox(_7);
+var _c=_a.x+(bb.width/2);
+var _d=_a.y+(bb.height/2);
+}
+with(dojo.html.gravity){
+return ((_9.x<_c?WEST:EAST)|(_9.y<_d?NORTH:SOUTH));
+}
+};
+dojo.html.gravity.NORTH=1;
+dojo.html.gravity.SOUTH=1<<1;
+dojo.html.gravity.EAST=1<<2;
+dojo.html.gravity.WEST=1<<3;
+dojo.html.overElement=function(_e,e){
+_e=dojo.byId(_e);
+var _10=dojo.html.getCursorPosition(e);
+var bb=dojo.html.getBorderBox(_e);
+var _12=dojo.html.getAbsolutePosition(_e,true,dojo.html.boxSizing.BORDER_BOX);
+var top=_12.y;
+var _14=top+bb.height;
+var _15=_12.x;
+var _16=_15+bb.width;
+return (_10.x>=_15&&_10.x<=_16&&_10.y>=top&&_10.y<=_14);
+};
+dojo.html.renderedTextContent=function(_17){
+_17=dojo.byId(_17);
+var _18="";
+if(_17==null){
+return _18;
+}
+for(var i=0;i<_17.childNodes.length;i++){
+switch(_17.childNodes[i].nodeType){
+case 1:
+case 5:
+var _1a="unknown";
+try{
+_1a=dojo.html.getStyle(_17.childNodes[i],"display");
+}
+catch(E){
+}
+switch(_1a){
+case "block":
+case "list-item":
+case "run-in":
+case "table":
+case "table-row-group":
+case "table-header-group":
+case "table-footer-group":
+case "table-row":
+case "table-column-group":
+case "table-column":
+case "table-cell":
+case "table-caption":
+_18+="\n";
+_18+=dojo.html.renderedTextContent(_17.childNodes[i]);
+_18+="\n";
+break;
+case "none":
+break;
+default:
+if(_17.childNodes[i].tagName&&_17.childNodes[i].tagName.toLowerCase()=="br"){
+_18+="\n";
+}else{
+_18+=dojo.html.renderedTextContent(_17.childNodes[i]);
+}
+break;
+}
+break;
+case 3:
+case 2:
+case 4:
+var _1b=_17.childNodes[i].nodeValue;
+var _1c="unknown";
+try{
+_1c=dojo.html.getStyle(_17,"text-transform");
+}
+catch(E){
+}
+switch(_1c){
+case "capitalize":
+var _1d=_1b.split(" ");
+for(var i=0;i<_1d.length;i++){
+_1d[i]=_1d[i].charAt(0).toUpperCase()+_1d[i].substring(1);
+}
+_1b=_1d.join(" ");
+break;
+case "uppercase":
+_1b=_1b.toUpperCase();
+break;
+case "lowercase":
+_1b=_1b.toLowerCase();
+break;
+default:
+break;
+}
+switch(_1c){
+case "nowrap":
+break;
+case "pre-wrap":
+break;
+case "pre-line":
+break;
+case "pre":
+break;
+default:
+_1b=_1b.replace(/\s+/," ");
+if(/\s$/.test(_18)){
+_1b.replace(/^\s/,"");
+}
+break;
+}
+_18+=_1b;
+break;
+default:
+break;
+}
+}
+return _18;
+};
+dojo.html.createNodesFromText=function(txt,_1f){
+if(_1f){
+txt=txt.replace(/^\s+|\s+$/g,"");
+}
+var tn=dojo.doc().createElement("div");
+tn.style.visibility="hidden";
+dojo.body().appendChild(tn);
+var _21="none";
+if((/^<t[dh][\s\r\n>]/i).test(txt.replace(/^\s+/))){
+txt="<table><tbody><tr>"+txt+"</tr></tbody></table>";
+_21="cell";
+}else{
+if((/^<tr[\s\r\n>]/i).test(txt.replace(/^\s+/))){
+txt="<table><tbody>"+txt+"</tbody></table>";
+_21="row";
+}else{
+if((/^<(thead|tbody|tfoot)[\s\r\n>]/i).test(txt.replace(/^\s+/))){
+txt="<table>"+txt+"</table>";
+_21="section";
+}
+}
+}
+tn.innerHTML=txt;
+if(tn["normalize"]){
+tn.normalize();
+}
+var _22=null;
+switch(_21){
+case "cell":
+_22=tn.getElementsByTagName("tr")[0];
+break;
+case "row":
+_22=tn.getElementsByTagName("tbody")[0];
+break;
+case "section":
+_22=tn.getElementsByTagName("table")[0];
+break;
+default:
+_22=tn;
+break;
+}
+var _23=[];
+for(var x=0;x<_22.childNodes.length;x++){
+_23.push(_22.childNodes[x].cloneNode(true));
+}
+tn.style.display="none";
+dojo.html.destroyNode(tn);
+return _23;
+};
+dojo.html.placeOnScreen=function(_25,_26,_27,_28,_29,_2a,_2b){
+if(_26 instanceof Array||typeof _26=="array"){
+_2b=_2a;
+_2a=_29;
+_29=_28;
+_28=_27;
+_27=_26[1];
+_26=_26[0];
+}
+if(_2a instanceof String||typeof _2a=="string"){
+_2a=_2a.split(",");
+}
+if(!isNaN(_28)){
+_28=[Number(_28),Number(_28)];
+}else{
+if(!(_28 instanceof Array||typeof _28=="array")){
+_28=[0,0];
+}
+}
+var _2c=dojo.html.getScroll().offset;
+var _2d=dojo.html.getViewport();
+_25=dojo.byId(_25);
+var _2e=_25.style.display;
+_25.style.display="";
+var bb=dojo.html.getBorderBox(_25);
+var w=bb.width;
+var h=bb.height;
+_25.style.display=_2e;
+if(!(_2a instanceof Array||typeof _2a=="array")){
+_2a=["TL"];
+}
+var _32,_33,_34=Infinity,_35;
+for(var _36=0;_36<_2a.length;++_36){
+var _37=_2a[_36];
+var _38=true;
+var _39=_26-(_37.charAt(1)=="L"?0:w)+_28[0]*(_37.charAt(1)=="L"?1:-1);
+var _3a=_27-(_37.charAt(0)=="T"?0:h)+_28[1]*(_37.charAt(0)=="T"?1:-1);
+if(_29){
+_39-=_2c.x;
+_3a-=_2c.y;
+}
+if(_39<0){
+_39=0;
+_38=false;
+}
+if(_3a<0){
+_3a=0;
+_38=false;
+}
+var x=_39+w;
+if(x>_2d.width){
+x=_2d.width-w;
+_38=false;
+}else{
+x=_39;
+}
+x=Math.max(_28[0],x)+_2c.x;
+var y=_3a+h;
+if(y>_2d.height){
+y=_2d.height-h;
+_38=false;
+}else{
+y=_3a;
+}
+y=Math.max(_28[1],y)+_2c.y;
+if(_38){
+_32=x;
+_33=y;
+_34=0;
+_35=_37;
+break;
+}else{
+var _3d=Math.pow(x-_39-_2c.x,2)+Math.pow(y-_3a-_2c.y,2);
+if(_34>_3d){
+_34=_3d;
+_32=x;
+_33=y;
+_35=_37;
+}
+}
+}
+if(!_2b){
+_25.style.left=_32+"px";
+_25.style.top=_33+"px";
+}
+return {left:_32,top:_33,x:_32,y:_33,dist:_34,corner:_35};
+};
+dojo.html.placeOnScreenPoint=function(_3e,_3f,_40,_41,_42){
+dojo.deprecated("dojo.html.placeOnScreenPoint","use dojo.html.placeOnScreen() instead","0.5");
+return dojo.html.placeOnScreen(_3e,_3f,_40,_41,_42,["TL","TR","BL","BR"]);
+};
+dojo.html.placeOnScreenAroundElement=function(_43,_44,_45,_46,_47,_48){
+var _49,_4a=Infinity;
+_44=dojo.byId(_44);
+var _4b=_44.style.display;
+_44.style.display="";
+var mb=dojo.html.getElementBox(_44,_46);
+var _4d=mb.width;
+var _4e=mb.height;
+var _4f=dojo.html.getAbsolutePosition(_44,true,_46);
+_44.style.display=_4b;
+for(var _50 in _47){
+var pos,_52,_53;
+var _54=_47[_50];
+_52=_4f.x+(_50.charAt(1)=="L"?0:_4d);
+_53=_4f.y+(_50.charAt(0)=="T"?0:_4e);
+pos=dojo.html.placeOnScreen(_43,_52,_53,_45,true,_54,true);
+if(pos.dist==0){
+_49=pos;
+break;
+}else{
+if(_4a>pos.dist){
+_4a=pos.dist;
+_49=pos;
+}
+}
+}
+if(!_48){
+_43.style.left=_49.left+"px";
+_43.style.top=_49.top+"px";
+}
+return _49;
+};
+dojo.html.scrollIntoView=function(_55){
+if(!_55){
+return;
+}
+if(dojo.render.html.ie){
+if(dojo.html.getBorderBox(_55.parentNode).height<=_55.parentNode.scrollHeight){
+_55.scrollIntoView(false);
+}
+}else{
+if(dojo.render.html.mozilla){
+_55.scrollIntoView(false);
+}else{
+var _56=_55.parentNode;
+var _57=_56.scrollTop+dojo.html.getBorderBox(_56).height;
+var _58=_55.offsetTop+dojo.html.getMarginBox(_55).height;
+if(_57<_58){
+_56.scrollTop+=(_58-_57);
+}else{
+if(_56.scrollTop>_55.offsetTop){
+_56.scrollTop-=(_56.scrollTop-_55.offsetTop);
+}
+}
+}
+}
+};

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/html/util.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/html/util.js
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/html/util.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/README
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/README?rev=618461&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/README (added)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/README Mon Feb  4 14:07:13 2008
@@ -0,0 +1,6 @@
+All files within this directory and subdirectories were manually derived from http://unicode.org/cldr
+
+See terms of use: http://www.unicode.org/copyright.html#Exhibit1
+
+Eventually, this data should be generated directly from the XML in the CLDR repository to provide
+accurate and full support for the full set of locales.

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/README
------------------------------------------------------------------------------
    svn:eol-style = native

Added: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/de/gregorian.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/de/gregorian.js?rev=618461&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/de/gregorian.js (added)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/de/gregorian.js Mon Feb  4 14:07:13 2008
@@ -0,0 +1 @@
+({"field-weekday":"Wochentag","dateFormat-medium":"dd.MM.yyyy","field-second":"Sekunde","field-week":"Woche","pm":"nachm.","timeFormat-full":"H:mm' Uhr 'z","months-standAlone-narrow":["J","F","M","A","M","J","J","A","S","O","N","D"],"am":"vorm.","days-standAlone-narrow":["S","M","D","M","D","F","S"],"field-year":"Jahr","eras":["v. Chr.","n. Chr."],"field-hour":"Stunde","dateFormat-long":"d. MMMM yyyy","field-day":"Tag","field-dayperiod":"Tagesh\xe4lfte","field-month":"Monat","dateFormat-short":"dd.MM.yy","months-format-wide":["Januar","Februar","M\xe4rz","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],"field-era":"Epoche","months-format-abbr":["Jan","Feb","Mrz","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],"days-format-wide":["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],"dateFormat-full":"EEEE, d. MMMM yyyy","field-zone":"Zone","days-format-abbr":["So","Mo","Di","Mi","Do","Fr","Sa"],"field-minute":"Minu
 te","timeFormat-medium":"HH:mm:ss","timeFormat-short":"HH:mm","timeFormat-long":"HH:mm:ss z"});

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/de/gregorian.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/de/gregorian.js
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/de/gregorian.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/el/gregorian.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/el/gregorian.js?rev=618461&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/el/gregorian.js (added)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/el/gregorian.js Mon Feb  4 14:07:13 2008
@@ -0,0 +1 @@
+({"field-weekday":"Day of the Week","dateFormat-medium":"yyyy MMM d","field-second":"Second","field-week":"Week","pm":"PM","timeFormat-full":"HH:mm:ss z","months-standAlone-narrow":["1","2","3","4","5","6","7","8","9","10","11","12"],"am":"AM","days-standAlone-narrow":["1","2","3","4","5","6","7"],"field-year":"Year","eras":["BCE","CE"],"field-minute":"Minute","timeFormat-medium":"HH:mm:ss","field-hour":"Hour","dateFormat-long":"yyyy MMMM d","field-day":"Day","field-dayperiod":"Dayperiod","field-month":"Month","dateFormat-short":"yy/MM/dd","months-format-wide":["1","2","3","4","5","6","7","8","9","10","11","12"],"field-era":"Era","timeFormat-short":"HH:mm","months-format-abbr":["1","2","3","4","5","6","7","8","9","10","11","12"],"timeFormat-long":"HH:mm:ss z","days-format-wide":["1","2","3","4","5","6","7"],"dateFormat-full":"EEEE, yyyy MMMM dd","field-zone":"Zone","days-format-abbr":["1","2","3","4","5","6","7"]});

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/el/gregorian.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/el/gregorian.js
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/el/gregorian.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/el/gregorianExtras.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/el/gregorianExtras.js?rev=618461&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/el/gregorianExtras.js (added)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/el/gregorianExtras.js Mon Feb  4 14:07:13 2008
@@ -0,0 +1 @@
+({"dateFormat-yearOnly":"yyyy"});

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/el/gregorianExtras.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/el/gregorianExtras.js
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/el/gregorianExtras.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/en/gregorian.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/en/gregorian.js?rev=618461&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/en/gregorian.js (added)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/en/gregorian.js Mon Feb  4 14:07:13 2008
@@ -0,0 +1 @@
+({"months-standAlone-narrow":["J","F","M","A","M","J","J","A","S","O","N","D"],"dateFormat-long":"MMMM d, yyyy","timeFormat-full":"h:mm:ss a v","eras":["BC","AD"],"timeFormat-medium":"h:mm:ss a","dateFormat-medium":"MMM d, yyyy","months-format-abbr":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"dateFormat-full":"EEEE, MMMM d, yyyy","days-format-abbr":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"timeFormat-long":"h:mm:ss a z","timeFormat-short":"h:mm a","dateFormat-short":"M/d/yy","months-format-wide":["January","February","March","April","May","June","July","August","September","October","November","December"],"days-standAlone-narrow":["S","M","T","W","T","F","S"],"days-format-wide":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"field-weekday":"Day of the Week","field-second":"Second","field-week":"Week","pm":"PM","am":"AM","field-year":"Year","field-minute":"Minute","field-hour":"Hour","field-day":"Day","field-dayperio
 d":"Dayperiod","field-month":"Month","field-era":"Era","field-zone":"Zone"});

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/en/gregorian.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/en/gregorian.js
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/en/gregorian.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/es/gregorian.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/es/gregorian.js?rev=618461&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/es/gregorian.js (added)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/es/gregorian.js Mon Feb  4 14:07:13 2008
@@ -0,0 +1 @@
+({"field-weekday":"d\xeda de la semana","dateFormat-medium":"dd-MMM-yy","field-second":"segundo","field-week":"semana","pm":"p.m.","timeFormat-full":"HH'H'mm''ss\" z","months-standAlone-narrow":["E","F","M","A","M","J","J","A","S","O","N","D"],"am":"a.m.","days-standAlone-narrow":["D","L","M","M","J","V","S"],"field-year":"a\xf1o","eras":["a.C.","d.C."],"field-minute":"minuto","field-hour":"hora","dateFormat-long":"d' de 'MMMM' de 'yyyy","field-day":"d\xeda","field-dayperiod":"periodo del d\xeda","field-month":"mes","dateFormat-short":"d/MM/yy","months-format-wide":["enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre"],"field-era":"era","months-format-abbr":["ene","feb","mar","abr","may","jun","jul","ago","sep","oct","nov","dic"],"days-format-wide":["domingo","lunes","martes","mi\xe9rcoles","jueves","viernes","s\xe1bado"],"dateFormat-full":"EEEE d' de 'MMMM' de 'yyyy","field-zone":"zona","days-format-abbr":["dom","l
 un","mar","mi\xe9","jue","vie","s\xe1b"],"timeFormat-medium":"HH:mm:ss","timeFormat-short":"HH:mm","timeFormat-long":"HH:mm:ss z"});

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/es/gregorian.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/es/gregorian.js
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/es/gregorian.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/fi/gregorian.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/fi/gregorian.js?rev=618461&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/fi/gregorian.js (added)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/fi/gregorian.js Mon Feb  4 14:07:13 2008
@@ -0,0 +1 @@
+({"field-weekday":"viikonp\xe4iv\xe4","dateFormat-medium":"d.M.yyyy","field-second":"sekunti","field-week":"viikko","pm":"ip.","timeFormat-full":"H.mm.ss v","months-standAlone-narrow":["T","H","M","H","T","K","H","E","S","L","M","J"],"am":"ap.","days-standAlone-narrow":["S","M","T","K","T","P","L"],"field-year":"vuosi","eras":["eKr.","jKr."],"field-minute":"minuutti","timeFormat-medium":"H.mm.ss","field-hour":"tunti","dateFormat-long":"d. MMMM'ta 'yyyy","field-day":"p\xe4iv\xe4","field-dayperiod":"ap/ip-valinta","field-month":"kuukausi","dateFormat-short":"d.M.yyyy","months-format-wide":["tammikuu","helmikuu","maaliskuu","huhtikuu","toukokuu","kes\xe4kuu","hein\xe4kuu","elokuu","syyskuu","lokakuu","marraskuu","joulukuu"],"field-era":"aikakausi","timeFormat-short":"H.mm","months-format-abbr":["tammi","helmi","maalis","huhti","touko","kes\xe4","hein\xe4","elo","syys","loka","marras","joulu"],"timeFormat-long":"'klo 'H.mm.ss","days-format-wide":["sunnuntai","maanantai","tiistai
 ","keskiviikko","torstai","perjantai","lauantai"],"dateFormat-full":"EEEE'na 'd. MMMM'ta 'yyyy","field-zone":"aikavy\xf6hyke","days-format-abbr":["su","ma","ti","ke","to","pe","la"]});

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/fi/gregorian.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/fi/gregorian.js
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/fi/gregorian.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/fr/gregorian.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/fr/gregorian.js?rev=618461&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/fr/gregorian.js (added)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/fr/gregorian.js Mon Feb  4 14:07:13 2008
@@ -0,0 +1 @@
+({"field-weekday":"jour de la semaine","dateFormat-medium":"d MMM yy","field-second":"seconde","field-week":"semaine","pm":"ap. m.","timeFormat-full":"HH' h 'mm z","months-standAlone-narrow":["J","F","M","A","M","J","J","A","S","O","N","D"],"am":"matin","days-standAlone-narrow":["D","L","M","M","J","V","S"],"field-year":"ann\xe9e","eras":["av. J.-C.","apr. J.-C."],"field-minute":"minute","field-hour":"heure","dateFormat-long":"d MMMM yyyy","field-day":"jour","field-dayperiod":"p\xe9riode de la journ\xe9e","field-month":"mois","dateFormat-short":"dd/MM/yy","months-format-wide":["janvier","f\xe9vrier","mars","avril","mai","juin","juillet","ao\xfbt","septembre","octobre","novembre","d\xe9cembre"],"field-era":"\xe9poque","months-format-abbr":["janv.","f\xe9vr.","mars","avr.","mai","juin","juil.","ao\xfbt","sept.","oct.","nov.","d\xe9c."],"days-format-wide":["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],"dateFormat-full":"EEEE d MMMM yyyy","field-zone":"zone"
 ,"days-format-abbr":["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],"timeFormat-medium":"HH:mm:ss","timeFormat-short":"HH:mm","timeFormat-long":"HH:mm:ss z"});

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/fr/gregorian.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/fr/gregorian.js
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/fr/gregorian.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/gregorian.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/gregorian.js?rev=618461&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/gregorian.js (added)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/gregorian.js Mon Feb  4 14:07:13 2008
@@ -0,0 +1 @@
+({"field-weekday":"Day of the Week","dateFormat-medium":"yyyy MMM d","field-second":"Second","field-week":"Week","pm":"PM","timeFormat-full":"HH:mm:ss z","months-standAlone-narrow":["1","2","3","4","5","6","7","8","9","10","11","12"],"am":"AM","days-standAlone-narrow":["1","2","3","4","5","6","7"],"field-year":"Year","eras":["BCE","CE"],"field-minute":"Minute","timeFormat-medium":"HH:mm:ss","field-hour":"Hour","dateFormat-long":"yyyy MMMM d","field-day":"Day","field-dayperiod":"Dayperiod","field-month":"Month","dateFormat-short":"yy/MM/dd","months-format-wide":["1","2","3","4","5","6","7","8","9","10","11","12"],"field-era":"Era","timeFormat-short":"HH:mm","months-format-abbr":["1","2","3","4","5","6","7","8","9","10","11","12"],"timeFormat-long":"HH:mm:ss z","days-format-wide":["1","2","3","4","5","6","7"],"dateFormat-full":"EEEE, yyyy MMMM dd","field-zone":"Zone","days-format-abbr":["1","2","3","4","5","6","7"]});

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/gregorian.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/gregorian.js
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/gregorian.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/gregorianExtras.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/gregorianExtras.js?rev=618461&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/gregorianExtras.js (added)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/gregorianExtras.js Mon Feb  4 14:07:13 2008
@@ -0,0 +1 @@
+({"dateFormat-yearOnly":"yyyy"});

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/gregorianExtras.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/gregorianExtras.js
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/gregorianExtras.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/hu/gregorian.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/hu/gregorian.js?rev=618461&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/hu/gregorian.js (added)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/hu/gregorian.js Mon Feb  4 14:07:13 2008
@@ -0,0 +1 @@
+({"field-weekday":"h\xe9t napja","dateFormat-medium":"yyyy MMM d","field-second":"m\xe1sodperc","field-week":"h\xe9t","pm":"d.u.","timeFormat-full":"h:mm:ss a v","months-standAlone-narrow":["J","F","M","\xc1","M","J","J","A","S","O","N","D"],"am":"d.e.","days-standAlone-narrow":["V","H","K","Sz","Cs","P","Sz"],"field-year":"\xe9v","eras":["k.e.","k.u."],"field-minute":"perc","timeFormat-medium":"h:mm:ss a","field-hour":"\xf3ra","dateFormat-long":"yyyy MMMM d","field-day":"nap","field-dayperiod":"napszak","field-month":"h\xf3nap","dateFormat-short":"yyyy-M-d","months-format-wide":["janu\xe1r","febru\xe1r","m\xe1rcius","\xe1prilis","m\xe1jus","j\xfanius","j\xfalius","augusztus","szeptember","okt\xf3ber","november","december"],"field-era":"\xe9ra","timeFormat-short":"h:mm a","months-format-abbr":["jan","feb","m\xe1r","apr","m\xe1j","j\xfan","j\xfal","aug","sze","okt","nov","dec"],"timeFormat-long":"h:mm:ss a z","days-format-wide":["vas\xe1rnap","h\xe9tf\u0151","kedd","szerda","
 cs\xfct\xf6rt\xf6k","p\xe9ntek","szombat"],"dateFormat-full":"yyyy MMMM d, EEEE","field-zone":"z\xf3na","days-format-abbr":["Va","H\xe9","Ke","Sze","Cs\xfc","P\xe9","Szo"]});

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/hu/gregorian.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/hu/gregorian.js
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/hu/gregorian.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/it/gregorian.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/it/gregorian.js?rev=618461&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/it/gregorian.js (added)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/it/gregorian.js Mon Feb  4 14:07:13 2008
@@ -0,0 +1 @@
+({"field-weekday":"giorno della settimana","dateFormat-medium":"dd/MMM/yy","field-second":"secondo","field-week":"settimana","pm":"p.","months-standAlone-narrow":["G","F","M","A","M","G","L","A","S","O","N","D"],"am":"m.","days-standAlone-narrow":["D","L","M","M","G","V","S"],"field-year":"anno","eras":["aC","dC"],"field-minute":"minuto","field-hour":"ora","dateFormat-long":"dd MMMM yyyy","field-day":"giorno","field-dayperiod":"periodo del giorno","field-month":"mese","dateFormat-short":"dd/MM/yy","months-format-wide":["gennaio","febbraio","marzo","aprile","maggio","giugno","luglio","agosto","settembre","ottobre","novembre","dicembre"],"field-era":"era","months-format-abbr":["gen","feb","mar","apr","mag","giu","lug","ago","set","ott","nov","dic"],"days-format-wide":["domenica","luned\xec","marted\xec","mercoled\xec","gioved\xec","venerd\xec","sabato"],"dateFormat-full":"EEEE d MMMM yyyy","field-zone":"zona","days-format-abbr":["dom","lun","mar","mer","gio","ven","sab"],"time
 Format-full":"HH:mm:ss z","timeFormat-medium":"HH:mm:ss","timeFormat-short":"HH:mm","timeFormat-long":"HH:mm:ss z"});

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/it/gregorian.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/it/gregorian.js
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/it/gregorian.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/ja/gregorian.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/ja/gregorian.js?rev=618461&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/ja/gregorian.js (added)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/ja/gregorian.js Mon Feb  4 14:07:13 2008
@@ -0,0 +1 @@
+({"days-standAlone-narrow":["\u65e5","\u6708","\u706b","\u6c34","\u6728","\u91d1","\u571f"],"timeFormat-full":"H'\u6642'mm'\u5206'ss'\u79d2'z","eras":["\u7d00\u5143\u524d","\u897f\u66a6"],"timeFormat-medium":"H:mm:ss","dateFormat-medium":"yyyy/MM/dd","am":"\u5348\u524d","months-format-abbr":["1 \u6708","2 \u6708","3 \u6708","4 \u6708","5 \u6708","6 \u6708","7 \u6708","8 \u6708","9 \u6708","10 \u6708","11 \u6708","12 \u6708"],"dateFormat-full":"yyyy'\u5e74'M'\u6708'd'\u65e5'EEEE","days-format-abbr":["\u65e5","\u6708","\u706b","\u6c34","\u6728","\u91d1","\u571f"],"timeFormat-long":"H:mm:ss:z","timeFormat-short":"H:mm","pm":"\u5348\u5f8c","months-format-wide":["1 \u6708","2 \u6708","3 \u6708","4 \u6708","5 \u6708","6 \u6708","7 \u6708","8 \u6708","9 \u6708","10 \u6708","11 \u6708","12 \u6708"],"dateFormat-long":"yyyy'\u5e74'M'\u6708'd'\u65e5'","days-format-wide":["\u65e5\u66dc\u65e5","\u6708\u66dc\u65e5","\u706b\u66dc\u65e5","\u6c34\u66dc\u65e5","\u6728\u66dc\u65e5","\u91d1\u66
 dc\u65e5","\u571f\u66dc\u65e5"],"field-weekday":"Day of the Week","field-second":"Second","field-week":"Week","months-standAlone-narrow":["1","2","3","4","5","6","7","8","9","10","11","12"],"field-year":"Year","field-minute":"Minute","field-hour":"Hour","field-day":"Day","field-dayperiod":"Dayperiod","field-month":"Month","dateFormat-short":"yy/MM/dd","field-era":"Era","field-zone":"Zone"});

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/ja/gregorian.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/ja/gregorian.js
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/ja/gregorian.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/ja/gregorianExtras.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/ja/gregorianExtras.js?rev=618461&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/ja/gregorianExtras.js (added)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/ja/gregorianExtras.js Mon Feb  4 14:07:13 2008
@@ -0,0 +1 @@
+({"dateFormat-yearOnly":"yyyy\u5e74"});

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/ja/gregorianExtras.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/ja/gregorianExtras.js
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/ja/gregorianExtras.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/ko/gregorian.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/ko/gregorian.js?rev=618461&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/ko/gregorian.js (added)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/ko/gregorian.js Mon Feb  4 14:07:13 2008
@@ -0,0 +1 @@
+({"months-standAlone-narrow":["1\uc6d4","2\uc6d4","3\uc6d4","4\uc6d4","5\uc6d4","6\uc6d4","7\uc6d4","8\uc6d4","9\uc6d4","10\uc6d4","11\uc6d4","12\uc6d4"],"dateFormat-long":"yyyy'\ub144' M'\uc6d4' d'\uc77c'","timeFormat-full":"a hh'\uc2dc' mm'\ubd84' ss'\ucd08' z","eras":["\uae30\uc6d0\uc804","\uc11c\uae30"],"timeFormat-medium":"a hh'\uc2dc' mm'\ubd84'","dateFormat-medium":"yyyy. MM. dd","am":"\uc624\uc804","months-format-abbr":["1\uc6d4","2\uc6d4","3\uc6d4","4\uc6d4","5\uc6d4","6\uc6d4","7\uc6d4","8\uc6d4","9\uc6d4","10\uc6d4","11\uc6d4","12\uc6d4"],"dateFormat-full":"yyyy'\ub144' M'\uc6d4' d'\uc77c' EEEE","days-format-abbr":["\uc77c","\uc6d4","\ud654","\uc218","\ubaa9","\uae08","\ud1a0"],"timeFormat-long":"a hh'\uc2dc' mm'\ubd84' ss'\ucd08'","timeFormat-short":"a hh'\uc2dc' mm'\ubd84'","dateFormat-short":"yy. MM. dd","pm":"\uc624\ud6c4","months-format-wide":["1\uc6d4","2\uc6d4","3\uc6d4","4\uc6d4","5\uc6d4","6\uc6d4","7\uc6d4","8\uc6d4","9\uc6d4","10\uc6d4","11\uc6d4","12\u
 c6d4"],"days-standAlone-narrow":["\uc77c","\uc6d4","\ud654","\uc218","\ubaa9","\uae08","\ud1a0"],"days-format-wide":["\uc77c\uc694\uc77c","\uc6d4\uc694\uc77c","\ud654\uc694\uc77c","\uc218\uc694\uc77c","\ubaa9\uc694\uc77c","\uae08\uc694\uc77c","\ud1a0\uc694\uc77c"],"field-weekday":"Day of the Week","field-second":"Second","field-week":"Week","field-year":"Year","field-minute":"Minute","field-hour":"Hour","field-day":"Day","field-dayperiod":"Dayperiod","field-month":"Month","field-era":"Era","field-zone":"Zone"});

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/ko/gregorian.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/ko/gregorian.js
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/ko/gregorian.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/nl/gregorian.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/nl/gregorian.js?rev=618461&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/nl/gregorian.js (added)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/nl/gregorian.js Mon Feb  4 14:07:13 2008
@@ -0,0 +1 @@
+({"dateFormat-medium":"d MMM yyyy","field-second":"Seconde","timeFormat-full":"HH:mm:ss v","months-standAlone-narrow":["J","F","M","A","M","J","J","A","S","O","N","D"],"days-standAlone-narrow":["Z","M","D","W","D","V","Z"],"field-year":"Jaar","eras":["v. Chr.","n. Chr."],"field-minute":"Minuut","field-hour":"Uur","dateFormat-long":"d MMMM yyyy","field-day":"Dag","field-dayperiod":"Dagdeel","field-month":"Maand","dateFormat-short":"dd-MM-yy","months-format-wide":["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],"field-era":"Tijdperk","months-format-abbr":["jan","feb","mrt","apr","mei","jun","jul","aug","sep","okt","nov","dec"],"days-format-wide":["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"],"dateFormat-full":"EEEE d MMMM yyyy","days-format-abbr":["zo","ma","di","wo","do","vr","za"],"field-weekday":"Dag van de week","field-week":"Week","pm":"PM","am":"AM","timeFormat-medium":"HH:mm:ss"
 ,"timeFormat-short":"HH:mm","timeFormat-long":"HH:mm:ss z","field-zone":"Zone"});

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/nl/gregorian.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/nl/gregorian.js
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/nl/gregorian.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/pt-br/gregorian.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/pt-br/gregorian.js?rev=618461&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/pt-br/gregorian.js (added)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/pt-br/gregorian.js Mon Feb  4 14:07:13 2008
@@ -0,0 +1 @@
+({"field-hour":"Hora","field-dayperiod":"Per\xedodo do dia","field-minute":"Minuto","timeFormat-full":"HH'h'mm'min'ss's' z","field-weekday":"Dia da semana","field-week":"Semana","field-second":"Segundo","dateFormat-medium":"dd/MM/yyyy","field-day":"Dia","timeFormat-long":"H'h'm'min's's' z","field-month":"M\xeas","field-year":"Ano","dateFormat-short":"dd/MM/yy","field-zone":"Fuso","months-standAlone-narrow":["J","F","M","A","M","J","J","A","S","O","N","D"],"dateFormat-long":"d' de 'MMMM' de 'yyyy","eras":["a.C.","d.C."],"months-format-abbr":["jan","fev","mar","abr","mai","jun","jul","ago","set","out","nov","dez"],"dateFormat-full":"EEEE, d' de 'MMMM' de 'yyyy","days-format-abbr":["dom","seg","ter","qua","qui","sex","s\xe1b"],"months-format-wide":["janeiro","fevereiro","mar\xe7o","abril","maio","junho","julho","agosto","setembro","outubro","novembro","dezembro"],"days-standAlone-narrow":["D","S","T","Q","Q","S","S"],"days-format-wide":["domingo","segunda-feira","ter\xe7a-feira
 ","quarta-feira","quinta-feira","sexta-feira","s\xe1bado"],"pm":"PM","am":"AM","timeFormat-medium":"HH:mm:ss","field-era":"Era","timeFormat-short":"HH:mm"});

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/pt-br/gregorian.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/pt-br/gregorian.js
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/pt-br/gregorian.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/pt/gregorian.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/pt/gregorian.js?rev=618461&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/pt/gregorian.js (added)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/pt/gregorian.js Mon Feb  4 14:07:13 2008
@@ -0,0 +1 @@
+({"months-standAlone-narrow":["J","F","M","A","M","J","J","A","S","O","N","D"],"dateFormat-long":"d' de 'MMMM' de 'yyyy","timeFormat-full":"HH'H'mm'm'ss's' z","eras":["a.C.","d.C."],"dateFormat-medium":"d/MMM/yyyy","months-format-abbr":["jan","fev","mar","abr","mai","jun","jul","ago","set","out","nov","dez"],"dateFormat-full":"EEEE, d' de 'MMMM' de 'yyyy","days-format-abbr":["dom","seg","ter","qua","qui","sex","s\xe1b"],"dateFormat-short":"dd-MM-yyyy","months-format-wide":["janeiro","fevereiro","mar\xe7o","abril","maio","junho","julho","agosto","setembro","outubro","novembro","dezembro"],"days-standAlone-narrow":["D","S","T","Q","Q","S","S"],"days-format-wide":["domingo","segunda-feira","ter\xe7a-feira","quarta-feira","quinta-feira","sexta-feira","s\xe1bado"],"field-weekday":"Day of the Week","field-second":"Second","field-week":"Week","pm":"PM","am":"AM","field-year":"Year","field-minute":"Minute","timeFormat-medium":"HH:mm:ss","field-hour":"Hour","field-day":"Day","field-d
 ayperiod":"Dayperiod","field-month":"Month","field-era":"Era","timeFormat-short":"HH:mm","timeFormat-long":"HH:mm:ss z","field-zone":"Zone"});

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/pt/gregorian.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/pt/gregorian.js
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/pt/gregorian.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/sv/gregorian.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/sv/gregorian.js?rev=618461&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/sv/gregorian.js (added)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/sv/gregorian.js Mon Feb  4 14:07:13 2008
@@ -0,0 +1 @@
+({"field-weekday":"veckodag","dateFormat-medium":"d MMM yyyy","field-second":"sekund","field-week":"vecka","pm":"em","timeFormat-full":"'kl. 'HH.mm.ss z","months-standAlone-narrow":["J","F","M","A","M","J","J","A","S","O","N","D"],"am":"fm","days-standAlone-narrow":["S","M","T","O","T","F","L"],"field-year":"\xe5r","eras":["f.Kr.","e.Kr."],"field-minute":"minut","timeFormat-medium":"HH.mm.ss","field-hour":"timme","dateFormat-long":"EEEE d MMM yyyy","field-day":"dag","field-dayperiod":"dagsperiod","field-month":"m\xe5nad","dateFormat-short":"yyyy-MM-dd","months-format-wide":["januari","februari","mars","april","maj","juni","juli","augusti","september","oktober","november","december"],"field-era":"era","timeFormat-short":"HH.mm","months-format-abbr":["jan","feb","mar","apr","maj","jun","jul","aug","sep","okt","nov","dec"],"timeFormat-long":"HH.mm.ss z","days-format-wide":["s\xf6ndag","m\xe5ndag","tisdag","onsdag","torsdag","fredag","l\xf6rdag"],"dateFormat-full":"EEEE'en den' 
 d MMMM yyyy","field-zone":"tidszon","days-format-abbr":["s\xf6","m\xe5","ti","on","to","fr","l\xf6"]});

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/sv/gregorian.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/sv/gregorian.js
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/sv/gregorian.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh-cn/gregorian.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh-cn/gregorian.js?rev=618461&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh-cn/gregorian.js (added)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh-cn/gregorian.js Mon Feb  4 14:07:13 2008
@@ -0,0 +1 @@
+({"dateFormat-medium":"yyyy-M-d","field-second":"\u79d2\u949f","field-week":"\u5468","timeFormat-full":"ahh'\u65f6'mm'\u5206'ss'\u79d2' z","field-year":"\u5e74","field-minute":"\u5206\u949f","timeFormat-medium":"ahh:mm:ss","field-hour":"\u5c0f\u65f6","dateFormat-long":"yyyy'\u5e74'M'\u6708'd'\u65e5'","field-day":"\u65e5","field-dayperiod":"\u4e0a\u5348/\u4e0b\u5348","field-month":"\u6708","dateFormat-short":"yy-M-d","field-era":"\u65f6\u671f","timeFormat-short":"ah:mm","timeFormat-long":"ahh'\u65f6'mm'\u5206'ss'\u79d2'","dateFormat-full":"yyyy'\u5e74'M'\u6708'd'\u65e5'EEEE","field-weekday":"\u5468\u5929","field-zone":"\u533a\u57df","days-standAlone-narrow":["\u65e5","\u4e00","\u4e8c","\u4e09","\u56db","\u4e94","\u516d"],"eras":["\u516c\u5143\u524d","\u516c\u5143"],"am":"\u4e0a\u5348","months-format-abbr":["\u4e00\u6708","\u4e8c\u6708","\u4e09\u6708","\u56db\u6708","\u4e94\u6708","\u516d\u6708","\u4e03\u6708","\u516b\u6708","\u4e5d\u6708","\u5341\u6708","\u5341\u4e00\u6708","
 \u5341\u4e8c\u6708"],"days-format-abbr":["\u5468\u65e5","\u5468\u4e00","\u5468\u4e8c","\u5468\u4e09","\u5468\u56db","\u5468\u4e94","\u5468\u516d"],"pm":"\u4e0b\u5348","months-format-wide":["\u4e00\u6708","\u4e8c\u6708","\u4e09\u6708","\u56db\u6708","\u4e94\u6708","\u516d\u6708","\u4e03\u6708","\u516b\u6708","\u4e5d\u6708","\u5341\u6708","\u5341\u4e00\u6708","\u5341\u4e8c\u6708"],"months-standAlone-narrow":["1\u6708","2\u6708","3\u6708","4\u6708","5\u6708","6\u6708","7\u6708","8\u6708","9\u6708","10\u6708","11\u6708","12\u6708"],"days-format-wide":["\u661f\u671f\u65e5","\u661f\u671f\u4e00","\u661f\u671f\u4e8c","\u661f\u671f\u4e09","\u661f\u671f\u56db","\u661f\u671f\u4e94","\u661f\u671f\u516d"]});

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh-cn/gregorian.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh-cn/gregorian.js
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh-cn/gregorian.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh-hk/gregorian.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh-hk/gregorian.js?rev=618461&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh-hk/gregorian.js (added)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh-hk/gregorian.js Mon Feb  4 14:07:13 2008
@@ -0,0 +1 @@
+({"timeFormat-full":"ahh'\u6642'mm'\u5206'ss'\u79d2' z","eras":["\u897f\u5143\u524d","\u897f\u5143"],"timeFormat-medium":"a h:mm:ss","dateFormat-medium":"yyyy/M/d","dateFormat-full":"yyyy'\u5e74'M'\u6708'd'\u65e5'EEEE","days-format-abbr":["\u9031\u65e5","\u9031\u4e00","\u9031\u4e8c","\u9031\u4e09","\u9031\u56db","\u9031\u4e94","\u9031\u516d"],"timeFormat-long":"ahh'\u6642'mm'\u5206'ss'\u79d2'","timeFormat-short":"a h:mm","dateFormat-short":"yyyy/M/d","dateFormat-long":"yyyy'\u5e74'M'\u6708'd'\u65e5'","days-standAlone-narrow":["\u65e5","\u4e00","\u4e8c","\u4e09","\u56db","\u4e94","\u516d"],"am":"\u4e0a\u5348","months-format-abbr":["\u4e00\u6708","\u4e8c\u6708","\u4e09\u6708","\u56db\u6708","\u4e94\u6708","\u516d\u6708","\u4e03\u6708","\u516b\u6708","\u4e5d\u6708","\u5341\u6708","\u5341\u4e00\u6708","\u5341\u4e8c\u6708"],"pm":"\u4e0b\u5348","months-format-wide":["\u4e00\u6708","\u4e8c\u6708","\u4e09\u6708","\u56db\u6708","\u4e94\u6708","\u516d\u6708","\u4e03\u6708","\u516b\u67
 08","\u4e5d\u6708","\u5341\u6708","\u5341\u4e00\u6708","\u5341\u4e8c\u6708"],"months-standAlone-narrow":["1\u6708","2\u6708","3\u6708","4\u6708","5\u6708","6\u6708","7\u6708","8\u6708","9\u6708","10\u6708","11\u6708","12\u6708"],"days-format-wide":["\u661f\u671f\u65e5","\u661f\u671f\u4e00","\u661f\u671f\u4e8c","\u661f\u671f\u4e09","\u661f\u671f\u56db","\u661f\u671f\u4e94","\u661f\u671f\u516d"],"field-weekday":"Day of the Week","field-second":"Second","field-week":"Week","field-year":"Year","field-minute":"Minute","field-hour":"Hour","field-day":"Day","field-dayperiod":"Dayperiod","field-month":"Month","field-era":"Era","field-zone":"Zone"});

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh-hk/gregorian.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh-hk/gregorian.js
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh-hk/gregorian.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh-tw/gregorian.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh-tw/gregorian.js?rev=618461&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh-tw/gregorian.js (added)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh-tw/gregorian.js Mon Feb  4 14:07:13 2008
@@ -0,0 +1 @@
+({"dateFormat-medium":"yyyy'\u5e74'M'\u6708'd'\u65e5'","field-second":"\u79d2","field-week":"\u9031","timeFormat-full":"ahh'\u6642'mm'\u5206'ss'\u79d2' z","eras":["\u897f\u5143\u524d","\u897f\u5143"],"field-year":"\u5e74","field-minute":"\u5206\u9418","timeFormat-medium":"ahh:mm:ss","field-hour":"\u5c0f\u6642","dateFormat-long":"yyyy'\u5e74'M'\u6708'd'\u65e5'","field-day":"\u6574\u65e5","field-dayperiod":"\u65e5\u9593","field-month":"\u6708","dateFormat-short":"yy'\u5e74'M'\u6708'd'\u65e5'","field-era":"\u5e74\u4ee3","timeFormat-short":"ah:mm","months-format-abbr":["1\u6708","2\u6708","3\u6708","4\u6708","5\u6708","6\u6708","7\u6708","8\u6708","9\u6708","10\u6708","11\u6708","12\u6708"],"timeFormat-long":"ahh'\u6642'mm'\u5206'ss'\u79d2'","field-weekday":"\u9031\u5929","dateFormat-full":"yyyy'\u5e74'M'\u6708'd'\u65e5'EEEE","field-zone":"\u5340\u57df","days-standAlone-narrow":["\u65e5","\u4e00","\u4e8c","\u4e09","\u56db","\u4e94","\u516d"],"am":"\u4e0a\u5348","days-format-abbr
 ":["\u5468\u65e5","\u5468\u4e00","\u5468\u4e8c","\u5468\u4e09","\u5468\u56db","\u5468\u4e94","\u5468\u516d"],"pm":"\u4e0b\u5348","months-format-wide":["\u4e00\u6708","\u4e8c\u6708","\u4e09\u6708","\u56db\u6708","\u4e94\u6708","\u516d\u6708","\u4e03\u6708","\u516b\u6708","\u4e5d\u6708","\u5341\u6708","\u5341\u4e00\u6708","\u5341\u4e8c\u6708"],"months-standAlone-narrow":["1\u6708","2\u6708","3\u6708","4\u6708","5\u6708","6\u6708","7\u6708","8\u6708","9\u6708","10\u6708","11\u6708","12\u6708"],"days-format-wide":["\u661f\u671f\u65e5","\u661f\u671f\u4e00","\u661f\u671f\u4e8c","\u661f\u671f\u4e09","\u661f\u671f\u56db","\u661f\u671f\u4e94","\u661f\u671f\u516d"]});

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh-tw/gregorian.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh-tw/gregorian.js
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh-tw/gregorian.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh/gregorian.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh/gregorian.js?rev=618461&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh/gregorian.js (added)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh/gregorian.js Mon Feb  4 14:07:13 2008
@@ -0,0 +1 @@
+({"days-standAlone-narrow":["\u65e5","\u4e00","\u4e8c","\u4e09","\u56db","\u4e94","\u516d"],"eras":["\u516c\u5143\u524d","\u516c\u5143"],"am":"\u4e0a\u5348","months-format-abbr":["\u4e00\u6708","\u4e8c\u6708","\u4e09\u6708","\u56db\u6708","\u4e94\u6708","\u516d\u6708","\u4e03\u6708","\u516b\u6708","\u4e5d\u6708","\u5341\u6708","\u5341\u4e00\u6708","\u5341\u4e8c\u6708"],"days-format-abbr":["\u5468\u65e5","\u5468\u4e00","\u5468\u4e8c","\u5468\u4e09","\u5468\u56db","\u5468\u4e94","\u5468\u516d"],"pm":"\u4e0b\u5348","months-format-wide":["\u4e00\u6708","\u4e8c\u6708","\u4e09\u6708","\u56db\u6708","\u4e94\u6708","\u516d\u6708","\u4e03\u6708","\u516b\u6708","\u4e5d\u6708","\u5341\u6708","\u5341\u4e00\u6708","\u5341\u4e8c\u6708"],"months-standAlone-narrow":["1\u6708","2\u6708","3\u6708","4\u6708","5\u6708","6\u6708","7\u6708","8\u6708","9\u6708","10\u6708","11\u6708","12\u6708"],"days-format-wide":["\u661f\u671f\u65e5","\u661f\u671f\u4e00","\u661f\u671f\u4e8c","\u661f\u671f\u4e09",
 "\u661f\u671f\u56db","\u661f\u671f\u4e94","\u661f\u671f\u516d"],"field-weekday":"Day of the Week","dateFormat-medium":"yyyy MMM d","field-second":"Second","field-week":"Week","timeFormat-full":"HH:mm:ss z","field-year":"Year","field-minute":"Minute","timeFormat-medium":"HH:mm:ss","field-hour":"Hour","dateFormat-long":"yyyy MMMM d","field-day":"Day","field-dayperiod":"Dayperiod","field-month":"Month","dateFormat-short":"yy/MM/dd","field-era":"Era","timeFormat-short":"HH:mm","timeFormat-long":"HH:mm:ss z","dateFormat-full":"EEEE, yyyy MMMM dd","field-zone":"Zone"});

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh/gregorian.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh/gregorian.js
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh/gregorian.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh/gregorianExtras.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh/gregorianExtras.js?rev=618461&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh/gregorianExtras.js (added)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh/gregorianExtras.js Mon Feb  4 14:07:13 2008
@@ -0,0 +1 @@
+({"dateFormat-yearOnly":"yyyy'\u5e74'"});

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh/gregorianExtras.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh/gregorianExtras.js
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/calendar/nls/zh/gregorianExtras.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/common.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/common.js?rev=618461&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/common.js (added)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/common.js Mon Feb  4 14:07:13 2008
@@ -0,0 +1,31 @@
+dojo.provide("dojo.i18n.common");
+dojo.i18n.getLocalization=function(_1,_2,_3){
+dojo.hostenv.preloadLocalizations();
+_3=dojo.hostenv.normalizeLocale(_3);
+var _4=_3.split("-");
+var _5=[_1,"nls",_2].join(".");
+var _6=dojo.hostenv.findModule(_5,true);
+var _7;
+for(var i=_4.length;i>0;i--){
+var _9=_4.slice(0,i).join("_");
+if(_6[_9]){
+_7=_6[_9];
+break;
+}
+}
+if(!_7){
+_7=_6.ROOT;
+}
+if(_7){
+var _a=function(){
+};
+_a.prototype=_7;
+return new _a();
+}
+dojo.raise("Bundle not found: "+_2+" in "+_1+" , locale="+_3);
+};
+dojo.i18n.isLTR=function(_b){
+var _c=dojo.hostenv.normalizeLocale(_b).split("-")[0];
+var _d={ar:true,fa:true,he:true,ur:true,yi:true};
+return !_d[_c];
+};

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/common.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/common.js
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/tapestry-framework/src/js/dojo-0.4.3-custom-4.1.5/src/i18n/common.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain