aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Remove unused RubyTextServiceSimon Brandhof2017-01-186-116/+0
|
* Remove dead code related to Elasticsearch utilitiesSimon Brandhof2017-01-189-461/+15
|
* Remove unused RubyRuleServiceSimon Brandhof2017-01-187-507/+0
| | | | and the associated deprecated ES utilities
* Remove dead code related to Elasticsearch utilitiesSimon Brandhof2017-01-1811-536/+16
|
* Remove dead code related to ComponentDaoSimon Brandhof2017-01-184-79/+1
|
* Remove dead code related to ResourceDaoSimon Brandhof2017-01-189-398/+1
|
* Don't wait for CE queue to completeJulien HENRY2017-01-181-1/+1
| | | | since this test is about preview mode (so no publish).
* SONAR-8574 Delete api/resources/index WSJulien Lancelot2017-01-186-421/+101
|
* SONAR-8574 Replace usage of api/resources/index by api/measures/component in ITsJulien Lancelot2017-01-1841-844/+805
|
* SONAR-8467 Add ProjectAnalysisServiceJulien Lancelot2017-01-183-1/+131
|
* SONAR-8238 index authorization of views in components indexSébastien Lesaint2017-01-177-87/+185
|
* SONAR-8615 add organization to response of api/issues/searchSébastien Lesaint2017-01-1720-58/+80
|
* SONAR-8673 add organization to response of api/ce/componentSébastien Lesaint2017-01-172-1/+9
|
* SONAR-8674 add organization to response of api/ce/taskSébastien Lesaint2017-01-172-9/+15
|
* SONAR-8614 add organization to response of api/ce/activitySébastien Lesaint2017-01-173-34/+116
|
* SONAR-8595 fix backward incompatible change in proto of api/componentsSébastien Lesaint2017-01-171-12/+12
|
* SONAR-8614 fix backward incompatible change in proto of api/ceSébastien Lesaint2017-01-171-0/+1
|
* change name of project measures index type (to singular)Daniel Schwarz2017-01-1711-34/+34
| | | | The name of the index is now "projectmeasures" (plural), the name of the type is "projectmeasure" (singular).
* Automatic merge from branch-xxTom2017-01-170-0/+0
|\ | | | | | | | | | | * origin/branch-6.2: Prepare for next development iteration Release 6.2.1
| * Prepare for next development iterationbranch-6.2Tom2017-01-1752-52/+52
| |
| * Release 6.2.16.2.1Tom2017-01-1652-52/+52
| |
* | fix issue assignmentStas Vilchik2017-01-171-1/+1
| |
* | SONAR-7674 display activity page only for projectsStas Vilchik2017-01-163-141/+164
| |
* | SONAR-8652 Pass value of sonar.organization in the scanner reportJulien HENRY2017-01-165-4/+75
| |
* | SONAR-7282 move ReportComputationSteps behind PurgeDatastoresStepDaniel Schwarz2017-01-161-1/+1
| |
* | SONAR-7282 add authorization to the ComponentIndexDaniel Schwarz2017-01-1616-36/+271
| |
* | SONAR-7282 remove project from ComponentIndex, when it gets deletedDaniel Schwarz2017-01-169-25/+87
| |
* | SONAR-7282 improve relevancy of resultsDaniel Schwarz2017-01-1611-138/+286
| | | | | | | | Changes regarding index definition, code style, tests.
* | SONAR-7282 make ComponentIndexer clean up contents before indexingDaniel Schwarz2017-01-162-1/+57
| | | | | | | | When a project and it's sub-components get indexed, remove any existing documents for that project right before.
* | SONAR-7282 send only one indexing request to elasticsearch per projectDaniel Schwarz2017-01-161-16/+17
| | | | | | | | Indexing everything will index every project. Indexing a project will cause all components of that project to be sent to elasticsearch in one bulk request.
* | SONAR-7282 implement global search with elasticsearchDaniel Schwarz2017-01-1636-162/+1110
| | | | | | | | | | | | Change api/component/suggestions. The index is not yet cleaned up if a project's content changes or a project is deleted. Delete previous ruby implementation of the webservice.
* | SONAR-7282 rename .component.es to .measure.indexDaniel Schwarz2017-01-1637-84/+93
| | | | | | | | | | | | | | | | * All other elastic search indexes reside in "index" subpackages. * We want to introduce a new component index and need the .component.index-package name for that one.
* | SONAR-7282 drop method "JRubyFacade.indexComponent"; it was unusedDaniel Schwarz2017-01-161-10/+0
| | | | | | | | The method had been used by the developer cockpit. It would have required some changes concerning Indexation, but we did not want to do that, as dev cockpit is unmaintained.
* | make travis build fail when web job failsStas Vilchik2017-01-161-2/+2
| |
* | SONAR-8613 add organizations param to api/organizations/searchSébastien Lesaint2017-01-162-15/+80
| |
* | SONAR-8613 add filter on keys to OrganizationDao.selectByQuerySébastien Lesaint2017-01-165-19/+215
| |
* | SONAR-8595 remove ComponentDto.organizationKeySébastien Lesaint2017-01-163-35/+5
| | | | | | | | remove join on table ORGANIZATIONS in ComponentMapper.xml which was used to populate this field
* | SONAR-8617 don't use ComponentDto.getOrganizationKeySébastien Lesaint2017-01-161-3/+5
| |
* | SONAR-8595 don't use ComponentDto.getOrganizationKeySébastien Lesaint2017-01-163-10/+27
| |
* | SONAR-8619 don't use ComponentDto.getOrganizationKeySébastien Lesaint2017-01-164-33/+28
| |
* | SONAR-8618 don't use ComponentDto.getOrganizationKeySébastien Lesaint2017-01-163-5/+81
| |
* | SONAR-8613 don't use ComponentDto.getOrganizationKeySébastien Lesaint2017-01-162-19/+37
| |
* | SONAR-8613 add OrganizationDao.selectByUuidsSébastien Lesaint2017-01-164-87/+200
| |
* | SONAR-8617 add organization to api/navigation/component responseSébastien Lesaint2017-01-167-3/+11
| |
* | SONAR-8613 add organization to response of api/components/searchSébastien Lesaint2017-01-163-1/+6
| |
* | SONAR-8618 SONAR-8619 add organization to WS responseSébastien Lesaint2017-01-165-6/+17
| | | | | | | | since api/components/show and api/components/tree rely on the same piece of code to add the organization key to the WS response, they are modified in the same commit
* | SONAR-8595 make ComponentMapper.selectByQuery return org keySébastien Lesaint2017-01-162-5/+9
| |
* | SONAR-8595 make ComponentMapper.selectDescendants return org keySébastien Lesaint2017-01-162-1/+6
| |
* | SONAR-8595 make ComponentMapper.selectByUuid retrieve organization's keySébastien Lesaint2017-01-164-5/+19
| |
* | SONAR-8595 make ComponentMapper.selectByKey retrieve organization's keySébastien Lesaint2017-01-1619-31/+109
| | | | | | | | by joining on table ORGANIZATIONS