Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix CSS of hotspots | Simon Brandhof | 2011-06-21 | 1 | -3/+3 |
| | |||||
* | SONAR-2497 Merge i18n plugin with core | Simon Brandhof | 2011-06-21 | 18 | -80/+16 |
| | |||||
* | SONAR-2505 support measure variations | Simon Brandhof | 2011-06-21 | 13 | -47/+207 |
| | |||||
* | SONAR-2536 Execution of FindBugs should not leave unterminated threads | Evgeny Mandrikov | 2011-06-21 | 1 | -1/+4 |
| | |||||
* | SONAR-2505 support tracking of violations on dry runs | Simon Brandhof | 2011-06-17 | 11 | -325/+707 |
| | |||||
* | SONAR-2428 Detection new violations, when new module added to project | Evgeny Mandrikov | 2011-06-17 | 2 | -6/+6 |
| | |||||
* | SONAR-2520 Add support for RESOLVED and REOPENED statuses for reviews | Fabrice Bellingard | 2011-06-15 | 5 | -8/+149 |
| | | | | | | | | | - Modifications on the Web UI side to allow to resolve reviews - Modifications on the batch side to reopen reviews that were specified as resolved but the violation has not been fixed - Modifications on the WS server side to allow to change the status of a review to RESOLVED or REOPENED - Modifications on the WS client to reflect those server side changes | ||||
* | SONAR-2505 core components which write to database are disabled on dry runs | Simon Brandhof | 2011-06-15 | 10 | -0/+20 |
| | |||||
* | Remove dependency on classworlds - use only plexus-classworlds | Evgeny Mandrikov | 2011-06-13 | 1 | -2/+2 |
| | |||||
* | Remove unnecessary dependencies in sonar-checkstyle-plugin | Evgeny Mandrikov | 2011-06-13 | 1 | -0/+4 |
| | |||||
* | Remove unnecessary dependencies in sonar-surefire-plugin | Evgeny Mandrikov | 2011-06-13 | 1 | -10/+4 |
| | |||||
* | Remove unnecessary dependencies in sonar-googleanalytics-plugin | Evgeny Mandrikov | 2011-06-13 | 1 | -16/+6 |
| | |||||
* | SONAR-75 Apply first version of contribution by www.serli.com | Simon Brandhof | 2011-06-13 | 22 | -0/+1164 |
| | |||||
* | SONAR-2512 Fix dependencies on commons-beanutils | Evgeny Mandrikov | 2011-06-09 | 2 | -0/+10 |
| | | | | | Forbid dependency on commons-beanutils-core and instead use commons-beanutils 1.8.3 | ||||
* | SONAR-2414 remove the Clouds page written in GWT | simonbrandhof | 2011-06-08 | 13 | -772/+0 |
| | |||||
* | SONAR-553 Execute ProjectLinksSensor only for latest analysis | Evgeny Mandrikov | 2011-06-03 | 2 | -5/+17 |
| | |||||
* | SONAR-1922 Minor change in order to fix integration tests | Evgeny Mandrikov | 2011-06-03 | 1 | -1/+1 |
| | |||||
* | SONAR-2463 The creation date of violation should not be reinitialized | Freddy Mallet | 2011-06-02 | 2 | -15/+33 |
| | | | when the message of the violation is changing | ||||
* | SONAR-1922 Improve UI for profile changelog | Evgeny Mandrikov | 2011-06-01 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | * Removed useless version column from Quality Profiles page. * To improve readability - version of profile displayed in a dedicated column on Changelog page, otherwise it can be difficult to determine version associated to a row. * Allowed to select both versions to compare. * CSS attribute "word-wrap" was set to "break-word" to decrease width of table, when parameter value too huge. Tested in Chromimum 12.0.742.68 and in Firefox 3.6.17. * Version of profile was added to widget. * Save and show username instead of login. | ||||
* | SONAR-2487 Do not analyse bytecode, when property "sonar.skipDesign" set to ↵ | Evgeny Mandrikov | 2011-06-01 | 6 | -34/+126 |
| | | | | "true" | ||||
* | Fix violations | Evgeny Mandrikov | 2011-05-30 | 3 | -4/+4 |
| | |||||
* | SONAR-2459 Violations should be generated even when bytecode not available | Evgeny Mandrikov | 2011-05-30 | 1 | -1/+1 |
| | |||||
* | SONAR-2164 Add an option to skip package design analysis | Evgeny Mandrikov | 2011-05-30 | 3 | -15/+39 |
| | |||||
* | Fix violations | Evgeny Mandrikov | 2011-05-29 | 3 | -6/+4 |
| | |||||
* | SONAR-1922 Improve ProfileEventsSensor | Evgeny Mandrikov | 2011-05-28 | 2 | -57/+64 |
| | | | | | | | * Create event only when actual change of version or profile was done. * Use only one form for event description: "ProfileA version X is used instead of ProfileB version Y". | ||||
* | SONAR-1922 Add a kind of version control for quality profiles | Evgeny Mandrikov | 2011-05-27 | 5 | -3/+260 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Apply patch, which was contributed by Julien Henry: * Following algorithm was implemented: Every profile starts with version=1 and used=false. As soon as there is an analysis of a project, the involved profile is set to used=true. Every modification to a quality profile (activation, deactivation or modification of rule) is logged in DB in dedicated tables. When a modification is done on a profile that is used=true, then version number is increased and profile is set to used=false. * Introduced new metric to store profile version, which was used during analysis. * If profile for project is different than the one used during previous analysis, then event would be created. * Introduced new tab 'changelog' for profiles. Following fixes were applied on original patch: * Index name limited to 30 characters in Oracle DB, so names were reduced. * Field ActiveRuleChange.profileVersion never read locally, because ruby read it directly from DB, so getter added. * Direction doesn't make sense for 'profile_version' metric, so was removed. * Fixed ProfileEventsSensor: it seems that TimeMachine not guarantee that the order of measures would be the same as in query, so we should perform two sequential queries. * Fixed handling of null values during migration. | ||||
* | SONAR-2453 Update the way "FALSE-POSITIVE" reviews are managed | Fabrice Bellingard | 2011-05-26 | 3 | -8/+8 |
| | | | | | | 1- Update the DB, migration scripts & co. 2- Update the model, controller & co. 3- Update the WS Client | ||||
* | SONAR-2469 fix typo in name of InstantiationStrategy class | simonbrandhof | 2011-05-26 | 1 | -1/+1 |
| | |||||
* | SONAR-2473 Fix SQL request to prevent "closing" again a review | Fabrice Bellingard | 2011-05-25 | 3 | -1/+12 |
| | |||||
* | Fix merge of release 2.8 | simonbrandhof | 2011-05-19 | 8 | -25/+269 |
| | |||||
* | Upgrade to version 2.9-SNAPSHOT | simonbrandhof | 2011-05-13 | 12 | -12/+12 |
| | |||||
* | Temporarily downgrade version to 2.8-SNAPSHOT | simonbrandhof | 2011-05-10 | 12 | -12/+12 |
| | |||||
* | Upgrade version to 2.9-SNAPSHOT | simonbrandhof | 2011-05-09 | 12 | -12/+12 |
| | |||||
* | Release 2.8-RC2 | simonbrandhof | 2011-05-09 | 12 | -12/+12 |
| | |||||
* | Fix compatibility with Oracle | simonbrandhof | 2011-05-09 | 2 | -6/+6 |
| | |||||
* | Fix cobertura plugin to remove warning about lineId | Evgeny Mandrikov | 2011-05-06 | 2 | -6/+58 |
| | |||||
* | Replace -Ddev by -Pdev to increase build duration | simonbrandhof | 2011-05-05 | 2 | -31/+1 |
| | |||||
* | Reduce technical debt | simonbrandhof | 2011-05-05 | 7 | -12/+15 |
| | |||||
* | Remove some dead code | simonbrandhof | 2011-05-05 | 2 | -2/+0 |
| | |||||
* | SONAR-2371 Rework UnitTestDecorator and SurefireSensor | Evgeny Mandrikov | 2011-05-04 | 5 | -52/+31 |
| | | | | | | | * UnitTestDecorator should not save zero value for tests metric * SurefireSensor should save zero when no reports and project do not contain any modules | ||||
* | SONAR-2301 ClassComplexityCheck NullPointerException | simonbrandhof | 2011-05-04 | 3 | -6/+12 |
| | |||||
* | Prepare for next development iteration | Evgeny Mandrikov | 2011-05-03 | 12 | -12/+12 |
| | |||||
* | Prepare 2.8-RC1 | Evgeny Mandrikov | 2011-05-03 | 12 | -12/+12 |
| | |||||
* | SONAR-2275 Remove Checkstyle "Design For Extension" rule from "Sun checks" ↵ | Evgeny Mandrikov | 2011-05-02 | 1 | -4/+0 |
| | | | | profile | ||||
* | Slightly improve fix bug of violation tracking when past violation has no ↵ | Freddy Mallet | 2011-04-29 | 2 | -9/+15 |
| | | | | checksum. | ||||
* | Fix bug of violation tracking. NPE when past violation has no checksum. | simonbrandhof | 2011-04-29 | 2 | -17/+23 |
| | |||||
* | SONAR-2321 Fix test for Windows | Evgeny Mandrikov | 2011-04-28 | 1 | -2/+2 |
| | |||||
* | SONAR-2321 Cobertura plugin must not search for XML reports when Cobertura ↵ | Evgeny Mandrikov | 2011-04-28 | 4 | -41/+79 |
| | | | | has not been executed | ||||
* | Define new constants in DecoratorBarriers | simonbrandhof | 2011-04-28 | 4 | -31/+14 |
| | | | | | | | | | START_VIOLATION_TRACKING and END_OF_VIOLATION_TRACKING are used to benefit from tracking data of Violation : - Violation#isSwitchedOff() - Violation#getCreatedAt() More information in Javadoc. | ||||
* | Ignore plugins/sonar-core-plugin/derby.log generated during unit tests | simonbrandhof | 2011-04-28 | 1 | -91/+0 |
| |