aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* SONAR-3090 Remove DUPLICATIONS_INDEX.IDEvgeny Mandrikov2011-12-1915-161/+76
| | | | | In order to do this - remove entity DuplicationBlock and use native query in PurgeUtils.
* SONAR-2662 Make it possible to assign a review to an action planFabrice Bellingard2011-12-1910-4/+180
| | | | | - From the resource viewer - From the review detail/permalink page
* SONAR-983 first implementation of the search engine of projects, directories ↵Simon Brandhof2011-12-1923-234/+490
| | | | | | | | and files * The POST request to the URL /search/reset starts the indexation of resources * The search engine is available at /search
* SONAR-2662 Add missing files linked to new table "action_plans"Fabrice Bellingard2011-12-193-0/+30
|
* SONAR-2662 Make it possible to assign a review to an action planFabrice Bellingard2011-12-192-15/+15
|
* SONAR-2662 Allow to close & reopen an action planFabrice Bellingard2011-12-193-2/+17
|
* SONAR-3095 Update to JaCoCo 0.5.5Evgeny Mandrikov2011-12-191-1/+1
|
* Fix violationsEvgeny Mandrikov2011-12-192-2/+2
|
* SONAR-2662 Create a pagination helperFabrice Bellingard2011-12-194-41/+58
| | | | | It is currently used for the review listing page, but it can normally be used elsewhere.
* SONAR-2662 Create action plans which are a set of manual reviewsFabrice Bellingard2011-12-1910-151/+245
| | | | | | - Improve progress bar - Display the list of reviews in a separate page which is still in the context of the project
* SONAR-2662 Create action plans which are a set of manual reviewsFabrice Bellingard2011-12-1911-2/+384
| | | | - Create the service to manage action plans
* SONAR-3101 fix the Collapse linksimonbrandhof2011-12-184-13/+13
| | | | Refactoring: define the constant ResourceHelper::DUPLICATION_SNIPPET_DEFAULT_NB_OF_LINES=6
* Move org.sonar.jpa.dialect to org.sonar.persistence.dialect and refactor ↵Simon Brandhof2011-12-1626-152/+94
| | | | DialectRepository
* SONAR-983 create table RESOURCE_INDEXSimon Brandhof2011-12-1619-61/+411
| | | | The related myBatis classes are in the package org.sonar.persistence.resource
* Minor refactoring on ruby variable namesSimon Brandhof2011-12-162-4/+7
|
* Fix the URL /widgetSimon Brandhof2011-12-161-3/+4
|
* SONAR-1929 add ability for administrators to delete dashboards registered ↵Simon Brandhof2011-12-168-177/+303
| | | | | | programmatically by plugins + SONAR-3103 Do not allow to unshare dashboard when it's used as a default dashboard
* SONAR-3101 "Duplications" tab shows incorrect linesSimon Brandhof2011-12-161-41/+41
|
* SONAR-3099 Search of reviews by id must ignore other criteriaSimon Brandhof2011-12-161-85/+89
|
* SONAR-1929 do not register dashboards which name already exitsSimon Brandhof2011-12-1632-368/+248
| | | | + remove the useless column DASHBOARDS.KEE
* SONAR-1929 move the package org.sonar.api.web.dashboard to org.sonar.api.webSimon Brandhof2011-12-1610-23/+22
| | | | No need anymore of a dedicated package
* SONAR-1929 minor refactoring + add some testsSimon Brandhof2011-12-165-61/+32
|
* Fix typo in conf/sonar.propertiesSimon Brandhof2011-12-161-2/+2
|
* Fix violation, add testEvgeny Mandrikov2011-12-162-8/+23
|
* Fix violationsEvgeny Mandrikov2011-12-152-7/+19
|
* SONAR-3060 Improve new CPD algorithmEvgeny Mandrikov2011-12-153-34/+34
| | | | | * Remove recursive part of algorithm to avoid StackOverflowError * Fix violations
* SONAR-1929 refactor the extension point to define dashboardsSimon Brandhof2011-12-1517-305/+392
|
* SONAR-1929 refactoring of the extension point DashboardSimon Brandhof2011-12-1522-566/+485
|
* SONAR-3034 API: default value of WidgetProperty is not injected in Ruby widgetsSimon Brandhof2011-12-1529-699/+708
| | | | The column WIDGET_PROPERTIES.VALUE_TYPE is removed because it duplicates the Java extensions.
* SONAR-2795 Add pagination over 20, with "First" and "Last" links.Fabrice Bellingard2011-12-142-6/+27
|
* rename the constant ReviewDto.STATUS_OPENED to STATUS_OPENSimon Brandhof2011-12-142-2/+2
|
* SONAR-3086 do not strikethrough rule name when review is resolvedSimon Brandhof2011-12-149-32/+61
|
* Merge remote branch 'upstream/master'Fabrice Bellingard2011-12-1424-485/+721
|\
| * Decrease visibility of some methods of org.sonar.persistence.review.ReviewQuerySimon Brandhof2011-12-142-7/+2
| |
| * SONAR-2984 review widgets must not fail if reviews have no commentsSimon Brandhof2011-12-142-130/+134
| |
| * SONAR-3984 allow to delete all the commentsSimon Brandhof2011-12-142-59/+59
| |
| * SONAR-3086 improve the detail of a reviewSimon Brandhof2011-12-1413-91/+184
| |
| * SONAR-3086 Improve usability of review formsSimon Brandhof2011-12-1412-95/+182
| |
| * SONAR-3086 Improve usability of review formsSimon Brandhof2011-12-149-133/+190
| |
* | SONAR-1929 Improve the Dashboard template APIFabrice Bellingard2011-12-148-28/+37
|/ | | Use of enum instead of simple String constants.
* Sonar Persistence API refactoringFabrice Bellingard2011-12-1479-454/+460
| | | | | | | - Class mapped to tables should now be named "MyTableDto" - DTOs, DAOs and Mappers of a same concern should be packed in a single package, allowing to use package visibility amongst them. => org.sonar.persistence has been reorganized following those rules.
* SONAR-1929 Fix problem migration (I18n API not initialized)Fabrice Bellingard2011-12-142-9/+16
|
* Fix testEvgeny Mandrikov2011-12-141-1/+1
|
* SONAR-1929 Fix problem with MyBatis on OracleFabrice Bellingard2011-12-146-14/+26
|
* Fix violationsFabrice Bellingard2011-12-141-18/+22
|
* SONAR-3060 Refactor new CPD algorithmEvgeny Mandrikov2011-12-1415-333/+463
| | | | | | | | | * Fix violations * Remove duplications * Add Javadocs * Method SortedListsUtils#contains now uses iterators, so doesn't require RandomAccess list in order to work efficiently in terms of performance.
* SONAR-2018 Improve rule for detection of commented-out codeEvgeny Mandrikov2011-12-143-17/+67
| | | | Proper recognition of JSNI methods (GWT).
* SONAR-3058 downgrade to jetty 6.1.25 because of AJP regressionsimonbrandhof2011-12-141-1/+4
|
* SONAR-2973 improve the form that changes severitysimonbrandhof2011-12-1412-126/+204
|
* SONAR-2912 [Rename quality profile] Default value: put profile nameFabrice Bellingard2011-12-131-1/+1
|