aboutsummaryrefslogtreecommitdiffstats
path: root/server
Commit message (Collapse)AuthorAgeFilesLines
* SONAR-6571 fix use of Boolean for boolean db column in Metrics tableTeryk Bellahsene2015-06-0212-8/+159
|
* AbstractUpdateCenterBasedPluginsWsActionTest should be abstractSébastien Lesaint2015-06-021-1/+1
|
* improve CloseableIterator: implementation and coverageSébastien Lesaint2015-06-022-23/+62
|
* fix minor quality flaw in ValidateProjectStepSébastien Lesaint2015-06-021-1/+2
|
* fix potential NPE in QualityProfileEventsStepSébastien Lesaint2015-06-021-1/+10
|
* fix minor quality flaw on PurgeDatastoresStepSébastien Lesaint2015-06-021-1/+2
|
* fix quality flaws in ComputeEngineContainerImplSébastien Lesaint2015-06-021-5/+3
|
* batch's ref exposed in CE's Component is actually OKSébastien Lesaint2015-06-021-1/+3
|
* fix quality flaws on BatchReportReaderImplSébastien Lesaint2015-06-021-24/+31
|
* add missing coverage on BatchReportDirectoryHolderImplSébastien Lesaint2015-06-022-1/+43
| | | | in addition, removed repetitive declaration from implement list
* remove BatchReport.Component stored in CE's ComponentImplSébastien Lesaint2015-06-022-3/+8
|
* add backbone-superStas Vilchik2015-06-0219-31/+144
|
* Merge pull request #346 from SonarSource/feature/groups-uiStas Vilchik2015-06-0241-346/+1082
|\ | | | | SONAR-6602 refactor groups page
| * SONAR-6602 refresh collections after membership changeStas Vilchik2015-06-022-0/+10
| |
| * SONAR-6602 use "q" for searchStas Vilchik2015-06-023-2/+8
| |
| * fix quality flawsStas Vilchik2015-06-021-1/+0
| |
| * SONAR-6602 drop ruby codeStas Vilchik2015-06-024-267/+0
| |
| * SONAR-6602 refactor groups pageStas Vilchik2015-06-0237-78/+1066
| |
* | update grunt and its dependeciesStas Vilchik2015-06-021-8/+6
| |
* | add MetricsWsModuleTeryk Bellahsene2015-06-023-8/+73
| |
* | SONAR-6571 WS api/metrics/create create or reactivate a custom metricTeryk Bellahsene2015-06-029-19/+518
|/
* fix quality flawsStas Vilchik2015-06-021-1/+2
|
* Rename SnapshotDto.resourceId to componentIdJulien Lancelot2015-06-025-75/+53
|
* update login requirements for user loginStas Vilchik2015-06-021-2/+2
|
* clean rule.ws.SearchAction implemented interfacesTeryk Bellahsene2015-06-021-1/+1
|
* rename metric.ws.SearchAction variable following Java standardsTeryk Bellahsene2015-06-021-3/+3
|
* clarify parent project name display in issue.ws.ShowActionTeryk Bellahsene2015-06-021-12/+14
|
* add test for ProjectsWsModuleTeryk Bellahsene2015-06-021-0/+35
|
* SONAR-6579 apply feedbackStas Vilchik2015-06-022-2/+4
|
* SONAR-6470 SONAR-6475 Require admin permission to list group/user associationsJean-Baptiste Lievremont2015-06-024-25/+64
|
* fix quality flawsStas Vilchik2015-06-025-48/+30
|
* SONAR-6950 actually log error during cleanup of CE containerSébastien Lesaint2015-06-021-2/+10
|
* SONAR-6590 catch and log exceptions raised when stopping CE containerSébastien Lesaint2015-06-021-1/+1
| | | | we must not raise an exception here because, since we are in a separate thread, they are swallowed and never logged
* SONAR-6590 fix QueueItem status not saved after processingSébastien Lesaint2015-06-021-0/+1
| | | | | because the container was not started, when cleanup method was invoked an IllegalStateException was raised by Pico because the current status of the container was CONSTRUCTED unfortunately, the method to update the item status is after the call to the cleanup method and therefor was never invoked
* SONAR-6589 add caching of report MetaData in CEBatchReportReaderSébastien Lesaint2015-06-013-1/+342
|
* SONAR-6568 missing unit test for QualityProfileSébastien Lesaint2015-06-011-0/+72
|
* SONAR-6589 make ReportExtractor a step called ReportExtractionStepSébastien Lesaint2015-06-0114-104/+316
|
* SONAR-6589 EventRepository should store data based on refSébastien Lesaint2015-06-013-9/+79
| | | | also added missing unit test
* SONAR-6589 move ComponentTreeBuilders to test where it is actually usedSébastien Lesaint2015-06-016-117/+120
|
* SONAR-6589 remove ComputationContext from ComputationStep.execute methodSébastien Lesaint2015-06-0148-269/+132
| | | | and also remove the ComputationContext completely
* SONAR-6589 replace usage of ComputationContext.getRoot with TreeRootHolderSébastien Lesaint2015-06-0122-202/+599
| | | | also, ComponentTree is now computed as a step in BuildComponentTreeStep
* SONAR-6589 remove Component.getContext()Sébastien Lesaint2015-06-0114-83/+41
|
* SONAR-6589 remove unused parameter of ComputationContext constructorSébastien Lesaint2015-06-0122-413/+233
| | | | also clean unit tests that uses a ComputationContext (removed uneccessary properties, mostly)
* SONAR-6589 remove ComputationContext.getDbClient()Sébastien Lesaint2015-06-011-10/+0
| | | | not used anymore
* SONAR-6589 move LanguageRepository out of ComputationContextSébastien Lesaint2015-06-014-15/+9
|
* SONAR-6589 move EventRepository out of ComponentSébastien Lesaint2015-06-018-92/+99
|
* SONAR-6589 move MeasureRepository out of ComponentSébastien Lesaint2015-06-019-112/+136
|
* SONAR-6589 remove ComputationContext.getReportReader and getReportMetadataSébastien Lesaint2015-06-0127-147/+148
|
* fix Platform.getContainer(): switch to level4 _before_ startup levelSébastien Lesaint2015-06-011-1/+1
| | | | this is necessary in case some class in startup level use Platform.getContainer() to retrieve current level
* ServerLifecycleNotifier really belongs to startup levelSébastien Lesaint2015-06-012-3/+2
|