window.SimileAjax = { loaded: true, loadingScriptsCount: 0, error: null, params: { bundle: "true" }, Platform: new Object() }; /* jquery-1.2.6.min.js */ /* Disco Modified - 2012-07-04 G# - Bundled jQuery Removed */ /* platform.js */ SimileAjax.version="pre 2.3.0"; SimileAjax.jQuery=jQuery.noConflict(true); if(typeof window["$"]=="undefined"){window.$=SimileAjax.jQuery; }SimileAjax.Platform.os={isMac:false,isWin:false,isWin32:false,isUnix:false}; SimileAjax.Platform.browser={isIE:false,isNetscape:false,isMozilla:false,isFirefox:false,isOpera:false,isSafari:false,majorVersion:0,minorVersion:0}; (function(){var C=navigator.appName.toLowerCase(); var A=navigator.userAgent.toLowerCase(); SimileAjax.Platform.os.isMac=(A.indexOf("mac")!=-1); SimileAjax.Platform.os.isWin=(A.indexOf("win")!=-1); SimileAjax.Platform.os.isWin32=SimileAjax.Platform.isWin&&(A.indexOf("95")!=-1||A.indexOf("98")!=-1||A.indexOf("nt")!=-1||A.indexOf("win32")!=-1||A.indexOf("32bit")!=-1); SimileAjax.Platform.os.isUnix=(A.indexOf("x11")!=-1); SimileAjax.Platform.browser.isIE=(C.indexOf("microsoft")!=-1); SimileAjax.Platform.browser.isNetscape=(C.indexOf("netscape")!=-1); SimileAjax.Platform.browser.isMozilla=(A.indexOf("mozilla")!=-1); SimileAjax.Platform.browser.isFirefox=(A.indexOf("firefox")!=-1); SimileAjax.Platform.browser.isOpera=(C.indexOf("opera")!=-1); SimileAjax.Platform.browser.isSafari=(C.indexOf("safari")!=-1); var E=function(G){var F=G.split("."); SimileAjax.Platform.browser.majorVersion=parseInt(F[0]); SimileAjax.Platform.browser.minorVersion=parseInt(F[1]); }; var B=function(H,G,I){var F=H.indexOf(G,I); return F>=0?F:H.length; }; if(SimileAjax.Platform.browser.isMozilla){var D=A.indexOf("mozilla/"); if(D>=0){E(A.substring(D+8,B(A," ",D))); }}if(SimileAjax.Platform.browser.isIE){var D=A.indexOf("msie "); if(D>=0){E(A.substring(D+5,B(A,";",D))); }}if(SimileAjax.Platform.browser.isNetscape){var D=A.indexOf("rv:"); if(D>=0){E(A.substring(D+3,B(A,")",D))); }}if(SimileAjax.Platform.browser.isFirefox){var D=A.indexOf("firefox/"); if(D>=0){E(A.substring(D+8,B(A," ",D))); }}if(!("localeCompare" in String.prototype)){String.prototype.localeCompare=function(F){if(thisF){return 1; }else{return 0; }}}; }})(); SimileAjax.Platform.getDefaultLocale=function(){return SimileAjax.Platform.clientLocale; }; /* ajax.js */ SimileAjax.ListenerQueue=function(A){this._listeners=[]; this._wildcardHandlerName=A; }; SimileAjax.ListenerQueue.prototype.add=function(A){this._listeners.push(A); }; SimileAjax.ListenerQueue.prototype.remove=function(C){var A=this._listeners; for(var B=0; B0)?this._a[0]:null; }; SimileAjax.SortedArray.prototype.getLast=function(){return(this._a.length>0)?this._a[this._a.length-1]:null; }; SimileAjax.EventIndex=function(B){var A=this; this._unit=(B!=null)?B:SimileAjax.NativeDateUnit; this._events=new SimileAjax.SortedArray(function(C,D){return A._unit.compare(C.getStart(),D.getStart()); }); this._idToEvent={}; this._indexed=true; }; SimileAjax.EventIndex.prototype.getUnit=function(){return this._unit; }; SimileAjax.EventIndex.prototype.getEvent=function(A){return this._idToEvent[A]; }; SimileAjax.EventIndex.prototype.add=function(A){this._events.add(A); this._idToEvent[A.getID()]=A; this._indexed=false; }; SimileAjax.EventIndex.prototype.removeAll=function(){this._events.removeAll(); this._idToEvent={}; this._indexed=false; }; SimileAjax.EventIndex.prototype.getCount=function(){return this._events.length(); }; SimileAjax.EventIndex.prototype.getIterator=function(A,B){if(!this._indexed){this._index(); }return new SimileAjax.EventIndex._Iterator(this._events,A,B,this._unit); }; SimileAjax.EventIndex.prototype.getReverseIterator=function(A,B){if(!this._indexed){this._index(); }return new SimileAjax.EventIndex._ReverseIterator(this._events,A,B,this._unit); }; SimileAjax.EventIndex.prototype.getAllIterator=function(){return new SimileAjax.EventIndex._AllIterator(this._events); }; SimileAjax.EventIndex.prototype.getEarliestDate=function(){var A=this._events.getFirst(); return(A==null)?null:A.getStart(); }; SimileAjax.EventIndex.prototype.getLatestDate=function(){var A=this._events.getLast(); if(A==null){return null; }if(!this._indexed){this._index(); }var C=A._earliestOverlapIndex; var B=this._events.elementAt(C).getEnd(); for(var D=C+1; D=0){this._currentIndex=this._events.elementAt(this._currentIndex-1)._earliestOverlapIndex; }this._currentIndex--; this._maxIndex=A.find(function(E){return B.compare(E.getStart(),D); }); this._hasNext=false; this._next=null; this._findNext(); }; SimileAjax.EventIndex._Iterator.prototype={hasNext:function(){return this._hasNext; },next:function(){if(this._hasNext){var A=this._next; this._findNext(); return A; }else{return null; }},_findNext:function(){var B=this._unit; while((++this._currentIndex)0){this._next=A; this._hasNext=true; return ; }}this._next=null; this._hasNext=false; }}; SimileAjax.EventIndex._ReverseIterator=function(A,C,D,B){this._events=A; this._startDate=C; this._endDate=D; this._unit=B; this._minIndex=A.find(function(E){return B.compare(E.getStart(),C); }); if(this._minIndex-1>=0){this._minIndex=this._events.elementAt(this._minIndex-1)._earliestOverlapIndex; }this._maxIndex=A.find(function(E){return B.compare(E.getStart(),D); }); this._currentIndex=this._maxIndex; this._hasNext=false; this._next=null; this._findNext(); }; SimileAjax.EventIndex._ReverseIterator.prototype={hasNext:function(){return this._hasNext; },next:function(){if(this._hasNext){var A=this._next; this._findNext(); return A; }else{return null; }},_findNext:function(){var B=this._unit; while((--this._currentIndex)>=this._minIndex){var A=this._events.elementAt(this._currentIndex); if(B.compare(A.getStart(),this._endDate)<0&&B.compare(A.getEnd(),this._startDate)>0){this._next=A; this._hasNext=true; return ; }}this._next=null; this._hasNext=false; }}; SimileAjax.EventIndex._AllIterator=function(A){this._events=A; this._index=0; }; SimileAjax.EventIndex._AllIterator.prototype={hasNext:function(){return this._index0&&B.length<8){var C=B.indexOf(" "); if(C>0){var A=parseInt(B.substr(0,C)); var G=B.substr(C+1); if(G.toLowerCase()=="bc"){A=1-A; }}else{var A=parseInt(B); }var E=new Date(0); E.setUTCFullYear(A); return E; }try{return new Date(Date.parse(B)); }catch(D){return null; }}; SimileAjax.DateTime.roundDownToInterval=function(E,B,I,K,A){var F=I*SimileAjax.DateTime.gregorianUnitLengths[SimileAjax.DateTime.HOUR]; var J=new Date(E.getTime()+F); var C=function(L){L.setUTCMilliseconds(0); L.setUTCSeconds(0); L.setUTCMinutes(0); L.setUTCHours(0); }; var D=function(L){C(L); L.setUTCDate(1); L.setUTCMonth(0); }; switch(B){case SimileAjax.DateTime.MILLISECOND:var H=J.getUTCMilliseconds(); J.setUTCMilliseconds(H-(H%K)); break; case SimileAjax.DateTime.SECOND:J.setUTCMilliseconds(0); var H=J.getUTCSeconds(); J.setUTCSeconds(H-(H%K)); break; case SimileAjax.DateTime.MINUTE:J.setUTCMilliseconds(0); J.setUTCSeconds(0); var H=J.getUTCMinutes(); J.setTime(J.getTime()-(H%K)*SimileAjax.DateTime.gregorianUnitLengths[SimileAjax.DateTime.MINUTE]); break; case SimileAjax.DateTime.HOUR:J.setUTCMilliseconds(0); J.setUTCSeconds(0); J.setUTCMinutes(0); var H=J.getUTCHours(); J.setUTCHours(H-(H%K)); break; case SimileAjax.DateTime.DAY:C(J); break; case SimileAjax.DateTime.WEEK:C(J); var G=(J.getUTCDay()+7-A)%7; J.setTime(J.getTime()-G*SimileAjax.DateTime.gregorianUnitLengths[SimileAjax.DateTime.DAY]); break; case SimileAjax.DateTime.MONTH:C(J); J.setUTCDate(1); var H=J.getUTCMonth(); J.setUTCMonth(H-(H%K)); break; case SimileAjax.DateTime.YEAR:D(J); var H=J.getUTCFullYear(); J.setUTCFullYear(H-(H%K)); break; case SimileAjax.DateTime.DECADE:D(J); J.setUTCFullYear(Math.floor(J.getUTCFullYear()/10)*10); break; case SimileAjax.DateTime.CENTURY:D(J); J.setUTCFullYear(Math.floor(J.getUTCFullYear()/100)*100); break; case SimileAjax.DateTime.MILLENNIUM:D(J); J.setUTCFullYear(Math.floor(J.getUTCFullYear()/1000)*1000); break; }E.setTime(J.getTime()-F); }; SimileAjax.DateTime.roundUpToInterval=function(C,F,D,A,B){var E=C.getTime(); SimileAjax.DateTime.roundDownToInterval(C,F,D,A,B); if(C.getTime()-1){A=A.replace("px",""); }if(C.indexOf("px")>-1){C=C.replace("px",""); }return{w:A,h:C}; }; SimileAjax.DOM.getStyle=function(B,A){if(B.currentStyle){var C=B.currentStyle[A]; }else{if(window.getComputedStyle){var C=document.defaultView.getComputedStyle(B,null).getPropertyValue(A); }else{var C=""; }}return C; }; SimileAjax.DOM.getEventRelativeCoordinates=function(B,C){if(SimileAjax.Platform.browser.isIE){if(B.type=="mousewheel"){var A=SimileAjax.DOM.getPageCoordinates(C); return{x:B.clientX-A.left,y:B.clientY-A.top}; }else{return{x:B.offsetX,y:B.offsetY}; }}else{var A=SimileAjax.DOM.getPageCoordinates(C); if((B.type=="DOMMouseScroll")&&SimileAjax.Platform.browser.isFirefox&&(SimileAjax.Platform.browser.majorVersion==2)){return{x:B.screenX-A.left,y:B.screenY-A.top}; }else{return{x:B.pageX-A.left,y:B.pageY-A.top}; }}}; SimileAjax.DOM.getEventPageCoordinates=function(A){if(SimileAjax.Platform.browser.isIE){return{x:A.clientX+document.body.scrollLeft,y:A.clientY+document.body.scrollTop}; }else{return{x:A.pageX,y:A.pageY}; }}; SimileAjax.DOM.hittest=function(A,C,B){return SimileAjax.DOM._hittest(document.body,A,C,B); }; SimileAjax.DOM._hittest=function(C,L,K,A){var M=C.childNodes; outer:for(var G=0; G"; return B.firstChild; }; SimileAjax.DOM.createDOMFromTemplate=function(A){var B={}; B.elmt=SimileAjax.DOM._createDOMFromTemplate(A,B,null); return B; }; SimileAjax.DOM._createDOMFromTemplate=function(F,G,D){if(F==null){return null; }else{if(typeof F!="object"){var C=document.createTextNode(F); if(D!=null){D.appendChild(C); }return C; }else{var A=null; if("tag" in F){var J=F.tag; if(D!=null){if(J=="tr"){A=D.insertRow(D.rows.length); }else{if(J=="td"){A=D.insertCell(D.cells.length); }}}if(A==null){A=J=="input"?SimileAjax.DOM.createInputElement(F.type):document.createElement(J); if(D!=null){D.appendChild(A); }}}else{A=F.elmt; if(D!=null){D.appendChild(A); }}for(var B in F){var H=F[B]; if(B=="field"){G[H]=A; }else{if(B=="className"){A.className=H; }else{if(B=="id"){A.id=H; }else{if(B=="title"){A.title=H; }else{if(B=="type"&&A.tagName=="input"){}else{if(B=="style"){for(n in H){var I=H[n]; if(n=="float"){n=SimileAjax.Platform.browser.isIE?"styleFloat":"cssFloat"; }A.style[n]=I; }}else{if(B=="children"){for(var E=0; E0){A.removeAttribute("id"); if(E in B){var C=A.parentNode; C.insertBefore(B[E],A); C.removeChild(A); D[E]=B[E]; return ; }else{D[E]=A; }}if(A.hasChildNodes()){SimileAjax.DOM._processDOMChildrenConstructedFromString(D,A,B); }}; SimileAjax.DOM._processDOMChildrenConstructedFromString=function(E,B,D){var C=B.firstChild; while(C!=null){var A=C.nextSibling; if(C.nodeType==1){SimileAjax.DOM._processDOMConstructedFromString(E,C,D); }C=A; }}; /* graphics.js */ SimileAjax.Graphics=new Object(); SimileAjax.Graphics.pngIsTranslucent=(!SimileAjax.Platform.browser.isIE)||(SimileAjax.Platform.browser.majorVersion>6); if(!SimileAjax.Graphics.pngIsTranslucent){SimileAjax.includeCssFile(document,SimileAjax.urlPrefix+"styles/graphics-ie6.css"); }SimileAjax.Graphics._createTranslucentImage1=function(A,C){var B=document.createElement("img"); B.setAttribute("src",A); if(C!=null){B.style.verticalAlign=C; }return B; }; SimileAjax.Graphics._createTranslucentImage2=function(A,C){var B=document.createElement("img"); B.style.width="1px"; B.style.height="1px"; B.style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+A+"', sizingMethod='image')"; B.style.verticalAlign=(C!=null)?C:"middle"; return B; }; SimileAjax.Graphics.createTranslucentImage=SimileAjax.Graphics.pngIsTranslucent?SimileAjax.Graphics._createTranslucentImage1:SimileAjax.Graphics._createTranslucentImage2; SimileAjax.Graphics._createTranslucentImageHTML1=function(A,B){return'"; }; SimileAjax.Graphics._createTranslucentImageHTML2=function(A,C){var B="width: 1px; height: 1px; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+A+"', sizingMethod='image');"+(C!=null?" vertical-align: "+C+";":""); return"'; }; SimileAjax.Graphics.createTranslucentImageHTML=SimileAjax.Graphics.pngIsTranslucent?SimileAjax.Graphics._createTranslucentImageHTML1:SimileAjax.Graphics._createTranslucentImageHTML2; SimileAjax.Graphics.setOpacity=function(B,A){if(SimileAjax.Platform.browser.isIE){B.style.filter="progid:DXImageTransform.Microsoft.Alpha(Style=0,Opacity="+A+")"; }else{var C=(A/100).toString(); B.style.opacity=C; B.style.MozOpacity=C; }}; SimileAjax.Graphics.bubbleConfig={containerCSSClass:"simileAjax-bubble-container",innerContainerCSSClass:"simileAjax-bubble-innerContainer",contentContainerCSSClass:"simileAjax-bubble-contentContainer",borderGraphicSize:50,borderGraphicCSSClassPrefix:"simileAjax-bubble-border-",arrowGraphicTargetOffset:33,arrowGraphicLength:100,arrowGraphicWidth:49,arrowGraphicCSSClassPrefix:"simileAjax-bubble-arrow-",closeGraphicCSSClass:"simileAjax-bubble-close",extraPadding:20}; SimileAjax.Graphics.createBubbleForContentAndPoint=function(F,E,C,B,D,A){if(typeof B!="number"){B=300; }if(typeof A!="number"){A=0; }F.style.position="absolute"; F.style.left="-5000px"; F.style.top="0px"; F.style.width=B+"px"; document.body.appendChild(F); window.setTimeout(function(){var H=F.scrollWidth+10; var J=F.scrollHeight+10; var G=0; if(A>0&&J>A){J=A; G=H-25; }var I=SimileAjax.Graphics.createBubbleForPoint(E,C,H,J,D); document.body.removeChild(F); F.style.position="static"; F.style.left=""; F.style.top=""; if(G>0){var K=document.createElement("div"); F.style.width=""; K.style.width=G+"px"; K.appendChild(F); I.content.appendChild(K); }else{F.style.width=H+"px"; I.content.appendChild(F); }},200); }; SimileAjax.Graphics.createBubbleForPoint=function(B,A,J,N,F){J=parseInt(J,10); N=parseInt(N,10); var E=SimileAjax.Graphics.bubbleConfig; var M=SimileAjax.Graphics.pngIsTranslucent?"pngTranslucent":"pngNotTranslucent"; var L=J+2*E.borderGraphicSize; var O=N+2*E.borderGraphicSize; var K=function(S){return S+" "+S+"-"+M; }; var H=document.createElement("div"); H.className=K(E.containerCSSClass); H.style.width=J+"px"; H.style.height=N+"px"; var D=document.createElement("div"); D.className=K(E.innerContainerCSSClass); H.appendChild(D); var I=function(){if(!Q._closed){document.body.removeChild(Q._div); Q._doc=null; Q._div=null; Q._content=null; Q._closed=true; }}; var Q={_closed:false}; var R=SimileAjax.WindowManager.pushLayer(I,true,H); Q._div=H; Q.close=function(){SimileAjax.WindowManager.popLayer(R); }; var G=function(T){var S=document.createElement("div"); S.className=K(E.borderGraphicCSSClassPrefix+T); D.appendChild(S); }; G("top-left"); G("top-right"); G("bottom-left"); G("bottom-right"); G("left"); G("right"); G("top"); G("bottom"); var C=document.createElement("div"); C.className=K(E.contentContainerCSSClass); D.appendChild(C); Q.content=C; var P=document.createElement("div"); P.className=K(E.closeGraphicCSSClass); D.appendChild(P); SimileAjax.WindowManager.registerEventWithObject(P,"click",Q,"close"); (function(){var Y=SimileAjax.Graphics.getWindowDimensions(); var T=Y.w; var U=Y.h; var V=Math.ceil(E.arrowGraphicWidth/2); var Z=function(b){var a=document.createElement("div"); a.className=K(E.arrowGraphicCSSClassPrefix+"point-"+b); D.appendChild(a); return a; }; if(B-V-E.borderGraphicSize-E.extraPadding>0&&B+V+E.borderGraphicSize+E.extraPadding0))){var S=Z("down"); S.style.left=(B-V-X)+"px"; H.style.left=X+"px"; H.style.top=(A-E.arrowGraphicTargetOffset-N)+"px"; return ; }else{if((F&&F=="bottom")||(!F&&(A+E.arrowGraphicTargetOffset+N+E.borderGraphicSize+E.extraPadding0))){var S=Z("right"); S.style.top=(A-V-W)+"px"; H.style.top=W+"px"; H.style.left=(B-E.arrowGraphicTargetOffset-J)+"px"; }else{var S=Z("left"); S.style.top=(A-V-W)+"px"; H.style.top=W+"px"; H.style.left=(B+E.arrowGraphicTargetOffset)+"px"; }})(); document.body.appendChild(H); return Q; }; SimileAjax.Graphics.getWindowDimensions=function(){if(typeof window.innerHeight=="number"){return{w:window.innerWidth,h:window.innerHeight}; }else{if(document.documentElement&&document.documentElement.clientHeight){return{w:document.documentElement.clientWidth,h:document.documentElement.clientHeight}; }else{if(document.body&&document.body.clientHeight){return{w:document.body.clientWidth,h:document.body.clientHeight}; }}}}; SimileAjax.Graphics.createMessageBubble=function(H){var G=H.createElement("div"); if(SimileAjax.Graphics.pngIsTranslucent){var I=H.createElement("div"); I.style.height="33px"; I.style.background="url("+SimileAjax.urlPrefix+"images/message-top-left.png) top left no-repeat"; I.style.paddingLeft="44px"; G.appendChild(I); var D=H.createElement("div"); D.style.height="33px"; D.style.background="url("+SimileAjax.urlPrefix+"images/message-top-right.png) top right no-repeat"; I.appendChild(D); var F=H.createElement("div"); F.style.background="url("+SimileAjax.urlPrefix+"images/message-left.png) top left repeat-y"; F.style.paddingLeft="44px"; G.appendChild(F); var B=H.createElement("div"); B.style.background="url("+SimileAjax.urlPrefix+"images/message-right.png) top right repeat-y"; B.style.paddingRight="44px"; F.appendChild(B); var C=H.createElement("div"); B.appendChild(C); var E=H.createElement("div"); E.style.height="55px"; E.style.background="url("+SimileAjax.urlPrefix+"images/message-bottom-left.png) bottom left no-repeat"; E.style.paddingLeft="44px"; G.appendChild(E); var A=H.createElement("div"); A.style.height="55px"; A.style.background="url("+SimileAjax.urlPrefix+"images/message-bottom-right.png) bottom right no-repeat"; E.appendChild(A); }else{G.style.border="2px solid #7777AA"; G.style.padding="20px"; G.style.background="white"; SimileAjax.Graphics.setOpacity(G,90); var C=H.createElement("div"); G.appendChild(C); }return{containerDiv:G,contentDiv:C}; }; SimileAjax.Graphics.createAnimation=function(B,E,D,C,A){return new SimileAjax.Graphics._Animation(B,E,D,C,A); }; SimileAjax.Graphics._Animation=function(B,E,D,C,A){this.f=B; this.cont=(typeof A=="function")?A:function(){}; this.from=E; this.to=D; this.current=E; this.duration=C; this.start=new Date().getTime(); this.timePassed=0; }; SimileAjax.Graphics._Animation.prototype.run=function(){var A=this; window.setTimeout(function(){A.step(); },50); }; SimileAjax.Graphics._Animation.prototype.step=function(){this.timePassed+=50; var A=this.timePassed/this.duration; var B=-Math.cos(A*Math.PI)/2+0.5; var D=B*(this.to-this.from)+this.from; try{this.f(D,D-this.current); }catch(C){}this.current=D; if(this.timePassed"; var C=G.firstChild; C.style.width=B+"px"; C.style.height=D+"px"; C.onmousedown=function(H){H=(H)?H:((event)?event:null); if(H.button==2){C.value=E(); C.select(); }}; return G; }; SimileAjax.Graphics.getWidthHeight=function(C){var A,B; if(C.getBoundingClientRect==null){A=C.offsetWidth; B=C.offsetHeight; }else{var D=C.getBoundingClientRect(); A=Math.ceil(D.right-D.left); B=Math.ceil(D.bottom-D.top); }return{width:A,height:B}; }; SimileAjax.Graphics.getFontRenderingContext=function(A,B){return new SimileAjax.Graphics._FontRenderingContext(A,B); }; SimileAjax.Graphics._FontRenderingContext=function(A,B){this._elmt=A; this._elmt.style.visibility="hidden"; if(typeof B=="string"){this._elmt.style.width=B; }else{if(typeof B=="number"){this._elmt.style.width=B+"px"; }}}; SimileAjax.Graphics._FontRenderingContext.prototype.dispose=function(){this._elmt=null; }; SimileAjax.Graphics._FontRenderingContext.prototype.update=function(){this._elmt.innerHTML="A"; this._lineHeight=this._elmt.offsetHeight; }; SimileAjax.Graphics._FontRenderingContext.prototype.computeSize=function(D,B){var C=this._elmt; C.innerHTML=D; C.className=B===undefined?"":B; var A=SimileAjax.Graphics.getWidthHeight(C); C.className=""; return A; }; SimileAjax.Graphics._FontRenderingContext.prototype.getLineHeight=function(){return this._lineHeight; }; /* history.js */ SimileAjax.History={maxHistoryLength:10,historyFile:"__history__.html",enabled:true,_initialized:false,_listeners:new SimileAjax.ListenerQueue(),_actions:[],_baseIndex:0,_currentIndex:0,_plainDocumentTitle:document.title}; SimileAjax.History.formatHistoryEntryTitle=function(A){return SimileAjax.History._plainDocumentTitle+" {"+A+"}"; }; SimileAjax.History.initialize=function(){if(SimileAjax.History._initialized){return ; }if(SimileAjax.History.enabled){var A=document.createElement("iframe"); A.id="simile-ajax-history"; A.style.position="absolute"; A.style.width="10px"; A.style.height="10px"; A.style.top="0px"; A.style.left="0px"; A.style.visibility="hidden"; A.src=SimileAjax.History.historyFile+"?0"; document.body.appendChild(A); SimileAjax.DOM.registerEvent(A,"load",SimileAjax.History._handleIFrameOnLoad); SimileAjax.History._iframe=A; }SimileAjax.History._initialized=true; }; SimileAjax.History.addListener=function(A){SimileAjax.History.initialize(); SimileAjax.History._listeners.add(A); }; SimileAjax.History.removeListener=function(A){SimileAjax.History.initialize(); SimileAjax.History._listeners.remove(A); }; SimileAjax.History.addAction=function(A){SimileAjax.History.initialize(); SimileAjax.History._listeners.fire("onBeforePerform",[A]); window.setTimeout(function(){try{A.perform(); SimileAjax.History._listeners.fire("onAfterPerform",[A]); if(SimileAjax.History.enabled){SimileAjax.History._actions=SimileAjax.History._actions.slice(0,SimileAjax.History._currentIndex-SimileAjax.History._baseIndex); SimileAjax.History._actions.push(A); SimileAjax.History._currentIndex++; var C=SimileAjax.History._actions.length-SimileAjax.History.maxHistoryLength; if(C>0){SimileAjax.History._actions=SimileAjax.History._actions.slice(C); SimileAjax.History._baseIndex+=C; }try{SimileAjax.History._iframe.contentWindow.location.search="?"+SimileAjax.History._currentIndex; }catch(B){var D=SimileAjax.History.formatHistoryEntryTitle(A.label); document.title=D; }}}catch(B){SimileAjax.Debug.exception(B,"Error adding action {"+A.label+"} to history"); }},0); }; SimileAjax.History.addLengthyAction=function(B,A,C){SimileAjax.History.addAction({perform:B,undo:A,label:C,uiLayer:SimileAjax.WindowManager.getBaseLayer(),lengthy:true}); }; SimileAjax.History._handleIFrameOnLoad=function(){try{var B=SimileAjax.History._iframe.contentWindow.location.search; var F=(B.length==0)?0:Math.max(0,parseInt(B.substr(1))); var D=function(){var G=F-SimileAjax.History._currentIndex; SimileAjax.History._currentIndex+=G; SimileAjax.History._baseIndex+=G; SimileAjax.History._iframe.contentWindow.location.search="?"+F; }; if(FF&&SimileAjax.History._currentIndex>SimileAjax.History._baseIndex){SimileAjax.History._currentIndex--; var G=SimileAjax.History._actions[SimileAjax.History._currentIndex-SimileAjax.History._baseIndex]; try{G.undo(); }catch(H){SimileAjax.Debug.exception(H,"History: Failed to undo action {"+G.label+"}"); }}SimileAjax.History._listeners.fire("onAfterUndoSeveral",[]); D(); },0); }else{if(F>SimileAjax.History._currentIndex){SimileAjax.History._listeners.fire("onBeforeRedoSeveral",[]); window.setTimeout(function(){while(SimileAjax.History._currentIndex=0&&A=A.length&&this.substr(0,A.length)==A; }; String.prototype.endsWith=function(A){return this.length>=A.length&&this.substr(this.length-A.length)==A; }; String.substitute=function(C,A){var D=""; var F=0; while(FF&&C.charAt(B-1)=="\\"){D+=C.substring(F,B-1)+"%"; F=B+1; }else{var E=parseInt(C.charAt(B+1)); if(isNaN(E)||E>=A.length){D+=C.substring(F,B+2); }else{D+=C.substring(F,B)+A[E].toString(); }F=B+2; }}}if(F0?B:A; }; SimileAjax.NativeDateUnit.change=function(A,B){return new Date(A.getTime()+B); }; /* window-manager.js */ SimileAjax.WindowManager={_initialized:false,_listeners:[],_draggedElement:null,_draggedElementCallback:null,_dropTargetHighlightElement:null,_lastCoords:null,_ghostCoords:null,_draggingMode:"",_dragging:false,_layers:[]}; SimileAjax.WindowManager.initialize=function(){if(SimileAjax.WindowManager._initialized){return ; }SimileAjax.DOM.registerEvent(document.body,"mousedown",SimileAjax.WindowManager._onBodyMouseDown); SimileAjax.DOM.registerEvent(document.body,"mousemove",SimileAjax.WindowManager._onBodyMouseMove); SimileAjax.DOM.registerEvent(document.body,"mouseup",SimileAjax.WindowManager._onBodyMouseUp); SimileAjax.DOM.registerEvent(document,"keydown",SimileAjax.WindowManager._onBodyKeyDown); SimileAjax.DOM.registerEvent(document,"keyup",SimileAjax.WindowManager._onBodyKeyUp); SimileAjax.WindowManager._layers.push({index:0}); SimileAjax.WindowManager._historyListener={onBeforeUndoSeveral:function(){},onAfterUndoSeveral:function(){},onBeforeUndo:function(){},onAfterUndo:function(){},onBeforeRedoSeveral:function(){},onAfterRedoSeveral:function(){},onBeforeRedo:function(){},onAfterRedo:function(){}}; SimileAjax.History.addListener(SimileAjax.WindowManager._historyListener); SimileAjax.WindowManager._initialized=true; }; SimileAjax.WindowManager.getBaseLayer=function(){SimileAjax.WindowManager.initialize(); return SimileAjax.WindowManager._layers[0]; }; SimileAjax.WindowManager.getHighestLayer=function(){SimileAjax.WindowManager.initialize(); return SimileAjax.WindowManager._layers[SimileAjax.WindowManager._layers.length-1]; }; SimileAjax.WindowManager.registerEventWithObject=function(D,A,E,B,C){SimileAjax.WindowManager.registerEvent(D,A,function(G,F,H){return E[B].call(E,G,F,H); },C); }; SimileAjax.WindowManager.registerEvent=function(D,B,E,C){if(C==null){C=SimileAjax.WindowManager.getHighestLayer(); }var A=function(G,F,I){if(SimileAjax.WindowManager._canProcessEventAtLayer(C)){SimileAjax.WindowManager._popToLayer(C.index); try{E(G,F,I); }catch(H){SimileAjax.Debug.exception(H); }}SimileAjax.DOM.cancelEvent(F); return false; }; SimileAjax.DOM.registerEvent(D,B,A); }; SimileAjax.WindowManager.pushLayer=function(C,D,B){var A={onPop:C,index:SimileAjax.WindowManager._layers.length,ephemeral:(D),elmt:B}; SimileAjax.WindowManager._layers.push(A); return A; }; SimileAjax.WindowManager.popLayer=function(B){for(var A=1; A0&&SimileAjax.WindowManager._layers[E].ephemeral){var D=SimileAjax.WindowManager._layers[E]; if(D.elmt!=null){var C=D.elmt; var B=SimileAjax.DOM.getPageCoordinates(C); if(F.x>=B.left&&F.x<(B.left+C.offsetWidth)&&F.y>=B.top&&F.y<(B.top+C.offsetHeight)){break; }}E--; }SimileAjax.WindowManager._popToLayer(E); }; SimileAjax.WindowManager._onBodyMouseDown=function(B,A,C){if(!("eventPhase" in A)||A.eventPhase==A.BUBBLING_PHASE){SimileAjax.WindowManager.cancelPopups(A); }}; SimileAjax.WindowManager._handleMouseDown=function(B,A,C){SimileAjax.WindowManager._draggedElement=B; SimileAjax.WindowManager._draggedElementCallback=C; SimileAjax.WindowManager._lastCoords={x:A.clientX,y:A.clientY}; SimileAjax.DOM.cancelEvent(A); return false; }; SimileAjax.WindowManager._onBodyKeyDown=function(C,A,D){if(SimileAjax.WindowManager._dragging){if(A.keyCode==27){SimileAjax.WindowManager._cancelDragging(); }else{if((A.keyCode==17||A.keyCode==16)&&SimileAjax.WindowManager._draggingMode!="copy"){SimileAjax.WindowManager._draggingMode="copy"; var B=SimileAjax.Graphics.createTranslucentImage(SimileAjax.urlPrefix+"images/copy.png"); B.style.position="absolute"; B.style.left=(SimileAjax.WindowManager._ghostCoords.left-16)+"px"; B.style.top=(SimileAjax.WindowManager._ghostCoords.top)+"px"; document.body.appendChild(B); SimileAjax.WindowManager._draggingModeIndicatorElmt=B; }}}}; SimileAjax.WindowManager._onBodyKeyUp=function(B,A,C){if(SimileAjax.WindowManager._dragging){if(A.keyCode==17||A.keyCode==16){SimileAjax.WindowManager._draggingMode=""; if(SimileAjax.WindowManager._draggingModeIndicatorElmt!=null){document.body.removeChild(SimileAjax.WindowManager._draggingModeIndicatorElmt); SimileAjax.WindowManager._draggingModeIndicatorElmt=null; }}}}; SimileAjax.WindowManager._onBodyMouseMove=function(C,M,B){if(SimileAjax.WindowManager._draggedElement!=null){var L=SimileAjax.WindowManager._draggedElementCallback; var G=SimileAjax.WindowManager._lastCoords; var J=M.clientX-G.x; var I=M.clientY-G.y; if(!SimileAjax.WindowManager._dragging){if(Math.abs(J)>5||Math.abs(I)>5){try{if("onDragStart" in L){L.onDragStart(); }if("ghost" in L&&L.ghost){var P=SimileAjax.WindowManager._draggedElement; SimileAjax.WindowManager._ghostCoords=SimileAjax.DOM.getPageCoordinates(P); SimileAjax.WindowManager._ghostCoords.left+=J; SimileAjax.WindowManager._ghostCoords.top+=I; var K=P.cloneNode(true); K.style.position="absolute"; K.style.left=SimileAjax.WindowManager._ghostCoords.left+"px"; K.style.top=SimileAjax.WindowManager._ghostCoords.top+"px"; K.style.zIndex=1000; SimileAjax.Graphics.setOpacity(K,50); document.body.appendChild(K); L._ghostElmt=K; }SimileAjax.WindowManager._dragging=true; SimileAjax.WindowManager._lastCoords={x:M.clientX,y:M.clientY}; document.body.focus(); }catch(H){SimileAjax.Debug.exception("WindowManager: Error handling mouse down",H); SimileAjax.WindowManager._cancelDragging(); }}}else{try{SimileAjax.WindowManager._lastCoords={x:M.clientX,y:M.clientY}; if("onDragBy" in L){L.onDragBy(J,I); }if("_ghostElmt" in L){var K=L._ghostElmt; SimileAjax.WindowManager._ghostCoords.left+=J; SimileAjax.WindowManager._ghostCoords.top+=I; K.style.left=SimileAjax.WindowManager._ghostCoords.left+"px"; K.style.top=SimileAjax.WindowManager._ghostCoords.top+"px"; if(SimileAjax.WindowManager._draggingModeIndicatorElmt!=null){var O=SimileAjax.WindowManager._draggingModeIndicatorElmt; O.style.left=(SimileAjax.WindowManager._ghostCoords.left-16)+"px"; O.style.top=SimileAjax.WindowManager._ghostCoords.top+"px"; }if("droppable" in L&&L.droppable){var N=SimileAjax.DOM.getEventPageCoordinates(M); var B=SimileAjax.DOM.hittest(N.x,N.y,[SimileAjax.WindowManager._ghostElmt,SimileAjax.WindowManager._dropTargetHighlightElement]); B=SimileAjax.WindowManager._findDropTarget(B); if(B!=SimileAjax.WindowManager._potentialDropTarget){if(SimileAjax.WindowManager._dropTargetHighlightElement!=null){document.body.removeChild(SimileAjax.WindowManager._dropTargetHighlightElement); SimileAjax.WindowManager._dropTargetHighlightElement=null; SimileAjax.WindowManager._potentialDropTarget=null; }var A=false; if(B!=null){if((!("canDropOn" in L)||L.canDropOn(B))&&(!("canDrop" in B)||B.canDrop(SimileAjax.WindowManager._draggedElement))){A=true; }}if(A){var E=4; var D=SimileAjax.DOM.getPageCoordinates(B); var F=document.createElement("div"); F.style.border=E+"px solid yellow"; F.style.backgroundColor="yellow"; F.style.position="absolute"; F.style.left=D.left+"px"; F.style.top=D.top+"px"; F.style.width=(B.offsetWidth-E*2)+"px"; F.style.height=(B.offsetHeight-E*2)+"px"; SimileAjax.Graphics.setOpacity(F,30); document.body.appendChild(F); SimileAjax.WindowManager._potentialDropTarget=B; SimileAjax.WindowManager._dropTargetHighlightElement=F; }}}}}catch(H){SimileAjax.Debug.exception("WindowManager: Error handling mouse move",H); SimileAjax.WindowManager._cancelDragging(); }}SimileAjax.DOM.cancelEvent(M); return false; }}; SimileAjax.WindowManager._onBodyMouseUp=function(B,A,E){if(SimileAjax.WindowManager._draggedElement!=null){try{if(SimileAjax.WindowManager._dragging){var C=SimileAjax.WindowManager._draggedElementCallback; if("onDragEnd" in C){C.onDragEnd(); }if("droppable" in C&&C.droppable){var D=false; var E=SimileAjax.WindowManager._potentialDropTarget; if(E!=null){if((!("canDropOn" in C)||C.canDropOn(E))&&(!("canDrop" in E)||E.canDrop(SimileAjax.WindowManager._draggedElement))){if("onDropOn" in C){C.onDropOn(E); }E.ondrop(SimileAjax.WindowManager._draggedElement,SimileAjax.WindowManager._draggingMode); D=true; }}if(!D){}}}}finally{SimileAjax.WindowManager._cancelDragging(); }SimileAjax.DOM.cancelEvent(A); return false; }}; SimileAjax.WindowManager._cancelDragging=function(){var A=SimileAjax.WindowManager._draggedElementCallback; if("_ghostElmt" in A){var B=A._ghostElmt; document.body.removeChild(B); delete A._ghostElmt; }if(SimileAjax.WindowManager._dropTargetHighlightElement!=null){document.body.removeChild(SimileAjax.WindowManager._dropTargetHighlightElement); SimileAjax.WindowManager._dropTargetHighlightElement=null; }if(SimileAjax.WindowManager._draggingModeIndicatorElmt!=null){document.body.removeChild(SimileAjax.WindowManager._draggingModeIndicatorElmt); SimileAjax.WindowManager._draggingModeIndicatorElmt=null; }SimileAjax.WindowManager._draggedElement=null; SimileAjax.WindowManager._draggedElementCallback=null; SimileAjax.WindowManager._potentialDropTarget=null; SimileAjax.WindowManager._dropTargetHighlightElement=null; SimileAjax.WindowManager._lastCoords=null; SimileAjax.WindowManager._ghostCoords=null; SimileAjax.WindowManager._draggingMode=""; SimileAjax.WindowManager._dragging=false; }; SimileAjax.WindowManager._findDropTarget=function(A){while(A!=null){if("ondrop" in A&&(typeof A.ondrop)=="function"){break; }A=A.parentNode; }return A; }; /* xmlhttp.js */ SimileAjax.XmlHttp=new Object(); SimileAjax.XmlHttp._onReadyStateChange=function(A,D,B){switch(A.readyState){case 4:try{if(A.status==0||A.status==200){if(B){B(A); }}else{if(D){D(A.statusText,A.status,A); }}}catch(C){SimileAjax.Debug.exception("XmlHttp: Error handling onReadyStateChange",C); }break; }}; SimileAjax.XmlHttp._createRequest=function(){if(SimileAjax.Platform.browser.isIE){var B=["Msxml2.XMLHTTP","Microsoft.XMLHTTP","Msxml2.XMLHTTP.4.0"]; for(var C=0; C-1?0:parseInt(G.width); }this._timeline=B; this._bandInfo=G; this._index=C; this._locale=("locale" in G)?G.locale:Timeline.getDefaultLocale(); this._timeZone=("timeZone" in G)?G.timeZone:0; this._labeller=("labeller" in G)?G.labeller:(("createLabeller" in B.getUnit())?B.getUnit().createLabeller(this._locale,this._timeZone):new Timeline.GregorianDateLabeller(this._locale,this._timeZone)); this._theme=G.theme; this._zoomIndex=("zoomIndex" in G)?G.zoomIndex:0; this._zoomSteps=("zoomSteps" in G)?G.zoomSteps:null; this._dragging=false; this._changing=false; this._originalScrollSpeed=5; this._scrollSpeed=this._originalScrollSpeed; this._onScrollListeners=[]; var A=this; this._syncWithBand=null; this._syncWithBandHandler=function(H){A._onHighlightBandScroll(); }; this._selectorListener=function(H){A._onHighlightBandScroll(); }; var E=this._timeline.getDocument().createElement("div"); E.className="timeline-band-input"; this._timeline.addDiv(E); this._keyboardInput=document.createElement("input"); this._keyboardInput.type="text"; E.appendChild(this._keyboardInput); SimileAjax.DOM.registerEventWithObject(this._keyboardInput,"keydown",this,"_onKeyDown"); SimileAjax.DOM.registerEventWithObject(this._keyboardInput,"keyup",this,"_onKeyUp"); this._div=this._timeline.getDocument().createElement("div"); this._div.id="timeline-band-"+C; this._div.className="timeline-band timeline-band-"+C; this._timeline.addDiv(this._div); SimileAjax.DOM.registerEventWithObject(this._div,"mousedown",this,"_onMouseDown"); SimileAjax.DOM.registerEventWithObject(this._div,"mousemove",this,"_onMouseMove"); SimileAjax.DOM.registerEventWithObject(this._div,"mouseup",this,"_onMouseUp"); SimileAjax.DOM.registerEventWithObject(this._div,"mouseout",this,"_onMouseOut"); SimileAjax.DOM.registerEventWithObject(this._div,"dblclick",this,"_onDblClick"); var F=this._theme!=null?this._theme.mouseWheel:"scroll"; if(F==="zoom"||F==="scroll"||this._zoomSteps){if(SimileAjax.Platform.browser.isFirefox){SimileAjax.DOM.registerEventWithObject(this._div,"DOMMouseScroll",this,"_onMouseScroll"); }else{SimileAjax.DOM.registerEventWithObject(this._div,"mousewheel",this,"_onMouseScroll"); }}this._innerDiv=this._timeline.getDocument().createElement("div"); this._innerDiv.className="timeline-band-inner"; this._div.appendChild(this._innerDiv); this._ether=G.ether; G.ether.initialize(this,B); this._etherPainter=G.etherPainter; G.etherPainter.initialize(this,B); this._eventSource=G.eventSource; if(this._eventSource){this._eventListener={onAddMany:function(){A._onAddMany(); },onClear:function(){A._onClear(); }}; this._eventSource.addListener(this._eventListener); }this._eventPainter=G.eventPainter; this._eventTracksNeeded=0; this._eventTrackIncrement=0; G.eventPainter.initialize(this,B); this._decorators=("decorators" in G)?G.decorators:[]; for(var D=0; Dthis._eventTracksNeeded){this._eventTracksNeeded=A; }}; Timeline._Band.prototype.checkAutoWidth=function(){if(!this._timeline.autoWidth){return ; }var C=this._eventPainter.getType()=="overview"; var A=C?this._theme.event.overviewTrack.autoWidthMargin:this._theme.event.track.autoWidthMargin; var B=Math.ceil((this._eventTracksNeeded+A)*this._eventTrackIncrement); B+=C?this._theme.event.overviewTrack.offset:this._theme.event.track.offset; var D=this._bandInfo; if(B!=D.width){D.width=B; }}; Timeline._Band.prototype.layout=function(){this.paint(); }; Timeline._Band.prototype.paint=function(){this._etherPainter.paint(); this._paintDecorators(); this._paintEvents(); }; Timeline._Band.prototype.softLayout=function(){this.softPaint(); }; Timeline._Band.prototype.softPaint=function(){this._etherPainter.softPaint(); this._softPaintDecorators(); this._softPaintEvents(); }; Timeline._Band.prototype.setBandShiftAndWidth=function(A,D){var C=this._keyboardInput.parentNode; var B=A+Math.floor(D/2); if(this._timeline.isHorizontal()){this._div.style.top=A+"px"; this._div.style.height=D+"px"; C.style.top=B+"px"; C.style.left="-1em"; }else{this._div.style.left=A+"px"; this._div.style.width=D+"px"; C.style.left=B+"px"; C.style.top="-1em"; }}; Timeline._Band.prototype.getViewWidth=function(){if(this._timeline.isHorizontal()){return this._div.offsetHeight; }else{return this._div.offsetWidth; }}; Timeline._Band.prototype.setViewLength=function(A){this._viewLength=A; this._recenterDiv(); this._onChanging(); }; Timeline._Band.prototype.getViewLength=function(){return this._viewLength; }; Timeline._Band.prototype.getTotalViewLength=function(){return Timeline._Band.SCROLL_MULTIPLES*this._viewLength; }; Timeline._Band.prototype.getViewOffset=function(){return this._viewOffset; }; Timeline._Band.prototype.getMinDate=function(){return this._ether.pixelOffsetToDate(this._viewOffset); }; Timeline._Band.prototype.getMaxDate=function(){return this._ether.pixelOffsetToDate(this._viewOffset+Timeline._Band.SCROLL_MULTIPLES*this._viewLength); }; Timeline._Band.prototype.getMinVisibleDate=function(){return this._ether.pixelOffsetToDate(0); }; Timeline._Band.prototype.getMinVisibleDateAfterDelta=function(A){return this._ether.pixelOffsetToDate(A); }; Timeline._Band.prototype.getMaxVisibleDate=function(){return this._ether.pixelOffsetToDate(this._viewLength); }; Timeline._Band.prototype.getMaxVisibleDateAfterDelta=function(A){return this._ether.pixelOffsetToDate(this._viewLength+A); }; Timeline._Band.prototype.getCenterVisibleDate=function(){return this._ether.pixelOffsetToDate(this._viewLength/2); }; Timeline._Band.prototype.setMinVisibleDate=function(A){if(!this._changing){this._moveEther(Math.round(-this._ether.dateToPixelOffset(A))); }}; Timeline._Band.prototype.setMaxVisibleDate=function(A){if(!this._changing){this._moveEther(Math.round(this._viewLength-this._ether.dateToPixelOffset(A))); }}; Timeline._Band.prototype.setCenterVisibleDate=function(A){if(!this._changing){this._moveEther(Math.round(this._viewLength/2-this._ether.dateToPixelOffset(A))); }}; Timeline._Band.prototype.dateToPixelOffset=function(A){return this._ether.dateToPixelOffset(A)-this._viewOffset; }; Timeline._Band.prototype.pixelOffsetToDate=function(A){return this._ether.pixelOffsetToDate(A+this._viewOffset); }; Timeline._Band.prototype.createLayerDiv=function(C,A){var D=this._timeline.getDocument().createElement("div"); D.className="timeline-band-layer"+(typeof A=="string"?(" "+A):""); D.style.zIndex=C; this._innerDiv.appendChild(D); var B=this._timeline.getDocument().createElement("div"); B.className="timeline-band-layer-inner"; if(SimileAjax.Platform.browser.isIE){B.style.cursor="move"; }else{B.style.cursor="-moz-grab"; }D.appendChild(B); return B; }; Timeline._Band.prototype.removeLayerDiv=function(A){this._innerDiv.removeChild(A.parentNode); }; Timeline._Band.prototype.scrollToCenter=function(A,C){var B=this._ether.dateToPixelOffset(A); if(B<-this._viewLength/2){this.setCenterVisibleDate(this.pixelOffsetToDate(B+this._viewLength)); }else{if(B>3*this._viewLength/2){this.setCenterVisibleDate(this.pixelOffsetToDate(B-this._viewLength)); }}this._autoScroll(Math.round(this._viewLength/2-this._ether.dateToPixelOffset(A)),C); }; Timeline._Band.prototype.showBubbleForEvent=function(C){var A=this.getEventSource().getEvent(C); if(A){var B=this; this.scrollToCenter(A.getStart(),function(){B._eventPainter.showBubble(A); }); }}; Timeline._Band.prototype.zoom=function(C,A,F,E){if(!this._zoomSteps){return ; }A+=this._viewOffset; var D=this._ether.pixelOffsetToDate(A); var B=this._ether.zoom(C); this._etherPainter.zoom(B); this._moveEther(Math.round(-this._ether.dateToPixelOffset(D))); this._moveEther(A); }; Timeline._Band.prototype._onMouseDown=function(B,A,C){this.closeBubble(); this._dragging=true; this._dragX=A.clientX; this._dragY=A.clientY; }; Timeline._Band.prototype._onMouseMove=function(D,A,E){if(this._dragging){var C=A.clientX-this._dragX; var B=A.clientY-this._dragY; this._dragX=A.clientX; this._dragY=A.clientY; this._moveEther(this._timeline.isHorizontal()?C:B); this._positionHighlight(); }}; Timeline._Band.prototype._onMouseUp=function(B,A,C){this._dragging=false; this._keyboardInput.focus(); }; Timeline._Band.prototype._onMouseOut=function(C,B,D){var A=SimileAjax.DOM.getEventRelativeCoordinates(B,C); A.x+=this._viewOffset; if(A.x<0||A.x>C.offsetWidth||A.y<0||A.y>C.offsetHeight){this._dragging=false; }}; Timeline._Band.prototype._onMouseScroll=function(G,H,B){var A=new Date(); A=A.getTime(); if(!this._lastScrollTime||((A-this._lastScrollTime)>50)){this._lastScrollTime=A; var I=0; if(H.wheelDelta){I=H.wheelDelta/120; }else{if(H.detail){I=-H.detail/3; }}var F=this._theme.mouseWheel; if(this._zoomSteps||F==="zoom"){var E=SimileAjax.DOM.getEventRelativeCoordinates(H,G); if(I!=0){var D; if(I>0){D=true; }if(I<0){D=false; }this._timeline.zoom(D,E.x,E.y,G); }}else{if(F==="scroll"){var C=50*(I<0?-1:1); this._moveEther(C); }}}if(H.stopPropagation){H.stopPropagation(); }H.cancelBubble=true; if(H.preventDefault){H.preventDefault(); }H.returnValue=false; }; Timeline._Band.prototype._onDblClick=function(C,B,E){var A=SimileAjax.DOM.getEventRelativeCoordinates(B,C); var D=A.x-(this._viewLength/2-this._viewOffset); this._autoScroll(-D); }; Timeline._Band.prototype._onKeyDown=function(B,A,C){if(!this._dragging){switch(A.keyCode){case 27:break; case 37:case 38:this._scrollSpeed=Math.min(50,Math.abs(this._scrollSpeed*1.05)); this._moveEther(this._scrollSpeed); break; case 39:case 40:this._scrollSpeed=-Math.min(50,Math.abs(this._scrollSpeed*1.05)); this._moveEther(this._scrollSpeed); break; default:return true; }this.closeBubble(); SimileAjax.DOM.cancelEvent(A); return false; }return true; }; Timeline._Band.prototype._onKeyUp=function(B,A,C){if(!this._dragging){this._scrollSpeed=this._originalScrollSpeed; switch(A.keyCode){case 35:this.setCenterVisibleDate(this._eventSource.getLatestDate()); break; case 36:this.setCenterVisibleDate(this._eventSource.getEarliestDate()); break; case 33:this._autoScroll(this._timeline.getPixelLength()); break; case 34:this._autoScroll(-this._timeline.getPixelLength()); break; default:return true; }this.closeBubble(); SimileAjax.DOM.cancelEvent(A); return false; }return true; }; Timeline._Band.prototype._autoScroll=function(D,C){var A=this; var B=SimileAjax.Graphics.createAnimation(function(E,F){A._moveEther(F); },0,D,1000,C); B.run(); }; Timeline._Band.prototype._moveEther=function(A){this.closeBubble(); if(!this._timeline.shiftOK(this._index,A)){return ; }this._viewOffset+=A; this._ether.shiftPixels(-A); if(this._timeline.isHorizontal()){this._div.style.left=this._viewOffset+"px"; }else{this._div.style.top=this._viewOffset+"px"; }if(this._viewOffset>-this._viewLength*0.5||this._viewOffset<-this._viewLength*(Timeline._Band.SCROLL_MULTIPLES-1.5)){this._recenterDiv(); }else{this.softLayout(); }this._onChanging(); }; Timeline._Band.prototype._onChanging=function(){this._changing=true; this._fireOnScroll(); this._setSyncWithBandDate(); this._changing=false; }; Timeline._Band.prototype.busy=function(){return(this._changing); }; Timeline._Band.prototype._fireOnScroll=function(){for(var A=0; A0){W[B-1].end=Math.max(W[B-1].end,U); }var E=I.height+X.iconBottomMargin+C; while(E>0){W.push({start:N,end:U}); E-=X.trackHeight; }}var P=a.text; var H=this._frc.computeSize(P); var M=H.height+X.labelBottomMargin+C; var J=U+H.width+X.labelRightMargin; if(B>0){W[B-1].end=Math.max(W[B-1].end,J); }for(var Y=0; M>0; Y++){if(B+Y=0){var D=this._timeline.getDocument(); var G=E.event; var B=G.highlightColors[Math.min(A,G.highlightColors.length-1)]; var F=D.createElement("div"); F.style.position="absolute"; F.style.overflow="hidden"; F.style.left=(C.left-2)+"px"; F.style.width=(C.width+4)+"px"; F.style.top=(C.top-2)+"px"; F.style.height=(C.height+4)+"px"; this._highlightLayer.appendChild(F); }}; Timeline.CompactEventPainter.prototype._onClickMultiplePreciseInstantEvent=function(E,A,B){var F=SimileAjax.DOM.getPageCoordinates(E); this._showBubble(F.left+Math.ceil(E.offsetWidth/2),F.top+Math.ceil(E.offsetHeight/2),B); var D=[]; for(var C=0; C0){E=this._unit.later(E,this._startDate); A=this._unit.earlier(A,this._endDate); var F=this._band.dateToPixelOffset(E); var I=this._band.dateToPixelOffset(A); var H=this._timeline.getDocument(); var K=function(){var L=H.createElement("table"); L.insertRow(0).insertCell(0); return L; }; var B=H.createElement("div"); B.className="timeline-highlight-decorator"; if(this._cssClass){B.className+=" "+this._cssClass; }if(this._color!=null){B.style.backgroundColor=this._color; }if(this._opacity<100){SimileAjax.Graphics.setOpacity(B,this._opacity); }this._layerDiv.appendChild(B); var J=K(); J.className="timeline-highlight-label timeline-highlight-label-start"; var C=J.rows[0].cells[0]; C.innerHTML=this._startLabel; if(this._cssClass){C.className="label_"+this._cssClass; }this._layerDiv.appendChild(J); var G=K(); G.className="timeline-highlight-label timeline-highlight-label-end"; var D=G.rows[0].cells[0]; D.innerHTML=this._endLabel; if(this._cssClass){D.className="label_"+this._cssClass; }this._layerDiv.appendChild(G); if(this._timeline.isHorizontal()){B.style.left=F+"px"; B.style.width=(I-F)+"px"; J.style.right=(this._band.getTotalViewLength()-F)+"px"; J.style.width=(this._startLabel.length)+"em"; G.style.left=I+"px"; G.style.width=(this._endLabel.length)+"em"; }else{B.style.top=F+"px"; B.style.height=(I-F)+"px"; J.style.bottom=F+"px"; J.style.height="1.5px"; G.style.top=I+"px"; G.style.height="1.5px"; }}this._layerDiv.style.display="block"; }; Timeline.SpanHighlightDecorator.prototype.softPaint=function(){}; Timeline.PointHighlightDecorator=function(A){this._unit=A.unit!=null?A.unit:SimileAjax.NativeDateUnit; this._date=(typeof A.date=="string")?this._unit.parseFromObject(A.date):A.date; this._width=A.width!=null?A.width:10; this._color=A.color; this._cssClass=A.cssClass!=null?A.cssClass:""; this._opacity=A.opacity!=null?A.opacity:100; }; Timeline.PointHighlightDecorator.prototype.initialize=function(B,A){this._band=B; this._timeline=A; this._layerDiv=null; }; Timeline.PointHighlightDecorator.prototype.paint=function(){if(this._layerDiv!=null){this._band.removeLayerDiv(this._layerDiv); }this._layerDiv=this._band.createLayerDiv(10); this._layerDiv.setAttribute("name","span-highlight-decorator"); this._layerDiv.style.display="none"; var C=this._band.getMinDate(); var E=this._band.getMaxDate(); if(this._unit.compare(this._date,E)<0&&this._unit.compare(this._date,C)>0){var A=this._band.dateToPixelOffset(this._date); var B=A-Math.round(this._width/2); var D=this._timeline.getDocument(); var F=D.createElement("div"); F.className="timeline-highlight-point-decorator"; F.className+=" "+this._cssClass; if(this._color!=null){F.style.backgroundColor=this._color; }if(this._opacity<100){SimileAjax.Graphics.setOpacity(F,this._opacity); }this._layerDiv.appendChild(F); if(this._timeline.isHorizontal()){F.style.left=B+"px"; F.style.width=this._width; }else{F.style.top=B+"px"; F.style.height=this._width; }}this._layerDiv.style.display="block"; }; Timeline.PointHighlightDecorator.prototype.softPaint=function(){}; /* detailed-painter.js */ Timeline.DetailedEventPainter=function(A){this._params=A; this._onSelectListeners=[]; this._filterMatcher=null; this._highlightMatcher=null; this._frc=null; this._eventIdToElmt={}; }; Timeline.DetailedEventPainter.prototype.initialize=function(B,A){this._band=B; this._timeline=A; this._backLayer=null; this._eventLayer=null; this._lineLayer=null; this._highlightLayer=null; this._eventIdToElmt=null; }; Timeline.DetailedEventPainter.prototype.getType=function(){return"detailed"; }; Timeline.DetailedEventPainter.prototype.addOnSelectListener=function(A){this._onSelectListeners.push(A); }; Timeline.DetailedEventPainter.prototype.removeOnSelectListener=function(B){for(var A=0; A=K+E.width){D.solid=C; D.text=K; }else{D.solid=C; K=H+S.event.label.offsetFromLine; O=this._findFreeTrackForText(F,K+E.width,function(U){U.line=H-2; }); this._getTrackData(O).text=C; this._paintEventLine(L,H,F,O,P,S); }var N=Math.round(P.trackOffset+O*P.trackIncrement+P.trackHeight/2-E.height/2); var R=this._paintEventLabel(L,J,K,N,E.width,E.height,S); var M=this; var I=function(V,U,W){return M._onClickInstantEvent(B.elmt,U,L); }; SimileAjax.DOM.registerEvent(B.elmt,"mousedown",I); SimileAjax.DOM.registerEvent(R.elmt,"mousedown",I); this._createHighlightDiv(Q,B,S); this._eventIdToElmt[L.getID()]=B.elmt; }; Timeline.DetailedEventPainter.prototype.paintImpreciseInstantEvent=function(O,S,W,T){var X=this._timeline.getDocument(); var M=O.getText(); var I=O.getStart(); var U=O.getEnd(); var K=Math.round(this._band.dateToPixelOffset(I)); var B=Math.round(this._band.dateToPixelOffset(U)); var A=Math.round(K+S.iconWidth/2); var D=Math.round(K-S.iconWidth/2); var G=this._frc.computeSize(M); var H=this._findFreeTrackForSolid(B,K); var E=this._paintEventTape(O,H,K,B,W.event.instant.impreciseColor,W.event.instant.impreciseOpacity,S,W); var C=this._paintEventIcon(O,H,D,S,W); var F=this._getTrackData(H); F.solid=D; var N=A+W.event.label.offsetFromLine; var J=N+G.width; var R; if(JD&&(!(A)||B.line>A)){return C; }}else{this._lowerTracks.push({solid:Number.POSITIVE_INFINITY,text:Number.POSITIVE_INFINITY,line:Number.POSITIVE_INFINITY}); return C; }if(CD&&(!(A)||B.line>A)){return -1-C; }}else{this._upperTracks.push({solid:Number.POSITIVE_INFINITY,text:Number.POSITIVE_INFINITY,line:Number.POSITIVE_INFINITY}); return -1-C; }}}; Timeline.DetailedEventPainter.prototype._findFreeTrackForText=function(C,A,I){var B; var E; var F; var H; if(C<0){B=true; F=-C; E=this._findFreeUpperTrackForText(F,A); H=-1-E; }else{if(C>0){B=false; F=C+1; E=this._findFreeLowerTrackForText(F,A); H=E; }else{var G=this._findFreeUpperTrackForText(0,A); var J=this._findFreeLowerTrackForText(1,A); if(J-1<=G){B=false; F=1; E=J; H=E; }else{B=true; F=0; E=G; H=-1-E; }}}if(B){if(E==this._upperTracks.length){this._upperTracks.push({solid:Number.POSITIVE_INFINITY,text:Number.POSITIVE_INFINITY,line:Number.POSITIVE_INFINITY}); }for(var D=F; D=C){break; }}return A; }; Timeline.DetailedEventPainter.prototype._findFreeUpperTrackForText=function(A,C){for(; A=C){break; }}return A; }; Timeline.DetailedEventPainter.prototype._getTrackData=function(A){return(A<0)?this._upperTracks[-A-1]:this._lowerTracks[A]; }; Timeline.DetailedEventPainter.prototype._paintEventLine=function(J,E,D,A,G,F){var H=Math.round(G.trackOffset+D*G.trackIncrement+G.trackHeight/2); var I=Math.round(Math.abs(A-D)*G.trackIncrement); var C="1px solid "+F.event.label.lineColor; var B=this._timeline.getDocument().createElement("div"); B.style.position="absolute"; B.style.left=E+"px"; B.style.width=F.event.label.offsetFromLine+"px"; B.style.height=I+"px"; if(D>A){B.style.top=(H-I)+"px"; B.style.borderTop=C; }else{B.style.top=H+"px"; B.style.borderBottom=C; }B.style.borderLeft=C; this._lineLayer.appendChild(B); }; Timeline.DetailedEventPainter.prototype._paintEventIcon=function(J,B,C,F,E){var H=J.getIcon(); H=H!=null?H:F.icon; var G=F.trackOffset+B*F.trackIncrement+F.trackHeight/2; var I=Math.round(G-F.iconHeight/2); var D=SimileAjax.Graphics.createTranslucentImage(H); var A=this._timeline.getDocument().createElement("div"); A.style.position="absolute"; A.style.left=C+"px"; A.style.top=I+"px"; A.appendChild(D); A.style.cursor="pointer"; if(J._title!=null){A.title=J._title; }this._eventLayer.appendChild(A); return{left:C,top:I,width:F.iconWidth,height:F.iconHeight,elmt:A}; }; Timeline.DetailedEventPainter.prototype._paintEventLabel=function(I,J,C,F,A,G,E){var H=this._timeline.getDocument(); var K=H.createElement("div"); K.style.position="absolute"; K.style.left=C+"px"; K.style.width=A+"px"; K.style.top=F+"px"; K.style.height=G+"px"; K.style.backgroundColor=E.event.label.backgroundColor; SimileAjax.Graphics.setOpacity(K,E.event.label.backgroundOpacity); this._eventLayer.appendChild(K); var B=H.createElement("div"); B.style.position="absolute"; B.style.left=C+"px"; B.style.width=A+"px"; B.style.top=F+"px"; B.innerHTML=J; B.style.cursor="pointer"; if(I._title!=null){B.title=I._title; }var D=I.getTextColor(); if(D==null){D=I.getColor(); }if(D!=null){B.style.color=D; }this._eventLayer.appendChild(B); return{left:C,top:F,width:A,height:G,elmt:B}; }; Timeline.DetailedEventPainter.prototype._paintEventTape=function(L,B,D,A,G,C,I,H){var F=A-D; var E=H.event.tape.height; var K=I.trackOffset+B*I.trackIncrement+I.trackHeight/2; var J=Math.round(K-E/2); var M=this._timeline.getDocument().createElement("div"); M.style.position="absolute"; M.style.left=D+"px"; M.style.width=F+"px"; M.style.top=J+"px"; M.style.height=E+"px"; M.style.backgroundColor=G; M.style.overflow="hidden"; M.style.cursor="pointer"; if(L._title!=null){M.title=L._title; }SimileAjax.Graphics.setOpacity(M,C); this._eventLayer.appendChild(M); return{left:D,top:J,width:F,height:E,elmt:M}; }; Timeline.DetailedEventPainter.prototype._createHighlightDiv=function(A,C,E){if(A>=0){var D=this._timeline.getDocument(); var G=E.event; var B=G.highlightColors[Math.min(A,G.highlightColors.length-1)]; var F=D.createElement("div"); F.style.position="absolute"; F.style.overflow="hidden"; F.style.left=(C.left-2)+"px"; F.style.width=(C.width+4)+"px"; F.style.top=(C.top-2)+"px"; F.style.height=(C.height+4)+"px"; F.style.background=B; this._highlightLayer.appendChild(F); }}; Timeline.DetailedEventPainter.prototype._onClickInstantEvent=function(C,A,B){var D=SimileAjax.DOM.getPageCoordinates(C); this._showBubble(D.left+Math.ceil(C.offsetWidth/2),D.top+Math.ceil(C.offsetHeight/2),B); this._fireOnSelect(B.getID()); A.cancelBubble=true; SimileAjax.DOM.cancelEvent(A); return false; }; Timeline.DetailedEventPainter.prototype._onClickDurationEvent=function(F,B,C){if("pageX" in B){var A=B.pageX; var E=B.pageY; }else{var D=SimileAjax.DOM.getPageCoordinates(F); var A=B.offsetX+D.left; var E=B.offsetY+D.top; }this._showBubble(A,E,C); this._fireOnSelect(C.getID()); B.cancelBubble=true; SimileAjax.DOM.cancelEvent(B); return false; }; Timeline.DetailedEventPainter.prototype.showBubble=function(A){var B=this._eventIdToElmt[A.getID()]; if(B){var C=SimileAjax.DOM.getPageCoordinates(B); this._showBubble(C.left+B.offsetWidth/2,C.top+B.offsetHeight/2,A); }}; Timeline.DetailedEventPainter.prototype._showBubble=function(B,E,C){var D=document.createElement("div"); var A=this._params.theme.event.bubble; C.fillInfoBubble(D,this._params.theme,this._band.getLabeller()); SimileAjax.WindowManager.cancelPopups(); SimileAjax.Graphics.createBubbleForContentAndPoint(D,B,E,A.width,null,A.maxHeight); }; Timeline.DetailedEventPainter.prototype._fireOnSelect=function(A){for(var B=0; BE; D++){var A=this._zones[D]; if(EA.startTime){this._zones.splice(D,0,{startTime:A.startTime,endTime:E,unit:A.unit,multiple:A.multiple}); D++; A.startTime=E; }if(B=0){if(A.getTime()>this._zones[E].startTime){break; }E--; }for(var H=D; H<=E; H++){var G=this._zones[H]; var K=new Date(Math.max(C.getTime(),G.startTime)); var F=new Date(Math.min(A.getTime(),G.endTime)); SimileAjax.DateTime.roundDownToInterval(K,G.unit,I,G.multiple,this._theme.firstDayOfWeek); SimileAjax.DateTime.roundUpToInterval(F,G.unit,I,G.multiple,this._theme.firstDayOfWeek); while(K.getTime()0)){C=B-1; }if(!D&&(B<(this._band._zoomSteps.length-1))){C=B+1; }this._band._zoomIndex=C; this._interval=SimileAjax.DateTime.gregorianUnitLengths[this._band._zoomSteps[C].unit]; this._pixelsPerInterval=this._band._zoomSteps[C].pixelsPerInterval; A=this._band._zoomSteps[C].unit-this._band._zoomSteps[B].unit; return A; }; Timeline.HotZoneEther=function(A){this._params=A; this._interval=A.interval; this._pixelsPerInterval=A.pixelsPerInterval; this._theme=A.theme; }; Timeline.HotZoneEther.prototype.initialize=function(I,H){this._band=I; this._timeline=H; this._unit=H.getUnit(); this._zones=[{startTime:Number.NEGATIVE_INFINITY,endTime:Number.POSITIVE_INFINITY,magnify:1}]; var D=this._params; for(var E=0; E0; C++){var A=this._zones[C]; if(this._unit.compare(F,A.endTime)<0){if(this._unit.compare(F,A.startTime)>0){this._zones.splice(C,0,{startTime:A.startTime,endTime:F,magnify:A.magnify}); C++; A.startTime=F; }if(this._unit.compare(B,A.endTime)<0){this._zones.splice(C,0,{startTime:F,endTime:B,magnify:G.magnify*A.magnify}); C++; A.startTime=B; F=B; }else{A.magnify*=G.magnify; F=A.endTime; }}}}if("startsOn" in this._params){this._start=this._unit.parseFromObject(this._params.startsOn); }else{if("endsOn" in this._params){this._start=this._unit.parseFromObject(this._params.endsOn); this.shiftPixels(-this._timeline.getPixelLength()); }else{if("centersOn" in this._params){this._start=this._unit.parseFromObject(this._params.centersOn); this.shiftPixels(-this._timeline.getPixelLength()/2); }else{this._start=this._unit.makeDefaultValue(); this.shiftPixels(-this._timeline.getPixelLength()/2); }}}}; Timeline.HotZoneEther.prototype.setDate=function(A){this._start=this._unit.cloneValue(A); }; Timeline.HotZoneEther.prototype.shiftPixels=function(A){this._start=this.pixelOffsetToDate(A); }; Timeline.HotZoneEther.prototype.dateToPixelOffset=function(A){return this._dateDiffToPixelOffset(this._start,A); }; Timeline.HotZoneEther.prototype.pixelOffsetToDate=function(A){return this._pixelOffsetToDate(A,this._start); }; Timeline.HotZoneEther.prototype.zoom=function(D){var A=0; var B=this._band._zoomIndex; var C=B; if(D&&(B>0)){C=B-1; }if(!D&&(B<(this._band._zoomSteps.length-1))){C=B+1; }this._band._zoomIndex=C; this._interval=SimileAjax.DateTime.gregorianUnitLengths[this._band._zoomSteps[C].unit]; this._pixelsPerInterval=this._band._zoomSteps[C].pixelsPerInterval; A=this._band._zoomSteps[C].unit-this._band._zoomSteps[B].unit; return A; }; Timeline.HotZoneEther.prototype._dateDiffToPixelOffset=function(H,C){var D=this._getScale(); var I=H; var B=C; var E=0; if(this._unit.compare(I,B)<0){var G=0; while(G=0){if(this._unit.compare(I,this._zones[G].startTime)>0){break; }G--; }while(this._unit.compare(I,B)>0){var F=this._zones[G]; var A=this._unit.later(B,F.startTime); E+=(this._unit.compare(A,I)/(D/F.magnify)); I=A; G--; }}return E; }; Timeline.HotZoneEther.prototype._pixelOffsetToDate=function(E,B){var G=this._getScale(); var D=B; if(E>0){var F=0; while(F0){var A=this._zones[F]; var H=G/A.magnify; if(A.endTime==Number.POSITIVE_INFINITY){D=this._unit.change(D,E*H); E=0; }else{var C=this._unit.compare(A.endTime,D)/H; if(C>E){D=this._unit.change(D,E*H); E=0; }else{D=A.endTime; E-=C; }}F++; }}else{var F=this._zones.length-1; while(F>=0){if(this._unit.compare(D,this._zones[F].startTime)>0){break; }F--; }E=-E; while(E>0){var A=this._zones[F]; var H=G/A.magnify; if(A.startTime==Number.NEGATIVE_INFINITY){D=this._unit.change(D,-E*H); E=0; }else{var C=this._unit.compare(D,A.startTime)/H; if(C>E){D=this._unit.change(D,-E*H); E=0; }else{D=A.startTime; E-=C; }}F--; }}return D; }; Timeline.HotZoneEther.prototype._getScale=function(){return this._interval/this._pixelsPerInterval; }; /* event-utils.js */ Timeline.EventUtils={}; Timeline.EventUtils.getNewEventID=function(){if(this._lastEventID==null){this._lastEventID=0; }this._lastEventID+=1; return"e"+this._lastEventID; }; Timeline.EventUtils.decodeEventElID=function(C){var D=C.split("-"); if(D[1]!="tl"){alert("Internal Timeline problem 101, please consult support"); return{band:null,evt:null}; }var B=Timeline.getTimelineFromID(D[2]); var E=B.getBand(D[3]); var A=E.getEventSource.getEvent(D[4]); return{band:E,evt:A}; }; Timeline.EventUtils.encodeEventElID=function(B,D,C,A){return C+"-tl-"+B.timelineID+"-"+D.getIndex()+"-"+A.getID(); }; /* labellers.js */ Timeline.GregorianDateLabeller=function(B,A){this._locale=B; this._timeZone=A; }; Timeline.GregorianDateLabeller.monthNames=[]; Timeline.GregorianDateLabeller.dayNames=[]; Timeline.GregorianDateLabeller.labelIntervalFunctions=[]; Timeline.GregorianDateLabeller.getMonthName=function(B,A){return Timeline.GregorianDateLabeller.monthNames[A][B]; }; Timeline.GregorianDateLabeller.prototype.labelInterval=function(A,C){var B=Timeline.GregorianDateLabeller.labelIntervalFunctions[this._locale]; if(B==null){B=Timeline.GregorianDateLabeller.prototype.defaultLabelInterval; }return B.call(this,A,C); }; Timeline.GregorianDateLabeller.prototype.labelPrecise=function(A){return SimileAjax.DateTime.removeTimeZoneOffset(A,this._timeZone).toUTCString(); }; Timeline.GregorianDateLabeller.prototype.defaultLabelInterval=function(B,C){var D; var F=false; B=SimileAjax.DateTime.removeTimeZoneOffset(B,this._timeZone); switch(C){case SimileAjax.DateTime.MILLISECOND:D=B.getUTCMilliseconds(); break; case SimileAjax.DateTime.SECOND:D=B.getUTCSeconds(); break; case SimileAjax.DateTime.MINUTE:var A=B.getUTCMinutes(); if(A==0){D=B.getUTCHours()+":00"; F=true; }else{D=A; }break; case SimileAjax.DateTime.HOUR:D=B.getUTCHours()+"hr"; break; case SimileAjax.DateTime.DAY:D=Timeline.GregorianDateLabeller.getMonthName(B.getUTCMonth(),this._locale)+" "+B.getUTCDate(); break; case SimileAjax.DateTime.WEEK:D=Timeline.GregorianDateLabeller.getMonthName(B.getUTCMonth(),this._locale)+" "+B.getUTCDate(); break; case SimileAjax.DateTime.MONTH:var A=B.getUTCMonth(); if(A!=0){D=Timeline.GregorianDateLabeller.getMonthName(A,this._locale); break; }case SimileAjax.DateTime.YEAR:case SimileAjax.DateTime.DECADE:case SimileAjax.DateTime.CENTURY:case SimileAjax.DateTime.MILLENNIUM:var E=B.getUTCFullYear(); if(E>0){D=B.getUTCFullYear(); }else{D=(1-E)+"BC"; }F=(C==SimileAjax.DateTime.MONTH)||(C==SimileAjax.DateTime.DECADE&&E%100==0)||(C==SimileAjax.DateTime.CENTURY&&E%1000==0); break; default:D=B.toUTCString(); }return{text:D,emphasized:F}; }; /* original-painter.js */ Timeline.OriginalEventPainter=function(A){this._params=A; this._onSelectListeners=[]; this._eventPaintListeners=[]; this._filterMatcher=null; this._highlightMatcher=null; this._frc=null; this._eventIdToElmt={}; }; Timeline.OriginalEventPainter.prototype.initialize=function(B,A){this._band=B; this._timeline=A; this._backLayer=null; this._eventLayer=null; this._lineLayer=null; this._highlightLayer=null; this._eventIdToElmt=null; }; Timeline.OriginalEventPainter.prototype.getType=function(){return"original"; }; Timeline.OriginalEventPainter.prototype.addOnSelectListener=function(A){this._onSelectListeners.push(A); }; Timeline.OriginalEventPainter.prototype.removeOnSelectListener=function(B){for(var A=0; AD){break; }}return C; }; Timeline.OriginalEventPainter.prototype._paintEventIcon=function(K,B,C,G,F,D){var I=K.getIcon(); I=I!=null?I:G.icon; var J; if(D>0){J=G.trackOffset+B*G.trackIncrement+D+G.impreciseIconMargin; }else{var H=G.trackOffset+B*G.trackIncrement+G.trackHeight/2; J=Math.round(H-G.iconHeight/2); }var E=SimileAjax.Graphics.createTranslucentImage(I); var A=this._timeline.getDocument().createElement("div"); A.className=this._getElClassName("timeline-event-icon",K,"icon"); A.id=this._encodeEventElID("icon",K); A.style.left=C+"px"; A.style.top=J+"px"; A.appendChild(E); if(K._title!=null){A.title=K._title; }this._eventLayer.appendChild(A); return{left:C,top:J,width:G.iconWidth,height:G.iconHeight,elmt:A}; }; Timeline.OriginalEventPainter.prototype._paintEventLabel=function(K,L,D,H,A,J,G,E,C){var I=this._timeline.getDocument(); var B=I.createElement("div"); B.className=E; B.id=this._encodeEventElID("label",K); B.style.left=D+"px"; B.style.width=A+"px"; B.style.top=H+"px"; B.innerHTML=L; if(K._title!=null){B.title=K._title; }var F=K.getTextColor(); if(F==null){F=K.getColor(); }if(F!=null){B.style.color=F; }if(G.event.highlightLabelBackground&&C>=0){B.style.background=this._getHighlightColor(C,G); }this._eventLayer.appendChild(B); return{left:D,top:H,width:A,height:J,elmt:B}; }; Timeline.OriginalEventPainter.prototype._paintEventTape=function(N,B,D,A,G,C,J,I,M){var F=A-D; var E=I.event.tape.height; var K=J.trackOffset+B*J.trackIncrement; var O=this._timeline.getDocument().createElement("div"); O.className=this._getElClassName("timeline-event-tape",N,"tape"); O.id=this._encodeEventElID("tape"+M,N); O.style.left=D+"px"; O.style.width=F+"px"; O.style.height=E+"px"; O.style.top=K+"px"; if(N._title!=null){O.title=N._title; }if(G!=null){O.style.backgroundColor=G; }var L=N.getTapeImage(); var H=N.getTapeRepeat(); H=H!=null?H:"repeat"; if(L!=null){O.style.backgroundImage="url("+L+")"; O.style.backgroundRepeat=H; }SimileAjax.Graphics.setOpacity(O,C); this._eventLayer.appendChild(O); return{left:D,top:K,width:F,height:E,elmt:O}; }; Timeline.OriginalEventPainter.prototype._getLabelDivClassName=function(A){return this._getElClassName("timeline-event-label",A,"label"); }; Timeline.OriginalEventPainter.prototype._getElClassName=function(D,C,A){var E=C.getClassName(),B=[]; if(E){if(A){B.push(A+"-"+E+" "); }B.push(E+" "); }B.push(D); return(B.join("")); }; Timeline.OriginalEventPainter.prototype._getHighlightColor=function(A,B){var C=B.event.highlightColors; return C[Math.min(A,C.length-1)]; }; Timeline.OriginalEventPainter.prototype._createHighlightDiv=function(A,D,F,B){var G=null; if(A>=0){var E=this._timeline.getDocument(); var C=this._getHighlightColor(A,F); G=E.createElement("div"); G.className=this._getElClassName("timeline-event-highlight",B,"highlight"); G.id=this._encodeEventElID("highlight0",B); G.style.position="absolute"; G.style.overflow="hidden"; G.style.left=(D.left-2)+"px"; G.style.width=(D.width+4)+"px"; G.style.top=(D.top-2)+"px"; G.style.height=(D.height+4)+"px"; G.style.background=C; this._highlightLayer.appendChild(G); }return G; }; Timeline.OriginalEventPainter.prototype._onClickInstantEvent=function(C,A,B){var D=SimileAjax.DOM.getPageCoordinates(C); this._showBubble(D.left+Math.ceil(C.offsetWidth/2),D.top+Math.ceil(C.offsetHeight/2),B); this._fireOnSelect(B.getID()); A.cancelBubble=true; SimileAjax.DOM.cancelEvent(A); return false; }; Timeline.OriginalEventPainter.prototype._onClickDurationEvent=function(F,B,C){if("pageX" in B){var A=B.pageX; var E=B.pageY; }else{var D=SimileAjax.DOM.getPageCoordinates(F); var A=B.offsetX+D.left; var E=B.offsetY+D.top; }this._showBubble(A,E,C); this._fireOnSelect(C.getID()); B.cancelBubble=true; SimileAjax.DOM.cancelEvent(B); return false; }; Timeline.OriginalEventPainter.prototype.showBubble=function(A){var B=this._eventIdToElmt[A.getID()]; if(B){var C=SimileAjax.DOM.getPageCoordinates(B); this._showBubble(C.left+B.offsetWidth/2,C.top+B.offsetHeight/2,A); }}; Timeline.OriginalEventPainter.prototype._showBubble=function(B,E,C){var D=document.createElement("div"); var A=this._params.theme.event.bubble; C.fillInfoBubble(D,this._params.theme,this._band.getLabeller()); SimileAjax.WindowManager.cancelPopups(); SimileAjax.Graphics.createBubbleForContentAndPoint(D,B,E,A.width,null,A.maxHeight); }; Timeline.OriginalEventPainter.prototype._fireOnSelect=function(A){for(var B=0; B=0){var D=this._timeline.getDocument(); var G=E.event; var B=G.highlightColors[Math.min(A,G.highlightColors.length-1)]; var F=D.createElement("div"); F.style.position="absolute"; F.style.overflow="hidden"; F.style.left=(C.left-1)+"px"; F.style.width=(C.width+2)+"px"; F.style.top=(C.top-1)+"px"; F.style.height=(C.height+2)+"px"; F.style.background=B; this._highlightLayer.appendChild(F); }}; Timeline.OverviewEventPainter.prototype.showBubble=function(A){}; /* sources.js */ Timeline.DefaultEventSource=function(A){this._events=(A instanceof Object)?A:new SimileAjax.EventIndex(); this._listeners=[]; }; Timeline.DefaultEventSource.prototype.addListener=function(A){this._listeners.push(A); }; Timeline.DefaultEventSource.prototype.removeListener=function(B){for(var A=0; A0){return A; }else{if(A.substr(0,1)=="/"){return B.substr(0,B.indexOf("/",B.indexOf("://")+3))+A; }else{return B+A; }}}}; Timeline.DefaultEventSource.Event=function(A){function D(E){return(A[E]!=null&&A[E]!="")?A[E]:null; }var C=A.id?A.id.trim():""; this._id=C.length>0?C:Timeline.EventUtils.getNewEventID(); this._instant=A.instant||(A.end==null); this._start=A.start; this._end=(A.end!=null)?A.end:A.start; this._latestStart=(A.latestStart!=null)?A.latestStart:(A.instant?this._end:this._start); this._earliestEnd=(A.earliestEnd!=null)?A.earliestEnd:this._end; var B=[]; if(this._start>this._latestStart){this._latestStart=this._start; B.push("start is > latestStart"); }if(this._start>this._earliestEnd){this._earliestEnd=this._latestStart; B.push("start is > earliestEnd"); }if(this._start>this._end){this._end=this._earliestEnd; B.push("start is > end"); }if(this._latestStart>this._earliestEnd){this._earliestEnd=this._latestStart; B.push("latestStart is > earliestEnd"); }if(this._latestStart>this._end){this._end=this._earliestEnd; B.push("latestStart is > end"); }if(this._earliestEnd>this._end){this._end=this._earliestEnd; B.push("earliestEnd is > end"); }this._eventID=D("eventID"); this._text=(A.text!=null)?SimileAjax.HTML.deEntify(A.text):""; if(B.length>0){this._text+=" PROBLEM: "+B.join(", "); }this._description=SimileAjax.HTML.deEntify(A.description); this._image=D("image"); this._link=D("link"); this._title=D("hoverText"); this._title=D("caption"); this._icon=D("icon"); this._color=D("color"); this._textColor=D("textColor"); this._classname=D("classname"); this._tapeImage=D("tapeImage"); this._tapeRepeat=D("tapeRepeat"); this._trackNum=D("trackNum"); if(this._trackNum!=null){this._trackNum=parseInt(this._trackNum); }this._wikiURL=null; this._wikiSection=null; }; Timeline.DefaultEventSource.Event.prototype={getID:function(){return this._id; },isInstant:function(){return this._instant; },isImprecise:function(){return this._start!=this._latestStart||this._end!=this._earliestEnd; },getStart:function(){return this._start; },getEnd:function(){return this._end; },getLatestStart:function(){return this._latestStart; },getEarliestEnd:function(){return this._earliestEnd; },getEventID:function(){return this._eventID; },getText:function(){return this._text; },getDescription:function(){return this._description; },getImage:function(){return this._image; },getLink:function(){return this._link; },getIcon:function(){return this._icon; },getColor:function(){return this._color; },getTextColor:function(){return this._textColor; },getClassName:function(){return this._classname; },getTapeImage:function(){return this._tapeImage; },getTapeRepeat:function(){return this._tapeRepeat; },getTrackNum:function(){return this._trackNum; },getProperty:function(A){return null; },getWikiURL:function(){return this._wikiURL; },getWikiSection:function(){return this._wikiSection; },setWikiInfo:function(B,A){this._wikiURL=B; this._wikiSection=A; },fillDescription:function(A){A.innerHTML=this._description; },fillWikiInfo:function(D){D.style.display="none"; if(this._wikiURL==null||this._wikiSection==null){return ; }var C=this.getProperty("wikiID"); if(C==null||C.length==0){C=this.getText(); }if(C==null||C.length==0){return ; }D.style.display="inline"; C=C.replace(/\s/g,"_"); var B=this._wikiURL+this._wikiSection.replace(/\s/g,"_")+"/"+C; var A=document.createElement("a"); A.href=B; A.target="new"; A.innerHTML=Timeline.strings[Timeline.clientLocale].wikiLinkLabel; D.appendChild(document.createTextNode("[")); D.appendChild(A); D.appendChild(document.createTextNode("]")); },fillTime:function(A,B){if(this._instant){if(this.isImprecise()){A.appendChild(A.ownerDocument.createTextNode(B.labelPrecise(this._start))); A.appendChild(A.ownerDocument.createElement("br")); A.appendChild(A.ownerDocument.createTextNode(B.labelPrecise(this._end))); }else{A.appendChild(A.ownerDocument.createTextNode(B.labelPrecise(this._start))); }}else{if(this.isImprecise()){A.appendChild(A.ownerDocument.createTextNode(B.labelPrecise(this._start)+" ~ "+B.labelPrecise(this._latestStart))); A.appendChild(A.ownerDocument.createElement("br")); A.appendChild(A.ownerDocument.createTextNode(B.labelPrecise(this._earliestEnd)+" ~ "+B.labelPrecise(this._end))); }else{A.appendChild(A.ownerDocument.createTextNode(B.labelPrecise(this._start))); A.appendChild(A.ownerDocument.createElement("br")); A.appendChild(A.ownerDocument.createTextNode(B.labelPrecise(this._end))); }}},fillInfoBubble:function(A,E,M){var K=A.ownerDocument; var J=this.getText(); var H=this.getLink(); var B=this.getImage(); if(B!=null){var D=K.createElement("img"); D.src=B; E.event.bubble.imageStyler(D); A.appendChild(D); }var L=K.createElement("div"); var C=K.createTextNode(J); if(H!=null){var I=K.createElement("a"); I.href=H; I.appendChild(C); L.appendChild(I); }else{L.appendChild(C); }E.event.bubble.titleStyler(L); A.appendChild(L); var N=K.createElement("div"); this.fillDescription(N); E.event.bubble.bodyStyler(N); A.appendChild(N); var G=K.createElement("div"); this.fillTime(G,M); E.event.bubble.timeStyler(G); A.appendChild(G); var F=K.createElement("div"); this.fillWikiInfo(F); E.event.bubble.wikiStyler(F); A.appendChild(F); }}; /* themes.js */ Timeline.ClassicTheme=new Object(); Timeline.ClassicTheme.implementations=[]; Timeline.ClassicTheme.create=function(B){if(B==null){B=Timeline.getDefaultLocale(); }var A=Timeline.ClassicTheme.implementations[B]; if(A==null){A=Timeline.ClassicTheme._Impl; }return new A(); }; Timeline.ClassicTheme._Impl=function(){this.firstDayOfWeek=0; this.autoWidth=false; this.autoWidthAnimationTime=500; this.timeline_start=null; this.timeline_stop=null; this.ether={backgroundColors:[],highlightOpacity:50,interval:{line:{show:true,opacity:25},weekend:{opacity:30},marker:{hAlign:"Bottom",vAlign:"Right"}}}; this.event={track:{height:10,gap:2,offset:2,autoWidthMargin:1.5},overviewTrack:{offset:20,tickHeight:6,height:2,gap:1,autoWidthMargin:5},tape:{height:4},instant:{icon:Timeline.urlPrefix+"images/dull-blue-circle.png",iconWidth:10,iconHeight:10,impreciseOpacity:20,impreciseIconMargin:3},duration:{impreciseOpacity:20},label:{backgroundOpacity:50,offsetFromLine:3},highlightColors:["#FFFF00","#FFC000","#FF0000","#0000FF"],highlightLabelBackground:false,bubble:{width:250,maxHeight:0,titleStyler:function(A){A.className="timeline-event-bubble-title"; },bodyStyler:function(A){A.className="timeline-event-bubble-body"; },imageStyler:function(A){A.className="timeline-event-bubble-image"; },wikiStyler:function(A){A.className="timeline-event-bubble-wiki"; },timeStyler:function(A){A.className="timeline-event-bubble-time"; }}}; this.mouseWheel="scroll"; }; /* timeline.js */ Timeline.version="2.3.0"; Timeline.ajax_lib_version=SimileAjax.version; Timeline.display_version=Timeline.version+" (with Ajax lib "+Timeline.ajax_lib_version+")"; Timeline.strings={}; Timeline.HORIZONTAL=0; Timeline.VERTICAL=1; Timeline._defaultTheme=null; Timeline.getDefaultLocale=function(){return Timeline.clientLocale; }; Timeline.create=function(D,C,E,F){if(Timeline.timelines==null){Timeline.timelines=[]; }var B=Timeline.timelines.length; Timeline.timelines[B]=null; var A=new Timeline._Impl(D,C,E,F,B); Timeline.timelines[B]=A; return A; }; Timeline.createBandInfo=function(F){var G=("theme" in F)?F.theme:Timeline.getDefaultTheme(); var D=("eventSource" in F)?F.eventSource:null; var H=new Timeline.LinearEther({centersOn:("date" in F)?F.date:new Date(),interval:SimileAjax.DateTime.gregorianUnitLengths[F.intervalUnit],pixelsPerInterval:F.intervalPixels,theme:G}); var C=new Timeline.GregorianEtherPainter({unit:F.intervalUnit,multiple:("multiple" in F)?F.multiple:1,theme:G,align:("align" in F)?F.align:undefined}); var I={showText:("showEventText" in F)?F.showEventText:true,theme:G}; if("eventPainterParams" in F){for(var A in F.eventPainterParams){I[A]=F.eventPainterParams[A]; }}if("trackHeight" in F){I.trackHeight=F.trackHeight; }if("trackGap" in F){I.trackGap=F.trackGap; }var B=("overview" in F&&F.overview)?"overview":("layout" in F?F.layout:"original"); var E; if("eventPainter" in F){E=new F.eventPainter(I); }else{switch(B){case"overview":E=new Timeline.OverviewEventPainter(I); break; case"detailed":E=new Timeline.DetailedEventPainter(I); break; default:E=new Timeline.OriginalEventPainter(I); }}return{width:F.width,eventSource:D,timeZone:("timeZone" in F)?F.timeZone:0,ether:H,etherPainter:C,eventPainter:E,theme:G,zoomIndex:("zoomIndex" in F)?F.zoomIndex:0,zoomSteps:("zoomSteps" in F)?F.zoomSteps:null}; }; Timeline.createHotZoneBandInfo=function(F){var G=("theme" in F)?F.theme:Timeline.getDefaultTheme(); var D=("eventSource" in F)?F.eventSource:null; var H=new Timeline.HotZoneEther({centersOn:("date" in F)?F.date:new Date(),interval:SimileAjax.DateTime.gregorianUnitLengths[F.intervalUnit],pixelsPerInterval:F.intervalPixels,zones:F.zones,theme:G}); var C=new Timeline.HotZoneGregorianEtherPainter({unit:F.intervalUnit,zones:F.zones,theme:G,align:("align" in F)?F.align:undefined}); var I={showText:("showEventText" in F)?F.showEventText:true,theme:G}; if("eventPainterParams" in F){for(var A in F.eventPainterParams){I[A]=F.eventPainterParams[A]; }}if("trackHeight" in F){I.trackHeight=F.trackHeight; }if("trackGap" in F){I.trackGap=F.trackGap; }var B=("overview" in F&&F.overview)?"overview":("layout" in F?F.layout:"original"); var E; if("eventPainter" in F){E=new F.eventPainter(I); }else{switch(B){case"overview":E=new Timeline.OverviewEventPainter(I); break; case"detailed":E=new Timeline.DetailedEventPainter(I); break; default:E=new Timeline.OriginalEventPainter(I); }}return{width:F.width,eventSource:D,timeZone:("timeZone" in F)?F.timeZone:0,ether:H,etherPainter:C,eventPainter:E,theme:G,zoomIndex:("zoomIndex" in F)?F.zoomIndex:0,zoomSteps:("zoomSteps" in F)?F.zoomSteps:null}; }; Timeline.getDefaultTheme=function(){if(Timeline._defaultTheme==null){Timeline._defaultTheme=Timeline.ClassicTheme.create(Timeline.getDefaultLocale()); }return Timeline._defaultTheme; }; Timeline.setDefaultTheme=function(A){Timeline._defaultTheme=A; }; Timeline.loadXML=function(A,C){var D=function(G,F,E){alert("Failed to load data xml from "+A+"\n"+G); }; var B=function(F){var E=F.responseXML; if(!E.documentElement&&F.responseStream){E.load(F.responseStream); }C(E,A); }; SimileAjax.XmlHttp.get(A,D,B); }; Timeline.loadJSON=function(url,f){var fError=function(statusText,status,xmlhttp){alert("Failed to load json data from "+url+"\n"+statusText); }; var fDone=function(xmlhttp){f(eval("("+xmlhttp.responseText+")"),url); }; SimileAjax.XmlHttp.get(url,fError,fDone); }; Timeline.getTimelineFromID=function(A){return Timeline.timelines[A]; }; Timeline.writeVersion=function(A){document.getElementById(A).innerHTML=this.display_version; }; Timeline._Impl=function(C,B,D,E,A){SimileAjax.WindowManager.initialize(); this._containerDiv=C; this._bandInfos=B; this._orientation=D==null?Timeline.HORIZONTAL:D; this._unit=(E!=null)?E:SimileAjax.NativeDateUnit; this._starting=true; this._autoResizing=false; this.autoWidth=B&&B[0]&&B[0].theme&&B[0].theme.autoWidth; this.autoWidthAnimationTime=B&&B[0]&&B[0].theme&&B[0].theme.autoWidthAnimationTime; this.timelineID=A; this.timeline_start=B&&B[0]&&B[0].theme&&B[0].theme.timeline_start; this.timeline_stop=B&&B[0]&&B[0].theme&&B[0].theme.timeline_stop; this.timeline_at_start=false; this.timeline_at_stop=false; this._initialize(); }; Timeline._Impl.prototype.dispose=function(){for(var A=0; AG||C){D=H; E(); A._distributeWidths(); }}if(!A.autoWidth){return ; }F(); }; Timeline._Impl.prototype._initialize=function(){var H=this._containerDiv; var E=H.ownerDocument; H.className=H.className.split(" ").concat("timeline-container").join(" "); var C=(this.isHorizontal())?"horizontal":"vertical"; H.className+=" timeline-"+C; while(H.firstChild){H.removeChild(H.firstChild); }var A=SimileAjax.Graphics.createTranslucentImage(Timeline.urlPrefix+(this.isHorizontal()?"images/copyright-vertical.png":"images/copyright.png")); A.className="timeline-copyright"; A.title="Timeline copyright SIMILE - www.code.google.com/p/simile-widgets/"; SimileAjax.DOM.registerEvent(A,"click",function(){window.location="http://code.google.com/p/simile-widgets/"; }); H.appendChild(A); this._bands=[]; for(var B=0; B Loading..."; this.showLoadingMessage=function(){D.containerDiv.style.display="block"; }; this.hideLoadingMessage=function(){D.containerDiv.style.display="none"; }; }; Timeline._Impl.prototype._distributeWidths=function(){var G=this.getPixelLength(); var B=this.getPixelWidth(); var C=0; for(var F=0; F0){var A=parseInt(E.substr(0,H)); D=Math.round(A*B/100); }else{D=parseInt(E); }}else{D=E; }J.setBandShiftAndWidth(C,D); J.setViewLength(G); C+=D; }}; Timeline._Impl.prototype.shiftOK=function(C,B){var F=B>0,A=B<0; if((F&&this.timeline_start==null)||(A&&this.timeline_stop==null)||(B==0)){return(true); }var H=false; for(var E=0; E=this.timeline_start; }else{D=(E==C?G.getMaxVisibleDateAfterDelta(B):G.getMaxVisibleDate())<=this.timeline_stop; }}if(F){this.timeline_at_start=!D; this.timeline_at_stop=false; }else{this.timeline_at_stop=!D; this.timeline_at_start=false; }return(D); }; Timeline._Impl.prototype.zoom=function(D,A,G,F){var C=new RegExp("^timeline-band-([0-9]+)$"); var E=null; var B=C.exec(F.id); if(B){E=parseInt(B[1]); }if(E!=null){this._bands[E].zoom(D,A,G,F); }this.paint(); }; /* units.js */ Timeline.NativeDateUnit=new Object(); Timeline.NativeDateUnit.createLabeller=function(B,A){return new Timeline.GregorianDateLabeller(B,A); }; Timeline.NativeDateUnit.makeDefaultValue=function(){return new Date(); }; Timeline.NativeDateUnit.cloneValue=function(A){return new Date(A.getTime()); }; Timeline.NativeDateUnit.getParser=function(A){if(typeof A=="string"){A=A.toLowerCase(); }return(A=="iso8601"||A=="iso 8601")?Timeline.DateTime.parseIso8601DateTime:Timeline.DateTime.parseGregorianDateTime; }; Timeline.NativeDateUnit.parseFromObject=function(A){return Timeline.DateTime.parseGregorianDateTime(A); }; Timeline.NativeDateUnit.toNumber=function(A){return A.getTime(); }; Timeline.NativeDateUnit.fromNumber=function(A){return new Date(A); }; Timeline.NativeDateUnit.compare=function(D,C){var B,A; if(typeof D=="object"){B=D.getTime(); }else{B=Number(D); }if(typeof C=="object"){A=C.getTime(); }else{A=Number(C); }return B-A; }; Timeline.NativeDateUnit.earlier=function(B,A){return Timeline.NativeDateUnit.compare(B,A)<0?B:A; }; Timeline.NativeDateUnit.later=function(B,A){return Timeline.NativeDateUnit.compare(B,A)>0?B:A; }; Timeline.NativeDateUnit.change=function(A,B){return new Date(A.getTime()+B); }; /*================================================== * Common localization strings *================================================== */ Timeline.strings["en"] = { wikiLinkLabel: "Discuss" }; /*================================================== * Localization of labellers.js *================================================== */ Timeline.GregorianDateLabeller.monthNames["en"] = [ "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" ]; Timeline.GregorianDateLabeller.dayNames["en"] = [ "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" ];