aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-db/pom.xml
Commit message (Expand)AuthorAgeFilesLines
* Prepare for next development iterationDavid Rautureau2016-09-191-1/+1
* Automatic merge from branch-6.0ssjenka2016-07-201-2/+1
|\
| * [maven-release-plugin] prepare for next development iterationDavid Rautureau2016-07-201-1/+1
| * [maven-release-plugin] prepare release 6.0-RC16.0-RC1David Rautureau2016-07-201-3/+2
* | prepare for next development iterationDavid Rautureau2016-07-201-1/+1
|/
* Automatic merge from branch-5.6Jenkins CI2016-05-271-3/+3
|\
| * SONAR-7652 fix connection to SQL AzureSimon Brandhof2016-05-261-3/+3
| * prepare for next development iteration on release branchTom2016-05-201-1/+1
| * Release 5.6-RC1Tom2016-05-201-1/+1
* | prepare for next development iterationTom2016-05-201-1/+1
|/
* Upgrade version to 5.6-SNAPSHOTTom2016-04-071-1/+1
* Rename batch into scannerJulien HENRY2016-03-181-1/+1
* Remove unused annotation @DbTestsSimon Brandhof2016-02-291-3/+0
* SONAR-5772 New executable_lines_data metricJulien HENRY2016-02-221-0/+4
* Enable QA pipeline at SonarSourceSimon Brandhof2016-02-101-9/+56
* Upgrade version to 5.5-SNAPSHOTEric Hartmann2016-02-091-1/+1
* SONAR-7226 deploy all artifacts to central, except SQ zipSimon Brandhof2016-02-041-13/+0
* Upgrade version to 5.4-SNAPSHOTEric Hartmann2015-12-091-1/+1
* Merge remote-tracking branch 'origin/branch-5.2'Simon Brandhof2015-10-301-0/+13
|\
| * Do not deploy internal artifacts to maven central repoSimon Brandhof2015-10-291-0/+13
| * [maven-release-plugin] prepare for next development iterationThomas Vérin2015-10-271-1/+1
| * [maven-release-plugin] prepare release 5.2-RC4Thomas Vérin2015-10-271-1/+1
| * [maven-release-plugin] prepare for next development iterationThomas Vérin2015-10-201-1/+1
| * [maven-release-plugin] prepare release 5.2-RC35.2-RC3Thomas Vérin2015-10-201-1/+1
* | Execute Protocol Buffer compiler during buildEvgeny Mandrikov2015-10-291-22/+0
* | Upgrade version to 5.3-SNAPSHOTThomas Vérin2015-10-131-1/+1
|/
* [maven-release-plugin] prepare for next development iterationThomas Vérin2015-10-131-1/+1
* [maven-release-plugin] prepare release 5.2-RC25.2-RC2Thomas Vérin2015-10-131-1/+1
* [maven-release-plugin] prepare for next development iterationThomas Vérin2015-10-121-1/+1
* [maven-release-plugin] prepare release 5.2-RC15.2-RC1Thomas Vérin2015-10-121-3/+2
* Replace groupIds org.codehaus by org.sonarsourceSimon Brandhof2015-10-091-5/+5
* SONAR-6552 fix maven dependency for SQLServer testsSimon Brandhof2015-09-171-0/+39
* SONAR-6552 fix bad mergeSimon Brandhof2015-09-171-5/+0
* Exclude generated protobuf codebase from analysisSimon Brandhof2015-09-111-0/+4
* Move protobuf spec of table FILE_SOURCES.BINARY_DATA into sonar-dbSimon Brandhof2015-07-231-0/+18
* Move Java db migrations from sonar-server to sonar-dbSimon Brandhof2015-07-171-0/+4
* Fix quality flaws in DaoSimon Brandhof2015-07-061-0/+7
* Extract module sonar-dbSimon Brandhof2015-07-041-0/+135
>.bar.append(this.textElement.addClass(options.textClass)), this.textBg) .appendTo(this.element); jQuery.easing[this.identifier] = function (x, t, b, c, d) { var inc = options.increment, width = options.width, step = ((inc > width ? width : inc)/width), state = Math.round(x/step)*step; return state > 1 ? 1 : state; }; }, plugins: {}, ui: function(e) { return { identifier: this.identifier, options: this.options, element: this.bar, textElement: this.textElement, pixelState: this.pixelState, percentState: this.percentState }; }, _propagate: function(n,e) { $.ui.plugin.call(this, n, [e, this.ui()]); this.element.triggerHandler(n == "progressbar" ? n : ["progressbar", n].join(""), [e, this.ui()], this.options[n]); }, destroy: function() { this.stop(); this.element .removeClass("ui-progressbar ui-progressbar-disabled") .removeData("progressbar").unbind(".progressbar") .find('.ui-progressbar-wrap').remove(); delete jQuery.easing[this.identifier]; }, enable: function() { this.element.removeClass("ui-progressbar-disabled"); this.disabled = false; }, disable: function() { this.element.addClass("ui-progressbar-disabled"); this.disabled = true; }, start: function() { var self = this, options = this.options; if (this.disabled) { return; } self.active = true; setTimeout( function() { self.active = false; }, options.duration ); this._animate(); this._propagate('start', this.ui()); return false; }, _animate: function() { var self = this, options = this.options, interval = options.interval; this.bar.animate( { width: options.width }, { duration: interval, easing: this.identifier, step: function(step, b) { self.progress((step/options.width)*100); var elapsedTime = ((new Date().getTime()) - b.startTime); options.interval = interval - elapsedTime; }, complete: function() { delete jQuery.easing[self.identifier]; self.pause(); if (self.active) { /*TODO*/ self.stop(); self._animate(); } } } ); }, pause: function() { if (this.disabled) return; this.bar.stop(); this._propagate('pause', this.ui()); }, stop: function() { this.bar.stop(); this.bar.width(0); this.textElement.width(0); this.bar.addClass('ui-hidden'); this.options.interval = this._interval; this._propagate('stop', this.ui()); }, progress: function(percentState) { if (this.bar.is('.ui-hidden')) { this.bar.removeClass('ui-hidden'); } this.percentState = percentState > 100 ? 100 : percentState; this.pixelState = (this.percentState/100)*this.options.width; this.bar.width(this.pixelState); this.textElement.width(this.pixelState); if (this.options.range && !this.options.text) { this.textElement.html(Math.round(this.percentState) + '%'); } this._propagate('progress', this.ui()); } }); $.ui.progressbar.defaults = { width: 300, duration: 3000, interval: 200, increment: 1, range: true, text: '', addClass: '', textClass: '' }; })(jQuery);