Home | History | Annotate | Download | only in static-dashboards

Lines Matching defs:History

30 var history = history || {};
34 history.DEFAULT_CROSS_DASHBOARD_STATE_VALUES = {
41 history.validateParameter = function(state, key, value, validateFn)
52 history.isTreeMap = function()
58 history.queryHashAsMap = function()
102 history._diffStates = function(oldState, newState)
119 history._fillMissingValues = function(to, from)
127 history.History = function(configuration)
141 history.reloadRequiringParameters = ['showAllRuns', 'group', 'testType'];
147 history.History.prototype = {
164 var parameters = history.queryHashAsMap();
165 for (parameterName in history.DEFAULT_CROSS_DASHBOARD_STATE_VALUES)
168 history._fillMissingValues(this.crossDashboardState, history.DEFAULT_CROSS_DASHBOARD_STATE_VALUES);
173 var parameters = history.queryHashAsMap();
188 if (oldCrossDashboardState[key] != this.crossDashboardState[key] && history.reloadRequiringParameters.indexOf(key) != -1) {
196 var dashboardSpecificDiffState = history._diffStates(oldDashboardSpecificState, this.dashboardSpecificState);
198 history._fillMissingValues(this.dashboardSpecificState, this._defaultDashboardSpecificStateValues);
230 history.validateParameter(this.crossDashboardState, key, value,
235 history.validateParameter(this.crossDashboardState, key, value,
315 return history.DEFAULT_CROSS_DASHBOARD_STATE_VALUES[key];