├── server ├── sonar-search │ └── src │ │ └── test │ │ └── resources │ │ └── search.properties ├── sonar-web │ └── src │ │ └── main │ │ ├── hbs │ │ ├── navigator │ │ │ ├── choice-filter-template.hbs │ │ │ ├── more-criteria-filter.hbs │ │ │ ├── base-details-filter.hbs │ │ │ ├── favorite-filter.hbs │ │ │ ├── choice-filter.hbs │ │ │ ├── string-filter.hbs │ │ │ ├── checkbox-filter.hbs │ │ │ └── ajax-select-filter.hbs │ │ ├── analysis-reports │ │ │ └── analysis-reports-empty.hbs │ │ ├── nav │ │ │ ├── nav-search-empty.hbs │ │ │ ├── _nav-navbar-label.hbs │ │ │ └── _nav-logo.hbs │ │ ├── api-documentation │ │ │ ├── api-documentation-action-response.hbs │ │ │ └── api-documentation-actions.hbs │ │ ├── coding-rules │ │ │ ├── coding-rules-filters.hbs │ │ │ ├── facets │ │ │ │ ├── coding-rules-key-facet.hbs │ │ │ │ ├── _coding-rules-facet-header.hbs │ │ │ │ └── coding-rules-query-facet.hbs │ │ │ └── coding-rules-workspace-list.hbs │ │ ├── quality-gates │ │ │ ├── quality-gate-detail-conditions-empty.hbs │ │ │ ├── quality-gate-sidebar-list-empty.hbs │ │ │ ├── quality-gate-sidebar-list-item.hbs │ │ │ └── quality-gate-detail.hbs │ │ ├── issue │ │ │ └── issue-assign-form-option.hbs │ │ └── issues │ │ │ ├── issues-workspace-list.hbs │ │ │ └── facets │ │ │ ├── issues-context-facet.hbs │ │ │ └── _issues-facet-header.hbs │ │ ├── webapp │ │ ├── WEB-INF │ │ │ ├── app │ │ │ │ └── views │ │ │ │ │ ├── project │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── settings.html.erb │ │ │ │ │ └── pending_deletion.html.erb │ │ │ │ │ ├── plugins │ │ │ │ │ └── rails_page.erb │ │ │ │ │ ├── settings │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── _special.html.erb │ │ │ │ │ └── _single_value.html.erb │ │ │ │ │ ├── dashboard │ │ │ │ │ ├── empty.html.erb │ │ │ │ │ └── _widget_title.html.erb │ │ │ │ │ ├── dashboard2 │ │ │ │ │ ├── empty.html.erb │ │ │ │ │ └── _widget_title.html.erb │ │ │ │ │ ├── layouts │ │ │ │ │ └── _navbar.html.erb │ │ │ │ │ ├── issues │ │ │ │ │ └── search.html.erb │ │ │ │ │ ├── bulk_deletion │ │ │ │ │ └── pending_deletions.html.erb │ │ │ │ │ ├── coding_rules │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── quality_gates │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── encryption_configuration │ │ │ │ │ └── _encrypt.html.erb │ │ │ │ │ ├── api_documentation │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── resource │ │ │ │ │ └── _extension.html.erb │ │ │ │ │ └── shared │ │ │ │ │ └── _result_messages.html.erb │ │ │ ├── gems │ │ │ │ └── gems │ │ │ │ │ ├── rails-2.3.15 │ │ │ │ │ ├── configs │ │ │ │ │ │ └── empty.log │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── railties_path.rb │ │ │ │ │ │ └── rails │ │ │ │ │ │ │ └── version.rb │ │ │ │ │ └── helpers │ │ │ │ │ │ └── application_helper.rb │ │ │ │ │ ├── i18n-0.4.2 │ │ │ │ │ └── lib │ │ │ │ │ │ └── i18n │ │ │ │ │ │ ├── version.rb │ │ │ │ │ │ └── locale.rb │ │ │ │ │ ├── activerecord-jdbc-adapter-1.1.3 │ │ │ │ │ └── lib │ │ │ │ │ │ ├── active_record │ │ │ │ │ │ └── connection_adapters │ │ │ │ │ │ │ ├── h2_adapter.rb │ │ │ │ │ │ │ ├── jdbc_adapter.rb │ │ │ │ │ │ │ ├── jndi_adapter.rb │ │ │ │ │ │ │ ├── derby_adapter.rb │ │ │ │ │ │ │ ├── hsqldb_adapter.rb │ │ │ │ │ │ │ ├── mssql_adapter.rb │ │ │ │ │ │ │ ├── mysql2_adapter.rb │ │ │ │ │ │ │ ├── mysql_adapter.rb │ │ │ │ │ │ │ ├── oracle_adapter.rb │ │ │ │ │ │ │ ├── sqlite3_adapter.rb │ │ │ │ │ │ │ ├── informix_adapter.rb │ │ │ │ │ │ │ └── postgresql_adapter.rb │ │ │ │ │ │ ├── arjdbc │ │ │ │ │ │ ├── db2.rb │ │ │ │ │ │ ├── mimer.rb │ │ │ │ │ │ ├── sybase.rb │ │ │ │ │ │ ├── firebird.rb │ │ │ │ │ │ ├── jdbc.rb │ │ │ │ │ │ ├── oracle.rb │ │ │ │ │ │ ├── informix.rb │ │ │ │ │ │ ├── h2.rb │ │ │ │ │ │ ├── mysql.rb │ │ │ │ │ │ ├── hsqldb.rb │ │ │ │ │ │ ├── sqlite3.rb │ │ │ │ │ │ ├── derby.rb │ │ │ │ │ │ ├── mssql.rb │ │ │ │ │ │ └── postgresql.rb │ │ │ │ │ │ ├── jdbc_adapter.rb │ │ │ │ │ │ ├── jdbc_adapter │ │ │ │ │ │ ├── version.rb │ │ │ │ │ │ └── rake_tasks.rb │ │ │ │ │ │ └── arel │ │ │ │ │ │ └── engines │ │ │ │ │ │ └── sql │ │ │ │ │ │ └── compilers │ │ │ │ │ │ ├── h2_compiler.rb │ │ │ │ │ │ ├── derby_compiler.rb │ │ │ │ │ │ └── jdbc_compiler.rb │ │ │ │ │ ├── activesupport-2.3.15 │ │ │ │ │ └── lib │ │ │ │ │ │ ├── active_support │ │ │ │ │ │ ├── core_ext │ │ │ │ │ │ │ ├── process.rb │ │ │ │ │ │ │ ├── string │ │ │ │ │ │ │ │ └── bytesize.rb │ │ │ │ │ │ │ ├── module │ │ │ │ │ │ │ │ └── remove_method.rb │ │ │ │ │ │ │ └── file.rb │ │ │ │ │ │ ├── vendor │ │ │ │ │ │ │ └── i18n-0.4.1 │ │ │ │ │ │ │ │ └── i18n │ │ │ │ │ │ │ │ ├── version.rb │ │ │ │ │ │ │ │ └── locale.rb │ │ │ │ │ │ ├── json.rb │ │ │ │ │ │ └── json │ │ │ │ │ │ │ └── encoders │ │ │ │ │ │ │ └── symbol.rb │ │ │ │ │ │ └── activesupport.rb │ │ │ │ │ ├── fastercsv-1.4.0 │ │ │ │ │ └── AUTHORS │ │ │ │ │ ├── actionpack-2.3.15 │ │ │ │ │ └── lib │ │ │ │ │ │ ├── action_controller │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── rescues │ │ │ │ │ │ │ ├── unknown_action.erb │ │ │ │ │ │ │ └── missing_template.erb │ │ │ │ │ │ └── actionpack.rb │ │ │ │ │ ├── color-tools-1.3.0 │ │ │ │ │ └── lib │ │ │ │ │ │ └── color │ │ │ │ │ │ ├── hsl.rb │ │ │ │ │ │ └── rgb.rb │ │ │ │ │ ├── rack-1.1.6 │ │ │ │ │ └── lib │ │ │ │ │ │ └── rack │ │ │ │ │ │ └── handler │ │ │ │ │ │ ├── evented_mongrel.rb │ │ │ │ │ │ └── swiftiplied_mongrel.rb │ │ │ │ │ └── activerecord-2.3.15 │ │ │ │ │ └── lib │ │ │ │ │ └── activerecord.rb │ │ │ ├── vendor │ │ │ │ └── plugins │ │ │ │ │ ├── acts_as_tree │ │ │ │ │ └── init.rb │ │ │ │ │ └── restful_authentication │ │ │ │ │ └── init.rb │ │ │ ├── lib │ │ │ │ └── eastwood-1.1.0.jar │ │ │ └── config │ │ │ │ ├── locales │ │ │ │ ├── es.yml │ │ │ │ ├── ru.yml │ │ │ │ ├── HOW_TO_UPGRADE_LOCALES.txt │ │ │ │ ├── fr.yml │ │ │ │ └── de.yml │ │ │ │ └── initializers │ │ │ │ └── close_connections.rb │ │ ├── deploy │ │ │ └── readme.txt │ │ ├── META-INF │ │ │ └── init.rb │ │ ├── robots.txt │ │ ├── images │ │ │ ├── add.png │ │ │ ├── asc.png │ │ │ ├── csv.png │ │ │ ├── e16.gif │ │ │ ├── asc12.png │ │ │ ├── clock.png │ │ │ ├── cross.png │ │ │ ├── desc.png │ │ │ ├── help.png │ │ │ ├── logo.png │ │ │ ├── move.png │ │ │ ├── print.gif │ │ │ ├── q │ │ │ │ ├── BRC.png │ │ │ │ ├── CLA.png │ │ │ │ ├── DIR.png │ │ │ │ ├── FIL.png │ │ │ │ ├── LIB.png │ │ │ │ ├── PAC.png │ │ │ │ ├── SVW.png │ │ │ │ ├── TRK.png │ │ │ │ ├── UTS.png │ │ │ │ └── VW.png │ │ │ ├── sep12.png │ │ │ ├── sonar.png │ │ │ ├── star.png │ │ │ ├── tick.png │ │ │ ├── up_16.gif │ │ │ ├── user.gif │ │ │ ├── user.png │ │ │ ├── zoom.png │ │ │ ├── accept.png │ │ │ ├── actions.png │ │ │ ├── bc-gray.png │ │ │ ├── black-up.png │ │ │ ├── blue-up.png │ │ │ ├── bullet.png │ │ │ ├── compare.png │ │ │ ├── desc12.png │ │ │ ├── down_16.gif │ │ │ ├── favicon.ico │ │ │ ├── green-up.png │ │ │ ├── links │ │ │ │ ├── ci.png │ │ │ │ ├── scm.png │ │ │ │ ├── c_link.png │ │ │ │ ├── issue.png │ │ │ │ ├── scm_dev.png │ │ │ │ ├── external.png │ │ │ │ └── homepage.png │ │ │ ├── loading.gif │ │ │ ├── nodata.png │ │ │ ├── pencil.png │ │ │ ├── refresh.png │ │ │ ├── restore.gif │ │ │ ├── select2.png │ │ │ ├── spinner.gif │ │ │ ├── star_off.png │ │ │ ├── test │ │ │ │ ├── OK.png │ │ │ │ ├── ERROR.png │ │ │ │ ├── FAILURE.png │ │ │ │ └── SKIPPED.png │ │ │ ├── trend-up.png │ │ │ ├── trend │ │ │ │ ├── 0.png │ │ │ │ ├── -1-red.png │ │ │ │ ├── -2-red.png │ │ │ │ ├── 0-big.png │ │ │ │ ├── 1-black.png │ │ │ │ ├── 1-green.png │ │ │ │ ├── 1-red.png │ │ │ │ ├── 2-black.png │ │ │ │ ├── 2-green.png │ │ │ │ ├── 2-red.png │ │ │ │ ├── -1-black.png │ │ │ │ ├── -1-green.png │ │ │ │ ├── -2-black.png │ │ │ │ ├── -2-green.png │ │ │ │ ├── 1-red-big.png │ │ │ │ ├── 2-red-big.png │ │ │ │ ├── -1-black-big.png │ │ │ │ ├── -1-green-big.png │ │ │ │ ├── -1-red-big.png │ │ │ │ ├── -2-black-big.png │ │ │ │ ├── -2-green-big.png │ │ │ │ ├── -2-red-big.png │ │ │ │ ├── 1-black-big.png │ │ │ │ ├── 1-green-big.png │ │ │ │ ├── 2-black-big.png │ │ │ │ └── 2-green-big.png │ │ │ ├── warning.png │ │ │ ├── bin_closed.png │ │ │ ├── black-down.png │ │ │ ├── black-left.png │ │ │ ├── blue-down.png │ │ │ ├── blue-left.png │ │ │ ├── blue-right.png │ │ │ ├── bulk-edit.png │ │ │ ├── cross-gray.png │ │ │ ├── green-down.png │ │ │ ├── green-left.png │ │ │ ├── help_gray.gif │ │ │ ├── inherited.png │ │ │ ├── layout100.png │ │ │ ├── layout3070.png │ │ │ ├── layout5050.png │ │ │ ├── layout7030.png │ │ │ ├── levels │ │ │ │ ├── ok.png │ │ │ │ ├── error.png │ │ │ │ ├── none.png │ │ │ │ ├── warn.png │ │ │ │ └── notforie6 │ │ │ │ │ ├── ok.png │ │ │ │ │ ├── error.png │ │ │ │ │ ├── none.png │ │ │ │ │ └── warn.png │ │ │ ├── overrides.png │ │ │ ├── permalink.gif │ │ │ ├── permalink.png │ │ │ ├── priority │ │ │ │ ├── 0.gif │ │ │ │ ├── 0.png │ │ │ │ ├── 1.gif │ │ │ │ ├── 1.png │ │ │ │ ├── 2.gif │ │ │ │ ├── 2.png │ │ │ │ ├── 3.gif │ │ │ │ ├── 3.png │ │ │ │ ├── 4.gif │ │ │ │ ├── 4.png │ │ │ │ ├── INFO.gif │ │ │ │ ├── INFO.png │ │ │ │ ├── MAJOR.gif │ │ │ │ ├── MAJOR.png │ │ │ │ ├── MINOR.gif │ │ │ │ ├── MINOR.png │ │ │ │ ├── BLOCKER.gif │ │ │ │ ├── BLOCKER.png │ │ │ │ ├── CRITICAL.gif │ │ │ │ └── CRITICAL.png │ │ │ ├── rss-12x12.png │ │ │ ├── select2x2.png │ │ │ ├── up-blue-24.png │ │ │ ├── black-right.png │ │ │ ├── bullet-blue.png │ │ │ ├── bullet_black.png │ │ │ ├── bullet_white.png │ │ │ ├── controls │ │ │ │ ├── add.png │ │ │ │ ├── cross.png │ │ │ │ ├── delete.png │ │ │ │ ├── error.gif │ │ │ │ ├── move_down.png │ │ │ │ ├── move_left.png │ │ │ │ ├── move_up.png │ │ │ │ ├── warning.gif │ │ │ │ ├── move_right.png │ │ │ │ ├── resultset_next.png │ │ │ │ └── resultset_previous.png │ │ │ ├── event_alert.png │ │ │ ├── event_profile.png │ │ │ ├── exclamation.png │ │ │ ├── gray-stripes.png │ │ │ ├── green-right.png │ │ │ ├── information.png │ │ │ ├── layout333333.png │ │ │ ├── loading-small.gif │ │ │ ├── new-window-11.gif │ │ │ ├── new-window-16.gif │ │ │ ├── pencil-small.png │ │ │ ├── status │ │ │ │ ├── CLOSED.png │ │ │ │ ├── OPEN.png │ │ │ │ ├── REOPENED.png │ │ │ │ └── RESOLVED.png │ │ │ ├── tendency │ │ │ │ ├── none.png │ │ │ │ ├── -1-red.png │ │ │ │ ├── -2-red.png │ │ │ │ ├── 1-red.png │ │ │ │ ├── 2-red.png │ │ │ │ ├── -1-black.png │ │ │ │ ├── -1-green.png │ │ │ │ ├── -2-black.png │ │ │ │ ├── -2-green.png │ │ │ │ ├── 1-black.png │ │ │ │ ├── 1-green.png │ │ │ │ ├── 2-black.png │ │ │ │ ├── 2-green.png │ │ │ │ ├── 1-red-small.png │ │ │ │ ├── 2-red-small.png │ │ │ │ ├── none-small.png │ │ │ │ ├── -1-black-small.png │ │ │ │ ├── -1-green-small.png │ │ │ │ ├── -1-red-small.png │ │ │ │ ├── -2-black-small.png │ │ │ │ ├── -2-green-small.png │ │ │ │ ├── -2-red-small.png │ │ │ │ ├── 1-black-small.png │ │ │ │ ├── 1-green-small.png │ │ │ │ ├── 2-black-small.png │ │ │ │ └── 2-green-small.png │ │ │ ├── timemachine.png │ │ │ ├── transparent.gif │ │ │ ├── treemap_icon.png │ │ │ ├── bullet_arrow_up.gif │ │ │ ├── bullet_arrow_up.png │ │ │ ├── bullet_picture.png │ │ │ ├── calendar │ │ │ │ ├── calbtn.gif │ │ │ │ └── sprite.png │ │ │ ├── expand_collapse.jpg │ │ │ ├── feed-icon-14x14.png │ │ │ ├── layout │ │ │ │ ├── header-2.png │ │ │ │ ├── header_footer.png │ │ │ │ ├── header_footer_2.png │ │ │ │ ├── select-content.png │ │ │ │ ├── select-sidebar.png │ │ │ │ ├── header_footer_2_equal.png │ │ │ │ └── LICENSE.txt │ │ │ ├── menu_indicator.gif │ │ │ ├── reviews │ │ │ │ └── comment.png │ │ │ ├── transparent_16.gif │ │ │ ├── bullet_arrow_down.gif │ │ │ ├── bullet_arrow_down.png │ │ │ ├── bullet_arrow_right.gif │ │ │ ├── bullet_arrow_right.png │ │ │ ├── opensource-25x23.png │ │ │ ├── treemap_gradient.png │ │ │ ├── bullet_toggle_minus.png │ │ │ ├── treemap_gradient_inverted.png │ │ │ └── navigator │ │ │ │ ├── favorite-filters.png │ │ │ │ └── favorite-filters@2x.png │ │ └── fonts │ │ │ ├── sonar-5.1.eot │ │ │ ├── sonar-5.1.ttf │ │ │ ├── sonar-5.1.woff │ │ │ ├── Roboto-Bold-webfont.eot │ │ │ ├── Roboto-Bold-webfont.ttf │ │ │ ├── Roboto-Bold-webfont.woff │ │ │ ├── Roboto-Light-webfont.eot │ │ │ ├── Roboto-Light-webfont.ttf │ │ │ ├── Roboto-Light-webfont.woff │ │ │ ├── Roboto-Medium-webfont.eot │ │ │ ├── Roboto-Medium-webfont.ttf │ │ │ ├── Roboto-Medium-webfont.woff │ │ │ ├── Roboto-Regular-webfont.eot │ │ │ ├── Roboto-Regular-webfont.ttf │ │ │ └── Roboto-Regular-webfont.woff │ │ └── js │ │ └── tests │ │ └── e2e │ │ ├── views │ │ └── treemap.jade │ │ └── tests │ │ ├── issues-spec │ │ └── tags-modified.json │ │ ├── issues-page-should-open-issue-permalink │ │ └── app.json │ │ ├── coding-rules-page-should-show-empty-list │ │ └── search.json │ │ ├── coding-rules-page-should-create-manual-rules │ │ └── search.json │ │ ├── coding-rules-page-should-delete-manual-rules │ │ └── search-after.json │ │ └── quality-gates-spec │ │ └── list.json ├── sonar-server │ └── src │ │ ├── test │ │ └── resources │ │ │ └── org │ │ │ └── sonar │ │ │ └── server │ │ │ ├── db │ │ │ ├── invalid_db_data_file │ │ │ ├── migrations │ │ │ │ └── v51 │ │ │ │ │ └── AddNewCharacteristicsTest │ │ │ │ │ └── empty.xml │ │ │ └── ResultSetIteratorTest │ │ │ │ ├── feed.xml │ │ │ │ └── schema.sql │ │ │ ├── platform │ │ │ ├── ServerImplTest │ │ │ │ ├── empty-version.txt │ │ │ │ ├── version.txt │ │ │ │ └── build.properties │ │ │ ├── DefaultServerFileSystemTest │ │ │ │ ├── shouldFindPlugins │ │ │ │ │ └── extensions │ │ │ │ │ │ └── plugins │ │ │ │ │ │ ├── plugin1.jar │ │ │ │ │ │ └── plugin2.jar │ │ │ │ ├── shouldNotFailIfNoPlugins │ │ │ │ │ └── extensions │ │ │ │ │ │ └── plugins │ │ │ │ │ │ └── nojar.txt │ │ │ │ ├── testGetJdbcDriver │ │ │ │ │ └── extensions │ │ │ │ │ │ └── jdbc-driver │ │ │ │ │ │ ├── none │ │ │ │ │ │ └── nojar.txt │ │ │ │ │ │ └── mysql │ │ │ │ │ │ └── fake.jar │ │ │ │ ├── shouldNotFailIfNoCheckstyleExtensions │ │ │ │ │ └── extensions │ │ │ │ │ │ └── rules │ │ │ │ │ │ └── pmd │ │ │ │ │ │ └── pmd.xml │ │ │ │ └── shouldFindCheckstyleExtensions │ │ │ │ │ └── extensions │ │ │ │ │ └── rules │ │ │ │ │ └── checkstyle │ │ │ │ │ ├── my-rules.jar │ │ │ │ │ ├── my-rules.xml │ │ │ │ │ └── my-rules2.jar │ │ │ └── RailsAppsDeployerTest │ │ │ │ └── FakeRubyRailsApp.jar │ │ │ ├── startup │ │ │ ├── GwtPublisherTest │ │ │ │ └── myview │ │ │ │ │ ├── one.js │ │ │ │ │ └── two.js │ │ │ ├── JdbcDriverDeployerTest │ │ │ │ └── deploy │ │ │ │ │ └── my-driver.jar │ │ │ └── RegisterMetricsTest │ │ │ │ └── shouldAddUserManagesMetric.xml │ │ │ ├── rule │ │ │ ├── RegisterRulesTest │ │ │ │ └── empty.xml │ │ │ ├── db │ │ │ │ └── RuleDaoTest │ │ │ │ │ └── empty.xml │ │ │ └── ws │ │ │ │ ├── RulesWebServiceMediumTest │ │ │ │ ├── get_tags_filtered.json │ │ │ │ ├── get_tags_limited.json │ │ │ │ ├── get_tags.json │ │ │ │ ├── search_active_rules.json │ │ │ │ ├── search_no_rules.json │ │ │ │ └── search_template_rules.json │ │ │ │ ├── RepositoriesActionTest │ │ │ │ ├── repositories_squid.json │ │ │ │ ├── repositories_xoo.json │ │ │ │ └── repositories_common.json │ │ │ │ └── ShowActionMediumTest │ │ │ │ └── encode_html_description_of_manual_rule.json │ │ │ ├── issue │ │ │ ├── ServerIssueStorageTest │ │ │ │ └── empty.xml │ │ │ ├── ws │ │ │ │ ├── SearchActionMediumTest │ │ │ │ │ ├── no_issue.json │ │ │ │ │ ├── paging.json │ │ │ │ │ ├── apply_paging_with_one_component.json │ │ │ │ │ ├── paging_with_page_size_to_minus_one.json │ │ │ │ │ ├── apply_paging_with_multiple_components.json │ │ │ │ │ ├── ignore_paging_with_one_component.json │ │ │ │ │ ├── issue_with_comment_hidden.json │ │ │ │ │ └── deprecated_paging.json │ │ │ │ ├── SearchActionComponentsMediumTest │ │ │ │ │ └── no_issue.json │ │ │ │ └── AuthorsActionTest │ │ │ │ │ └── authors.json │ │ │ └── filter │ │ │ │ └── AppActionTest │ │ │ │ ├── anonymous_page.json │ │ │ │ └── logged_in_page.json │ │ │ ├── ws │ │ │ └── ListingWsTest │ │ │ │ ├── metrics_example.json │ │ │ │ └── response_example.json │ │ │ ├── component │ │ │ ├── db │ │ │ │ ├── SnapshotDaoTest │ │ │ │ │ └── empty.xml │ │ │ │ └── ComponentDaoTest │ │ │ │ │ └── empty.xml │ │ │ └── ws │ │ │ │ └── SearchActionTest │ │ │ │ ├── return_paged_result.json │ │ │ │ └── return_only_first_page.json │ │ │ ├── debt │ │ │ ├── DebtRulesXMLImporterTest │ │ │ │ └── fail_on_bad_xml.xml │ │ │ └── DebtCharacteristicsXMLImporterTest │ │ │ │ └── fail_on_bad_xml.xml │ │ │ ├── qualityprofile │ │ │ ├── QProfileBackuperMediumTest │ │ │ │ ├── bad-xml-backup.xml │ │ │ │ ├── not-xml-backup.txt │ │ │ │ └── empty.xml │ │ │ └── QProfileRuleLookupTest │ │ │ │ ├── shared │ │ │ │ ├── active_rule523.json │ │ │ │ ├── active_rule25.json │ │ │ │ └── active_rule391.json │ │ │ │ ├── find_active_rules_with_inheritance │ │ │ │ └── active_rule25.json │ │ │ │ └── find_inactive_rules_with_tags │ │ │ │ ├── active_rule_ace.json │ │ │ │ └── active_rule_empty.json │ │ │ ├── user │ │ │ └── db │ │ │ │ ├── GroupDaoTest │ │ │ │ ├── empty.xml │ │ │ │ ├── insert-result.xml │ │ │ │ └── select_by_key.xml │ │ │ │ └── UserGroupDaoTest │ │ │ │ └── insert-result.xml │ │ │ ├── computation │ │ │ ├── db │ │ │ │ └── AnalysisReportDaoTest │ │ │ │ │ ├── empty.xml │ │ │ │ │ ├── truncate-result.xml │ │ │ │ │ └── zip.zip │ │ │ ├── step │ │ │ │ └── SwitchSnapshotStepTest │ │ │ │ │ └── empty.xml │ │ │ ├── ws │ │ │ │ └── SubmitReportWsActionTest │ │ │ │ │ └── submit_report.json │ │ │ ├── AnalysisReportServiceTest │ │ │ │ └── report-folder │ │ │ │ │ └── empty.xml │ │ │ └── ComputationServiceTest │ │ │ │ └── shared.xml │ │ │ ├── source │ │ │ └── ws │ │ │ │ ├── IndexActionTest │ │ │ │ └── index-result.json │ │ │ │ └── ShowActionTest │ │ │ │ └── show_source_with_params_from_and_to.json │ │ │ ├── language │ │ │ └── ws │ │ │ │ └── LanguageWsTest │ │ │ │ ├── list_filtered_key.json │ │ │ │ ├── list_limited.json │ │ │ │ └── list_filtered_name.json │ │ │ ├── test │ │ │ └── ws │ │ │ │ └── CoverageShowActionTest │ │ │ │ └── show_coverage_with_from_and_to.json │ │ │ ├── view │ │ │ └── index │ │ │ │ └── ViewIndexTest │ │ │ │ └── view1.json │ │ │ ├── search │ │ │ └── ESNodeTest │ │ │ │ ├── data-es-clean.zip │ │ │ │ └── data-es-corrupt.zip │ │ │ └── plugins │ │ │ ├── PluginMetadataTest │ │ │ └── foo-plugin.jar │ │ │ ├── PluginClassLoadersTest │ │ │ ├── extension.jar │ │ │ └── foo-plugin.jar │ │ │ └── PluginMetadataLoaderTest │ │ │ ├── old-plugin.jar │ │ │ ├── foo-plugin-1.0.jar │ │ │ ├── foo-plugin-2.0.jar │ │ │ └── not-a-plugin.jar │ │ └── main │ │ └── resources │ │ ├── build.properties │ │ └── org │ │ └── sonar │ │ └── server │ │ ├── authentication │ │ └── ws │ │ │ └── example-validate.json │ │ ├── issue │ │ └── ws │ │ │ ├── example-tags.json │ │ │ ├── example-transitions.json │ │ │ └── example-component-tags.json │ │ ├── platform │ │ └── ws │ │ │ ├── example-index.json │ │ │ └── example-setup.json │ │ ├── rule │ │ └── ws │ │ │ └── example-tags.json │ │ ├── plugins │ │ └── example-batch-index.txt │ │ ├── source │ │ └── ws │ │ │ ├── example-scm.json │ │ │ └── example-raw.txt │ │ ├── test │ │ └── ws │ │ │ └── coverage-example-show.json │ │ ├── component │ │ └── ws │ │ │ └── projects-example-create.json │ │ └── qualitygate │ │ └── ws │ │ └── example-list.json ├── sonar-ws-client │ └── src │ │ └── test │ │ └── resources │ │ ├── server_setup │ │ ├── ok.json │ │ └── ko.json │ │ ├── authentication │ │ ├── authentication_valid.json │ │ └── authentication_invalid.json │ │ ├── properties │ │ ├── single.json │ │ └── many.json │ │ ├── plugins │ │ └── plugins.json │ │ ├── server │ │ ├── status_missing.json │ │ └── server.json │ │ ├── events │ │ └── events.json │ │ ├── org │ │ └── sonar │ │ │ └── wsclient │ │ │ └── issue │ │ │ └── internal │ │ │ └── IssueJsonParserTest │ │ │ ├── getTransitions.json │ │ │ └── empty.json │ │ ├── metrics │ │ └── one_metric.json │ │ └── dependency_tree │ │ └── single_depth.json ├── sonar-process │ └── src │ │ └── test │ │ └── resources │ │ ├── org │ │ └── sonar │ │ │ └── process │ │ │ ├── AesCipherTest │ │ │ ├── bad_secret_key.txt │ │ │ ├── aes_secret_key.txt │ │ │ ├── other_secret_key.txt │ │ │ └── non_trimmed_secret_key.txt │ │ │ └── PropsTest │ │ │ └── sonar.properties │ │ └── sonar-dummy-app.jar └── sonar-process-monitor │ └── src │ └── test │ └── resources │ ├── org │ └── sonar │ │ └── process │ │ ├── AesCipherTest │ │ ├── bad_secret_key.txt │ │ ├── aes_secret_key.txt │ │ ├── other_secret_key.txt │ │ └── non_trimmed_secret_key.txt │ │ └── PropsTest │ │ └── sonar.properties │ └── sonar-dummy-app.jar ├── sonar-application └── src │ ├── test │ └── resources │ │ └── conf │ │ └── sonar.properties │ └── main │ └── assembly │ ├── temp │ └── README.txt │ ├── data │ └── README.txt │ └── extensions │ └── plugins │ └── README.txt ├── sonar-plugin-api ├── src │ ├── main │ │ └── resources │ │ │ └── sq-version.txt │ └── test │ │ ├── resources │ │ ├── org │ │ │ └── sonar │ │ │ │ └── api │ │ │ │ ├── utils │ │ │ │ ├── UriReaderTest │ │ │ │ │ └── foo.txt │ │ │ │ ├── ZipUtilsTest │ │ │ │ │ ├── shouldZipDirectory │ │ │ │ │ │ ├── bar.txt │ │ │ │ │ │ ├── foo.txt │ │ │ │ │ │ └── dir1 │ │ │ │ │ │ │ └── hello.properties │ │ │ │ │ └── shouldUnzipFile.zip │ │ │ │ ├── XpathParserTest │ │ │ │ │ ├── unvalid.xml │ │ │ │ │ └── sample.xml │ │ │ │ └── StaxParserTest │ │ │ │ │ └── xml-dtd-test.xml │ │ │ │ ├── web │ │ │ │ └── AbstractRubyTemplateTest │ │ │ │ │ └── template.erb │ │ │ │ ├── config │ │ │ │ └── AesCipherTest │ │ │ │ │ ├── bad_secret_key.txt │ │ │ │ │ ├── aes_secret_key.txt │ │ │ │ │ ├── other_secret_key.txt │ │ │ │ │ └── non_trimmed_secret_key.txt │ │ │ │ ├── scan │ │ │ │ └── filesystem │ │ │ │ │ ├── sample-with-symlink │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── testx │ │ │ │ │ └── xources │ │ │ │ │ └── sample │ │ │ │ │ ├── xources │ │ │ │ │ └── hello │ │ │ │ │ │ ├── HelloJava.xoo.measures │ │ │ │ │ │ ├── helloscala.xoo.measures │ │ │ │ │ │ ├── helloscala.xoo │ │ │ │ │ │ └── HelloJava.xoo │ │ │ │ │ ├── testx │ │ │ │ │ ├── ClassOneTest.xoo.measures │ │ │ │ │ └── ClassOneTest.xoo │ │ │ │ │ └── sonar-project.properties │ │ │ │ ├── resources │ │ │ │ └── DefaultProjectFileSystemTest │ │ │ │ │ ├── hidden-files │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ └── java │ │ │ │ │ │ ├── foo.sql │ │ │ │ │ │ ├── .hidden │ │ │ │ │ │ └── .hiddendir │ │ │ │ │ │ └── file_in_hidden_dir.txt │ │ │ │ │ ├── nonexistent-dirs │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ └── java │ │ │ │ │ ├── sample-with-different-suffixes │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ └── java │ │ │ │ │ │ ├── foo.c │ │ │ │ │ │ └── foo.sql │ │ │ │ │ └── sample │ │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ └── java │ │ │ │ │ │ └── foo │ │ │ │ │ │ ├── Bar.java │ │ │ │ │ │ └── Whizz.java │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── foo │ │ │ │ │ └── BarTest.java │ │ │ │ └── server │ │ │ │ ├── ws │ │ │ │ └── WebServiceTest │ │ │ │ │ └── response-example.txt │ │ │ │ └── rule │ │ │ │ ├── RulesDefinitionXmlLoaderTest │ │ │ │ └── invalid.xml │ │ │ │ └── RulesDefinitionTest │ │ │ │ ├── sample.md │ │ │ │ └── sample.html │ │ ├── sonar │ │ │ └── bundles │ │ │ │ ├── Test_fr.properties │ │ │ │ ├── PluginFoo.properties │ │ │ │ ├── PluginFoo_es.properties │ │ │ │ └── Test.properties │ │ └── META-INF │ │ │ └── MANIFEST.MF │ │ └── scripts │ │ ├── forever.sh │ │ ├── echo.bat │ │ ├── output.bat │ │ ├── output.sh │ │ ├── echo.sh │ │ └── forever.bat └── test-resources │ ├── org │ └── sonar │ │ └── api │ │ └── resources │ │ └── DefaultProjectFileSystemTest │ │ └── shouldExcludeDirectoriesStartingWithDot │ │ └── src │ │ └── org │ │ ├── .sonar │ │ └── Excluded2.java │ │ ├── .dirPrefixedWithDot │ │ └── Excluded.java │ │ └── sonar │ │ └── Included.java │ └── README.txt ├── sonar-batch ├── src │ ├── test │ │ └── resources │ │ │ ├── mediumtest │ │ │ └── xoo │ │ │ │ ├── sample-with-symlink │ │ │ │ ├── .gitignore │ │ │ │ ├── testx │ │ │ │ ├── xources │ │ │ │ └── sonar-project.properties │ │ │ │ └── sample │ │ │ │ ├── xources │ │ │ │ └── hello │ │ │ │ │ ├── HelloJava.xoo.measures │ │ │ │ │ ├── helloscala.xoo.measures │ │ │ │ │ ├── helloscala.xoo │ │ │ │ │ ├── HelloJava.xoo │ │ │ │ │ └── HelloJava.xoo.scm │ │ │ │ ├── testx │ │ │ │ ├── ClassOneTest.xoo.measures │ │ │ │ └── ClassOneTest.xoo │ │ │ │ └── sonar-project.properties │ │ │ └── org │ │ │ └── sonar │ │ │ └── batch │ │ │ ├── bootstrap │ │ │ ├── BatchPluginRepositoryTest │ │ │ │ └── checkstyle-ext.xml │ │ │ └── JdbcDriverHolderTest │ │ │ │ └── jdbc-driver.jar │ │ │ ├── scan │ │ │ ├── ProjectReactorBuilderTest │ │ │ │ ├── shouldFilterFiles │ │ │ │ │ ├── exclude.txt │ │ │ │ │ └── include.txt │ │ │ │ ├── simple-project │ │ │ │ │ ├── libs │ │ │ │ │ │ ├── lib1.txt │ │ │ │ │ │ └── lib2.txt │ │ │ │ │ └── sources │ │ │ │ │ │ └── Fake.java │ │ │ │ ├── simple-project-with-build-dir │ │ │ │ │ ├── build │ │ │ │ │ │ └── report.txt │ │ │ │ │ └── sources │ │ │ │ │ │ └── Fake.java │ │ │ │ ├── multi-module-definitions-moduleKey │ │ │ │ │ ├── module2 │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── Fake.java │ │ │ │ │ └── module1 │ │ │ │ │ │ └── sources │ │ │ │ │ │ └── Fake.java │ │ │ │ ├── simple-project-with-unexisting-binary │ │ │ │ │ └── sources │ │ │ │ │ │ └── Fake.java │ │ │ │ ├── simple-project-with-unexisting-lib │ │ │ │ │ └── sources │ │ │ │ │ │ └── Fake.java │ │ │ │ ├── multi-language-definitions-all-in-root │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ ├── groovy │ │ │ │ │ │ └── Fake.groovy │ │ │ │ │ │ └── java │ │ │ │ │ │ └── Fake.java │ │ │ │ ├── multi-module-definitions-all-in-root │ │ │ │ │ ├── module2 │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── Fake.java │ │ │ │ │ └── module1 │ │ │ │ │ │ └── sources │ │ │ │ │ │ └── Fake.java │ │ │ │ ├── multi-module-with-basedir │ │ │ │ │ └── modules │ │ │ │ │ │ └── module1 │ │ │ │ │ │ └── sources │ │ │ │ │ │ └── Fake.java │ │ │ │ ├── multi-module-with-explicit-unexisting-lib │ │ │ │ │ └── module1 │ │ │ │ │ │ └── src │ │ │ │ │ │ └── Fake.java │ │ │ │ ├── multi-module-with-unexisting-source-dir │ │ │ │ │ └── module1 │ │ │ │ │ │ └── src │ │ │ │ │ │ └── Fake.java │ │ │ │ ├── simple-project-with-unexisting-test-dir │ │ │ │ │ └── sources │ │ │ │ │ │ └── Fake.java │ │ │ │ ├── big-multi-module-definitions-all-in-root │ │ │ │ │ ├── module2 │ │ │ │ │ │ └── sources │ │ │ │ │ │ │ └── Fake.java │ │ │ │ │ └── module1 │ │ │ │ │ │ ├── module11 │ │ │ │ │ │ └── sources │ │ │ │ │ │ │ └── Fake.java │ │ │ │ │ │ └── module12 │ │ │ │ │ │ └── sources │ │ │ │ │ │ └── Fake.java │ │ │ │ ├── multi-module-definitions-same-prefix │ │ │ │ │ ├── module1.feature │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── Fake.java │ │ │ │ │ └── module1 │ │ │ │ │ │ └── sources │ │ │ │ │ │ └── Fake.java │ │ │ │ ├── multi-module-with-explicit-unexisting-binary-dir │ │ │ │ │ └── module1 │ │ │ │ │ │ └── src │ │ │ │ │ │ └── Fake.java │ │ │ │ ├── multi-module-with-explicit-unexisting-test-dir │ │ │ │ │ └── module1 │ │ │ │ │ │ └── src │ │ │ │ │ │ └── Fake.java │ │ │ │ ├── multi-module-with-unexisting-test-bin-lib-dir │ │ │ │ │ └── module1 │ │ │ │ │ │ └── src │ │ │ │ │ │ └── Fake.java │ │ │ │ ├── shouldGetFile │ │ │ │ │ └── foo.properties │ │ │ │ ├── shouldGetList │ │ │ │ │ └── foo.properties │ │ │ │ └── simple-project-with-lib-dir │ │ │ │ │ ├── lib │ │ │ │ │ └── Fake.class │ │ │ │ │ └── sources │ │ │ │ │ └── Fake.java │ │ │ └── DeprecatedProjectReactorBuilderTest │ │ │ │ ├── multi-module-with-configfile │ │ │ │ └── any-folder │ │ │ │ │ ├── sources │ │ │ │ │ └── Fake.java │ │ │ │ │ └── any-file.properties │ │ │ │ ├── multi-module-definitions-in-each-module │ │ │ │ ├── module1 │ │ │ │ │ └── sources │ │ │ │ │ │ └── Fake.java │ │ │ │ └── module2 │ │ │ │ │ └── newBaseDir │ │ │ │ │ └── src │ │ │ │ │ └── Fake.java │ │ │ │ ├── multi-module-definitions-in-each-module-inherited │ │ │ │ ├── module1 │ │ │ │ │ ├── sources │ │ │ │ │ │ └── Fake.java │ │ │ │ │ └── sonar-project.properties │ │ │ │ └── module2 │ │ │ │ │ └── newBaseDir │ │ │ │ │ └── src │ │ │ │ │ └── Fake.java │ │ │ │ └── multi-module-with-configfile-and-overwritten-basedir │ │ │ │ └── any-folder │ │ │ │ └── sources │ │ │ │ └── Fake.java │ │ │ ├── index │ │ │ ├── MeasurePersisterTest │ │ │ │ └── empty.xml │ │ │ ├── DuplicationPersisterTest │ │ │ │ └── empty.xml │ │ │ └── FileHashesPersisterTest │ │ │ │ └── should_persist_component_data.xml │ │ │ ├── issue │ │ │ ├── ScanIssueStorageTest │ │ │ │ ├── should_fail_to_load_component_id_if_unknown_component.xml │ │ │ │ └── should_load_component_id_from_db.xml │ │ │ └── tracking │ │ │ │ └── IssueTrackingTest │ │ │ │ └── example2-v1.txt │ │ │ ├── design │ │ │ └── DsmSerializerTest │ │ │ │ └── dsm.json │ │ │ └── source │ │ │ └── CodeColorizersTest │ │ │ └── Person.js │ └── main │ │ └── resources │ │ └── org │ │ └── sonar │ │ └── batch │ │ └── scan │ │ └── report │ │ └── issuesreport_files │ │ ├── DIR.png │ │ ├── FIL.png │ │ ├── PRJ.png │ │ ├── sep12.png │ │ ├── sonar.eot │ │ ├── sonar.ttf │ │ ├── favicon.ico │ │ ├── sonar.woff │ │ └── sonarqube-24x100.png └── test-resources │ └── DefaultModuleFileSystemTest │ ├── main_and_test_files │ └── src │ │ ├── main │ │ └── java │ │ │ ├── Foo.java │ │ │ └── Hello.java │ │ └── test │ │ └── java │ │ ├── FooTest.java │ │ └── HelloTest.java │ └── exclude_dir_starting_with_dot │ └── src │ └── org │ ├── .sonar │ └── Excluded2.java │ ├── .dirPrefixedWithDot │ └── Excluded.java │ └── sonar │ └── Included.java ├── sonar-core └── src │ └── test │ └── resources │ └── org │ └── sonar │ ├── core │ ├── plugins │ │ ├── checkstyle-extension.xml │ │ ├── fake2-plugin-1.1.jar │ │ ├── fake1bis-plugin-1.0.jar │ │ ├── PluginClassloadersTest │ │ │ ├── bar.jar │ │ │ └── foo.jar │ │ ├── sonar-checkstyle-plugin-2.8.jar │ │ ├── sonar-cobertura-plugin-3.1.1.jar │ │ ├── sonar-switch-off-violations-plugin-1.1.jar │ │ └── sonar-checkstyle-extensions-plugin-0.1-SNAPSHOT.jar │ ├── properties │ │ └── PropertiesDaoTest │ │ │ ├── insert.xml │ │ │ ├── insertGlobalProperties.xml │ │ │ ├── should_not_rename_if_same_key.xml │ │ │ ├── insertGlobalProperties-result.xml │ │ │ ├── should_not_rename_if_same_key-result.xml │ │ │ ├── updateGlobalProperties-result.xml │ │ │ └── updateGlobalProperties.xml │ ├── rule │ │ └── RuleDaoTest │ │ │ ├── empty.xml │ │ │ ├── insert_parameter.xml │ │ │ ├── update_parameter.xml │ │ │ └── insert_parameter-result.xml │ ├── issue │ │ └── db │ │ │ ├── IssueChangeDaoTest │ │ │ └── empty.xml │ │ │ ├── ActionPlanDaoTest │ │ │ └── shared.xml │ │ │ └── ActionPlanStatsDaoTest │ │ │ └── shared.xml │ ├── persistence │ │ └── DatabaseVersionTest │ │ │ └── getVersion_no_rows.xml │ ├── resource │ │ ├── ResourceDaoTest │ │ │ └── insert.xml │ │ ├── ResourceIndexerDaoTest │ │ │ ├── shouldIndexResource.xml │ │ │ ├── shouldIndexTwoLettersLongResource.xml │ │ │ ├── shouldIndexTwoLettersLongResource-result.xml │ │ │ ├── shouldReIndexNewTwoLettersLongResource-result.xml │ │ │ └── shouldReIndexTwoLettersLongResource-result.xml │ │ └── DefaultResourcePermissionsTest │ │ │ ├── grantUserRole.xml │ │ │ ├── grantGroupRole.xml │ │ │ └── grantGroupRole_anyone.xml │ ├── user │ │ ├── AuthorDaoTest │ │ │ ├── shouldInsertAuthor.xml │ │ │ ├── add_missing_module_uuid_path.xml │ │ │ ├── shouldInsertAuthorAndDeveloper.xml │ │ │ ├── shouldPreventAuthorsDuplication.xml │ │ │ ├── shouldPreventAuthorsDuplication-result.xml │ │ │ ├── shouldSelectByLogin.xml │ │ │ └── shouldInsertAuthor-result.xml │ │ └── UserDaoTest │ │ │ ├── insert-result.xml │ │ │ └── update_user.xml │ ├── dashboard │ │ ├── ActiveDashboardDaoTest │ │ │ ├── empty.xml │ │ │ ├── shouldInsert.xml │ │ │ └── shouldInsert-result.xml │ │ └── DashboardDaoTest │ │ │ └── shouldInsert.xml │ ├── qualitygate │ │ └── db │ │ │ ├── QualityGateDaoTest │ │ │ ├── insert.xml │ │ │ ├── insert-result.xml │ │ │ └── delete-result.xml │ │ │ └── QualityGateConditionDaoTest │ │ │ ├── insert.xml │ │ │ └── insert-result.xml │ ├── qualityprofile │ │ └── db │ │ │ └── ActiveRuleDaoTest │ │ │ ├── empty.xml │ │ │ └── insert_parameter-result.xml │ ├── template │ │ └── LoadedTemplateDaoTest │ │ │ ├── shouldInsert.xml │ │ │ ├── shouldCountByTypeAndKey.xml │ │ │ └── shouldInsert-result.xml │ ├── i18n │ │ └── I18nClassloaderTest │ │ │ └── org │ │ │ └── sonar │ │ │ └── l10n │ │ │ └── checkstyle.properties │ ├── permission │ │ └── PermissionTemplateDaoTest │ │ │ ├── createPermissionTemplate.xml │ │ │ └── createNonAsciiPermissionTemplate.xml │ └── dependency │ │ └── ResourceSnapshotMapperTest │ │ └── fixture.xml │ └── l10n │ ├── core_fr.properties │ ├── sqale.properties │ ├── checkstyle_fr.properties │ ├── sqale_fr.properties │ └── checkstyle.properties ├── sonar-testing-harness └── src │ └── test │ └── resources │ └── org │ └── sonar │ ├── l10n │ ├── noMissingKeys.properties │ ├── noMissingKeys_fr.properties │ ├── myPlugin_fr.properties │ ├── myPlugin_fr_CA.properties │ ├── myPlugin_fr_QB.properties │ └── myPlugin.properties │ └── test │ ├── TestUtilsTest │ └── getResource │ │ └── foo.txt │ └── i18n │ └── BundleSynchronizedMatcherTest │ └── bundle.properties ├── microbenchmark-template └── README.md ├── format-headers.sh ├── sonar-colorizer └── src │ └── test │ └── resources │ └── org │ └── sonar │ └── colorizer │ └── samples │ └── SingleLine.java ├── plugins └── sonar-core-plugin │ └── src │ ├── main │ └── resources │ │ └── org │ │ └── sonar │ │ └── plugins │ │ └── core │ │ └── widgets │ │ └── welcome.html.erb │ └── test │ └── resources │ └── org │ └── sonar │ └── plugins │ └── core │ └── timemachine │ └── ViolationTrackingTest │ └── example2-v1.txt ├── .gitattributes ├── third-party-licenses.sh ├── sonar-home └── src │ └── test │ └── resources │ └── sonar-checkstyle-plugin-2.8.jar ├── jacoco-build.sh ├── sonar-batch-protocol └── compile_protobuf.sh └── sonar-duplications └── test-resources └── README.txt /server/sonar-search/src/test/resources/search.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sonar-application/src/test/resources/conf/sonar.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/hbs/navigator/choice-filter-template.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/app/views/project/index.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/main/resources/sq-version.txt: -------------------------------------------------------------------------------- 1 | ${project.version} 2 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/db/invalid_db_data_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/rails-2.3.15/configs/empty.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/utils/UriReaderTest/foo.txt: -------------------------------------------------------------------------------- 1 | in foo -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/mediumtest/xoo/sample-with-symlink/.gitignore: -------------------------------------------------------------------------------- 1 | .sonar 2 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/mediumtest/xoo/sample-with-symlink/testx: -------------------------------------------------------------------------------- 1 | ../sample/testx/ -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/plugins/checkstyle-extension.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/l10n/core_fr.properties: -------------------------------------------------------------------------------- 1 | any=Tous 2 | empty= 3 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/l10n/sqale.properties: -------------------------------------------------------------------------------- 1 | sqale.page=Sqale page title -------------------------------------------------------------------------------- /sonar-testing-harness/src/test/resources/org/sonar/l10n/noMissingKeys.properties: -------------------------------------------------------------------------------- 1 | foo=Foo -------------------------------------------------------------------------------- /microbenchmark-template/README.md: -------------------------------------------------------------------------------- 1 | Template for quickly write micro-benchmarks with JMH 2 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/hbs/navigator/more-criteria-filter.hbs: -------------------------------------------------------------------------------- 1 | {{t "moreCriteria"}} 2 | -------------------------------------------------------------------------------- /server/sonar-ws-client/src/test/resources/server_setup/ok.json: -------------------------------------------------------------------------------- 1 | { 2 | "status" : "ok" 3 | } -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/mediumtest/xoo/sample-with-symlink/xources: -------------------------------------------------------------------------------- 1 | ../sample/xources/ -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/web/AbstractRubyTemplateTest/template.erb: -------------------------------------------------------------------------------- 1 | ok -------------------------------------------------------------------------------- /sonar-testing-harness/src/test/resources/org/sonar/test/TestUtilsTest/getResource/foo.txt: -------------------------------------------------------------------------------- 1 | foo -------------------------------------------------------------------------------- /format-headers.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Set correct copyright headers 3 | 4 | mvn license:format 5 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/platform/ServerImplTest/empty-version.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/startup/GwtPublisherTest/myview/one.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/startup/GwtPublisherTest/myview/two.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/hbs/analysis-reports/analysis-reports-empty.hbs: -------------------------------------------------------------------------------- 1 | No reports to show 2 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/deploy/readme.txt: -------------------------------------------------------------------------------- 1 | Please note that this file must not be deleted. -------------------------------------------------------------------------------- /server/sonar-ws-client/src/test/resources/authentication/authentication_valid.json: -------------------------------------------------------------------------------- 1 | {"valid":true} -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/l10n/checkstyle_fr.properties: -------------------------------------------------------------------------------- 1 | checkstyle.rule1.name=Rule un -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/l10n/sqale_fr.properties: -------------------------------------------------------------------------------- 1 | sqale.page=Titre de la page Sqale -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/sonar/bundles/Test_fr.properties: -------------------------------------------------------------------------------- 1 | test.one=Un 2 | test.two=Deux -------------------------------------------------------------------------------- /server/sonar-process/src/test/resources/org/sonar/process/AesCipherTest/bad_secret_key.txt: -------------------------------------------------------------------------------- 1 | badbadbad== -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/platform/ServerImplTest/version.txt: -------------------------------------------------------------------------------- 1 | 1.0 2 | -------------------------------------------------------------------------------- /server/sonar-ws-client/src/test/resources/authentication/authentication_invalid.json: -------------------------------------------------------------------------------- 1 | {"valid":false} -------------------------------------------------------------------------------- /server/sonar-ws-client/src/test/resources/properties/single.json: -------------------------------------------------------------------------------- 1 | [{"key":"myprop","value":"myvalue"}] -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/properties/PropertiesDaoTest/insert.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/l10n/checkstyle.properties: -------------------------------------------------------------------------------- 1 | checkstyle.rule1.name=Rule one 2 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/config/AesCipherTest/bad_secret_key.txt: -------------------------------------------------------------------------------- 1 | badbadbad== -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/rule/RegisterRulesTest/empty.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/hbs/nav/nav-search-empty.hbs: -------------------------------------------------------------------------------- 1 | {{t 'no_results'}} 2 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/bootstrap/BatchPluginRepositoryTest/checkstyle-ext.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/ProjectReactorBuilderTest/shouldFilterFiles/exclude.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/ProjectReactorBuilderTest/shouldFilterFiles/include.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/rule/RuleDaoTest/empty.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/scan/filesystem/sample-with-symlink/.gitignore: -------------------------------------------------------------------------------- 1 | .sonar 2 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/scan/filesystem/sample-with-symlink/testx: -------------------------------------------------------------------------------- 1 | ../sample/testx/ -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/utils/ZipUtilsTest/shouldZipDirectory/bar.txt: -------------------------------------------------------------------------------- 1 | barrrrrrrrr -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/utils/ZipUtilsTest/shouldZipDirectory/foo.txt: -------------------------------------------------------------------------------- 1 | fooooooooooo -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/sonar/bundles/PluginFoo.properties: -------------------------------------------------------------------------------- 1 | foo.hello=Hello 2 | foo.world=World -------------------------------------------------------------------------------- /server/sonar-process-monitor/src/test/resources/org/sonar/process/AesCipherTest/bad_secret_key.txt: -------------------------------------------------------------------------------- 1 | badbadbad== -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/issue/ServerIssueStorageTest/empty.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/startup/JdbcDriverDeployerTest/deploy/my-driver.jar: -------------------------------------------------------------------------------- 1 | foooo -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/ws/ListingWsTest/metrics_example.json: -------------------------------------------------------------------------------- 1 | {"metrics":[]} 2 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/hbs/api-documentation/api-documentation-action-response.hbs: -------------------------------------------------------------------------------- 1 | {{example}} -------------------------------------------------------------------------------- /server/sonar-ws-client/src/test/resources/server_setup/ko.json: -------------------------------------------------------------------------------- 1 | { 2 | "status" : "ko", 3 | "msg": "error" 4 | } -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/index/MeasurePersisterTest/empty.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/ProjectReactorBuilderTest/simple-project/libs/lib1.txt: -------------------------------------------------------------------------------- 1 | lib1 -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/ProjectReactorBuilderTest/simple-project/libs/lib2.txt: -------------------------------------------------------------------------------- 1 | lib2 -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/config/AesCipherTest/aes_secret_key.txt: -------------------------------------------------------------------------------- 1 | 0PZz+G+f8mjr3sPn4+AhHg== -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/scan/filesystem/sample-with-symlink/xources: -------------------------------------------------------------------------------- 1 | ../sample/xources/ -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/utils/ZipUtilsTest/shouldZipDirectory/dir1/hello.properties: -------------------------------------------------------------------------------- 1 | a=b -------------------------------------------------------------------------------- /server/sonar-process/src/test/resources/org/sonar/process/AesCipherTest/aes_secret_key.txt: -------------------------------------------------------------------------------- 1 | 0PZz+G+f8mjr3sPn4+AhHg== -------------------------------------------------------------------------------- /server/sonar-process/src/test/resources/org/sonar/process/AesCipherTest/other_secret_key.txt: -------------------------------------------------------------------------------- 1 | IBxEUxZ41c8XTxyaah1Qlg== -------------------------------------------------------------------------------- /server/sonar-server/src/main/resources/build.properties: -------------------------------------------------------------------------------- 1 | Implementation-Build=${buildNumber} 2 | Build-Time=${timestamp} -------------------------------------------------------------------------------- /server/sonar-server/src/main/resources/org/sonar/server/authentication/ws/example-validate.json: -------------------------------------------------------------------------------- 1 | {"validate": true} 2 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/hbs/navigator/base-details-filter.hbs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/app/views/plugins/rails_page.erb: -------------------------------------------------------------------------------- 1 | <%= render :inline => @page.getTemplate() %> -------------------------------------------------------------------------------- /server/sonar-ws-client/src/test/resources/plugins/plugins.json: -------------------------------------------------------------------------------- 1 | [{"key": "foo", "name": "Foo", "version": "1.0"}] 2 | -------------------------------------------------------------------------------- /server/sonar-ws-client/src/test/resources/server/status_missing.json: -------------------------------------------------------------------------------- 1 | {"id":"123456789", "version":"2.0-SNAPSHOT"} 2 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/mediumtest/xoo/sample/xources/hello/HelloJava.xoo.measures: -------------------------------------------------------------------------------- 1 | ncloc:3 2 | complexity:1 3 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/index/DuplicationPersisterTest/empty.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /sonar-batch/test-resources/DefaultModuleFileSystemTest/main_and_test_files/src/main/java/Foo.java: -------------------------------------------------------------------------------- 1 | class Foo {} 2 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/issue/db/IssueChangeDaoTest/empty.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/persistence/DatabaseVersionTest/getVersion_no_rows.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/resource/ResourceDaoTest/insert.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/rule/RuleDaoTest/insert_parameter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/user/AuthorDaoTest/shouldInsertAuthor.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/config/AesCipherTest/other_secret_key.txt: -------------------------------------------------------------------------------- 1 | IBxEUxZ41c8XTxyaah1Qlg== -------------------------------------------------------------------------------- /server/sonar-process-monitor/src/test/resources/org/sonar/process/AesCipherTest/aes_secret_key.txt: -------------------------------------------------------------------------------- 1 | 0PZz+G+f8mjr3sPn4+AhHg== -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/rule/db/RuleDaoTest/empty.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/js/tests/e2e/views/treemap.jade: -------------------------------------------------------------------------------- 1 | extends ./layouts/main 2 | 3 | block body 4 | #container 5 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/META-INF/init.rb: -------------------------------------------------------------------------------- 1 | ENV['GEM_HOME'] ||= $servlet_context.getRealPath('/WEB-INF/gems') 2 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/mediumtest/xoo/sample/xources/hello/helloscala.xoo.measures: -------------------------------------------------------------------------------- 1 | ncloc:5 2 | complexity:2 3 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/ProjectReactorBuilderTest/simple-project/sources/Fake.java: -------------------------------------------------------------------------------- 1 | Fake 2 | -------------------------------------------------------------------------------- /sonar-batch/test-resources/DefaultModuleFileSystemTest/main_and_test_files/src/test/java/FooTest.java: -------------------------------------------------------------------------------- 1 | class FooTest {} 2 | -------------------------------------------------------------------------------- /sonar-colorizer/src/test/resources/org/sonar/colorizer/samples/SingleLine.java: -------------------------------------------------------------------------------- 1 | package org.sonar.colorizer.samples; 2 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/dashboard/ActiveDashboardDaoTest/empty.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/dashboard/DashboardDaoTest/shouldInsert.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/qualitygate/db/QualityGateDaoTest/insert.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/resources/DefaultProjectFileSystemTest/hidden-files/src/main/java/foo.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/resources/DefaultProjectFileSystemTest/nonexistent-dirs/src/main/java: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/server/ws/WebServiceTest/response-example.txt: -------------------------------------------------------------------------------- 1 | example of WS response 2 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/scripts/forever.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | while test "notempty" 4 | do 5 | sleep 5s 6 | done 7 | -------------------------------------------------------------------------------- /server/sonar-process-monitor/src/test/resources/org/sonar/process/AesCipherTest/other_secret_key.txt: -------------------------------------------------------------------------------- 1 | IBxEUxZ41c8XTxyaah1Qlg== -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/component/db/SnapshotDaoTest/empty.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/debt/DebtRulesXMLImporterTest/fail_on_bad_xml.xml: -------------------------------------------------------------------------------- 1 | Not a valid xml 2 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/qualityprofile/QProfileBackuperMediumTest/bad-xml-backup.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/user/db/GroupDaoTest/empty.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/hbs/nav/_nav-navbar-label.hbs: -------------------------------------------------------------------------------- 1 | {{#if labelLocalized}}{{labelLocalized}}{{else}}{{t label}}{{/if}} 2 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/robots.txt: -------------------------------------------------------------------------------- 1 | # We don't want robots to click all Sonar links 2 | User-agent: * 3 | Disallow: / -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/ProjectReactorBuilderTest/simple-project-with-build-dir/build/report.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sonar-batch/test-resources/DefaultModuleFileSystemTest/main_and_test_files/src/main/java/Hello.java: -------------------------------------------------------------------------------- 1 | public class Hello {} 2 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/dashboard/ActiveDashboardDaoTest/shouldInsert.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/qualityprofile/db/ActiveRuleDaoTest/empty.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/resource/ResourceIndexerDaoTest/shouldIndexResource.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/template/LoadedTemplateDaoTest/shouldInsert.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/user/AuthorDaoTest/add_missing_module_uuid_path.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/user/AuthorDaoTest/shouldInsertAuthorAndDeveloper.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/server/rule/RulesDefinitionXmlLoaderTest/invalid.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/welcome.html.erb: -------------------------------------------------------------------------------- 1 | <%= message('widget.welcome.html') -%> -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/component/db/ComponentDaoTest/empty.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/rule/ws/RulesWebServiceMediumTest/get_tags_filtered.json: -------------------------------------------------------------------------------- 1 | {"tags": ["hello"]} -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/rule/ws/RulesWebServiceMediumTest/get_tags_limited.json: -------------------------------------------------------------------------------- 1 | {"tags": ["hello"]} -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/i18n-0.4.2/lib/i18n/version.rb: -------------------------------------------------------------------------------- 1 | module I18n 2 | VERSION = "0.4.2" 3 | end 4 | -------------------------------------------------------------------------------- /sonar-batch/test-resources/DefaultModuleFileSystemTest/main_and_test_files/src/test/java/HelloTest.java: -------------------------------------------------------------------------------- 1 | public class HelloTest {} 2 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/i18n/I18nClassloaderTest/org/sonar/l10n/checkstyle.properties: -------------------------------------------------------------------------------- 1 | rule1.name=Rule one 2 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/permission/PermissionTemplateDaoTest/createPermissionTemplate.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/qualitygate/db/QualityGateConditionDaoTest/insert.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/server/rule/RulesDefinitionTest/sample.md: -------------------------------------------------------------------------------- 1 | description of rule loaded from file 2 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/utils/XpathParserTest/unvalid.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/sonar/bundles/PluginFoo_es.properties: -------------------------------------------------------------------------------- 1 | foo.hello=Hola 2 | foo.world=Mundo 3 | only.in.spanish=bueno -------------------------------------------------------------------------------- /sonar-testing-harness/src/test/resources/org/sonar/l10n/noMissingKeys_fr.properties: -------------------------------------------------------------------------------- 1 | foo=Hein 2 | not_in_reference=Not in reference -------------------------------------------------------------------------------- /server/sonar-server/src/main/resources/org/sonar/server/issue/ws/example-tags.json: -------------------------------------------------------------------------------- 1 | { 2 | "tags": ["convention", "security", "cwe"] 3 | } -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/computation/db/AnalysisReportDaoTest/empty.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/debt/DebtCharacteristicsXMLImporterTest/fail_on_bad_xml.xml: -------------------------------------------------------------------------------- 1 | Not a valid xml 2 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/qualityprofile/QProfileBackuperMediumTest/not-xml-backup.txt: -------------------------------------------------------------------------------- 1 | invalid backup 2 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/hbs/coding-rules/coding-rules-filters.hbs: -------------------------------------------------------------------------------- 1 |

