Lines Matching refs:Timeline

5 Timeline.DefaultEventSource = function(eventIndex) {
10 Timeline.DefaultEventSource.prototype.addListener = function(listener) {
14 Timeline.DefaultEventSource.prototype.removeListener = function(listener) {
23 Timeline.DefaultEventSource.prototype.loadXML = function(xml, url) {
46 var evt = new Timeline.DefaultEventSource.Event( {
88 Timeline.DefaultEventSource.prototype.loadJSON = function(data, url) {
119 var evt = new Timeline.DefaultEventSource.Event({
160 Timeline.DefaultEventSource.prototype.loadSPARQL = function(xml, url) {
213 var evt = new Timeline.DefaultEventSource.Event({
252 Timeline.DefaultEventSource.prototype.add = function(evt) {
257 Timeline.DefaultEventSource.prototype.addMany = function(events) {
264 Timeline.DefaultEventSource.prototype.clear = function() {
269 Timeline.DefaultEventSource.prototype.getEvent = function(id) {
273 Timeline.DefaultEventSource.prototype.getEventIterator = function(startDate, endDate) {
277 Timeline.DefaultEventSource.prototype.getEventReverseIterator = function(startDate, endDate) {
281 Timeline.DefaultEventSource.prototype.getAllEventIterator = function() {
285 Timeline.DefaultEventSource.prototype.getCount = function() {
289 Timeline.DefaultEventSource.prototype.getEarliestDate = function() {
293 Timeline.DefaultEventSource.prototype.getLatestDate = function() {
297 Timeline.DefaultEventSource.prototype._fire = function(handlerName, args) {
310 Timeline.DefaultEventSource.prototype._getBaseURL = function(url) {
328 Timeline.DefaultEventSource.prototype._resolveRelativeURL = function(url, base) {
341 Timeline.DefaultEventSource.Event = function(args) {
378 this._id = id.length > 0 ? id : Timeline.EventUtils.getNewEventID();
438 Timeline.DefaultEventSource.Event.prototype = {
505 a.innerHTML = Timeline.strings[Timeline.clientLocale].wikiLinkLabel;