Lines Matching refs:Timeline

4 Timeline._Band=function(B,G,C){if(B.autoWidth&&typeof G.width=="string"){G.width=G.width.indexOf("%…
8 this._locale=("locale" in G)?G.locale:Timeline.getDefaultLocale();
10 ….getUnit())?B.getUnit().createLabeller(this._locale,this._timeZone):new Timeline.GregorianDateLabe…
66 Timeline._Band.SCROLL_MULTIPLES=5;
67 Timeline._Band.prototype.dispose=function(){this.closeBubble();
85 Timeline._Band.prototype.addOnScrollListener=function(A){this._onScrollListeners.push(A);
87 Timeline._Band.prototype.removeOnScrollListener=function(B){for(var A=0;
92 Timeline._Band.prototype.setSyncWithBand=function(B,A){if(this._syncWithBand){this._syncWithBand.re…
98 Timeline._Band.prototype.getLocale=function(){return this._locale;
100 Timeline._Band.prototype.getTimeZone=function(){return this._timeZone;
102 Timeline._Band.prototype.getLabeller=function(){return this._labeller;
104 Timeline._Band.prototype.getIndex=function(){return this._index;
106 Timeline._Band.prototype.getEther=function(){return this._ether;
108 Timeline._Band.prototype.getEtherPainter=function(){return this._etherPainter;
110 Timeline._Band.prototype.getEventSource=function(){return this._eventSource;
112 Timeline._Band.prototype.getEventPainter=function(){return this._eventPainter;
114 Timeline._Band.prototype.getTimeline=function(){return this._timeline;
116 Timeline._Band.prototype.updateEventTrackInfo=function(A,B){this._eventTrackIncrement=B;
119 Timeline._Band.prototype.checkAutoWidth=function(){if(!this._timeline.autoWidth){return ;
127 Timeline._Band.prototype.layout=function(){this.paint();
129 Timeline._Band.prototype.paint=function(){this._etherPainter.paint();
133 Timeline._Band.prototype.softLayout=function(){this.softPaint();
135 Timeline._Band.prototype.softPaint=function(){this._etherPainter.softPaint();
139 Timeline._Band.prototype.setBandShiftAndWidth=function(A,D){var C=this._keyboardInput.parentNode;
150 Timeline._Band.prototype.getViewWidth=function(){if(this._timeline.isHorizontal()){return this._div…
153 Timeline._Band.prototype.setViewLength=function(A){this._viewLength=A;
157 Timeline._Band.prototype.getViewLength=function(){return this._viewLength;
159 Timeline._Band.prototype.getTotalViewLength=function(){return Timeline._Band.SCROLL_MULTIPLES*this.…
161 Timeline._Band.prototype.getViewOffset=function(){return this._viewOffset;
163 Timeline._Band.prototype.getMinDate=function(){return this._ether.pixelOffsetToDate(this._viewOffse…
165 Timeline._Band.prototype.getMaxDate=function(){return this._ether.pixelOffsetToDate(this._viewOffse…
167 Timeline._Band.prototype.getMinVisibleDate=function(){return this._ether.pixelOffsetToDate(0);
169 Timeline._Band.prototype.getMinVisibleDateAfterDelta=function(A){return this._ether.pixelOffsetToDa…
171 Timeline._Band.prototype.getMaxVisibleDate=function(){return this._ether.pixelOffsetToDate(this._vi…
173 Timeline._Band.prototype.getMaxVisibleDateAfterDelta=function(A){return this._ether.pixelOffsetToDa…
175 Timeline._Band.prototype.getCenterVisibleDate=function(){return this._ether.pixelOffsetToDate(this.…
177 Timeline._Band.prototype.setMinVisibleDate=function(A){if(!this._changing){this._moveEther(Math.rou…
179 Timeline._Band.prototype.setMaxVisibleDate=function(A){if(!this._changing){this._moveEther(Math.rou…
181 Timeline._Band.prototype.setCenterVisibleDate=function(A){if(!this._changing){this._moveEther(Math.…
183 Timeline._Band.prototype.dateToPixelOffset=function(A){return this._ether.dateToPixelOffset(A)-this…
185 Timeline._Band.prototype.pixelOffsetToDate=function(A){return this._ether.pixelOffsetToDate(A+this.…
187 Timeline._Band.prototype.createLayerDiv=function(C,A){var D=this._timeline.getDocument().createElem…
198 Timeline._Band.prototype.removeLayerDiv=function(A){this._innerDiv.removeChild(A.parentNode);
200 Timeline._Band.prototype.scrollToCenter=function(A,C){var B=this._ether.dateToPixelOffset(A);
205 Timeline._Band.prototype.showBubbleForEvent=function(C){var A=this.getEventSource().getEvent(C);
210 Timeline._Band.prototype.zoom=function(C,A,F,E){if(!this._zoomSteps){return ;
218 Timeline._Band.prototype._onMouseDown=function(B,A,C){this.closeBubble();
223 Timeline._Band.prototype._onMouseMove=function(D,A,E){if(this._dragging){var C=A.clientX-this._drag…
230 Timeline._Band.prototype._onMouseUp=function(B,A,C){this._dragging=false;
233 Timeline._Band.prototype._onMouseOut=function(C,B,D){var A=SimileAjax.DOM.getEventRelativeCoordinat…
237 Timeline._Band.prototype._onMouseScroll=function(G,H,B){var A=new Date();
256 Timeline._Band.prototype._onDblClick=function(C,B,E){var A=SimileAjax.DOM.getEventRelativeCoordinat…
260 Timeline._Band.prototype._onKeyDown=function(B,A,C){if(!this._dragging){switch(A.keyCode){case 27:b…
273 Timeline._Band.prototype._onKeyUp=function(B,A,C){if(!this._dragging){this._scrollSpeed=this._origi…
288 Timeline._Band.prototype._autoScroll=function(D,C){var A=this;
293 Timeline._Band.prototype._moveEther=function(A){this.closeBubble();
299 }if(this._viewOffset>-this._viewLength*0.5||this._viewOffset<-this._viewLength*(Timeline._Band.SCRO…
303 Timeline._Band.prototype._onChanging=function(){this._changing=true;
308 Timeline._Band.prototype.busy=function(){return(this._changing);
310 Timeline._Band.prototype._fireOnScroll=function(){for(var A=0;
314 Timeline._Band.prototype._setSyncWithBandDate=function(){if(this._syncWithBand){var A=this._ether.p…
317 Timeline._Band.prototype._onHighlightBandScroll=function(){if(this._syncWithBand){var A=this._syncW…
322 Timeline._Band.prototype._onAddMany=function(){this._paintEvents();
324 Timeline._Band.prototype._onClear=function(){this._paintEvents();
326 Timeline._Band.prototype._positionHighlight=function(){if(this._syncWithBand){var A=this._syncWithB…
330 Timeline._Band.prototype._recenterDiv=function(){this._viewOffset=-this._viewLength*(Timeline._Band…
332 this._div.style.width=(Timeline._Band.SCROLL_MULTIPLES*this._viewLength)+"px";
334 this._div.style.height=(Timeline._Band.SCROLL_MULTIPLES*this._viewLength)+"px";
337 Timeline._Band.prototype._paintEvents=function(){this._eventPainter.paint();
339 Timeline._Band.prototype._softPaintEvents=function(){this._eventPainter.softPaint();
341 Timeline._Band.prototype._paintDecorators=function(){for(var A=0;
345 Timeline._Band.prototype._softPaintDecorators=function(){for(var A=0;
349 Timeline._Band.prototype.closeBubble=function(){SimileAjax.WindowManager.cancelPopups();
354 Timeline.CompactEventPainter=function(A){this._params=A;
361 Timeline.CompactEventPainter.prototype.initialize=function(B,A){this._band=B;
369 Timeline.CompactEventPainter.prototype.addOnSelectListener=function(A){this._onSelectListeners.push…
371 Timeline.CompactEventPainter.prototype.removeOnSelectListener=function(B){for(var A=0;
376 Timeline.CompactEventPainter.prototype.getFilterMatcher=function(){return this._filterMatcher;
378 Timeline.CompactEventPainter.prototype.setFilterMatcher=function(A){this._filterMatcher=A;
380 Timeline.CompactEventPainter.prototype.getHighlightMatcher=function(){return this._highlightMatcher;
382 Timeline.CompactEventPainter.prototype.setHighlightMatcher=function(A){this._highlightMatcher=A;
384 Timeline.CompactEventPainter.prototype.paint=function(){var N=this._band.getEventSource();
432 Timeline.CompactEventPainter.prototype.softPaint=function(){};
433 Timeline.CompactEventPainter.prototype._prepareForPainting=function(){var B=this._band;
452 Timeline.CompactEventPainter.prototype.paintEvent=function(B,C,D,A){if(B.isInstant()){this.paintIns…
455 Timeline.CompactEventPainter.prototype.paintInstantEvent=function(B,C,D,A){if(B.isImprecise()){this…
458 Timeline.CompactEventPainter.prototype.paintDurationEvent=function(B,C,D,A){if(B.isImprecise()){thi…
461 Timeline.CompactEventPainter.prototype.paintPreciseInstantEvent=function(H,F,B,A){var C={tooltip:H.…
478 Timeline.CompactEventPainter.prototype.paintCompositePreciseInstantEvents=function(J,H,D,B){var K=J…
496 Timeline.CompactEventPainter.prototype.paintStackedPreciseInstantEvents=function(T,j,c,E){var S="li…
609 Timeline.CompactEventPainter.prototype.paintImpreciseInstantEvent=function(I,G,B,A){var C={tooltip:…
627 Timeline.CompactEventPainter.prototype.paintPreciseDurationEvent=function(I,G,B,A){var C={tooltip:I…
645 Timeline.CompactEventPainter.prototype.paintImpreciseDurationEvent=function(I,G,B,A){var C={tooltip…
663 Timeline.CompactEventPainter.prototype.paintTapeIconLabel=function(V,O,S,I,a,X,c,Z){var R=this._ban…
707 Timeline.CompactEventPainter.prototype._fitTracks=function(F,C){var H;
723 Timeline.CompactEventPainter.prototype._paintEventIcon=function(C,D,H,G,E,F){var B=SimileAjax.Graph…
733 Timeline.CompactEventPainter.prototype._paintEventLabel=function(E,I,C,F,A,G,D){var H=this._timelin…
746 Timeline.CompactEventPainter.prototype._paintEventTape=function(G,H,K,J,D,A,E,C,I,F){var B=A-D;
762 Timeline.CompactEventPainter.prototype._createHighlightDiv=function(A,C,E){if(A>=0){var D=this._tim…
774 Timeline.CompactEventPainter.prototype._onClickMultiplePreciseInstantEvent=function(E,A,B){var F=Si…
785 Timeline.CompactEventPainter.prototype._onClickInstantEvent=function(C,A,B){var D=SimileAjax.DOM.ge…
792 Timeline.CompactEventPainter.prototype._onClickDurationEvent=function(F,B,C){if("pageX" in B){var A…
803 Timeline.CompactEventPainter.prototype.showBubble=function(A){var B=this._eventIdToElmt[A.getID()];
807 Timeline.CompactEventPainter.prototype._showBubble=function(A,F,B){var E=document.createElement("di…
817 Timeline.CompactEventPainter.prototype._fireOnSelect=function(B){for(var A=0;
824 Timeline.SpanHighlightDecorator=function(A){this._unit=A.unit!=null?A.unit:SimileAjax.NativeDateUni…
834 Timeline.SpanHighlightDecorator.prototype.initialize=function(B,A){this._band=B;
838 Timeline.SpanHighlightDecorator.prototype.paint=function(){if(this._layerDiv!=null){this._band.remo…
885 Timeline.SpanHighlightDecorator.prototype.softPaint=function(){};
886 Timeline.PointHighlightDecorator=function(A){this._unit=A.unit!=null?A.unit:SimileAjax.NativeDateUn…
893 Timeline.PointHighlightDecorator.prototype.initialize=function(B,A){this._band=B;
897 Timeline.PointHighlightDecorator.prototype.paint=function(){if(this._layerDiv!=null){this._band.rem…
918 Timeline.PointHighlightDecorator.prototype.softPaint=function(){};
922 Timeline.DetailedEventPainter=function(A){this._params=A;
929 Timeline.DetailedEventPainter.prototype.initialize=function(B,A){this._band=B;
937 Timeline.DetailedEventPainter.prototype.getType=function(){return"detailed";
939 Timeline.DetailedEventPainter.prototype.addOnSelectListener=function(A){this._onSelectListeners.pus…
941 Timeline.DetailedEventPainter.prototype.removeOnSelectListener=function(B){for(var A=0;
946 Timeline.DetailedEventPainter.prototype.getFilterMatcher=function(){return this._filterMatcher;
948 Timeline.DetailedEventPainter.prototype.setFilterMatcher=function(A){this._filterMatcher=A;
950 Timeline.DetailedEventPainter.prototype.getHighlightMatcher=function(){return this._highlightMatche…
952 Timeline.DetailedEventPainter.prototype.setHighlightMatcher=function(A){this._highlightMatcher=A;
954 Timeline.DetailedEventPainter.prototype.paint=function(){var C=this._band.getEventSource();
975 Timeline.DetailedEventPainter.prototype.softPaint=function(){};
976 Timeline.DetailedEventPainter.prototype._prepareForPainting=function(){var B=this._band;
996 Timeline.DetailedEventPainter.prototype.paintEvent=function(B,C,D,A){if(B.isInstant()){this.paintIn…
999 Timeline.DetailedEventPainter.prototype.paintInstantEvent=function(B,C,D,A){if(B.isImprecise()){thi…
1002 Timeline.DetailedEventPainter.prototype.paintDurationEvent=function(B,C,D,A){if(B.isImprecise()){th…
1005 Timeline.DetailedEventPainter.prototype.paintPreciseInstantEvent=function(L,P,S,Q){var T=this._time…
1035 Timeline.DetailedEventPainter.prototype.paintImpreciseInstantEvent=function(O,S,W,T){var X=this._ti…
1070 Timeline.DetailedEventPainter.prototype.paintPreciseDurationEvent=function(K,O,T,Q){var U=this._tim…
1098 Timeline.DetailedEventPainter.prototype.paintImpreciseDurationEvent=function(M,T,Y,V){var Z=this._t…
1131 Timeline.DetailedEventPainter.prototype._findFreeTrackForSolid=function(D,A){for(var C=0;
1142 Timeline.DetailedEventPainter.prototype._findFreeTrackForText=function(C,A,I){var B;
1174 Timeline.DetailedEventPainter.prototype._findFreeLowerTrackForText=function(A,C){for(;
1180 Timeline.DetailedEventPainter.prototype._findFreeUpperTrackForText=function(A,C){for(;
1186 Timeline.DetailedEventPainter.prototype._getTrackData=function(A){return(A<0)?this._upperTracks[-A-…
1188 Timeline.DetailedEventPainter.prototype._paintEventLine=function(J,E,D,A,G,F){var H=Math.round(G.tr…
1203 Timeline.DetailedEventPainter.prototype._paintEventIcon=function(J,B,C,F,E){var H=J.getIcon();
1218 Timeline.DetailedEventPainter.prototype._paintEventLabel=function(I,J,C,F,A,G,E){var H=this._timeli…
1242 Timeline.DetailedEventPainter.prototype._paintEventTape=function(L,B,D,A,G,C,I,H){var F=A-D;
1260 Timeline.DetailedEventPainter.prototype._createHighlightDiv=function(A,C,E){if(A>=0){var D=this._ti…
1273 Timeline.DetailedEventPainter.prototype._onClickInstantEvent=function(C,A,B){var D=SimileAjax.DOM.g…
1280 Timeline.DetailedEventPainter.prototype._onClickDurationEvent=function(F,B,C){if("pageX" in B){var …
1291 Timeline.DetailedEventPainter.prototype.showBubble=function(A){var B=this._eventIdToElmt[A.getID()];
1295 Timeline.DetailedEventPainter.prototype._showBubble=function(B,E,C){var D=document.createElement("d…
1301 Timeline.DetailedEventPainter.prototype._fireOnSelect=function(A){for(var B=0;
1308 Timeline.GregorianEtherPainter=function(A){this._params=A;
1313 Timeline.GregorianEtherPainter.prototype.initialize=function(C,B){this._band=C;
1322 this._intervalMarkerLayout=new Timeline.EtherIntervalMarkerLayout(this._timeline,this._band,this._t…
1323 this._highlight=new Timeline.EtherHighlight(this._timeline,this._band,this._theme,this._backgroundL…
1325 Timeline.GregorianEtherPainter.prototype.setHighlight=function(A,B){this._highlight.position(A,B);
1327 Timeline.GregorianEtherPainter.prototype.paint=function(){if(this._markerLayer){this._band.removeLa…
1350 Timeline.GregorianEtherPainter.prototype.softPaint=function(){};
1351 Timeline.GregorianEtherPainter.prototype.zoom=function(A){if(A!=0){this._unit+=A;
1353 Timeline.HotZoneGregorianEtherPainter=function(G){this._params=G;
1375 Timeline.HotZoneGregorianEtherPainter.prototype.initialize=function(C,B){this._band=C;
1384 this._intervalMarkerLayout=new Timeline.EtherIntervalMarkerLayout(this._timeline,this._band,this._t…
1385 this._highlight=new Timeline.EtherHighlight(this._timeline,this._band,this._theme,this._backgroundL…
1387 Timeline.HotZoneGregorianEtherPainter.prototype.setHighlight=function(A,B){this._highlight.position…
1389 Timeline.HotZoneGregorianEtherPainter.prototype.paint=function(){if(this._markerLayer){this._band.r…
1424 Timeline.HotZoneGregorianEtherPainter.prototype.softPaint=function(){};
1425 Timeline.HotZoneGregorianEtherPainter.prototype.zoom=function(A){if(A!=0){for(var B=0;
1429 Timeline.YearCountEtherPainter=function(A){this._params=A;
1434 Timeline.YearCountEtherPainter.prototype.initialize=function(C,B){this._band=C;
1443 this._intervalMarkerLayout=new Timeline.EtherIntervalMarkerLayout(this._timeline,this._band,this._t…
1444 this._highlight=new Timeline.EtherHighlight(this._timeline,this._band,this._theme,this._backgroundL…
1446 Timeline.YearCountEtherPainter.prototype.setHighlight=function(A,B){this._highlight.position(A,B);
1448 Timeline.YearCountEtherPainter.prototype.paint=function(){if(this._markerLayer){this._band.removeLa…
1473 Timeline.YearCountEtherPainter.prototype.softPaint=function(){};
1474 Timeline.QuarterlyEtherPainter=function(A){this._params=A;
1478 Timeline.QuarterlyEtherPainter.prototype.initialize=function(C,B){this._band=C;
1487 this._intervalMarkerLayout=new Timeline.EtherIntervalMarkerLayout(this._timeline,this._band,this._t…
1488 this._highlight=new Timeline.EtherHighlight(this._timeline,this._band,this._theme,this._backgroundL…
1490 Timeline.QuarterlyEtherPainter.prototype.setHighlight=function(A,B){this._highlight.position(A,B);
1492 Timeline.QuarterlyEtherPainter.prototype.paint=function(){if(this._markerLayer){this._band.removeLa…
1516 Timeline.QuarterlyEtherPainter.prototype.softPaint=function(){};
1517 Timeline.EtherIntervalMarkerLayout=function(I,L,C,E,M){var A=I.isHorizontal();
1568 Timeline.EtherHighlight=function(B,E,D,C){var A=B.isHorizontal();
1592 Timeline.LinearEther=function(A){this._params=A;
1596 Timeline.LinearEther.prototype.initialize=function(B,A){this._band=B;
1607 Timeline.LinearEther.prototype.setDate=function(A){this._start=this._unit.cloneValue(A);
1609 Timeline.LinearEther.prototype.shiftPixels=function(B){var A=this._interval*B/this._pixelsPerInterv…
1612 Timeline.LinearEther.prototype.dateToPixelOffset=function(B){var A=this._unit.compare(B,this._start…
1615 Timeline.LinearEther.prototype.pixelOffsetToDate=function(B){var A=B*this._interval/this._pixelsPer…
1618 Timeline.LinearEther.prototype.zoom=function(D){var A=0;
1629 Timeline.HotZoneEther=function(A){this._params=A;
1634 Timeline.HotZoneEther.prototype.initialize=function(I,H){this._band=I;
1664 Timeline.HotZoneEther.prototype.setDate=function(A){this._start=this._unit.cloneValue(A);
1666 Timeline.HotZoneEther.prototype.shiftPixels=function(A){this._start=this.pixelOffsetToDate(A);
1668 Timeline.HotZoneEther.prototype.dateToPixelOffset=function(A){return this._dateDiffToPixelOffset(th…
1670 Timeline.HotZoneEther.prototype.pixelOffsetToDate=function(A){return this._pixelOffsetToDate(A,this…
1672 Timeline.HotZoneEther.prototype.zoom=function(D){var A=0;
1683 Timeline.HotZoneEther.prototype._dateDiffToPixelOffset=function(H,C){var D=this._getScale();
1705 Timeline.HotZoneEther.prototype._pixelOffsetToDate=function(E,B){var G=this._getScale();
1736 Timeline.HotZoneEther.prototype._getScale=function(){return this._interval/this._pixelsPerInterval;
1741 Timeline.EventUtils={};
1742 Timeline.EventUtils.getNewEventID=function(){if(this._lastEventID==null){this._lastEventID=0;
1746 Timeline.EventUtils.decodeEventElID=function(C){var D=C.split("-");
1749 }var B=Timeline.getTimelineFromID(D[2]);
1754 Timeline.EventUtils.encodeEventElID=function(B,D,C,A){return C+"-tl-"+B.timelineID+"-"+D.getIndex()…
1759 Timeline.GregorianDateLabeller=function(B,A){this._locale=B;
1762 Timeline.GregorianDateLabeller.monthNames=[];
1763 Timeline.GregorianDateLabeller.dayNames=[];
1764 Timeline.GregorianDateLabeller.labelIntervalFunctions=[];
1765 Timeline.GregorianDateLabeller.getMonthName=function(B,A){return Timeline.GregorianDateLabeller.mon…
1767 Timeline.GregorianDateLabeller.prototype.labelInterval=function(A,C){var B=Timeline.GregorianDateLa…
1768 if(B==null){B=Timeline.GregorianDateLabeller.prototype.defaultLabelInterval;
1771 Timeline.GregorianDateLabeller.prototype.labelPrecise=function(A){return SimileAjax.DateTime.remove…
1773 Timeline.GregorianDateLabeller.prototype.defaultLabelInterval=function(B,C){var D;
1787 case SimileAjax.DateTime.DAY:D=Timeline.GregorianDateLabeller.getMonthName(B.getUTCMonth(),this._lo…
1789 case SimileAjax.DateTime.WEEK:D=Timeline.GregorianDateLabeller.getMonthName(B.getUTCMonth(),this._l…
1792 if(A!=0){D=Timeline.GregorianDateLabeller.getMonthName(A,this._locale);
1805 Timeline.OriginalEventPainter=function(A){this._params=A;
1813 Timeline.OriginalEventPainter.prototype.initialize=function(B,A){this._band=B;
1821 Timeline.OriginalEventPainter.prototype.getType=function(){return"original";
1823 Timeline.OriginalEventPainter.prototype.addOnSelectListener=function(A){this._onSelectListeners.pus…
1825 Timeline.OriginalEventPainter.prototype.removeOnSelectListener=function(B){for(var A=0;
1830 Timeline.OriginalEventPainter.prototype.addEventPaintListener=function(A){this._eventPaintListeners…
1832 Timeline.OriginalEventPainter.prototype.removeEventPaintListener=function(B){for(var A=0;
1837 Timeline.OriginalEventPainter.prototype.getFilterMatcher=function(){return this._filterMatcher;
1839 Timeline.OriginalEventPainter.prototype.setFilterMatcher=function(A){this._filterMatcher=A;
1841 Timeline.OriginalEventPainter.prototype.getHighlightMatcher=function(){return this._highlightMatche…
1843 Timeline.OriginalEventPainter.prototype.setHighlightMatcher=function(A){this._highlightMatcher=A;
1845 Timeline.OriginalEventPainter.prototype.paint=function(){var C=this._band.getEventSource();
1868 Timeline.OriginalEventPainter.prototype.softPaint=function(){};
1869 Timeline.OriginalEventPainter.prototype._prepareForPainting=function(){var B=this._band;
1888 Timeline.OriginalEventPainter.prototype.paintEvent=function(B,C,D,A){if(B.isInstant()){this.paintIn…
1891 Timeline.OriginalEventPainter.prototype.paintInstantEvent=function(B,C,D,A){if(B.isImprecise()){thi…
1894 Timeline.OriginalEventPainter.prototype.paintDurationEvent=function(B,C,D,A){if(B.isImprecise()){th…
1897 Timeline.OriginalEventPainter.prototype.paintPreciseInstantEvent=function(N,S,V,T){var W=this._time…
1924 Timeline.OriginalEventPainter.prototype.paintImpreciseInstantEvent=function(P,U,Z,W){var b=this._ti…
1958 Timeline.OriginalEventPainter.prototype.paintPreciseDurationEvent=function(M,R,W,T){var X=this._tim…
1987 Timeline.OriginalEventPainter.prototype.paintImpreciseDurationEvent=function(O,W,b,Y){var c=this._t…
2021 Timeline.OriginalEventPainter.prototype._encodeEventElID=function(B,A){return Timeline.EventUtils.e…
2023 Timeline.OriginalEventPainter.prototype._findFreeTrack=function(E,D){var A=E.getTrackNum();
2031 Timeline.OriginalEventPainter.prototype._paintEventIcon=function(K,B,C,G,F,D){var I=K.getIcon();
2048 Timeline.OriginalEventPainter.prototype._paintEventLabel=function(K,L,D,H,A,J,G,E,C){var I=this._ti…
2064 Timeline.OriginalEventPainter.prototype._paintEventTape=function(N,B,D,A,G,C,J,I,M){var F=A-D;
2085 Timeline.OriginalEventPainter.prototype._getLabelDivClassName=function(A){return this._getElClassNa…
2087 Timeline.OriginalEventPainter.prototype._getElClassName=function(D,C,A){var E=C.getClassName(),B=[];
2093 Timeline.OriginalEventPainter.prototype._getHighlightColor=function(A,B){var C=B.event.highlightCol…
2096 Timeline.OriginalEventPainter.prototype._createHighlightDiv=function(A,D,F,B){var G=null;
2112 Timeline.OriginalEventPainter.prototype._onClickInstantEvent=function(C,A,B){var D=SimileAjax.DOM.g…
2119 Timeline.OriginalEventPainter.prototype._onClickDurationEvent=function(F,B,C){if("pageX" in B){var …
2130 Timeline.OriginalEventPainter.prototype.showBubble=function(A){var B=this._eventIdToElmt[A.getID()];
2134 Timeline.OriginalEventPainter.prototype._showBubble=function(B,E,C){var D=document.createElement("d…
2140 Timeline.OriginalEventPainter.prototype._fireOnSelect=function(A){for(var B=0;
2144 Timeline.OriginalEventPainter.prototype._fireEventPaintListeners=function(D,A,C){for(var B=0;
2151 Timeline.OverviewEventPainter=function(A){this._params=A;
2156 Timeline.OverviewEventPainter.prototype.initialize=function(B,A){this._band=B;
2161 Timeline.OverviewEventPainter.prototype.getType=function(){return"overview";
2163 Timeline.OverviewEventPainter.prototype.addOnSelectListener=function(A){this._onSelectListeners.pus…
2165 Timeline.OverviewEventPainter.prototype.removeOnSelectListener=function(B){for(var A=0;
2170 Timeline.OverviewEventPainter.prototype.getFilterMatcher=function(){return this._filterMatcher;
2172 Timeline.OverviewEventPainter.prototype.setFilterMatcher=function(A){this._filterMatcher=A;
2174 Timeline.OverviewEventPainter.prototype.getHighlightMatcher=function(){return this._highlightMatche…
2176 Timeline.OverviewEventPainter.prototype.setHighlightMatcher=function(A){this._highlightMatcher=A;
2178 Timeline.OverviewEventPainter.prototype.paint=function(){var C=this._band.getEventSource();
2196 Timeline.OverviewEventPainter.prototype.softPaint=function(){};
2197 Timeline.OverviewEventPainter.prototype._prepareForPainting=function(){var A=this._band;
2206 Timeline.OverviewEventPainter.prototype.paintEvent=function(B,C,D,A){if(B.isInstant()){this.paintIn…
2209 Timeline.OverviewEventPainter.prototype.paintInstantEvent=function(I,H,E,A){var F=I.getStart();
2217 Timeline.OverviewEventPainter.prototype.paintDurationEvent=function(L,K,H,B){var A=L.getLatestStart…
2232 Timeline.OverviewEventPainter.prototype._paintEventTape=function(K,B,D,L,E,C,H,G,F){var I=H.trackOf…
2247 Timeline.OverviewEventPainter.prototype._paintEventTick=function(J,C,D,B,G,F){var I=F.event.overvie…
2260 Timeline.OverviewEventPainter.prototype._createHighlightDiv=function(A,C,E){if(A>=0){var D=this._ti…
2273 Timeline.OverviewEventPainter.prototype.showBubble=function(A){};
2277 Timeline.DefaultEventSource=function(A){this._events=(A instanceof Object)?A:new SimileAjax.EventIn…
2280 Timeline.DefaultEventSource.prototype.addListener=function(A){this._listeners.push(A);
2282 Timeline.DefaultEventSource.prototype.removeListener=function(B){for(var A=0;
2287 Timeline.DefaultEventSource.prototype.concatChildValues = function(node, def) {
2303 Timeline.DefaultEventSource.prototype.loadXML=function(G,A){var C=this._getBaseURL(A);
2313 var K=new Timeline.DefaultEventSource.Event({id:D.getAttribute("id"),start:E(D.getAttribute("start"…
2323 Timeline.DefaultEventSource.prototype.loadJSON=function(H,B){var D=this._getBaseURL(B);
2333 var L=new Timeline.DefaultEventSource.Event({id:("id" in A)?A.id:undefined,start:E(A.start),end:E(A…
2342 Timeline.DefaultEventSource.prototype.loadSPARQL=function(I,B){var E=this._getBaseURL(B);
2360 var M=new Timeline.DefaultEventSource.Event({id:D["id"],start:G(D["start"]),end:G(D["end"]),latestS…
2370 Timeline.DefaultEventSource.prototype.add=function(A){this._events.add(A);
2373 Timeline.DefaultEventSource.prototype.addMany=function(A){for(var B=0;
2378 Timeline.DefaultEventSource.prototype.clear=function(){this._events.removeAll();
2381 Timeline.DefaultEventSource.prototype.getEvent=function(A){return this._events.getEvent(A);
2383 Timeline.DefaultEventSource.prototype.getEventIterator=function(A,B){return this._events.getIterato…
2385 Timeline.DefaultEventSource.prototype.getEventReverseIterator=function(A,B){return this._events.get…
2387 Timeline.DefaultEventSource.prototype.getAllEventIterator=function(){return this._events.getAllIter…
2389 Timeline.DefaultEventSource.prototype.getCount=function(){return this._events.getCount();
2391 Timeline.DefaultEventSource.prototype.getEarliestDate=function(){return this._events.getEarliestDat…
2393 Timeline.DefaultEventSource.prototype.getLatestDate=function(){return this._events.getLatestDate();
2395 Timeline.DefaultEventSource.prototype._fire=function(B,A){for(var C=0;
2401 Timeline.DefaultEventSource.prototype._getBaseURL=function(A){if(A.indexOf("://")<0){var C=this._ge…
2408 Timeline.DefaultEventSource.prototype._resolveRelativeURL=function(A,B){if(A==null||A==""){return A;
2413 Timeline.DefaultEventSource.Event=function(A){function D(E){return(A[E]!=null&&A[E]!="")?A[E]:null;
2415 this._id=C.length>0?C:Timeline.EventUtils.getNewEventID();
2453 Timeline.DefaultEventSource.Event.prototype={getID:function(){return this._id;
2489 A.innerHTML=Timeline.strings[Timeline.clientLocale].wikiLinkLabel;
2536 Timeline.ClassicTheme=new Object();
2537 Timeline.ClassicTheme.implementations=[];
2538 Timeline.ClassicTheme.create=function(B){if(B==null){B=Timeline.getDefaultLocale();
2539 }var A=Timeline.ClassicTheme.implementations[B];
2540 if(A==null){A=Timeline.ClassicTheme._Impl;
2543 Timeline.ClassicTheme._Impl=function(){this.firstDayOfWeek=0;
2549 …eight:6,height:2,gap:1,autoWidthMargin:5},tape:{height:4},instant:{icon:Timeline.urlPrefix+"images…
2560 Timeline.version="2.3.0";
2561 Timeline.ajax_lib_version=SimileAjax.version;
2562 Timeline.display_version=Timeline.version+" (with Ajax lib "+Timeline.ajax_lib_version+")";
2563 Timeline.strings={};
2564 Timeline.HORIZONTAL=0;
2565 Timeline.VERTICAL=1;
2566 Timeline._defaultTheme=null;
2567 Timeline.getDefaultLocale=function(){return Timeline.clientLocale;
2569 Timeline.create=function(D,C,E,F){if(Timeline.timelines==null){Timeline.timelines=[];
2570 }var B=Timeline.timelines.length;
2571 Timeline.timelines[B]=null;
2572 var A=new Timeline._Impl(D,C,E,F,B);
2573 Timeline.timelines[B]=A;
2576 Timeline.createBandInfo=function(F){var G=("theme" in F)?F.theme:Timeline.getDefaultTheme();
2578 var H=new Timeline.LinearEther({centersOn:("date" in F)?F.date:new Date(),interval:SimileAjax.DateT…
2579 var C=new Timeline.GregorianEtherPainter({unit:F.intervalUnit,multiple:("multiple" in F)?F.multiple…
2587 }else{switch(B){case"overview":E=new Timeline.OverviewEventPainter(I);
2589 case"detailed":E=new Timeline.DetailedEventPainter(I);
2591 default:E=new Timeline.OriginalEventPainter(I);
2594 Timeline.createHotZoneBandInfo=function(F){var G=("theme" in F)?F.theme:Timeline.getDefaultTheme();
2596 var H=new Timeline.HotZoneEther({centersOn:("date" in F)?F.date:new Date(),interval:SimileAjax.Date…
2597 var C=new Timeline.HotZoneGregorianEtherPainter({unit:F.intervalUnit,zones:F.zones,theme:G,align:("…
2605 }else{switch(B){case"overview":E=new Timeline.OverviewEventPainter(I);
2607 case"detailed":E=new Timeline.DetailedEventPainter(I);
2609 default:E=new Timeline.OriginalEventPainter(I);
2612 Timeline.getDefaultTheme=function(){if(Timeline._defaultTheme==null){Timeline._defaultTheme=Timelin…
2613 }return Timeline._defaultTheme;
2615 Timeline.setDefaultTheme=function(A){Timeline._defaultTheme=A;
2617 Timeline.loadXML=function(A,C){var D=function(G,F,E){alert("Failed to load data xml from "+A+"\n"+G…
2625 Timeline.loadJSON=function(url,f){var fError=function(statusText,status,xmlhttp){alert("Failed to l…
2631 Timeline.getTimelineFromID=function(A){return Timeline.timelines[A];
2633 Timeline.writeVersion=function(A){document.getElementById(A).innerHTML=this.display_version;
2635 Timeline._Impl=function(C,B,D,E,A){SimileAjax.WindowManager.initialize();
2638 this._orientation=D==null?Timeline.HORIZONTAL:D;
2651 Timeline._Impl.prototype.dispose=function(){for(var A=0;
2657 Timeline.timelines[this.timelineID]=null;
2659 Timeline._Impl.prototype.getBandCount=function(){return this._bands.length;
2661 Timeline._Impl.prototype.getBand=function(A){return this._bands[A];
2663 Timeline._Impl.prototype.finishedEventLoading=function(){this._autoWidthCheck(true);
2666 Timeline._Impl.prototype.layout=function(){this._autoWidthCheck(true);
2669 Timeline._Impl.prototype.paint=function(){for(var A=0;
2673 Timeline._Impl.prototype.getDocument=function(){return this._containerDiv.ownerDocument;
2675 Timeline._Impl.prototype.addDiv=function(A){this._containerDiv.appendChild(A);
2677 Timeline._Impl.prototype.removeDiv=function(A){this._containerDiv.removeChild(A);
2679 Timeline._Impl.prototype.isHorizontal=function(){return this._orientation==Timeline.HORIZONTAL;
2681 Timeline._Impl.prototype.isVertical=function(){return this._orientation==Timeline.VERTICAL;
2683 Timeline._Impl.prototype.getPixelLength=function(){return this._orientation==Timeline.HORIZONTAL?th…
2685 Timeline._Impl.prototype.getPixelWidth=function(){return this._orientation==Timeline.VERTICAL?this.…
2687 Timeline._Impl.prototype.getUnit=function(){return this._unit;
2689 Timeline._Impl.prototype.getWidthStyle=function(){return this._orientation==Timeline.HORIZONTAL?"he…
2691 Timeline._Impl.prototype.loadXML=function(B,D){var A=this;
2704 Timeline._Impl.prototype.loadJSON=function(url,f){var tl=this;
2715 Timeline._Impl.prototype._autoWidthScrollListener=function(A){A.getTimeline()._autoWidthCheck(false…
2717 Timeline._Impl.prototype._autoWidthCheck=function(C){var A=this;
2740 Timeline._Impl.prototype._initialize=function(){var H=this._containerDiv;
2746 }var A=SimileAjax.Graphics.createTranslucentImage(Timeline.urlPrefix+(this.isHorizontal()?"images/c…
2755 B++){var G=new Timeline._Band(this,this._bandInfos[B],B);
2769 D.contentDiv.innerHTML="<img src='"+Timeline.urlPrefix+"images/progress-running.gif' /> Loading...";
2775 Timeline._Impl.prototype._distributeWidths=function(){var G=this.getPixelLength();
2793 Timeline._Impl.prototype.shiftOK=function(C,B){var F=B>0,A=B<0;
2813 Timeline._Impl.prototype.zoom=function(D,A,G,F){var C=new RegExp("^timeline-band-([0-9]+)$");
2823 Timeline.NativeDateUnit=new Object();
2824 Timeline.NativeDateUnit.createLabeller=function(B,A){return new Timeline.GregorianDateLabeller(B,A);
2826 Timeline.NativeDateUnit.makeDefaultValue=function(){return new Date();
2828 Timeline.NativeDateUnit.cloneValue=function(A){return new Date(A.getTime());
2830 Timeline.NativeDateUnit.getParser=function(A){if(typeof A=="string"){A=A.toLowerCase();
2831 }return(A=="iso8601"||A=="iso 8601")?Timeline.DateTime.parseIso8601DateTime:Timeline.DateTime.parse…
2833 Timeline.NativeDateUnit.parseFromObject=function(A){return Timeline.DateTime.parseGregorianDateTime…
2835 Timeline.NativeDateUnit.toNumber=function(A){return A.getTime();
2837 Timeline.NativeDateUnit.fromNumber=function(A){return new Date(A);
2839 Timeline.NativeDateUnit.compare=function(D,C){var B,A;
2846 Timeline.NativeDateUnit.earlier=function(B,A){return Timeline.NativeDateUnit.compare(B,A)<0?B:A;
2848 Timeline.NativeDateUnit.later=function(B,A){return Timeline.NativeDateUnit.compare(B,A)>0?B:A;
2850 Timeline.NativeDateUnit.change=function(A,B){return new Date(A.getTime()+B);