2 | {{t 'coding_rules.page'}} 3 |

4 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/permission/PermissionTemplateDaoTest/createNonAsciiPermissionTemplate.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/properties/PropertiesDaoTest/insertGlobalProperties.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/resource/ResourceIndexerDaoTest/shouldIndexTwoLettersLongResource.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/scan/filesystem/sample/xources/hello/HelloJava.xoo.measures: -------------------------------------------------------------------------------- 1 | ncloc:3 2 | complexity:1 3 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/server/rule/RulesDefinitionTest/sample.html: -------------------------------------------------------------------------------- 1 | description of rule loaded from file 2 | -------------------------------------------------------------------------------- /server/sonar-process/src/test/resources/org/sonar/process/AesCipherTest/non_trimmed_secret_key.txt: -------------------------------------------------------------------------------- 1 | 2 | 0PZz+G+f8mjr3sPn4+AhHg== 3 | 4 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/computation/step/SwitchSnapshotStepTest/empty.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/db/migrations/v51/AddNewCharacteristicsTest/empty.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/platform/DefaultServerFileSystemTest/shouldFindPlugins/extensions/plugins/plugin1.jar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/platform/DefaultServerFileSystemTest/shouldFindPlugins/extensions/plugins/plugin2.jar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/vendor/plugins/acts_as_tree/init.rb: -------------------------------------------------------------------------------- 1 | ActiveRecord::Base.send :include, ActiveRecord::Acts::Tree 2 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/ProjectReactorBuilderTest/multi-module-definitions-moduleKey/module2/src/Fake.java: -------------------------------------------------------------------------------- 1 | Fake 2 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/ProjectReactorBuilderTest/simple-project-with-unexisting-binary/sources/Fake.java: -------------------------------------------------------------------------------- 1 | Fake 2 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/ProjectReactorBuilderTest/simple-project-with-unexisting-lib/sources/Fake.java: -------------------------------------------------------------------------------- 1 | Fake 2 | -------------------------------------------------------------------------------- /sonar-batch/test-resources/DefaultModuleFileSystemTest/exclude_dir_starting_with_dot/src/org/.sonar/Excluded2.java: -------------------------------------------------------------------------------- 1 | public class Excluded2 {} -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/config/AesCipherTest/non_trimmed_secret_key.txt: -------------------------------------------------------------------------------- 1 | 2 | 0PZz+G+f8mjr3sPn4+AhHg== 3 | 4 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/scan/filesystem/sample/xources/hello/helloscala.xoo.measures: -------------------------------------------------------------------------------- 1 | ncloc:5 2 | complexity:2 3 | -------------------------------------------------------------------------------- /server/sonar-process-monitor/src/test/resources/org/sonar/process/AesCipherTest/non_trimmed_secret_key.txt: -------------------------------------------------------------------------------- 1 | 2 | 0PZz+G+f8mjr3sPn4+AhHg== 3 | 4 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/computation/ws/SubmitReportWsActionTest/submit_report.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "P1" 3 | } 4 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/platform/DefaultServerFileSystemTest/shouldNotFailIfNoPlugins/extensions/plugins/nojar.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/platform/DefaultServerFileSystemTest/testGetJdbcDriver/extensions/jdbc-driver/none/nojar.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/rule/ws/RulesWebServiceMediumTest/get_tags.json: -------------------------------------------------------------------------------- 1 | {"tags": ["hello", "sys1", "java", "world"]} -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/ws/ListingWsTest/response_example.json: -------------------------------------------------------------------------------- 1 | {"format":"json","example":"{\"metrics\":[]}"} 2 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/rails-2.3.15/lib/railties_path.rb: -------------------------------------------------------------------------------- 1 | RAILTIES_PATH = File.join(File.dirname(__FILE__), '..') 2 | -------------------------------------------------------------------------------- /sonar-application/src/main/assembly/temp/README.txt: -------------------------------------------------------------------------------- 1 | This directory contains temporary data required by server. Do not clean up when server is up. -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/ProjectReactorBuilderTest/multi-language-definitions-all-in-root/src/main/groovy/Fake.groovy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/ProjectReactorBuilderTest/multi-module-definitions-all-in-root/module2/src/Fake.java: -------------------------------------------------------------------------------- 1 | Fake 2 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/ProjectReactorBuilderTest/multi-module-definitions-moduleKey/module1/sources/Fake.java: -------------------------------------------------------------------------------- 1 | Fake 2 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/ProjectReactorBuilderTest/multi-module-with-basedir/modules/module1/sources/Fake.java: -------------------------------------------------------------------------------- 1 | Fake 2 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/ProjectReactorBuilderTest/multi-module-with-explicit-unexisting-lib/module1/src/Fake.java: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/ProjectReactorBuilderTest/multi-module-with-unexisting-source-dir/module1/src/Fake.java: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/ProjectReactorBuilderTest/simple-project-with-unexisting-test-dir/sources/Fake.java: -------------------------------------------------------------------------------- 1 | Fake 2 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/resources/DefaultProjectFileSystemTest/hidden-files/src/main/java/.hidden: -------------------------------------------------------------------------------- 1 | this is an hidden file -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/sonar/bundles/Test.properties: -------------------------------------------------------------------------------- 1 | test.one=One 2 | test.two=Two 3 | with.string.params=Continuous %1$s will %2$s ! -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | sonar-server/src/test/resources/org/sonar/server/configuration/PropertiesBackupTest/backup-with-multiline-property.xml eol=lf 2 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/computation/AnalysisReportServiceTest/report-folder/empty.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/issue/ws/SearchActionMediumTest/no_issue.json: -------------------------------------------------------------------------------- 1 | { 2 | "total": 0, 3 | "issues": [] 4 | } 5 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/platform/DefaultServerFileSystemTest/testGetJdbcDriver/extensions/jdbc-driver/mysql/fake.jar: -------------------------------------------------------------------------------- 1 | asdad -------------------------------------------------------------------------------- /server/sonar-web/src/main/hbs/navigator/favorite-filter.hbs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/hbs/quality-gates/quality-gate-detail-conditions-empty.hbs: -------------------------------------------------------------------------------- 1 | 2 | {{t 'quality_gates.no_conditions'}} 3 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/hbs/quality-gates/quality-gate-sidebar-list-empty.hbs: -------------------------------------------------------------------------------- 1 |
{{t 'quality_gates.noQualityGates'}}
-------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/vendor/plugins/restful_authentication/init.rb: -------------------------------------------------------------------------------- 1 | require File.join(File.dirname(__FILE__), "rails", "init") 2 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/add.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/asc.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/csv.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/e16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/e16.gif -------------------------------------------------------------------------------- /server/sonar-ws-client/src/test/resources/events/events.json: -------------------------------------------------------------------------------- 1 | [{"id": "10", "n": "foo", "ds": "desc", "c": "categ", "dt": "2009-12-25T15:59:23+0000"}] 2 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/issue/ScanIssueStorageTest/should_fail_to_load_component_id_if_unknown_component.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/ProjectReactorBuilderTest/big-multi-module-definitions-all-in-root/module2/sources/Fake.java: -------------------------------------------------------------------------------- 1 | Fake 2 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/ProjectReactorBuilderTest/multi-language-definitions-all-in-root/src/main/java/Fake.java: -------------------------------------------------------------------------------- 1 | Fake 2 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/ProjectReactorBuilderTest/multi-module-definitions-all-in-root/module1/sources/Fake.java: -------------------------------------------------------------------------------- 1 | Fake 2 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/ProjectReactorBuilderTest/multi-module-definitions-same-prefix/module1.feature/src/Fake.java: -------------------------------------------------------------------------------- 1 | Fake 2 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/ProjectReactorBuilderTest/multi-module-definitions-same-prefix/module1/sources/Fake.java: -------------------------------------------------------------------------------- 1 | Fake 2 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/ProjectReactorBuilderTest/multi-module-with-explicit-unexisting-binary-dir/module1/src/Fake.java: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/ProjectReactorBuilderTest/multi-module-with-explicit-unexisting-test-dir/module1/src/Fake.java: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/ProjectReactorBuilderTest/multi-module-with-unexisting-test-bin-lib-dir/module1/src/Fake.java: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/ProjectReactorBuilderTest/shouldGetFile/foo.properties: -------------------------------------------------------------------------------- 1 | prop= foo, bar, \ 2 | toto,\ 3 | \ 4 | tutu, -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/ProjectReactorBuilderTest/shouldGetList/foo.properties: -------------------------------------------------------------------------------- 1 | prop= foo, bar, \ 2 | toto,\ 3 | \ 4 | tutu, -------------------------------------------------------------------------------- /sonar-batch/test-resources/DefaultModuleFileSystemTest/exclude_dir_starting_with_dot/src/org/.dirPrefixedWithDot/Excluded.java: -------------------------------------------------------------------------------- 1 | public class Excluded2 {} -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/resources/DefaultProjectFileSystemTest/sample-with-different-suffixes/src/main/java/foo.c: -------------------------------------------------------------------------------- 1 | // some C code -------------------------------------------------------------------------------- /server/sonar-process/src/test/resources/org/sonar/process/PropsTest/sonar.properties: -------------------------------------------------------------------------------- 1 | hello: world 2 | foo=bar 3 | java.io.tmpdir=/should/be/overridden 4 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/issue/ws/SearchActionMediumTest/paging.json: -------------------------------------------------------------------------------- 1 | { 2 | "total": 12, 3 | "p": 2, 4 | "ps": 9 5 | } 6 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/app/views/settings/index.html.erb: -------------------------------------------------------------------------------- 1 |
2 | <%= render 'settings', :project => nil %> 3 |
4 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/active_record/connection_adapters/h2_adapter.rb: -------------------------------------------------------------------------------- 1 | require 'arjdbc/h2' 2 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/asc12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/asc12.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/clock.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/cross.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/desc.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/help.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/logo.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/move.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/print.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/print.gif -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/q/BRC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/q/BRC.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/q/CLA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/q/CLA.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/q/DIR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/q/DIR.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/q/FIL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/q/FIL.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/q/LIB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/q/LIB.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/q/PAC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/q/PAC.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/q/SVW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/q/SVW.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/q/TRK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/q/TRK.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/q/UTS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/q/UTS.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/q/VW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/q/VW.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/sep12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/sep12.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/sonar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/sonar.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/star.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/tick.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/up_16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/up_16.gif -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/user.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/user.gif -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/user.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/zoom.png -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/DeprecatedProjectReactorBuilderTest/multi-module-with-configfile/any-folder/sources/Fake.java: -------------------------------------------------------------------------------- 1 | Fake 2 | -------------------------------------------------------------------------------- /third-party-licenses.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | mvn org.codehaus.mojo:license-maven-plugin:aggregate-add-third-party -pl sonar-application,sonar-maven-plugin -am 3 | -------------------------------------------------------------------------------- /server/sonar-process-monitor/src/test/resources/org/sonar/process/PropsTest/sonar.properties: -------------------------------------------------------------------------------- 1 | hello: world 2 | foo=bar 3 | java.io.tmpdir=/should/be/overridden 4 | -------------------------------------------------------------------------------- /server/sonar-server/src/main/resources/org/sonar/server/issue/ws/example-transitions.json: -------------------------------------------------------------------------------- 1 | { 2 | "transitions": ["confirm", "resolve", "falsepositive"] 3 | } 4 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/issue/ws/SearchActionComponentsMediumTest/no_issue.json: -------------------------------------------------------------------------------- 1 | { 2 | "total": 0, 3 | "issues": [] 4 | } 5 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/platform/DefaultServerFileSystemTest/shouldNotFailIfNoCheckstyleExtensions/extensions/rules/pmd/pmd.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/hbs/nav/_nav-logo.hbs: -------------------------------------------------------------------------------- 1 | {{t 'layout.sonar.slogan'}} 2 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/js/tests/e2e/tests/issues-spec/tags-modified.json: -------------------------------------------------------------------------------- 1 | { 2 | "tags": [ 3 | "security", 4 | "cwe", 5 | "cert" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/active_record/connection_adapters/jdbc_adapter.rb: -------------------------------------------------------------------------------- 1 | require 'arjdbc/jdbc' 2 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/active_record/connection_adapters/jndi_adapter.rb: -------------------------------------------------------------------------------- 1 | require 'arjdbc/jdbc' 2 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/arjdbc/db2.rb: -------------------------------------------------------------------------------- 1 | require 'arjdbc/jdbc' 2 | require 'arjdbc/db2/adapter' 3 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/arjdbc/mimer.rb: -------------------------------------------------------------------------------- 1 | require 'arjdbc/jdbc' 2 | require 'arjdbc/mimer/adapter' 3 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activesupport-2.3.15/lib/active_support/core_ext/process.rb: -------------------------------------------------------------------------------- 1 | require 'active_support/core_ext/process/daemon' 2 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/fonts/sonar-5.1.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/fonts/sonar-5.1.eot -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/fonts/sonar-5.1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/fonts/sonar-5.1.ttf -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/accept.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/actions.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/bc-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/bc-gray.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/black-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/black-up.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/blue-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/blue-up.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/bullet.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/compare.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/desc12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/desc12.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/down_16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/down_16.gif -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/favicon.ico -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/green-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/green-up.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/links/ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/links/ci.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/loading.gif -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/nodata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/nodata.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/pencil.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/refresh.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/restore.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/restore.gif -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/select2.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/spinner.gif -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/star_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/star_off.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/test/OK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/test/OK.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/trend-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/trend-up.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/trend/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/trend/0.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/warning.png -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/DeprecatedProjectReactorBuilderTest/multi-module-definitions-in-each-module/module1/sources/Fake.java: -------------------------------------------------------------------------------- 1 | Fake 2 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/ProjectReactorBuilderTest/big-multi-module-definitions-all-in-root/module1/module11/sources/Fake.java: -------------------------------------------------------------------------------- 1 | Fake 2 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/ProjectReactorBuilderTest/big-multi-module-definitions-all-in-root/module1/module12/sources/Fake.java: -------------------------------------------------------------------------------- 1 | Fake 2 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/resources/DefaultProjectFileSystemTest/sample-with-different-suffixes/src/main/java/foo.sql: -------------------------------------------------------------------------------- 1 | select * from foo; -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/component/ws/SearchActionTest/return_paged_result.json: -------------------------------------------------------------------------------- 1 | { 2 | "total": 2, 3 | "p": 2, 4 | "ps": 1 5 | } 6 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/computation/db/AnalysisReportDaoTest/truncate-result.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/platform/DefaultServerFileSystemTest/shouldFindCheckstyleExtensions/extensions/rules/checkstyle/my-rules.jar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/platform/DefaultServerFileSystemTest/shouldFindCheckstyleExtensions/extensions/rules/checkstyle/my-rules.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/platform/DefaultServerFileSystemTest/shouldFindCheckstyleExtensions/extensions/rules/checkstyle/my-rules2.jar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/startup/RegisterMetricsTest/shouldAddUserManagesMetric.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/active_record/connection_adapters/derby_adapter.rb: -------------------------------------------------------------------------------- 1 | require 'arjdbc/derby' 2 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/active_record/connection_adapters/hsqldb_adapter.rb: -------------------------------------------------------------------------------- 1 | require 'arjdbc/hsqldb' 2 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/active_record/connection_adapters/mssql_adapter.rb: -------------------------------------------------------------------------------- 1 | require 'arjdbc/mssql' 2 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/active_record/connection_adapters/mysql2_adapter.rb: -------------------------------------------------------------------------------- 1 | require 'arjdbc/mysql' 2 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/active_record/connection_adapters/mysql_adapter.rb: -------------------------------------------------------------------------------- 1 | require 'arjdbc/mysql' 2 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/active_record/connection_adapters/oracle_adapter.rb: -------------------------------------------------------------------------------- 1 | require 'arjdbc/oracle' 2 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/active_record/connection_adapters/sqlite3_adapter.rb: -------------------------------------------------------------------------------- 1 | require 'arjdbc/sqlite3' 2 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/arjdbc/sybase.rb: -------------------------------------------------------------------------------- 1 | require 'arjdbc/jdbc' 2 | require 'arjdbc/sybase/adapter.rb' 3 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/fonts/sonar-5.1.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/fonts/sonar-5.1.woff -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/bin_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/bin_closed.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/black-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/black-down.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/black-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/black-left.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/blue-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/blue-down.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/blue-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/blue-left.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/blue-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/blue-right.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/bulk-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/bulk-edit.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/cross-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/cross-gray.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/green-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/green-down.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/green-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/green-left.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/help_gray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/help_gray.gif -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/inherited.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/inherited.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/layout100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/layout100.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/layout3070.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/layout3070.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/layout5050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/layout5050.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/layout7030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/layout7030.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/levels/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/levels/ok.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/links/scm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/links/scm.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/overrides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/overrides.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/permalink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/permalink.gif -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/permalink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/permalink.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/priority/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/priority/0.gif -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/priority/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/priority/0.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/priority/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/priority/1.gif -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/priority/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/priority/1.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/priority/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/priority/2.gif -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/priority/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/priority/2.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/priority/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/priority/3.gif -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/priority/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/priority/3.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/priority/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/priority/4.gif -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/priority/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/priority/4.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/rss-12x12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/rss-12x12.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/select2x2.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/test/ERROR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/test/ERROR.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/up-blue-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/up-blue-24.png -------------------------------------------------------------------------------- /server/sonar-ws-client/src/test/resources/server/server.json: -------------------------------------------------------------------------------- 1 | {"id":"123456789", "version":"2.0-SNAPSHOT", "status":"UP", "status_msg":"everything is under control"} 2 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/resources/DefaultProjectFileSystemTest/hidden-files/src/main/java/.hiddendir/file_in_hidden_dir.txt: -------------------------------------------------------------------------------- 1 | file in hidden dir -------------------------------------------------------------------------------- /server/sonar-server/src/main/resources/org/sonar/server/platform/ws/example-index.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "20140507170538", 3 | "version": "4.3", 4 | "status": "UP" 5 | } 6 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/component/ws/SearchActionTest/return_only_first_page.json: -------------------------------------------------------------------------------- 1 | { 2 | "total": 2, 3 | "p": 1, 4 | "ps": 1 5 | } 6 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/hbs/quality-gates/quality-gate-sidebar-list-item.hbs: -------------------------------------------------------------------------------- 1 | {{name}} 2 | {{#if default}} 3 | {{t 'default'}} 4 | {{/if}} 5 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/active_record/connection_adapters/informix_adapter.rb: -------------------------------------------------------------------------------- 1 | require 'arjdbc/informix' 2 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/arjdbc/firebird.rb: -------------------------------------------------------------------------------- 1 | require 'arjdbc/jdbc' 2 | require 'arjdbc/firebird/adapter' 3 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/arjdbc/jdbc.rb: -------------------------------------------------------------------------------- 1 | require 'arjdbc/jdbc/adapter' 2 | require 'arjdbc/jdbc/discover' 3 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activesupport-2.3.15/lib/active_support/vendor/i18n-0.4.1/i18n/version.rb: -------------------------------------------------------------------------------- 1 | module I18n 2 | VERSION = "0.4.1" 3 | end 4 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/fastercsv-1.4.0/AUTHORS: -------------------------------------------------------------------------------- 1 | James Edward Gray II:: {james@grayproductions.net}[mailto:james@grayproductions.net] 2 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/black-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/black-right.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/bullet-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/bullet-blue.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/bullet_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/bullet_black.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/bullet_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/bullet_white.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/controls/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/controls/add.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/event_alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/event_alert.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/event_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/event_profile.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/exclamation.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/gray-stripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/gray-stripes.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/green-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/green-right.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/information.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/layout333333.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/layout333333.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/levels/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/levels/error.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/levels/none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/levels/none.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/levels/warn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/levels/warn.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/links/c_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/links/c_link.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/links/issue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/links/issue.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/links/scm_dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/links/scm_dev.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/loading-small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/loading-small.gif -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/new-window-11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/new-window-11.gif -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/new-window-16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/new-window-16.gif -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/pencil-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/pencil-small.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/priority/INFO.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/priority/INFO.gif -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/priority/INFO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/priority/INFO.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/status/CLOSED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/status/CLOSED.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/status/OPEN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/status/OPEN.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/tendency/none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/tendency/none.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/test/FAILURE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/test/FAILURE.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/test/SKIPPED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/test/SKIPPED.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/timemachine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/timemachine.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/transparent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/transparent.gif -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/treemap_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/treemap_icon.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/trend/-1-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/trend/-1-red.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/trend/-2-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/trend/-2-red.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/trend/0-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/trend/0-big.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/trend/1-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/trend/1-black.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/trend/1-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/trend/1-green.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/trend/1-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/trend/1-red.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/trend/2-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/trend/2-black.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/trend/2-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/trend/2-green.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/trend/2-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/trend/2-red.png -------------------------------------------------------------------------------- /server/sonar-ws-client/src/test/resources/properties/many.json: -------------------------------------------------------------------------------- 1 | [{"key":"myprop","value":"myvalue"},{"key":"myprop2","value":"myvalue2"},{"key":"myprop3","value":"myvalue3"}] -------------------------------------------------------------------------------- /sonar-application/src/main/assembly/data/README.txt: -------------------------------------------------------------------------------- 1 | This directory contains data of embedded database (H2 Database Engine). It's recommended for tests and demos only. 2 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/DeprecatedProjectReactorBuilderTest/multi-module-definitions-in-each-module-inherited/module1/sources/Fake.java: -------------------------------------------------------------------------------- 1 | Fake 2 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/DeprecatedProjectReactorBuilderTest/multi-module-definitions-in-each-module/module2/newBaseDir/src/Fake.java: -------------------------------------------------------------------------------- 1 | Fake 2 | -------------------------------------------------------------------------------- /sonar-batch/test-resources/DefaultModuleFileSystemTest/exclude_dir_starting_with_dot/src/org/sonar/Included.java: -------------------------------------------------------------------------------- 1 | package org.sonar; 2 | 3 | public class Included {} 4 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/resources/DefaultProjectFileSystemTest/sample/src/main/java/foo/Bar.java: -------------------------------------------------------------------------------- 1 | package foo; 2 | 3 | public class Bar { 4 | } 5 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/scripts/echo.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | @ECHO %CD% > echo.log 3 | @ECHO Parameter: %1 >> echo.log 4 | @ECHO Environment variable: %ENVVAR% >> echo.log 5 | -------------------------------------------------------------------------------- /server/sonar-process/src/test/resources/sonar-dummy-app.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-process/src/test/resources/sonar-dummy-app.jar -------------------------------------------------------------------------------- /server/sonar-server/src/main/resources/org/sonar/server/rule/ws/example-tags.json: -------------------------------------------------------------------------------- 1 | { 2 | "tags": [ 3 | "java8", 4 | "performance", 5 | "security" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/hbs/navigator/choice-filter.hbs: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/active_record/connection_adapters/postgresql_adapter.rb: -------------------------------------------------------------------------------- 1 | require 'arjdbc/postgresql' 2 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/bullet_arrow_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/bullet_arrow_up.gif -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/bullet_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/bullet_arrow_up.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/bullet_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/bullet_picture.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/calendar/calbtn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/calendar/calbtn.gif -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/calendar/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/calendar/sprite.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/controls/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/controls/cross.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/controls/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/controls/delete.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/controls/error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/controls/error.gif -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/expand_collapse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/expand_collapse.jpg -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/feed-icon-14x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/feed-icon-14x14.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/layout/header-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/layout/header-2.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/links/external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/links/external.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/links/homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/links/homepage.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/menu_indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/menu_indicator.gif -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/priority/MAJOR.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/priority/MAJOR.gif -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/priority/MAJOR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/priority/MAJOR.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/priority/MINOR.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/priority/MINOR.gif -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/priority/MINOR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/priority/MINOR.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/reviews/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/reviews/comment.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/status/REOPENED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/status/REOPENED.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/status/RESOLVED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/status/RESOLVED.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/tendency/-1-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/tendency/-1-red.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/tendency/-2-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/tendency/-2-red.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/tendency/1-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/tendency/1-red.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/tendency/2-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/tendency/2-red.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/transparent_16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/transparent_16.gif -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/trend/-1-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/trend/-1-black.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/trend/-1-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/trend/-1-green.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/trend/-2-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/trend/-2-black.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/trend/-2-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/trend/-2-green.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/trend/1-red-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/trend/1-red-big.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/trend/2-red-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/trend/2-red-big.png -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/DeprecatedProjectReactorBuilderTest/multi-module-with-configfile-and-overwritten-basedir/any-folder/sources/Fake.java: -------------------------------------------------------------------------------- 1 | Fake 2 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/resources/DefaultProjectFileSystemTest/sample/src/main/java/foo/Whizz.java: -------------------------------------------------------------------------------- 1 | package foo; 2 | 3 | public class Whizz { 4 | } 5 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/issue/filter/AppActionTest/anonymous_page.json: -------------------------------------------------------------------------------- 1 | { 2 | "canManageFilters": false, 3 | "canBulkChange": false 4 | } 5 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/source/ws/IndexActionTest/index-result.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "1": "public class HelloWorld {", 4 | "2": "}" 5 | } 6 | ] -------------------------------------------------------------------------------- /server/sonar-web/src/main/hbs/navigator/string-filter.hbs: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/fonts/Roboto-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/fonts/Roboto-Bold-webfont.eot -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/fonts/Roboto-Bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/fonts/Roboto-Bold-webfont.ttf -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/bullet_arrow_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/bullet_arrow_down.gif -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/bullet_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/bullet_arrow_down.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/bullet_arrow_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/bullet_arrow_right.gif -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/bullet_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/bullet_arrow_right.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/controls/move_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/controls/move_down.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/controls/move_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/controls/move_left.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/controls/move_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/controls/move_up.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/controls/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/controls/warning.gif -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/opensource-25x23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/opensource-25x23.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/priority/BLOCKER.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/priority/BLOCKER.gif -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/priority/BLOCKER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/priority/BLOCKER.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/priority/CRITICAL.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/priority/CRITICAL.gif -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/priority/CRITICAL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/priority/CRITICAL.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/tendency/-1-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/tendency/-1-black.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/tendency/-1-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/tendency/-1-green.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/tendency/-2-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/tendency/-2-black.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/tendency/-2-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/tendency/-2-green.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/tendency/1-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/tendency/1-black.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/tendency/1-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/tendency/1-green.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/tendency/2-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/tendency/2-black.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/tendency/2-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/tendency/2-green.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/treemap_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/treemap_gradient.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/trend/-1-black-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/trend/-1-black-big.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/trend/-1-green-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/trend/-1-green-big.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/trend/-1-red-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/trend/-1-red-big.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/trend/-2-black-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/trend/-2-black-big.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/trend/-2-green-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/trend/-2-green-big.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/trend/-2-red-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/trend/-2-red-big.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/trend/1-black-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/trend/1-black-big.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/trend/1-green-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/trend/1-green-big.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/trend/2-black-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/trend/2-black-big.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/trend/2-green-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/trend/2-green-big.png -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/DeprecatedProjectReactorBuilderTest/multi-module-definitions-in-each-module-inherited/module2/newBaseDir/src/Fake.java: -------------------------------------------------------------------------------- 1 | Fake 2 | -------------------------------------------------------------------------------- /sonar-home/src/test/resources/sonar-checkstyle-plugin-2.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/sonar-home/src/test/resources/sonar-checkstyle-plugin-2.8.jar -------------------------------------------------------------------------------- /sonar-plugin-api/test-resources/org/sonar/api/resources/DefaultProjectFileSystemTest/shouldExcludeDirectoriesStartingWithDot/src/org/.sonar/Excluded2.java: -------------------------------------------------------------------------------- 1 | public class Excluded2 {} -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/issue/ws/SearchActionMediumTest/apply_paging_with_one_component.json: -------------------------------------------------------------------------------- 1 | { 2 | "total": 501, 3 | "p": 1, 4 | "ps": 100 5 | } 6 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/issue/ws/SearchActionMediumTest/paging_with_page_size_to_minus_one.json: -------------------------------------------------------------------------------- 1 | { 2 | "total": 12, 3 | "p": 1, 4 | "ps": 500 5 | } 6 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/platform/ServerImplTest/build.properties: -------------------------------------------------------------------------------- 1 | Implementation-Build=0b9545a8b74aca473cb776275be4dc93a327c363 2 | Build-Time=1342455258749 -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/user/db/UserGroupDaoTest/insert-result.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activesupport-2.3.15/lib/active_support/json.rb: -------------------------------------------------------------------------------- 1 | require 'active_support/json/decoding' 2 | require 'active_support/json/encoding' 3 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/lib/eastwood-1.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/WEB-INF/lib/eastwood-1.1.0.jar -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/fonts/Roboto-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/fonts/Roboto-Bold-webfont.woff -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/fonts/Roboto-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/fonts/Roboto-Light-webfont.eot -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/fonts/Roboto-Light-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/fonts/Roboto-Light-webfont.ttf -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/fonts/Roboto-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/fonts/Roboto-Light-webfont.woff -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/fonts/Roboto-Medium-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/fonts/Roboto-Medium-webfont.eot -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/fonts/Roboto-Medium-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/fonts/Roboto-Medium-webfont.ttf -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/bullet_toggle_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/bullet_toggle_minus.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/controls/move_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/controls/move_right.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/layout/header_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/layout/header_footer.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/levels/notforie6/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/levels/notforie6/ok.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/tendency/1-red-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/tendency/1-red-small.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/tendency/2-red-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/tendency/2-red-small.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/tendency/none-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/tendency/none-small.png -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/issue/db/ActionPlanDaoTest/shared.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/scripts/output.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | @ECHO stdOut: first line 3 | @ECHO stdOut: second line 4 | @ECHO stdErr: first line 1>&2 5 | @ECHO stdErr: second line 1>&2 6 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/scripts/output.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo stdOut: first line 4 | echo stdOut: second line 5 | echo stdErr: first line 1>&2 6 | echo stdErr: second line 1>&2 7 | -------------------------------------------------------------------------------- /jacoco-build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | export MAVEN_OPTS='-Xmx256m' 3 | mvn clean org.jacoco:jacoco-maven-plugin:prepare-agent install -B -e -V -Pcoverage-per-test -Dmaven.test.failure.ignore=true 4 | -------------------------------------------------------------------------------- /server/sonar-process-monitor/src/test/resources/sonar-dummy-app.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-process-monitor/src/test/resources/sonar-dummy-app.jar -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/computation/ComputationServiceTest/shared.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/issue/ws/AuthorsActionTest/authors.json: -------------------------------------------------------------------------------- 1 | { 2 | "authors": [ 3 | "luke.skywalker", 4 | "luke@skywalker.name" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/issue/ws/SearchActionMediumTest/apply_paging_with_multiple_components.json: -------------------------------------------------------------------------------- 1 | { 2 | "total": 501, 3 | "p": 1, 4 | "ps": 100 5 | } 6 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/issue/ws/SearchActionMediumTest/ignore_paging_with_one_component.json: -------------------------------------------------------------------------------- 1 | { 2 | "total": 501, 3 | "p": 1, 4 | "ps": 999999 5 | } 6 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/language/ws/LanguageWsTest/list_filtered_key.json: -------------------------------------------------------------------------------- 1 | { 2 | "languages": [ 3 | {"key": "ws", "name": "Whitespace"} 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/hbs/issue/issue-assign-form-option.hbs: -------------------------------------------------------------------------------- 1 | 2 | {{text}} 3 | 4 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/js/tests/e2e/tests/issues-page-should-open-issue-permalink/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "canManageFilters": false, 3 | "canBulkChange": false, 4 | "favorites": [] 5 | } 6 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/actionpack-2.3.15/lib/action_controller/templates/rescues/unknown_action.erb: -------------------------------------------------------------------------------- 1 |

Unknown action

2 |

<%=h @exception.message %>

3 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/jdbc_adapter.rb: -------------------------------------------------------------------------------- 1 | warn "DEPRECATED: require 'arjdbc' instead of 'jdbc_adapter'." 2 | require 'arjdbc' 3 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/fonts/Roboto-Medium-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/fonts/Roboto-Medium-webfont.woff -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/fonts/Roboto-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/fonts/Roboto-Regular-webfont.eot -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/fonts/Roboto-Regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/fonts/Roboto-Regular-webfont.ttf -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/fonts/Roboto-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/fonts/Roboto-Regular-webfont.woff -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/controls/resultset_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/controls/resultset_next.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/layout/header_footer_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/layout/header_footer_2.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/layout/select-content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/layout/select-content.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/layout/select-sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/layout/select-sidebar.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/levels/notforie6/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/levels/notforie6/error.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/levels/notforie6/none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/levels/notforie6/none.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/levels/notforie6/warn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/levels/notforie6/warn.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/tendency/-1-black-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/tendency/-1-black-small.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/tendency/-1-green-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/tendency/-1-green-small.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/tendency/-1-red-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/tendency/-1-red-small.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/tendency/-2-black-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/tendency/-2-black-small.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/tendency/-2-green-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/tendency/-2-green-small.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/tendency/-2-red-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/tendency/-2-red-small.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/tendency/1-black-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/tendency/1-black-small.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/tendency/1-green-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/tendency/1-green-small.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/tendency/2-black-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/tendency/2-black-small.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/tendency/2-green-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/tendency/2-green-small.png -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/issue/db/ActionPlanStatsDaoTest/shared.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/qualitygate/db/QualityGateDaoTest/insert-result.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/user/AuthorDaoTest/shouldPreventAuthorsDuplication.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sonar-plugin-api/test-resources/org/sonar/api/resources/DefaultProjectFileSystemTest/shouldExcludeDirectoriesStartingWithDot/src/org/.dirPrefixedWithDot/Excluded.java: -------------------------------------------------------------------------------- 1 | public class Excluded2 {} -------------------------------------------------------------------------------- /server/sonar-web/src/main/hbs/coding-rules/facets/coding-rules-key-facet.hbs: -------------------------------------------------------------------------------- 1 | {{> '_coding-rules-facet-header'}} 2 | 3 |
4 | {{key}} 5 |
6 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/js/tests/e2e/tests/coding-rules-page-should-show-empty-list/search.json: -------------------------------------------------------------------------------- 1 | { 2 | "total": 0, 3 | "p": 1, 4 | "ps": 200, 5 | "rules": [], 6 | "facets": [] 7 | } 8 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/treemap_gradient_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/treemap_gradient_inverted.png -------------------------------------------------------------------------------- /server/sonar-ws-client/src/test/resources/org/sonar/wsclient/issue/internal/IssueJsonParserTest/getTransitions.json: -------------------------------------------------------------------------------- 1 | { 2 | "transitions": [ 3 | "resolve", 4 | "falsepositive" 5 | ] 6 | } -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/design/DsmSerializerTest/dsm.json: -------------------------------------------------------------------------------- 1 | [{"i":8,"n":"src/org/bar","q":"DIR","v":[{},{"i":30,"w":1}]},{"i":7,"n":"src/org/foo","q":"DIR","v":[{},{}]}] 2 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/index/FileHashesPersisterTest/should_persist_component_data.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/ProjectReactorBuilderTest/simple-project-with-lib-dir/lib/Fake.class: -------------------------------------------------------------------------------- 1 | package org.sonar.runner.batch.ProjectReactorBuilderTest.simple 2 | 3 | Fake -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/issue/filter/AppActionTest/logged_in_page.json: -------------------------------------------------------------------------------- 1 | { 2 | "canManageFilters": true, 3 | "canBulkChange": true, 4 | "favorites": [] 5 | } 6 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/hbs/issues/issues-workspace-list.hbs: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/js/tests/e2e/tests/coding-rules-page-should-create-manual-rules/search.json: -------------------------------------------------------------------------------- 1 | { 2 | "total": 0, 3 | "p": 1, 4 | "ps": 200, 5 | "rules": [], 6 | "facets": [] 7 | } 8 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/config/locales/es.yml: -------------------------------------------------------------------------------- 1 | "es": 2 | date: 3 | formats: 4 | default: "%d/%b/%Y" 5 | 6 | time: 7 | formats: 8 | default: "%d/%b/%Y %H:%M" 9 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/config/locales/ru.yml: -------------------------------------------------------------------------------- 1 | 2 | ru: 3 | date: 4 | formats: 5 | default: "%d %b %Y" 6 | 7 | time: 8 | formats: 9 | default: "%d %b %Y %H:%M" -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/actionpack-2.3.15/lib/action_controller/templates/rescues/missing_template.erb: -------------------------------------------------------------------------------- 1 |

Template is missing

2 |

<%=h @exception.message %>

3 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/controls/resultset_previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/controls/resultset_previous.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/layout/header_footer_2_equal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/layout/header_footer_2_equal.png -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/navigator/favorite-filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/navigator/favorite-filters.png -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/issue/ScanIssueStorageTest/should_load_component_id_from_db.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/user/AuthorDaoTest/shouldPreventAuthorsDuplication-result.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/hbs/navigator/checkbox-filter.hbs: -------------------------------------------------------------------------------- 1 | 2 | {{#if optional}} 3 | 4 | {{/if}} 5 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/hbs/quality-gates/quality-gate-detail.hbs: -------------------------------------------------------------------------------- 1 |
2 |
-------------------------------------------------------------------------------- /server/sonar-web/src/main/js/tests/e2e/tests/coding-rules-page-should-delete-manual-rules/search-after.json: -------------------------------------------------------------------------------- 1 | { 2 | "total": 0, 3 | "p": 1, 4 | "ps": 200, 5 | "rules": [], 6 | "facets": [] 7 | } 8 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/app/views/settings/_special.html.erb: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activesupport-2.3.15/lib/active_support/json/encoders/symbol.rb: -------------------------------------------------------------------------------- 1 | class Symbol 2 | def as_json(options = nil) #:nodoc: 3 | to_s 4 | end 5 | end 6 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/navigator/favorite-filters@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/images/navigator/favorite-filters@2x.png -------------------------------------------------------------------------------- /sonar-application/src/main/assembly/extensions/plugins/README.txt: -------------------------------------------------------------------------------- 1 | Plugins can be downloaded from : 2 | - http://redirect.sonarsource.com/doc/plugin-library.html 3 | - http://www.sonarsource.com/plugins 4 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/mediumtest/xoo/sample/testx/ClassOneTest.xoo.measures: -------------------------------------------------------------------------------- 1 | lines:11 2 | ncloc:7 3 | tests:1 4 | test_execution_time:1 5 | skipped_tests:0 6 | test_errors:0 7 | test_failures:0 8 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/ProjectReactorBuilderTest/simple-project-with-build-dir/sources/Fake.java: -------------------------------------------------------------------------------- 1 | package org.sonar.runner.batch.ProjectReactorBuilderTest.simple 2 | 3 | Fake 4 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/ProjectReactorBuilderTest/simple-project-with-lib-dir/sources/Fake.java: -------------------------------------------------------------------------------- 1 | package org.sonar.runner.batch.ProjectReactorBuilderTest.simple 2 | 3 | Fake 4 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/plugins/fake2-plugin-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/sonar-core/src/test/resources/org/sonar/core/plugins/fake2-plugin-1.1.jar -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/user/AuthorDaoTest/shouldSelectByLogin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/scripts/echo.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | WORKING_DIR=`pwd` 4 | echo $WORKING_DIR > echo.log 5 | echo "Parameter: $1" >> echo.log 6 | echo "Environment variable: $ENVVAR" >> echo.log 7 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/app/views/dashboard/empty.html.erb: -------------------------------------------------------------------------------- 1 | <% if @resource and !@snapshot %> 2 |

<%= message('provisioning.no_analysis') -%>

3 | <% end %> 4 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/arjdbc/oracle.rb: -------------------------------------------------------------------------------- 1 | require 'arjdbc/jdbc' 2 | require 'arjdbc/oracle/connection_methods' 3 | require 'arjdbc/oracle/adapter' 4 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/mediumtest/xoo/sample/xources/hello/helloscala.xoo: -------------------------------------------------------------------------------- 1 | object HelloWorld { 2 | def main(args: Array[String]) { 3 | println("Hello, world of xoo!") 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/plugins/fake1bis-plugin-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/sonar-core/src/test/resources/org/sonar/core/plugins/fake1bis-plugin-1.0.jar -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/resource/DefaultResourcePermissionsTest/grantUserRole.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/user/AuthorDaoTest/shouldInsertAuthor-result.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/utils/StaxParserTest/xml-dtd-test.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /sonar-plugin-api/test-resources/org/sonar/api/resources/DefaultProjectFileSystemTest/shouldExcludeDirectoriesStartingWithDot/src/org/sonar/Included.java: -------------------------------------------------------------------------------- 1 | package org.sonar; 2 | 3 | public class Included {} 4 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/db/ResultSetIteratorTest/feed.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/hbs/coding-rules/coding-rules-workspace-list.hbs: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/app/views/dashboard2/empty.html.erb: -------------------------------------------------------------------------------- 1 | <% if @resource and !@snapshot %> 2 |

<%= message('provisioning.no_analysis') -%>

3 | <% end %> 4 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/app/views/layouts/_navbar.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'layouts/navbar_conf' -%> 2 | <%= render 'layouts/recent_history' -%> 3 | 6 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/config/locales/HOW_TO_UPGRADE_LOCALES.txt: -------------------------------------------------------------------------------- 1 | 1. Clone rails-i18n from https://github.com/svenfuchs/rails-i18n 2 | 2. Copy rails/locale/* to webapp/WEB-INF/config/locales/defaults -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/arjdbc/informix.rb: -------------------------------------------------------------------------------- 1 | require 'arjdbc/jdbc' 2 | require 'arjdbc/informix/connection_methods' 3 | require 'arjdbc/informix/adapter' 4 | -------------------------------------------------------------------------------- /sonar-testing-harness/src/test/resources/org/sonar/l10n/myPlugin_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/sonar-testing-harness/src/test/resources/org/sonar/l10n/myPlugin_fr.properties -------------------------------------------------------------------------------- /server/sonar-server/src/main/resources/org/sonar/server/plugins/example-batch-index.txt: -------------------------------------------------------------------------------- 1 | sonar-batch-maven-compat-4.4.jar|2d7cbec208114970ea419ce963775f68 2 | sonar-batch-library-2.3.jar|86f577369ec914ae079411803cebc7d2 3 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/js/tests/e2e/tests/quality-gates-spec/list.json: -------------------------------------------------------------------------------- 1 | { 2 | "qualitygates": [ 3 | { 4 | "id": 1, 5 | "name": "Default Gate" 6 | } 7 | ], 8 | "default": 1 9 | } 10 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/rails-2.3.15/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | # Methods added to this helper will be available to all templates in the application. 2 | module ApplicationHelper 3 | end 4 | -------------------------------------------------------------------------------- /sonar-batch-protocol/compile_protobuf.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | OUTPUT_DIR="src/main/gen-java" 4 | 5 | mkdir -p ${OUTPUT_DIR} 6 | protoc --proto_path=src/main/protobuf --java_out=${OUTPUT_DIR} src/main/protobuf/*.proto 7 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/issue/tracking/IssueTrackingTest/example2-v1.txt: -------------------------------------------------------------------------------- 1 | package example2; 2 | 3 | public class Toto { 4 | void method1() { 5 | System.out.println("toto"); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /sonar-testing-harness/src/test/resources/org/sonar/l10n/myPlugin_fr_CA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/sonar-testing-harness/src/test/resources/org/sonar/l10n/myPlugin_fr_CA.properties -------------------------------------------------------------------------------- /sonar-testing-harness/src/test/resources/org/sonar/l10n/myPlugin_fr_QB.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/sonar-testing-harness/src/test/resources/org/sonar/l10n/myPlugin_fr_QB.properties -------------------------------------------------------------------------------- /server/sonar-server/src/main/resources/org/sonar/server/platform/ws/example-setup.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "ok", 3 | "migration_status": "NO_MIGRATION", 4 | "message": "Database is up-to-date, no migration needed." 5 | } 6 | -------------------------------------------------------------------------------- /server/sonar-server/src/main/resources/org/sonar/server/source/ws/example-scm.json: -------------------------------------------------------------------------------- 1 | { 2 | "scm": [ 3 | [1, "julien", "2013-03-13"], 4 | [2, "julien", "2013-03-14"], 5 | [3, "simon", "2014-01-01"] 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/language/ws/LanguageWsTest/list_limited.json: -------------------------------------------------------------------------------- 1 | { 2 | "languages": [ 3 | {"key": "ac", "name": "ArnoldC"}, 4 | {"key": "lol", "name": "LOLCODE"} 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/qualityprofile/QProfileRuleLookupTest/shared/active_rule523.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": 523, 3 | "severity": "MAJOR", 4 | "profileId": 2, 5 | "inheritance": null 6 | } 7 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/test/ws/CoverageShowActionTest/show_coverage_with_from_and_to.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": [ 3 | [3, false, null, 2, 2], 4 | [4, true, 8, null, null] 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/app/views/issues/search.html.erb: -------------------------------------------------------------------------------- 1 | <% content_for :script do %> 2 | 3 | <% end %> 4 | 5 |
6 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/jdbc_adapter/version.rb: -------------------------------------------------------------------------------- 1 | warn "DEPRECATED: require 'arjdbc/version' instead of 'jdbc_adapter/version'." 2 | require 'arjdbc/version' 3 | 4 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activesupport-2.3.15/lib/active_support/core_ext/string/bytesize.rb: -------------------------------------------------------------------------------- 1 | unless '1.9'.respond_to?(:bytesize) 2 | class String 3 | alias :bytesize :size 4 | end 5 | end 6 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/DeprecatedProjectReactorBuilderTest/multi-module-with-configfile/any-folder/any-file.properties: -------------------------------------------------------------------------------- 1 | sonar.projectKey=com.foo.project.module1 2 | sonar.projectName=Foo Module 1 3 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/plugins/PluginClassloadersTest/bar.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/sonar-core/src/test/resources/org/sonar/core/plugins/PluginClassloadersTest/bar.jar -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/plugins/PluginClassloadersTest/foo.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/sonar-core/src/test/resources/org/sonar/core/plugins/PluginClassloadersTest/foo.jar -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/plugins/sonar-checkstyle-plugin-2.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/sonar-core/src/test/resources/org/sonar/core/plugins/sonar-checkstyle-plugin-2.8.jar -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/qualitygate/db/QualityGateDaoTest/delete-result.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/resource/DefaultResourcePermissionsTest/grantGroupRole.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/resources/DefaultProjectFileSystemTest/sample/src/test/java/foo/BarTest.java: -------------------------------------------------------------------------------- 1 | package foo; 2 | 3 | import org.junit.Ignore; 4 | 5 | public abstract class BarTest { 6 | } 7 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/scan/filesystem/sample/testx/ClassOneTest.xoo.measures: -------------------------------------------------------------------------------- 1 | lines:11 2 | ncloc:7 3 | tests:1 4 | test_execution_time:1 5 | skipped_tests:0 6 | test_errors:0 7 | test_failures:0 8 | -------------------------------------------------------------------------------- /server/sonar-server/src/main/resources/org/sonar/server/test/ws/coverage-example-show.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": [ 3 | [49, true, 14, null, null], 4 | [52, false, null, null, null], 5 | [72, true, 4, 2, 1] 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/issue/ws/SearchActionMediumTest/issue_with_comment_hidden.json: -------------------------------------------------------------------------------- 1 | { 2 | "issues": [ 3 | { 4 | "key": "82fd47d4-b650-4037-80bc-7b112bd4eac2" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/qualityprofile/QProfileBackuperMediumTest/empty.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | P1 4 | xoo 5 | 6 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/qualityprofile/QProfileRuleLookupTest/shared/active_rule25.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": 25, 3 | "severity": "MINOR", 4 | "profileId": 1, 5 | "inheritance": "OVERRIDES" 6 | } 7 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/rule/ws/RulesWebServiceMediumTest/search_active_rules.json: -------------------------------------------------------------------------------- 1 | { 2 | "total": 1, "p": 1, "ps": 100, 3 | "rules": [ 4 | { 5 | "key": "xoo:x1" 6 | } 7 | ]} 8 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/view/index/ViewIndexTest/view1.json: -------------------------------------------------------------------------------- 1 | { 2 | "uuid": "fed0a543-9d9c-4af5-a4ec-450a8fe78ce7", 3 | "projects": [ 4 | "548415bc-6626-45b1-a99a-ca77aedec45f" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/config/initializers/close_connections.rb: -------------------------------------------------------------------------------- 1 | require 'action_controller/dispatcher' 2 | ActionController::Dispatcher.after_dispatch do 3 | ActiveRecord::Base.clear_active_connections! 4 | end -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/color-tools-1.3.0/lib/color/hsl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/WEB-INF/gems/gems/color-tools-1.3.0/lib/color/hsl.rb -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/color-tools-1.3.0/lib/color/rgb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-web/src/main/webapp/WEB-INF/gems/gems/color-tools-1.3.0/lib/color/rgb.rb -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/i18n-0.4.2/lib/i18n/locale.rb: -------------------------------------------------------------------------------- 1 | module I18n 2 | module Locale 3 | autoload :Fallbacks, 'i18n/locale/fallbacks' 4 | autoload :Tag, 'i18n/locale/tag' 5 | end 6 | end 7 | -------------------------------------------------------------------------------- /sonar-batch/src/main/resources/org/sonar/batch/scan/report/issuesreport_files/DIR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/sonar-batch/src/main/resources/org/sonar/batch/scan/report/issuesreport_files/DIR.png -------------------------------------------------------------------------------- /sonar-batch/src/main/resources/org/sonar/batch/scan/report/issuesreport_files/FIL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/sonar-batch/src/main/resources/org/sonar/batch/scan/report/issuesreport_files/FIL.png -------------------------------------------------------------------------------- /sonar-batch/src/main/resources/org/sonar/batch/scan/report/issuesreport_files/PRJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/sonar-batch/src/main/resources/org/sonar/batch/scan/report/issuesreport_files/PRJ.png -------------------------------------------------------------------------------- /sonar-batch/src/main/resources/org/sonar/batch/scan/report/issuesreport_files/sep12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/sonar-batch/src/main/resources/org/sonar/batch/scan/report/issuesreport_files/sep12.png -------------------------------------------------------------------------------- /sonar-batch/src/main/resources/org/sonar/batch/scan/report/issuesreport_files/sonar.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/sonar-batch/src/main/resources/org/sonar/batch/scan/report/issuesreport_files/sonar.eot -------------------------------------------------------------------------------- /sonar-batch/src/main/resources/org/sonar/batch/scan/report/issuesreport_files/sonar.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/sonar-batch/src/main/resources/org/sonar/batch/scan/report/issuesreport_files/sonar.ttf -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/mediumtest/xoo/sample/xources/hello/HelloJava.xoo: -------------------------------------------------------------------------------- 1 | package hello; 2 | 3 | public class HelloJava { 4 | 5 | public static void main(String[] args) { 6 | System.out.println("Hello"); 7 | } 8 | } -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/plugins/sonar-cobertura-plugin-3.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/sonar-core/src/test/resources/org/sonar/core/plugins/sonar-cobertura-plugin-3.1.1.jar -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/resource/DefaultResourcePermissionsTest/grantGroupRole_anyone.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/scan/filesystem/sample/xources/hello/helloscala.xoo: -------------------------------------------------------------------------------- 1 | object HelloWorld { 2 | def main(args: Array[String]) { 3 | println("Hello, world of xoo!") 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /server/sonar-server/src/main/resources/org/sonar/server/issue/ws/example-component-tags.json: -------------------------------------------------------------------------------- 1 | { 2 | "tags": [ 3 | { key: "convention", value: 42 }, 4 | { key: "cwe", value: 12 }, 5 | { key: "security", value: 5 } 6 | ] 7 | } -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/app/views/bulk_deletion/pending_deletions.html.erb: -------------------------------------------------------------------------------- 1 | <%= render :partial => 'pending_deletions_screen', 2 | :locals => {:url_after_dismiss => url_for(:action => 'dismiss_message')} -%> -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/arjdbc/h2.rb: -------------------------------------------------------------------------------- 1 | require 'arjdbc/jdbc' 2 | jdbc_require_driver 'jdbc/h2' 3 | require 'arjdbc/h2/connection_methods' 4 | require 'arjdbc/h2/adapter' 5 | -------------------------------------------------------------------------------- /sonar-batch/src/main/resources/org/sonar/batch/scan/report/issuesreport_files/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/sonar-batch/src/main/resources/org/sonar/batch/scan/report/issuesreport_files/favicon.ico -------------------------------------------------------------------------------- /sonar-batch/src/main/resources/org/sonar/batch/scan/report/issuesreport_files/sonar.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/sonar-batch/src/main/resources/org/sonar/batch/scan/report/issuesreport_files/sonar.woff -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/rule/RuleDaoTest/update_parameter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Archiver-Version: Plexus Archiver 3 | Created-By: Apache Maven 4 | Built-By: Sonar 5 | Build-Jdk: 1.5.0_09 6 | Plugin-Class: org.sonar.api.FakePlugin 7 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/utils/ZipUtilsTest/shouldUnzipFile.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/sonar-plugin-api/src/test/resources/org/sonar/api/utils/ZipUtilsTest/shouldUnzipFile.zip -------------------------------------------------------------------------------- /sonar-testing-harness/src/test/resources/org/sonar/test/i18n/BundleSynchronizedMatcherTest/bundle.properties: -------------------------------------------------------------------------------- 1 | first.prop = This is my first property 2 | second.prop = This is my second property 3 | third.prop = This is my third property -------------------------------------------------------------------------------- /plugins/sonar-core-plugin/src/test/resources/org/sonar/plugins/core/timemachine/ViolationTrackingTest/example2-v1.txt: -------------------------------------------------------------------------------- 1 | package example2; 2 | 3 | public class Toto { 4 | void method1() { 5 | System.out.println("toto"); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/search/ESNodeTest/data-es-clean.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-server/src/test/resources/org/sonar/server/search/ESNodeTest/data-es-clean.zip -------------------------------------------------------------------------------- /server/sonar-web/src/main/hbs/issues/facets/issues-context-facet.hbs: -------------------------------------------------------------------------------- 1 |
2 | Issues of    {{qualifierIcon state.contextComponentQualifier}} {{state.contextComponentName}} 3 |
4 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/app/views/coding_rules/index.html.erb: -------------------------------------------------------------------------------- 1 | <% content_for :script do %> 2 | 3 | <% end %> 4 | 5 | 6 |
7 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/config/locales/fr.yml: -------------------------------------------------------------------------------- 1 | # Override default formats 2 | 3 | fr: 4 | date: 5 | formats: 6 | default: "%d %b %Y" 7 | 8 | time: 9 | formats: 10 | default: "%d %b %Y %H:%M" -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/arel/engines/sql/compilers/h2_compiler.rb: -------------------------------------------------------------------------------- 1 | module Arel 2 | module SqlCompiler 3 | class H2Compiler < GenericCompiler 4 | end 5 | end 6 | end 7 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/mediumtest/xoo/sample/sonar-project.properties: -------------------------------------------------------------------------------- 1 | sonar.projectKey=sample 2 | sonar.projectName=Sample 3 | sonar.projectVersion=0.1-SNAPSHOT 4 | sonar.sources=xources 5 | sonar.tests=testx 6 | sonar.language=xoo 7 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/properties/PropertiesDaoTest/should_not_rename_if_same_key.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/rule/RuleDaoTest/insert_parameter-result.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/template/LoadedTemplateDaoTest/shouldCountByTypeAndKey.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/template/LoadedTemplateDaoTest/shouldInsert-result.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/user/UserDaoTest/insert-result.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/user/UserDaoTest/update_user.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/scripts/forever.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | 3 | :LOOP 4 | @rem Next line may lead to freeze of build process on Windows 7 due to non-terminated ping-processes 5 | @rem ping 1.1.1.1 -n 2 -w 60000 > nul 6 | GOTO LOOP 7 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/rule/ws/RulesWebServiceMediumTest/search_no_rules.json: -------------------------------------------------------------------------------- 1 | { 2 | "total": 0, 3 | "p": 1, 4 | "ps": 100, 5 | "rules": [], 6 | "actives": {}, 7 | "qProfiles": {} 8 | } 9 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/search/ESNodeTest/data-es-corrupt.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-server/src/test/resources/org/sonar/server/search/ESNodeTest/data-es-corrupt.zip -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/app/views/dashboard/_widget_title.html.erb: -------------------------------------------------------------------------------- 1 | <% unless widget_title(widget).blank? %> 2 |
<%= widget_title(widget) -%>
3 | <% end %> 4 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/app/views/dashboard2/_widget_title.html.erb: -------------------------------------------------------------------------------- 1 | <% unless widget_title(widget).blank? %> 2 |
<%= widget_title(widget) -%>
3 | <% end %> 4 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/app/views/project/settings.html.erb: -------------------------------------------------------------------------------- 1 |
2 |
3 | <%= render :partial => 'settings/settings' %> 4 |
5 |
6 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/app/views/quality_gates/index.html.erb: -------------------------------------------------------------------------------- 1 | <% content_for :script do %> 2 | 3 | <% end %> 4 | 5 |
6 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/config/locales/de.yml: -------------------------------------------------------------------------------- 1 | # Override default date formats 2 | 3 | de: 4 | date: 5 | formats: 6 | default: "%d. %b %Y" 7 | 8 | time: 9 | formats: 10 | default: "%d. %b %Y %H:%M" -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/arel/engines/sql/compilers/derby_compiler.rb: -------------------------------------------------------------------------------- 1 | module Arel 2 | module SqlCompiler 3 | class DerbyCompiler < GenericCompiler 4 | end 5 | end 6 | end 7 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/arel/engines/sql/compilers/jdbc_compiler.rb: -------------------------------------------------------------------------------- 1 | module Arel 2 | module SqlCompiler 3 | class JDBCCompiler < GenericCompiler 4 | end 5 | end 6 | end 7 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/arjdbc/mysql.rb: -------------------------------------------------------------------------------- 1 | require 'arjdbc/jdbc' 2 | jdbc_require_driver 'jdbc/mysql' 3 | require 'arjdbc/mysql/connection_methods' 4 | require 'arjdbc/mysql/adapter' 5 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/jdbc_adapter/rake_tasks.rb: -------------------------------------------------------------------------------- 1 | warn "DEPRECATED: require 'arjdbc/rake_tasks' instead of 'jdbc_adapter/rake_tasks'." 2 | require 'arjdbc/jdbc/rake_tasks' 3 | 4 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activesupport-2.3.15/lib/active_support/core_ext/module/remove_method.rb: -------------------------------------------------------------------------------- 1 | class Module 2 | def remove_possible_method(method) 3 | remove_method(method) 4 | rescue NameError 5 | end 6 | end -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/bootstrap/JdbcDriverHolderTest/jdbc-driver.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/sonar-batch/src/test/resources/org/sonar/batch/bootstrap/JdbcDriverHolderTest/jdbc-driver.jar -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/scan/DeprecatedProjectReactorBuilderTest/multi-module-definitions-in-each-module-inherited/module1/sonar-project.properties: -------------------------------------------------------------------------------- 1 | # Mandatory properties for module1 are all inferred from the module ID 2 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/dependency/ResourceSnapshotMapperTest/fixture.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/properties/PropertiesDaoTest/insertGlobalProperties-result.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /sonar-duplications/test-resources/README.txt: -------------------------------------------------------------------------------- 1 | This directory is a workaround for opening the project into Intellij Idea. 2 | Indeed it tries to compile Java sources found in src/test/resources, and fail because of syntax errors or specific encoding. -------------------------------------------------------------------------------- /sonar-plugin-api/test-resources/README.txt: -------------------------------------------------------------------------------- 1 | This directory is a workaround for opening the project into Intellij Idea. 2 | Indeed it tries to compile Java sources found in src/test/resources, and fail because of syntax errors or specific encoding. -------------------------------------------------------------------------------- /server/sonar-server/src/main/resources/org/sonar/server/component/ws/projects-example-create.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "30057", 3 | "k": "org.jenkins-ci.plugins:sonar", 4 | "nm": "Jenkins Sonar Plugin", 5 | "sc": "PRJ", 6 | "qu": "TRK" 7 | } 8 | 9 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/db/ResultSetIteratorTest/schema.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE "FAKE" ( 2 | "ID" INTEGER NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 1, INCREMENT BY 1), 3 | "KEE" VARCHAR(200) NOT NULL 4 | ); 5 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/plugins/PluginMetadataTest/foo-plugin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-server/src/test/resources/org/sonar/server/plugins/PluginMetadataTest/foo-plugin.jar -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/qualityprofile/QProfileRuleLookupTest/find_active_rules_with_inheritance/active_rule25.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": 25, 3 | "severity": "MINOR", 4 | "profileId": 1, 5 | "inheritance": null 6 | } 7 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/qualityprofile/QProfileRuleLookupTest/find_inactive_rules_with_tags/active_rule_ace.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": 2307, 3 | "severity": "CRITICAL", 4 | "profileId": 2, 5 | "inheritance": null 6 | } 7 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/qualityprofile/QProfileRuleLookupTest/find_inactive_rules_with_tags/active_rule_empty.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": 2303, 3 | "severity": "INFO", 4 | "profileId": 2, 5 | "inheritance": null 6 | } 7 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/rule/ws/RepositoriesActionTest/repositories_squid.json: -------------------------------------------------------------------------------- 1 | { 2 | "repositories": [ 3 | { 4 | "key": "squid", 5 | "name": "SonarQube", 6 | "language": "ws" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/rule/ws/RepositoriesActionTest/repositories_xoo.json: -------------------------------------------------------------------------------- 1 | { 2 | "repositories": [ 3 | { 4 | "key": "xoo", 5 | "name": "SonarQube", 6 | "language": "xoo" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/rule/ws/RulesWebServiceMediumTest/search_template_rules.json: -------------------------------------------------------------------------------- 1 | { 2 | "total": 1, "p": 1, "ps": 100, 3 | "rules": [ 4 | { 5 | "key": "xoo:x1", 6 | "isTemplate": true 7 | } 8 | ]} 9 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/user/db/GroupDaoTest/insert-result.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/user/db/GroupDaoTest/select_by_key.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/app/views/encryption_configuration/_encrypt.html.erb: -------------------------------------------------------------------------------- 1 |

Encrypted value:

-------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/actionpack-2.3.15/lib/actionpack.rb: -------------------------------------------------------------------------------- 1 | require 'action_pack' 2 | ActiveSupport::Deprecation.warn 'require "actionpack" is deprecated and will be removed in Rails 3. Use require "action_pack" instead.' 3 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/arjdbc/hsqldb.rb: -------------------------------------------------------------------------------- 1 | require 'arjdbc/jdbc' 2 | jdbc_require_driver 'jdbc/hsqldb' 3 | require 'arjdbc/hsqldb/connection_methods' 4 | require 'arjdbc/hsqldb/adapter' 5 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activesupport-2.3.15/lib/active_support/core_ext/file.rb: -------------------------------------------------------------------------------- 1 | require 'active_support/core_ext/file/atomic' 2 | 3 | class File #:nodoc: 4 | extend ActiveSupport::CoreExtensions::File::Atomic 5 | end 6 | -------------------------------------------------------------------------------- /server/sonar-ws-client/src/test/resources/metrics/one_metric.json: -------------------------------------------------------------------------------- 1 | [{"key":"ncloc","name":"Lines of code","description":"Non Commenting Lines of Code","domain":"Size","qualitative":false,"user_managed":false,"direction":-1,"val_type":"INT","hidden":true}] -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/mediumtest/xoo/sample/testx/ClassOneTest.xoo: -------------------------------------------------------------------------------- 1 | package org.sonar.tests; 2 | 3 | import org.junit.Test; 4 | 5 | public class ClassOneTest { 6 | 7 | @Test 8 | public void nothing() { 9 | 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/org/sonar/batch/source/CodeColorizersTest/Person.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Doc 3 | */ 4 | var Person = function(first, last, middle) { 5 | this.first = first; // First 6 | this.middle = ''; 7 | this.last = 1; 8 | }; 9 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/plugins/sonar-switch-off-violations-plugin-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/sonar-core/src/test/resources/org/sonar/core/plugins/sonar-switch-off-violations-plugin-1.1.jar -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/properties/PropertiesDaoTest/should_not_rename_if_same_key-result.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/properties/PropertiesDaoTest/updateGlobalProperties-result.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/properties/PropertiesDaoTest/updateGlobalProperties.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/scan/filesystem/sample/xources/hello/HelloJava.xoo: -------------------------------------------------------------------------------- 1 | package hello; 2 | 3 | public class HelloJava { 4 | 5 | public static void main(String[] args) { 6 | System.out.println("Hello"); 7 | } 8 | } -------------------------------------------------------------------------------- /server/sonar-web/src/main/hbs/issues/facets/_issues-facet-header.hbs: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{t 'issues.facet' property}} 4 | 5 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/app/views/api_documentation/index.html.erb: -------------------------------------------------------------------------------- 1 | <% content_for :script do %> 2 | 3 | <% end %> 4 | 5 |
6 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/arjdbc/sqlite3.rb: -------------------------------------------------------------------------------- 1 | require 'arjdbc/jdbc' 2 | jdbc_require_driver 'jdbc/sqlite3' 3 | require 'arjdbc/sqlite3/connection_methods' 4 | require 'arjdbc/sqlite3/adapter' 5 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/rack-1.1.6/lib/rack/handler/evented_mongrel.rb: -------------------------------------------------------------------------------- 1 | require 'swiftcore/evented_mongrel' 2 | 3 | module Rack 4 | module Handler 5 | class EventedMongrel < Handler::Mongrel 6 | end 7 | end 8 | end 9 | -------------------------------------------------------------------------------- /sonar-batch/src/main/resources/org/sonar/batch/scan/report/issuesreport_files/sonarqube-24x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/sonar-batch/src/main/resources/org/sonar/batch/scan/report/issuesreport_files/sonarqube-24x100.png -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/mediumtest/xoo/sample-with-symlink/sonar-project.properties: -------------------------------------------------------------------------------- 1 | sonar.projectKey=sample 2 | sonar.projectName=Sample 3 | sonar.projectVersion=0.1-SNAPSHOT 4 | sonar.sources=xources 5 | sonar.tests=testx 6 | sonar.language=xoo 7 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/resource/ResourceIndexerDaoTest/shouldIndexTwoLettersLongResource-result.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/utils/XpathParserTest/sample.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | bar 4 | 5 | 6 | 7 | toto 8 | 9 | -------------------------------------------------------------------------------- /server/sonar-server/src/main/resources/org/sonar/server/source/ws/example-raw.txt: -------------------------------------------------------------------------------- 1 | package org.sonar.check; 2 | 3 | public enum Priority { 4 | /** 5 | * WARNING : DO NOT CHANGE THE ENUMERATION ORDER 6 | * the enum ordinal is used for db persistence 7 | 8 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/computation/db/AnalysisReportDaoTest/zip.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-server/src/test/resources/org/sonar/server/computation/db/AnalysisReportDaoTest/zip.zip -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/plugins/PluginClassLoadersTest/extension.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-server/src/test/resources/org/sonar/server/plugins/PluginClassLoadersTest/extension.jar -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/plugins/PluginClassLoadersTest/foo-plugin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-server/src/test/resources/org/sonar/server/plugins/PluginClassLoadersTest/foo-plugin.jar -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/qualityprofile/QProfileRuleLookupTest/shared/active_rule391.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": 391, 3 | "severity": "MAJOR", 4 | "profileId": 1, 5 | "inheritance": "INHERITED", 6 | "activeRuleParentId": 25 7 | } 8 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/rule/ws/ShowActionMediumTest/encode_html_description_of_manual_rule.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule": { 3 | "key": "manual:MY_MANUAL", 4 | "htmlDesc": "<div>line1
line2</div>" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/hbs/navigator/ajax-select-filter.hbs: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-2.3.15/lib/activerecord.rb: -------------------------------------------------------------------------------- 1 | require 'active_record' 2 | ActiveSupport::Deprecation.warn 'require "activerecord" is deprecated and will be removed in Rails 3. Use require "active_record" instead.' 3 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/arjdbc/derby.rb: -------------------------------------------------------------------------------- 1 | require 'arjdbc/jdbc' 2 | jdbc_require_driver 'jdbc/derby' 3 | require 'arjdbc/derby/connection_methods' 4 | require 'arjdbc/derby/adapter' 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/arjdbc/mssql.rb: -------------------------------------------------------------------------------- 1 | require 'arjdbc/jdbc' 2 | jdbc_require_driver 'jdbc/jtds', 'jdbc-mssql' 3 | require 'arjdbc/mssql/connection_methods' 4 | require 'arjdbc/mssql/adapter' 5 | -------------------------------------------------------------------------------- /server/sonar-ws-client/src/test/resources/org/sonar/wsclient/issue/internal/IssueJsonParserTest/empty.json: -------------------------------------------------------------------------------- 1 | { 2 | "paging": { 3 | "pageIndex": 1, 4 | "pageSize": 100, 5 | "total": 0, 6 | "pages": 0 7 | }, 8 | "maxResultsReached": false 9 | } -------------------------------------------------------------------------------- /sonar-batch/src/test/resources/mediumtest/xoo/sample/xources/hello/HelloJava.xoo.scm: -------------------------------------------------------------------------------- 1 | 1,user1,2013-01-04 2 | 1,user1,2013-01-04 3 | 1,user1,2013-01-04 4 | 1,user1,2013-01-04 5 | 2,user2,2013-01-05 6 | 2,user2,2013-01-05 7 | 3,user3,2013-01-06 8 | 4,user4,2013-01-07 -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/resource/ResourceIndexerDaoTest/shouldReIndexNewTwoLettersLongResource-result.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/resource/ResourceIndexerDaoTest/shouldReIndexTwoLettersLongResource-result.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/scan/filesystem/sample/sonar-project.properties: -------------------------------------------------------------------------------- 1 | sonar.projectKey=sample 2 | sonar.projectName=Sample 3 | sonar.projectVersion=0.1-SNAPSHOT 4 | sonar.sources=xources 5 | sonar.tests=testx 6 | sonar.language=xoo 7 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/plugins/PluginMetadataLoaderTest/old-plugin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-server/src/test/resources/org/sonar/server/plugins/PluginMetadataLoaderTest/old-plugin.jar -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/rule/ws/RepositoriesActionTest/repositories_common.json: -------------------------------------------------------------------------------- 1 | { 2 | "repositories": [ 3 | { 4 | "key": "common-ws", 5 | "name": "SonarQube Common", 6 | "language": "ws" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /server/sonar-web/src/main/hbs/api-documentation/api-documentation-actions.hbs: -------------------------------------------------------------------------------- 1 |
2 |

{{path}}

3 |
4 | 5 |
6 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/app/views/resource/_extension.html.erb: -------------------------------------------------------------------------------- 1 |
2 | <%= render :inline => @extension.getTarget().getTemplate() -%> 3 |
4 | 5 | <%= message('close') -%> 6 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/arjdbc/postgresql.rb: -------------------------------------------------------------------------------- 1 | require 'arjdbc/jdbc' 2 | jdbc_require_driver 'jdbc/postgres' 3 | require 'arjdbc/postgresql/connection_methods' 4 | require 'arjdbc/postgresql/adapter' 5 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activesupport-2.3.15/lib/activesupport.rb: -------------------------------------------------------------------------------- 1 | require 'active_support' 2 | ActiveSupport::Deprecation.warn 'require "activesupport" is deprecated and will be removed in Rails 3. Use require "active_support" instead.' 3 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/rails-2.3.15/lib/rails/version.rb: -------------------------------------------------------------------------------- 1 | module Rails 2 | module VERSION #:nodoc: 3 | MAJOR = 2 4 | MINOR = 3 5 | TINY = 15 6 | 7 | STRING = [MAJOR, MINOR, TINY].join('.') 8 | end 9 | end 10 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/images/layout/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Fugue Icons 2 | 3 | Copyright (C) 2010 Yusuke Kamiyamane. All rights reserved. 4 | The icons are licensed under a Creative Commons Attribution 5 | 3.0 license. -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/plugins/sonar-checkstyle-extensions-plugin-0.1-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/sonar-core/src/test/resources/org/sonar/core/plugins/sonar-checkstyle-extensions-plugin-0.1-SNAPSHOT.jar -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/qualityprofile/db/ActiveRuleDaoTest/insert_parameter-result.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /server/sonar-server/src/main/resources/org/sonar/server/qualitygate/ws/example-list.json: -------------------------------------------------------------------------------- 1 | { 2 | "qualitygates": [ 3 | { 4 | "id": 2, 5 | "name": "QG1" 6 | }, 7 | { 8 | "id": 4, 9 | "name": "QG2" 10 | } 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/issue/ws/SearchActionMediumTest/deprecated_paging.json: -------------------------------------------------------------------------------- 1 | { 2 | "paging": { 3 | "pageIndex": 2, 4 | "pageSize": 9, 5 | "total": 12, 6 | "fTotal": "12", 7 | "pages": 2 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/language/ws/LanguageWsTest/list_filtered_name.json: -------------------------------------------------------------------------------- 1 | { 2 | "languages": [ 3 | {"key": "ac", "name": "ArnoldC"}, 4 | {"key": "lol", "name": "LOLCODE"}, 5 | {"key": "ook", "name": "Ook!"} 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/platform/RailsAppsDeployerTest/FakeRubyRailsApp.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-server/src/test/resources/org/sonar/server/platform/RailsAppsDeployerTest/FakeRubyRailsApp.jar -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/plugins/PluginMetadataLoaderTest/foo-plugin-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-server/src/test/resources/org/sonar/server/plugins/PluginMetadataLoaderTest/foo-plugin-1.0.jar -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/plugins/PluginMetadataLoaderTest/foo-plugin-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-server/src/test/resources/org/sonar/server/plugins/PluginMetadataLoaderTest/foo-plugin-2.0.jar -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/plugins/PluginMetadataLoaderTest/not-a-plugin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schnatterer/sonarqube/master/server/sonar-server/src/test/resources/org/sonar/server/plugins/PluginMetadataLoaderTest/not-a-plugin.jar -------------------------------------------------------------------------------- /server/sonar-server/src/test/resources/org/sonar/server/source/ws/ShowActionTest/show_source_with_params_from_and_to.json: -------------------------------------------------------------------------------- 1 | { 2 | "sources": [ 3 | [3, " */"], 4 | [4, ""], 5 | [5, "public class HelloWorld {"] 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/hbs/coding-rules/facets/_coding-rules-facet-header.hbs: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{t 'coding_rules.facet' property}} 4 | 5 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/hbs/coding-rules/facets/coding-rules-query-facet.hbs: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |
5 |
6 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/app/views/project/pending_deletion.html.erb: -------------------------------------------------------------------------------- 1 | <%= render :partial => 'bulk_deletion/pending_deletions_screen', 2 | :locals => {:url_after_dismiss => url_for(:action => 'dismiss_deletion_message', :id => params[:id])} -%> -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/app/views/settings/_single_value.html.erb: -------------------------------------------------------------------------------- 1 | <%= render "settings/type_#{property_type(property, value)}", :property => property, :field => nil, :value => value, :name => input_name(property), :id => "input_#{h property.key}" -%> 2 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/app/views/shared/_result_messages.html.erb: -------------------------------------------------------------------------------- 1 | <% result.errors.each do |msg| %> 2 |
<%= h (msg.text ? msg.text : Api::Utils.message(msg.l10nKey, :params => msg.l10nParams)) -%>
3 | <% end %> 4 | 5 | 6 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activesupport-2.3.15/lib/active_support/vendor/i18n-0.4.1/i18n/locale.rb: -------------------------------------------------------------------------------- 1 | module I18n 2 | module Locale 3 | autoload :Fallbacks, 'i18n/locale/fallbacks' 4 | autoload :Tag, 'i18n/locale/tag' 5 | end 6 | end 7 | -------------------------------------------------------------------------------- /server/sonar-web/src/main/webapp/WEB-INF/gems/gems/rack-1.1.6/lib/rack/handler/swiftiplied_mongrel.rb: -------------------------------------------------------------------------------- 1 | require 'swiftcore/swiftiplied_mongrel' 2 | 3 | module Rack 4 | module Handler 5 | class SwiftipliedMongrel < Handler::Mongrel 6 | end 7 | end 8 | end 9 | -------------------------------------------------------------------------------- /server/sonar-ws-client/src/test/resources/dependency_tree/single_depth.json: -------------------------------------------------------------------------------- 1 | [{"did":"12345","rid":"2000","n":"Commons Lang","s":"PRJ","q":"LIB","w":1,"u":"compile","v":"1.4"},{"did":"12346","rid":"2001","n":"Commons IO","s":"PRJ","q":"LIB","w":1,"u":"compile","v":"2.4"}] -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/dashboard/ActiveDashboardDaoTest/shouldInsert-result.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /sonar-core/src/test/resources/org/sonar/core/qualitygate/db/QualityGateConditionDaoTest/insert-result.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sonar-plugin-api/src/test/resources/org/sonar/api/scan/filesystem/sample/testx/ClassOneTest.xoo: -------------------------------------------------------------------------------- 1 | package org.sonar.tests; 2 | 3 | import org.junit.Test; 4 | 5 | public class ClassOneTest { 6 | 7 | @Test 8 | public void nothing() { 9 | 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /sonar-testing-harness/src/test/resources/org/sonar/l10n/myPlugin.properties: -------------------------------------------------------------------------------- 1 | ## -------- Test file for the BundleSynchronizedMatcher -------- ## 2 | first.prop = This is my first property 3 | second.prop = This is my second property 4 | third.prop = This is my third property --------------------------------------------------------------------------------