aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-testing-harness/src/main
diff options
context:
space:
mode:
authorEvgeny Mandrikov <mandrikov@gmail.com>2011-06-01 00:01:05 +0400
committerEvgeny Mandrikov <mandrikov@gmail.com>2011-06-01 19:31:28 +0400
commit94c39df6941f641936159e3d3bed0d2bd6120c07 (patch)
tree83252f316744ae3ecdee60b008141b47be680c00 /sonar-testing-harness/src/main
parentb41cf6f330551a3ffc247249fdfda45a095fb46c (diff)
downloadsonarqube-94c39df6941f641936159e3d3bed0d2bd6120c07.tar.gz
sonarqube-94c39df6941f641936159e3d3bed0d2bd6120c07.zip
SONAR-1922 Improve UI for profile changelog
* 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.
Diffstat (limited to 'sonar-testing-harness/src/main')
-rw-r--r--sonar-testing-harness/src/main/resources/org/sonar/test/persistence/sonar-test.ddl2
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-testing-harness/src/main/resources/org/sonar/test/persistence/sonar-test.ddl b/sonar-testing-harness/src/main/resources/org/sonar/test/persistence/sonar-test.ddl
index e8d80293808..d27879bd1aa 100644
--- a/sonar-testing-harness/src/main/resources/org/sonar/test/persistence/sonar-test.ddl
+++ b/sonar-testing-harness/src/main/resources/org/sonar/test/persistence/sonar-test.ddl
@@ -27,7 +27,7 @@ create table ACTIVE_RULES (
create table ACTIVE_RULE_CHANGES (
ID INTEGER not null,
- USER_LOGIN VARCHAR(40) not null,
+ USER_NAME VARCHAR(200) not null,
PROFILE_ID INTEGER not null,
PROFILE_VERSION INTEGER not null,
RULE_ID INTEGER not null,