]> source.dussan.org Git - redmine.git/commitdiff
Use em.info tags.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Thu, 6 Nov 2014 20:35:22 +0000 (20:35 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Thu, 6 Nov 2014 20:35:22 +0000 (20:35 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@13567 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/helpers/repositories_helper.rb

index 8a2b302f287d9c3ef4f03313d8c7fb87bb449cf8..a5fd132f5f3efd8771b165fe9bf426ee5fb817af 100644 (file)
@@ -152,8 +152,7 @@ module RepositoriesHelper
   def subversion_field_tags(form, repository)
       content_tag('p', form.text_field(:url, :size => 60, :required => true,
                        :disabled => !repository.safe_attribute?('url')) +
-                       '<br />'.html_safe +
-                       '(file:///, http://, https://, svn://, svn+[tunnelscheme]://)') +
+                       content_tag('em', '(file:///, http://, https://, svn://, svn+[tunnelscheme]://)', :class => 'info')) +
       content_tag('p', form.text_field(:login, :size => 30)) +
       content_tag('p', form.password_field(
                             :password, :size => 30, :name => 'ignore',
@@ -178,12 +177,12 @@ module RepositoriesHelper
                        :size => 60, :required => true,
                        :disabled => !repository.safe_attribute?('url')
                          ) +
-                     '<br />'.html_safe + l(:text_mercurial_repository_note)) +
+                     content_tag('em', l(:text_mercurial_repository_note), :class => 'info')) +
     content_tag('p', form.select(
                         :path_encoding, [nil] + Setting::ENCODINGS,
                         :label => l(:field_scm_path_encoding)
                         ) +
-                     '<br />'.html_safe + l(:text_scm_path_encoding_note))
+                     content_tag('em', l(:text_scm_path_encoding_note), :class => 'info'))
   end
 
   def git_field_tags(form, repository)
@@ -192,13 +191,12 @@ module RepositoriesHelper
                        :size => 60, :required => true,
                        :disabled => !repository.safe_attribute?('url')
                          ) +
-                      '<br />'.html_safe +
-                      l(:text_git_repository_note)) +
+                      content_tag('em', l(:text_git_repository_note), :class => 'info')) +
     content_tag('p', form.select(
                         :path_encoding, [nil] + Setting::ENCODINGS,
                         :label => l(:field_scm_path_encoding)
                         ) +
-                     '<br />'.html_safe + l(:text_scm_path_encoding_note)) +
+                     content_tag('em', l(:text_scm_path_encoding_note), :class => 'info')) +
     content_tag('p', form.check_box(
                         :extra_report_last_commit,
                         :label => l(:label_git_report_last_commit)
@@ -223,7 +221,7 @@ module RepositoriesHelper
                         :path_encoding, [nil] + Setting::ENCODINGS,
                         :label => l(:field_scm_path_encoding)
                         ) +
-                     '<br />'.html_safe + l(:text_scm_path_encoding_note))
+                     content_tag('em', l(:text_scm_path_encoding_note), :class => 'info'))
   end
 
   def bazaar_field_tags(form, repository)
@@ -245,7 +243,7 @@ module RepositoriesHelper
                         :path_encoding, [nil] + Setting::ENCODINGS,
                         :label => l(:field_scm_path_encoding)
                         ) +
-                     '<br />'.html_safe + l(:text_scm_path_encoding_note))
+                     content_tag('em', l(:text_scm_path_encoding_note), :class => 'info'))
   end
 
   def index_commits(commits, heads)