diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-05-29 15:23:05 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-05-29 15:23:05 +0200 |
commit | 52fec9954c6d5225d6ea4ee61a3ae71721fd3881 (patch) | |
tree | 8527d7a83a0523cdd5fcd2efefcbeced8e26e400 /server/sonar-web/src | |
parent | a8e2ff5ad049dc21a9922dca08ef3c2825605c1b (diff) | |
download | sonarqube-52fec9954c6d5225d6ea4ee61a3ae71721fd3881.tar.gz sonarqube-52fec9954c6d5225d6ea4ee61a3ae71721fd3881.zip |
Replace references to jira.codehaus.org by jira.sonarsource.com
Diffstat (limited to 'server/sonar-web/src')
10 files changed, 15 insertions, 15 deletions
diff --git a/server/sonar-web/src/main/webapp/WEB-INF/app/models/api/utils.rb b/server/sonar-web/src/main/webapp/WEB-INF/app/models/api/utils.rb index e136dd2c89a..fffa5f2e8c5 100644 --- a/server/sonar-web/src/main/webapp/WEB-INF/app/models/api/utils.rb +++ b/server/sonar-web/src/main/webapp/WEB-INF/app/models/api/utils.rb @@ -121,16 +121,16 @@ class Api::Utils # Splits a string into an array of lines # For history reference: - # - http://jira.codehaus.org/browse/SONAR-2282 first modified the behaviour to keep the trailing lines - # - then http://jira.codehaus.org/browse/SONAR-3003 reverted this modification to remove potential last empty line - # - then http://jira.codehaus.org/browse/SONAR-3896 reactivate this modification to display last empty line + # - http://jira.sonarsource.com/browse/SONAR-2282 first modified the behaviour to keep the trailing lines + # - then http://jira.sonarsource.com/browse/SONAR-3003 reverted this modification to remove potential last empty line + # - then http://jira.sonarsource.com/browse/SONAR-3896 reactivate this modification to display last empty line def self.split_newlines(input) input.split(/\r?\n|\r/, -1) end def self.convert_string_to_unix_newlines(input) # Don't use '\n' here - # See http://jira.codehaus.org/browse/SONAR-2571 + # See http://jira.sonarsource.com/browse/SONAR-2571 split_newlines(input).join("\n") end diff --git a/server/sonar-web/src/main/webapp/WEB-INF/app/models/event.rb b/server/sonar-web/src/main/webapp/WEB-INF/app/models/event.rb index 01e4c8ef7f1..b9d1b345cf7 100644 --- a/server/sonar-web/src/main/webapp/WEB-INF/app/models/event.rb +++ b/server/sonar-web/src/main/webapp/WEB-INF/app/models/event.rb @@ -58,7 +58,7 @@ class Event < ActiveRecord::Base end # Use this method to display event description, as missing descriptions are not stored in the same way - # on different DBs (see https://jira.codehaus.org/browse/SONAR-3326) + # on different DBs (see https://jira.sonarsource.com/browse/SONAR-3326) def description_text description || '' end diff --git a/server/sonar-web/src/main/webapp/WEB-INF/app/models/snapshot.rb b/server/sonar-web/src/main/webapp/WEB-INF/app/models/snapshot.rb index f11ffcb5d8b..fd175224e56 100644 --- a/server/sonar-web/src/main/webapp/WEB-INF/app/models/snapshot.rb +++ b/server/sonar-web/src/main/webapp/WEB-INF/app/models/snapshot.rb @@ -71,7 +71,7 @@ class Snapshot < ActiveRecord::Base end def self.for_timemachine_matrix(resource) - # http://jira.codehaus.org/browse/SONAR-1850 + # http://jira.sonarsource.com/browse/SONAR-1850 # Conditions on scope and qualifier are required to exclude library snapshots. # Use-case : # 1. project A 2.0 is analyzed -> new snapshot A with qualifier TRK diff --git a/server/sonar-web/src/main/webapp/WEB-INF/app/views/settings/_properties.html.erb b/server/sonar-web/src/main/webapp/WEB-INF/app/views/settings/_properties.html.erb index c856dfa9488..9ef0f8ba55d 100644 --- a/server/sonar-web/src/main/webapp/WEB-INF/app/views/settings/_properties.html.erb +++ b/server/sonar-web/src/main/webapp/WEB-INF/app/views/settings/_properties.html.erb @@ -208,7 +208,7 @@ }) .on('keypress', 'form', function (e) { if (e.which == 13 && e.target.nodeName != "TEXTAREA") { - /* See https://jira.codehaus.org/browse/SONAR-4363 */ + /* See https://jira.sonarsource.com/browse/SONAR-4363 */ submit_settings.click(); return false; } diff --git a/server/sonar-web/src/main/webapp/WEB-INF/config/environment.rb b/server/sonar-web/src/main/webapp/WEB-INF/config/environment.rb index c5c7739fd05..825def7bd25 100644 --- a/server/sonar-web/src/main/webapp/WEB-INF/config/environment.rb +++ b/server/sonar-web/src/main/webapp/WEB-INF/config/environment.rb @@ -1,7 +1,7 @@ RAILS_GEM_VERSION = '2.3.15' # Avoid conflict with local ruby installations -# See http://jira.codehaus.org/browse/SONAR-3579 +# See http://jira.sonarsource.com/browse/SONAR-3579 ENV['GEM_HOME'] = $servlet_context.getRealPath('/WEB-INF/gems') # Bootstrap the Rails environment, frameworks, and default configuration @@ -180,7 +180,7 @@ class ActiveRecord::Migration def self.add_varchar_index(table_name, column_name, options = {}) if dialect()=='mysql' && !options[:length] # Index of varchar column is limited to 767 bytes on mysql (<= 255 UTF-8 characters) - # See http://jira.codehaus.org/browse/SONAR-4137 and + # See http://jira.sonarsource.com/browse/SONAR-4137 and # http://dev.mysql.com/doc/refman/5.6/en/innodb-restrictions.html options[:length]=255 end @@ -315,5 +315,5 @@ DatabaseVersion.automatic_setup # # Increase size of form parameters -# See http://jira.codehaus.org/browse/SONAR-5577 +# See http://jira.sonarsource.com/browse/SONAR-5577 Rack::Utils.key_space_limit = 262144 # 4 times the default size diff --git a/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/231_refactor_rule_measures.rb b/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/231_refactor_rule_measures.rb index ce57fd2579f..aaa2113df77 100644 --- a/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/231_refactor_rule_measures.rb +++ b/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/231_refactor_rule_measures.rb @@ -20,7 +20,7 @@ # # Sonar 2.13 -# http://jira.codehaus.org/browse/SONAR-1974 +# http://jira.sonarsource.com/browse/SONAR-1974 # class RefactorRuleMeasures < ActiveRecord::Migration diff --git a/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/603_add_enabled_to_projects_kee_index.rb b/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/603_add_enabled_to_projects_kee_index.rb index 6e80a8f8ee3..8f38167d47a 100644 --- a/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/603_add_enabled_to_projects_kee_index.rb +++ b/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/603_add_enabled_to_projects_kee_index.rb @@ -29,7 +29,7 @@ class AddEnabledToProjectsKeeIndex < ActiveRecord::Migration if dialect=='mysql' # Index of varchar column is limited to 767 bytes on mysql (<= 255 UTF-8 characters) - # See http://jira.codehaus.org/browse/SONAR-4137 and + # See http://jira.sonarsource.com/browse/SONAR-4137 and # http://dev.mysql.com/doc/refman/5.6/en/innodb-restrictions.html add_index :projects, [:kee, :enabled], :name => 'projects_kee', :length => {:kee => 255} else diff --git a/server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/arjdbc/jdbc/callbacks.rb b/server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/arjdbc/jdbc/callbacks.rb index 27375c60a68..d90ce8c728c 100644 --- a/server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/arjdbc/jdbc/callbacks.rb +++ b/server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/arjdbc/jdbc/callbacks.rb @@ -40,7 +40,7 @@ module ActiveRecord #sonar # Why do we try to reconnect ? It opens two connections instead of a single one. # Commenting the reconnection allows to have a single JDBC connection per HTTP request - # https://jira.codehaus.org/browse/SONAR-2784 + # https://jira.sonarsource.com/browse/SONAR-2784 #reconnect! #/sonar end diff --git a/server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/arjdbc/mysql/adapter.rb b/server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/arjdbc/mysql/adapter.rb index 163c27c06e7..740db48cbe1 100644 --- a/server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/arjdbc/mysql/adapter.rb +++ b/server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/arjdbc/mysql/adapter.rb @@ -372,7 +372,7 @@ module ::ArJdbc end # SONAR - support the length parameter when creating indices - # See http://jira.codehaus.org/browse/SONAR-4137 + # See http://jira.sonarsource.com/browse/SONAR-4137 def quoted_columns_for_index(column_names, options = {}) length = options[:length] if options.is_a?(Hash) diff --git a/server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/arjdbc/oracle/adapter.rb b/server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/arjdbc/oracle/adapter.rb index 954c838f9c2..03613383541 100644 --- a/server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/arjdbc/oracle/adapter.rb +++ b/server/sonar-web/src/main/webapp/WEB-INF/gems/gems/activerecord-jdbc-adapter-1.1.3/lib/arjdbc/oracle/adapter.rb @@ -160,7 +160,7 @@ module ::ArJdbc def sql_literal?(value) # SonarQube - # See http://jira.codehaus.org/browse/SONAR-4994 + # See http://jira.sonarsource.com/browse/SONAR-4994 # This code always returns false (we use ActiveRecord 2.3) and is heavy-CPU consuming # because of raised exceptions. #defined?(::Arel::SqlLiteral) && ::Arel::SqlLiteral === value |