]> source.dussan.org Git - sonarqube.git/commit
SONAR-5007 Add first POC
authorStas Vilchik <vilchiks@gmail.com>
Thu, 6 Mar 2014 16:36:10 +0000 (17:36 +0100)
committerStas Vilchik <vilchiks@gmail.com>
Thu, 6 Mar 2014 16:36:17 +0000 (17:36 +0100)
commitc12eff0418cb450cf97d387a3fc599b189302927
treec9f1971fe6a32a6ffab628a6153cb2ec9142f7d9
parentfac55bf34a7a4bc24b4a5864a3ff6ff44a8431de
SONAR-5007 Add first POC
65 files changed:
plugins/sonar-core-plugin/src/main/resources/org/sonar/l10n/core.properties
sonar-server/src/main/webapp/WEB-INF/app/controllers/coding_rules_controller.rb [new file with mode: 0644]
sonar-server/src/main/webapp/WEB-INF/app/models/navigation.rb
sonar-server/src/main/webapp/WEB-INF/app/views/coding_rules/index.html.erb [new file with mode: 0644]
sonar-server/src/main/webapp/WEB-INF/app/views/coding_rules/templates/_coding_rules_actions_template.hbs.erb [new file with mode: 0644]
sonar-server/src/main/webapp/WEB-INF/app/views/coding_rules/templates/_coding_rules_detail_template.hbs.erb [new file with mode: 0644]
sonar-server/src/main/webapp/WEB-INF/app/views/coding_rules/templates/_coding_rules_filter_bar_template.hbs.erb [new file with mode: 0644]
sonar-server/src/main/webapp/WEB-INF/app/views/coding_rules/templates/_coding_rules_header_template.hbs.erb [new file with mode: 0644]
sonar-server/src/main/webapp/WEB-INF/app/views/coding_rules/templates/_coding_rules_layout.hbs.erb [new file with mode: 0644]
sonar-server/src/main/webapp/WEB-INF/app/views/coding_rules/templates/_coding_rules_list_empty_template.hbs.erb [new file with mode: 0644]
sonar-server/src/main/webapp/WEB-INF/app/views/coding_rules/templates/_coding_rules_list_item_template.hbs.erb [new file with mode: 0644]
sonar-server/src/main/webapp/WEB-INF/app/views/issues/templates/_no_issues.hbs.erb
sonar-server/src/main/webapp/WEB-INF/app/views/layouts/_head.html.erb
sonar-server/src/main/webapp/WEB-INF/app/views/layouts/_layout.html.erb
sonar-server/src/main/webapp/WEB-INF/app/views/navigator/templates/_more_criteria_filter_template.hbs.erb
sonar-server/src/main/webapp/WEB-INF/app/views/quality_gates/index.html.erb
sonar-server/src/main/webapp/javascripts/coding-rules/app.coffee [new file with mode: 0644]
sonar-server/src/main/webapp/javascripts/coding-rules/app.js [new file with mode: 0644]
sonar-server/src/main/webapp/javascripts/coding-rules/collections/coding-rules.coffee [new file with mode: 0644]
sonar-server/src/main/webapp/javascripts/coding-rules/collections/coding-rules.js [new file with mode: 0644]
sonar-server/src/main/webapp/javascripts/coding-rules/layout.coffee [new file with mode: 0644]
sonar-server/src/main/webapp/javascripts/coding-rules/layout.js [new file with mode: 0644]
sonar-server/src/main/webapp/javascripts/coding-rules/mockjax.coffee [new file with mode: 0644]
sonar-server/src/main/webapp/javascripts/coding-rules/mockjax.js [new file with mode: 0644]
sonar-server/src/main/webapp/javascripts/coding-rules/models/coding-rule.coffee [new file with mode: 0644]
sonar-server/src/main/webapp/javascripts/coding-rules/models/coding-rule.js [new file with mode: 0644]
sonar-server/src/main/webapp/javascripts/coding-rules/router.coffee [new file with mode: 0644]
sonar-server/src/main/webapp/javascripts/coding-rules/router.js [new file with mode: 0644]
sonar-server/src/main/webapp/javascripts/coding-rules/views/actions-view.coffee [new file with mode: 0644]
sonar-server/src/main/webapp/javascripts/coding-rules/views/actions-view.js [new file with mode: 0644]
sonar-server/src/main/webapp/javascripts/coding-rules/views/coding-rules-detail-view.coffee [new file with mode: 0644]
sonar-server/src/main/webapp/javascripts/coding-rules/views/coding-rules-detail-view.js [new file with mode: 0644]
sonar-server/src/main/webapp/javascripts/coding-rules/views/coding-rules-list-empty-view.coffee [new file with mode: 0644]
sonar-server/src/main/webapp/javascripts/coding-rules/views/coding-rules-list-empty-view.js [new file with mode: 0644]
sonar-server/src/main/webapp/javascripts/coding-rules/views/coding-rules-list-item-view.coffee [new file with mode: 0644]
sonar-server/src/main/webapp/javascripts/coding-rules/views/coding-rules-list-item-view.js [new file with mode: 0644]
sonar-server/src/main/webapp/javascripts/coding-rules/views/coding-rules-list-view.coffee [new file with mode: 0644]
sonar-server/src/main/webapp/javascripts/coding-rules/views/coding-rules-list-view.js [new file with mode: 0644]
sonar-server/src/main/webapp/javascripts/coding-rules/views/filter-bar-view.coffee [new file with mode: 0644]
sonar-server/src/main/webapp/javascripts/coding-rules/views/filter-bar-view.js [new file with mode: 0644]
sonar-server/src/main/webapp/javascripts/coding-rules/views/filters/quality-profile-filter-view.coffee [new file with mode: 0644]
sonar-server/src/main/webapp/javascripts/coding-rules/views/filters/quality-profile-filter-view.js [new file with mode: 0644]
sonar-server/src/main/webapp/javascripts/coding-rules/views/header-view.coffee [new file with mode: 0644]
sonar-server/src/main/webapp/javascripts/coding-rules/views/header-view.js [new file with mode: 0644]
sonar-server/src/main/webapp/javascripts/issues/extra.js
sonar-server/src/main/webapp/javascripts/navigator/filters/ajax-select-filters.js
sonar-server/src/main/webapp/javascripts/navigator/filters/choice-filters.js
sonar-server/src/main/webapp/javascripts/navigator/filters/filter-bar.js
sonar-server/src/main/webapp/javascripts/quality-gate/app.coffee
sonar-server/src/main/webapp/javascripts/quality-gate/app.js
sonar-server/src/main/webapp/javascripts/quality-gate/layout.coffee
sonar-server/src/main/webapp/javascripts/quality-gate/layout.js
sonar-server/src/main/webapp/javascripts/tests/translateSpec.coffee
sonar-server/src/main/webapp/javascripts/tests/translateSpec.js
sonar-server/src/main/webapp/javascripts/third-party/jquery.mockjax.js [new file with mode: 0644]
sonar-server/src/main/webapp/javascripts/translate.js
sonar-server/src/main/webapp/stylesheets/coding-rules.css [new file with mode: 0644]
sonar-server/src/main/webapp/stylesheets/coding-rules.less [new file with mode: 0644]
sonar-server/src/main/webapp/stylesheets/navigator.css
sonar-server/src/main/webapp/stylesheets/navigator/base.css
sonar-server/src/main/webapp/stylesheets/navigator/base.less
sonar-server/src/main/webapp/stylesheets/quality-gates.css
sonar-server/src/main/webapp/stylesheets/quality-gates.less
sonar-server/src/main/webapp/stylesheets/variables.less
sonar-server/wro.xml