]> source.dussan.org Git - sonarqube.git/commit
SONAR-3755 refactor rendering of issues
authorSimon Brandhof <simon.brandhof@gmail.com>
Sun, 2 Jun 2013 22:18:15 +0000 (00:18 +0200)
committerSimon Brandhof <simon.brandhof@gmail.com>
Sun, 2 Jun 2013 22:18:31 +0000 (00:18 +0200)
commit7ffbafde4c2ac1d11b88dc5f7a77b714faf80eec
tree611f4ab796e53dcf8aecf6740d4efa9c6ed59c3e
parent2e004c7c6d77ffcb2b352754568bcf8a0cb21b03
SONAR-3755 refactor rendering of issues
25 files changed:
sonar-core/src/main/java/org/sonar/core/issue/db/IssueChangeDao.java
sonar-core/src/main/java/org/sonar/core/issue/db/IssueChangeMapper.java
sonar-core/src/main/resources/org/sonar/core/issue/db/IssueChangeMapper.xml
sonar-core/src/test/java/org/sonar/core/issue/db/IssueChangeDaoTest.java
sonar-server/src/main/java/org/sonar/server/issue/InternalRubyIssueService.java
sonar-server/src/main/java/org/sonar/server/issue/IssueChangeService.java [new file with mode: 0644]
sonar-server/src/main/java/org/sonar/server/issue/IssueCommentService.java [deleted file]
sonar-server/src/main/java/org/sonar/server/platform/Platform.java
sonar-server/src/main/webapp/WEB-INF/app/controllers/issue_controller.rb
sonar-server/src/main/webapp/WEB-INF/app/views/issue/_changelog.html.erb [new file with mode: 0644]
sonar-server/src/main/webapp/WEB-INF/app/views/issue/_issue.html.erb
sonar-server/src/main/webapp/WEB-INF/app/views/issue/_manual_issue_created.html.erb [new file with mode: 0644]
sonar-server/src/main/webapp/WEB-INF/app/views/issue/_rule.html.erb [new file with mode: 0644]
sonar-server/src/main/webapp/WEB-INF/app/views/issue/_show.html.erb [new file with mode: 0644]
sonar-server/src/main/webapp/WEB-INF/app/views/issue/_show_modal.html.erb [new file with mode: 0644]
sonar-server/src/main/webapp/WEB-INF/app/views/issue/_view.html.erb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/views/issue/show.html.erb [new file with mode: 0644]
sonar-server/src/main/webapp/WEB-INF/app/views/issue/view.html.erb [deleted file]
sonar-server/src/main/webapp/WEB-INF/app/views/issues/_list.html.erb
sonar-server/src/main/webapp/WEB-INF/app/views/shared/_source_display.erb
sonar-server/src/main/webapp/javascripts/issue.js
sonar-server/src/main/webapp/stylesheets/jquery-ui.css
sonar-server/src/main/webapp/stylesheets/layout.css
sonar-server/src/main/webapp/stylesheets/style.css
sonar-server/src/test/java/org/sonar/server/issue/InternalRubyIssueServiceTest.java