]> source.dussan.org Git - redmine.git/commitdiff
Removed unneeded #h calls in views.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Mon, 23 Feb 2015 10:11:08 +0000 (10:11 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Mon, 23 Feb 2015 10:11:08 +0000 (10:11 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@14043 e93f8b46-1217-0410-a6f0-8f06a7374b81

94 files changed:
app/views/activities/index.html.erb
app/views/admin/plugins.html.erb
app/views/attachments/_links.html.erb
app/views/attachments/diff.html.erb
app/views/attachments/edit.html.erb
app/views/attachments/file.html.erb
app/views/auth_sources/index.html.erb
app/views/boards/index.html.erb
app/views/boards/show.html.erb
app/views/calendars/show.html.erb
app/views/common/_calendar.html.erb
app/views/common/error.html.erb
app/views/context_menus/issues.html.erb
app/views/context_menus/time_entries.html.erb
app/views/custom_fields/_form.html.erb
app/views/custom_fields/_index.html.erb
app/views/documents/_document.html.erb
app/views/documents/show.html.erb
app/views/enumerations/index.html.erb
app/views/files/index.html.erb
app/views/gantts/show.html.erb
app/views/groups/index.html.erb
app/views/groups/show.html.erb
app/views/issue_statuses/index.html.erb
app/views/issues/_relations.html.erb
app/views/issues/bulk_edit.html.erb
app/views/issues/edit.html.erb
app/views/issues/index.html.erb
app/views/issues/show.html.erb
app/views/layouts/base.html.erb
app/views/mailer/_issue.html.erb
app/views/mailer/account_activated.html.erb
app/views/mailer/account_activation_request.html.erb
app/views/mailer/account_information.html.erb
app/views/mailer/attachments_added.html.erb
app/views/mailer/document_added.html.erb
app/views/mailer/lost_password.html.erb
app/views/mailer/message_posted.html.erb
app/views/mailer/news_added.html.erb
app/views/mailer/news_comment_added.html.erb
app/views/mailer/register.html.erb
app/views/mailer/test_email.html.erb
app/views/mailer/wiki_content_added.html.erb
app/views/mailer/wiki_content_updated.html.erb
app/views/messages/edit.html.erb
app/views/messages/new.html.erb
app/views/messages/show.html.erb
app/views/my/_sidebar.html.erb
app/views/my/blocks/_timelog.html.erb
app/views/news/_news.html.erb
app/views/news/index.html.erb
app/views/news/show.html.erb
app/views/projects/_form.html.erb
app/views/projects/_members_box.html.erb
app/views/projects/destroy.html.erb
app/views/projects/list_members.html.erb
app/views/projects/settings/_activities.html.erb
app/views/projects/settings/_boards.html.erb
app/views/projects/settings/_issue_categories.html.erb
app/views/projects/settings/_repositories.html.erb
app/views/projects/settings/_versions.html.erb
app/views/projects/show.html.erb
app/views/queries/index.html.erb
app/views/reports/_details.html.erb
app/views/reports/_simple.html.erb
app/views/repositories/_breadcrumbs.html.erb
app/views/repositories/_dir_list_content.html.erb
app/views/repositories/committers.html.erb
app/views/repositories/revision.html.erb
app/views/repositories/show.html.erb
app/views/roles/index.html.erb
app/views/roles/permissions.html.erb
app/views/search/index.html.erb
app/views/timelog/_form.html.erb
app/views/timelog/_report_criteria.html.erb
app/views/trackers/_form.html.erb
app/views/trackers/index.html.erb
app/views/users/_groups.html.erb
app/views/users/index.html.erb
app/views/users/show.html.erb
app/views/versions/_issue_counts.html.erb
app/views/versions/show.html.erb
app/views/wiki/annotate.html.erb
app/views/wiki/date_index.html.erb
app/views/wiki/destroy.html.erb
app/views/wiki/edit.html.erb
app/views/wiki/export.html.erb
app/views/wiki/export_multiple.html.erb
app/views/wiki/history.html.erb
app/views/wiki/rename.html.erb
app/views/wiki/show.html.erb
app/views/wikis/destroy.html.erb
app/views/workflows/_form.html.erb
app/views/workflows/permissions.html.erb

index c6fd357c76d227c663bea236cdb3a19552ade89b..0a996a052559922c354be8012e16128b376884d1 100644 (file)
@@ -9,7 +9,7 @@
   <dt class="<%= e.event_type %> <%= "grouped" if in_group %> <%= User.current.logged? && e.respond_to?(:event_author) && User.current == e.event_author ? 'me' : nil %>">
   <%= avatar(e.event_author, :size => "24") if e.respond_to?(:event_author) %>
   <span class="time"><%= format_time(e.event_datetime, false) %></span>
-  <%= content_tag('span', h(e.project), :class => 'project') if @project.nil? || @project != e.project %>
+  <%= content_tag('span', e.project, :class => 'project') if @project.nil? || @project != e.project %>
   <%= link_to format_activity_title(e.event_title), e.event_url %>
   </dt>
   <dd class="<%= "grouped" if in_group %>"><span class="description"><%= format_activity_description(e.event_description) %></span>
index 117735cdc80859edd373725015d70c267eb51c39..47c1dfade48139aa7d5af39480365a27e2c772e8 100644 (file)
@@ -4,11 +4,11 @@
 <table class="list plugins">
     <% @plugins.each do |plugin| %>
         <tr id="plugin-<%= plugin.id %>" class="<%= cycle('odd', 'even') %>">
-        <td class="name"><span class="name"><%=h plugin.name %></span>
-            <%= content_tag('span', h(plugin.description), :class => 'description') unless plugin.description.blank? %>
-            <%= content_tag('span', link_to(h(plugin.url), plugin.url), :class => 'url') unless plugin.url.blank? %>
+        <td class="name"><span class="name"><%= plugin.name %></span>
+            <%= content_tag('span', plugin.description, :class => 'description') unless plugin.description.blank? %>
+            <%= content_tag('span', link_to(plugin.url, plugin.url), :class => 'url') unless plugin.url.blank? %>
         </td>
-        <td class="author"><%= plugin.author_url.blank? ? h(plugin.author) : link_to(h(plugin.author), plugin.author_url) %></td>
+        <td class="author"><%= plugin.author_url.blank? ? plugin.author : link_to(plugin.author, plugin.author_url) %></td>
         <td class="version"><span class="icon"><%= plugin.version %></span></td>
         <td class="configure"><%= link_to(l(:button_configure), plugin_settings_path(plugin)) if plugin.configurable? %></td>
         </tr>
index 001a038dbeb934df1be1302c2d66b0e2e1fcb765..0804b8002d57879fe3dde6d3905b5514c104a07c 100644 (file)
@@ -11,7 +11,7 @@
                 :controller => 'attachments', :action => 'show',
                 :id => attachment, :filename => attachment.filename %>
   <% end %>
-  <%= h(" - #{attachment.description}") unless attachment.description.blank? %>
+  <%= " - #{attachment.description}" unless attachment.description.blank? %>
   <span class="size">(<%= number_to_human_size attachment.filesize %>)</span>
   <% if options[:deletable] %>
     <%= link_to image_tag('delete.png'), attachment_path(attachment),
@@ -21,7 +21,7 @@
                                          :title => l(:button_delete) %>
   <% end %>
   <% if options[:author] %>
-    <span class="author"><%= h(attachment.author) %>, <%= format_time(attachment.created_on) %></span>
+    <span class="author"><%= attachment.author %>, <%= format_time(attachment.created_on) %></span>
   <% end %>
   </p>
 <% end %>
index b8fb690487bb2dd559df0c992cf3ecec4e0f1afc..d125f82fd04fc79f9d2ed1aaf65949b0deac5a24 100644 (file)
@@ -1,7 +1,7 @@
 <h2><%=h @attachment.filename %></h2>
 
 <div class="attachments">
-<p><%= h("#{@attachment.description} - ") unless @attachment.description.blank? %>
+<p><%= "#{@attachment.description} - " unless @attachment.description.blank? %>
    <span class="author"><%= link_to_user(@attachment.author) %>, <%= format_time(@attachment.created_on) %></span></p>
 <p><%= link_to_attachment @attachment, :text => l(:button_download), :download => true -%>
    <span class="size">(<%= number_to_human_size @attachment.filesize %>)</span></p>
index c979c90ea81ceef4a26d69676768978ea2c9543b..de089eae5b10cf1652941aa0c28035f70cab42cf 100644 (file)
@@ -11,7 +11,7 @@
       <td colspan="2">
         <span class="icon icon-attachment"><%= attachment.filename_was %></span>
         <span class="size">(<%= number_to_human_size attachment.filesize %>)</span>
-        <span class="author"><%= h(attachment.author) %>, <%= format_time(attachment.created_on) %></span>
+        <span class="author"><%= attachment.author %>, <%= format_time(attachment.created_on) %></span>
       </td>
     </tr>
     <tr id="attachment-<%= attachment.id %>">
index 47cb7b1f9ad66aa4b2e6316781a1e4cf2c69e346..e507ab6485044432a66fcd6c2dd06f9543633a96 100644 (file)
@@ -1,7 +1,7 @@
 <h2><%=h @attachment.filename %></h2>
 
 <div class="attachments">
-<p><%= h("#{@attachment.description} - ") unless @attachment.description.blank? %>
+<p><%= "#{@attachment.description} - " unless @attachment.description.blank? %>
    <span class="author"><%= link_to_user(@attachment.author) %>, <%= format_time(@attachment.created_on) %></span></p>
 <p><%= link_to_attachment @attachment, :text => l(:button_download), :download => true -%>
    <span class="size">(<%= number_to_human_size @attachment.filesize %>)</span></p>
index ad84572d450f7ea9b9761bd8b4888641266cc87b..fcdbf7d4390d6850f23c95cc59ce1462f4d33392 100644 (file)
   <tbody>
 <% for source in @auth_sources %>
   <tr id="auth-source-<%= source.id %>" class="<%= cycle("odd", "even") %>">
-    <td class="name"><%= link_to(h(source.name), :action => 'edit', :id => source)%></td>
-    <td><%= source.auth_method_name %></td>
-    <td><%= source.host %></td>
-    <td><%= source.users.count %></td>
+    <td class="name"><%= link_to(source.name, :action => 'edit', :id => source)%></td>
+    <td><%= source.auth_method_name %></td>
+    <td><%= source.host %></td>
+    <td><%= source.users.count %></td>
     <td class="buttons">
       <%= link_to l(:button_test), try_connection_auth_source_path(source), :class => 'icon icon-test' %>
       <%= delete_link auth_source_path(source) %>
index 640b8a1a34d1b41bc894bfac49963351be3e2ae5..29074130b667acf837aedc86d704a98545afd0df 100644 (file)
@@ -11,7 +11,7 @@
 <% Board.board_tree(@boards) do |board, level| %>
   <tr class="<%= cycle 'odd', 'even' %>">
     <td class="name" style="padding-left: <%= level * 18 %>px;">
-      <%= link_to h(board.name), project_board_path(board.project, board), :class => "board" %><br />
+      <%= link_to board.name, project_board_path(board.project, board), :class => "board" %><br />
       <%=h board.description %>
     </td>
     <td class="topic-count"><%= board.topics_count %></td>
index f5e9b12952eaa8688bf2c84bb3475e6e61896bf5..7a599eae25d8516636ff295c5b76007370180173 100644 (file)
@@ -10,7 +10,7 @@
 
 <div id="add-message" style="display:none;">
 <% if User.current.allowed_to?(:add_messages, @board.project) %>
-<h2><%= link_to h(@board.name), project_board_path(@project, @board) %> &#187; <%= l(:label_message_new) %></h2>
+<h2><%= link_to @board.name, project_board_path(@project, @board) %> &#187; <%= l(:label_message_new) %></h2>
 <%= form_for @message, :url => new_board_message_path(@board), :html => {:multipart => true, :id => 'message-form'} do |f| %>
   <%= render :partial => 'messages/form', :locals => {:f => f} %>
   <p><%= submit_tag l(:button_create) %>
@@ -21,8 +21,8 @@
 <% end %>
 </div>
 
-<h2><%=h @board.name %></h2>
-<p class="subtitle"><%=h @board.description %></p>
+<h2><%= @board.name %></h2>
+<p class="subtitle"><%= @board.description %></p>
 
 <% if @topics.any? %>
 <table class="list messages">
@@ -36,7 +36,7 @@
   <tbody>
   <% @topics.each do |topic| %>
     <tr class="message <%= cycle 'odd', 'even' %> <%= topic.sticky? ? 'sticky' : '' %> <%= topic.locked? ? 'locked' : '' %>">
-      <td class="subject"><%= link_to h(topic.subject), board_message_path(@board, topic) %></td>
+      <td class="subject"><%= link_to topic.subject, board_message_path(@board, topic) %></td>
       <td class="author"><%= link_to_user(topic.author) %></td>
       <td class="created_on"><%= format_time(topic.created_on) %></td>
       <td class="reply-count"><%= topic.replies_count %></td>
index bfa8351d61ea685afca22709c7fc20e5da3098dd..f189460277f9fa5bde8d95141cd597737195f20f 100644 (file)
@@ -1,4 +1,4 @@
-<h2><%= @query.new_record? ? l(:label_calendar) : h(@query.name) %></h2>
+<h2><%= @query.new_record? ? l(:label_calendar) : @query.name %></h2>
 
 <%= form_tag({:controller => 'calendars', :action => 'show', :project_id => @project},
              :method => :get, :id => 'query_form') do %>
index 7951b68ce4c54e2d1eeef2fb868354b89f2cb7ce..d950749aaf7eb1d517c1dcbf2be3bef94c0d4189 100644 (file)
@@ -12,13 +12,13 @@ while day <= calendar.enddt %>
 <% calendar.events_on(day).each do |i| %>
   <% if i.is_a? Issue %>
   <div class="<%= i.css_classes %> <%= 'starting' if day == i.start_date %> <%= 'ending' if day == i.due_date %> tooltip">
-  <%= h("#{i.project} -") unless @project && @project == i.project %>
+  <%= "#{i.project} -" unless @project && @project == i.project %>
   <%= link_to_issue i, :truncate => 30 %>
   <span class="tip"><%= render_issue_tooltip i %></span>
   </div>
   <% else %>
   <span class="icon icon-package">
-    <%= h("#{i.project} -") unless @project && @project == i.project %>
+    <%= "#{i.project} -" unless @project && @project == i.project %>
     <%= link_to_version i%>
   </span>
   <% end %>
index 5bb43dea0ec877365642f683669010123eacc5f3..a5ec39c3a2f0690ddc96ce2f67ddfc4409d6e6a0 100644 (file)
@@ -1,7 +1,7 @@
-<h2><%=h @status %></h2>
+<h2><%= @status %></h2>
 
 <% if @message.present? %>
-  <p id="errorExplanation"><%=h @message %></p>
+  <p id="errorExplanation"><%= @message %></p>
 <% end %>
 <p><a href="javascript:history.back()"><%= l(:button_back) %></a></p>
 
index 65ddb002be902eabc616d48c4ac7b9206ad61a39..48be73b021870e747010ec724d2f21c98093f98a 100644 (file)
@@ -14,7 +14,7 @@
     <a href="#" class="submenu"><%= l(:field_status) %></a>
     <ul>
     <% @allowed_statuses.each do |s| -%>
-        <li><%= context_menu_link h(s.name), bulk_update_issues_path(:ids => @issue_ids, :issue => {:status_id => s}, :back_url => @back), :method => :post,
+        <li><%= context_menu_link s.name, bulk_update_issues_path(:ids => @issue_ids, :issue => {:status_id => s}, :back_url => @back), :method => :post,
                                   :selected => (@issue && s == @issue.status), :disabled => !@can[:edit] %></li>
     <% end -%>
     </ul>
@@ -26,7 +26,7 @@
     <a href="#" class="submenu"><%= l(:field_tracker) %></a>
     <ul>
     <% @trackers.each do |t| -%>
-        <li><%= context_menu_link h(t.name), bulk_update_issues_path(:ids => @issue_ids, :issue => {'tracker_id' => t}, :back_url => @back), :method => :post,
+        <li><%= context_menu_link t.name, bulk_update_issues_path(:ids => @issue_ids, :issue => {'tracker_id' => t}, :back_url => @back), :method => :post,
                                   :selected => (@issue && t == @issue.tracker), :disabled => !@can[:edit] %></li>
     <% end -%>
     </ul>
@@ -38,7 +38,7 @@
     <a href="#" class="submenu"><%= l(:field_priority) %></a>
     <ul>
     <% @priorities.each do |p| -%>
-        <li><%= context_menu_link h(p.name), bulk_update_issues_path(:ids => @issue_ids, :issue => {'priority_id' => p}, :back_url => @back), :method => :post,
+        <li><%= context_menu_link p.name, bulk_update_issues_path(:ids => @issue_ids, :issue => {'priority_id' => p}, :back_url => @back), :method => :post,
                                   :selected => (@issue && p == @issue.priority), :disabled => (!@can[:edit] || @issues.detect {|i| !i.leaf?}) %></li>
     <% end -%>
     </ul>
@@ -68,7 +68,7 @@
                                   :disabled => !@can[:edit] %></li>
     <% end %>
     <% @assignables.each do |u| -%>
-        <li><%= context_menu_link h(u.name), bulk_update_issues_path(:ids => @issue_ids, :issue => {'assigned_to_id' => u}, :back_url => @back), :method => :post,
+        <li><%= context_menu_link u.name, bulk_update_issues_path(:ids => @issue_ids, :issue => {'assigned_to_id' => u}, :back_url => @back), :method => :post,
                                   :selected => (@issue && u == @issue.assigned_to), :disabled => !@can[:edit] %></li>
     <% end -%>
         <li><%= context_menu_link l(:label_nobody), bulk_update_issues_path(:ids => @issue_ids, :issue => {'assigned_to_id' => 'none'}, :back_url => @back), :method => :post,
@@ -82,7 +82,7 @@
     <a href="#" class="submenu"><%= l(:field_category) %></a>
     <ul>
     <% @project.issue_categories.each do |u| -%>
-        <li><%= context_menu_link h(u.name), bulk_update_issues_path(:ids => @issue_ids, :issue => {'category_id' => u}, :back_url => @back), :method => :post,
+        <li><%= context_menu_link u.name, bulk_update_issues_path(:ids => @issue_ids, :issue => {'category_id' => u}, :back_url => @back), :method => :post,
                                   :selected => (@issue && u == @issue.category), :disabled => !@can[:edit] %></li>
     <% end -%>
         <li><%= context_menu_link l(:label_none), bulk_update_issues_path(:ids => @issue_ids, :issue => {'category_id' => 'none'}, :back_url => @back), :method => :post,
 
   <% @options_by_custom_field.each do |field, options| %>
     <li class="folder cf_<%= field.id %>">
-      <a href="#" class="submenu"><%= h(field.name) %></a>
+      <a href="#" class="submenu"><%= field.name %></a>
       <ul>
       <% options.each do |text, value| %>
         <li><%= bulk_update_custom_field_context_menu_link(field, text, value || text) %></li>
index 3ab8d07aa536db7e66732799ea719e1d7ab51a1b..5f6ebd7ef05c5f0a047187089914d211076a1130 100644 (file)
@@ -14,7 +14,7 @@
     <a href="#" class="submenu"><%= l(:field_activity) %></a>
     <ul>
     <% @activities.each do |u| -%>
-        <li><%= context_menu_link h(u.name), {:controller => 'timelog', :action => 'bulk_update', :ids => @time_entries.collect(&:id), :time_entry => {'activity_id' => u}, :back_url => @back}, :method => :post,
+        <li><%= context_menu_link u.name, {:controller => 'timelog', :action => 'bulk_update', :ids => @time_entries.collect(&:id), :time_entry => {'activity_id' => u}, :back_url => @back}, :method => :post,
                                   :selected => (@time_entry && u == @time_entry.activity), :disabled => !@can[:edit] %></li>
     <% end -%>
         <li><%= context_menu_link l(:label_none), {:controller => 'timelog', :action => 'bulk_update', :ids => @time_entries.collect(&:id), :time_entry => {'activity_id' => 'none'}, :back_url => @back}, :method => :post,
@@ -25,7 +25,7 @@
 
   <% @options_by_custom_field.each do |field, options| %>
     <li class="folder cf_<%= field.id %>">
-      <a href="#" class="submenu"><%= h(field.name) %></a>
+      <a href="#" class="submenu"><%= field.name %></a>
       <ul>
       <% options.each do |text, value| %>
         <li><%= bulk_update_time_entry_custom_field_context_menu_link(field, text, value || text) %></li>
index 0e1851d01bd3c4414e5fae12d7932896ba86817e..c5e2824c591efe5f450c4bd569b4317bc9a37ee0 100644 (file)
@@ -94,7 +94,7 @@ when "IssueCustomField" %>
                       (@custom_field.trackers.include? tracker),
                       :id => "custom_field_tracker_ids_#{tracker.id}" %>
     <label class="no-css" for="custom_field_tracker_ids_<%=tracker.id%>">
-      <%= h(tracker.name) %>
+      <%= tracker.name %>
     </label>
   <% end %>
   <%= hidden_field_tag "custom_field[tracker_ids][]", '' %>
@@ -103,7 +103,7 @@ when "IssueCustomField" %>
 
   <fieldset class="box" id="custom_field_project_ids"><legend><%= l(:label_project_plural) %></legend>
     <%= render_project_nested_lists(Project.all) do |p|
-      content_tag('label', check_box_tag('custom_field[project_ids][]', p.id, @custom_field.projects.to_a.include?(p), :id => nil) + ' ' + h(p))
+      content_tag('label', check_box_tag('custom_field[project_ids][]', p.id, @custom_field.projects.to_a.include?(p), :id => nil) + ' ' + p)
     end %>
     <%= hidden_field_tag('custom_field[project_ids][]', '', :id => nil) %>
     <p><%= check_all_links 'custom_field_project_ids' %></p>
index 0b578d6ee59dc7a96e4190c809f3034ab8948613..858665e93d298d0c98e54205b8ddb9a80b03cf9b 100644 (file)
@@ -13,7 +13,7 @@
   <tbody>
   <% (@custom_fields_by_type[tab[:name]] || []).sort.each do |custom_field| -%>
     <tr class="<%= cycle("odd", "even") %>">
-      <td class="name"><%= link_to h(custom_field.name), edit_custom_field_path(custom_field) %></td>
+      <td class="name"><%= link_to custom_field.name, edit_custom_field_path(custom_field) %></td>
       <td><%= l(custom_field.format.label) %></td>
       <td><%= checked_image custom_field.is_required? %></td>
       <% if tab[:name] == 'IssueCustomField' %>
index e14d880a7de02b5046f5a5ae7760406c1668d151..9a96d5d3231440fc976d120fb2f71fc2bb42a472 100644 (file)
@@ -1,4 +1,4 @@
-<h4><%= link_to h(document.title), document_path(document) %></h4>
+<h4><%= link_to document.title, document_path(document) %></h4>
 <p><em><%= format_time(document.updated_on) %></em></p>
 
 <div class="wiki">
index 8b1f0067b3511c266d79a3b2d7346a0e27a7f88a..8d2e495c09112a515b8b5e810776393d03692e07 100644 (file)
@@ -7,9 +7,9 @@
 <% end %>
 </div>
 
-<h2><%=h @document.title %></h2>
+<h2><%= @document.title %></h2>
 
-<p><em><%=h @document.category.name %><br />
+<p><em><%= @document.category.name %><br />
 <%= format_date @document.created_on %></em></p>
 
 <% if @document.custom_field_values.any? %>
index 684b933a6b313cd408c7d42df4f9e9b66f6846e6..d1fb9192636a442f39101e6cd8fc57400d9377fc 100644 (file)
@@ -15,7 +15,7 @@
 </tr></thead>
 <% enumerations.each do |enumeration| %>
 <tr class="<%= cycle('odd', 'even') %>">
-    <td class="name"><%= link_to h(enumeration), edit_enumeration_path(enumeration) %></td>
+    <td class="name"><%= link_to enumeration, edit_enumeration_path(enumeration) %></td>
     <td class="tick"><%= checked_image enumeration.is_default? %></td>
     <td class="tick"><%= checked_image enumeration.active? %></td>
     <td class="reorder"><%= reorder_links('enumeration', {:action => 'update', :id => enumeration}, :put) %></td>
index c164cc0118d4ee3cf960aa9aa7b170575a1751d7..decc7314e64940cc1699c2ada44d9cae9e8a668b 100644 (file)
@@ -21,7 +21,7 @@
   <% if container.is_a?(Version) -%>
   <tr>
     <th colspan="6">
-      <%= link_to(h(container), {:controller => 'versions', :action => 'show', :id => container}, :class => "icon icon-package") %>
+      <%= link_to(container, {:controller => 'versions', :action => 'show', :id => container}, :class => "icon icon-package") %>
     </th>
   </tr>
   <% end -%>
index 5dd95232d0c0966a41b9e94c1882ca5f1ed4abf7..ada60cd668e8883cd62495480ba541b732138257 100644 (file)
@@ -6,7 +6,7 @@
 <% end %>
 </div>
 
-<h2><%= @query.new_record? ? l(:label_gantt) : h(@query.name) %></h2>
+<h2><%= @query.new_record? ? l(:label_gantt) : @query.name %></h2>
 
 <%= form_tag({:controller => 'gantts', :action => 'show',
              :project_id => @project, :month => params[:month],
     style += "height: #{height}px;"
   %>
   <%= content_tag(:div, :style => style, :class => "gantt_hdr") do %>
-    <%= link_to h("#{month_f.year}-#{month_f.month}"),
+    <%= link_to "#{month_f.year}-#{month_f.month}",
                 @gantt.params.merge(:year => month_f.year, :month => month_f.month),
                 :title => "#{month_name(month_f.month)} #{month_f.year}" %>
   <% end %>
index a600ca48df8603e2a75bd467ac0d119666f0bbe4..888b4085d5b6b70e9060050d7a7473820af4845d 100644 (file)
@@ -13,7 +13,7 @@
   <tbody>
 <% @groups.each do |group| %>
   <tr id="group-<%= group.id %>" class="<%= cycle 'odd', 'even' %> <%= "builtin" if group.builtin? %>">
-    <td class="name"><%= link_to h(group), edit_group_path(group) %></td>
+    <td class="name"><%= link_to group, edit_group_path(group) %></td>
     <td class="user_count"><%= (@user_count_by_group_id[group.id] || 0) unless group.builtin? %></td>
     <td class="buttons"><%= delete_link group unless group.builtin? %></td>
   </tr>
index 4a0a18da755cb260b2204674ab0b6ab860d874dc..b10427bf9e81aa640c686f873c810b5cb4a93456 100644 (file)
@@ -2,6 +2,6 @@
 
 <ul>
 <% @group.users.each do |user| %>
-    <li><%=h user %></li>
+    <li><%= user %></li>
 <% end %>
 </ul>
index 81c34f703e120001bc2dabe2814b6917d10f5a8e..3da8c5b80ed29d633575ced22d59368a70a467ed 100644 (file)
@@ -18,9 +18,9 @@
   <tbody>
 <% for status in @issue_statuses %>
   <tr class="<%= cycle("odd", "even") %>">
-  <td class="name"><%= link_to h(status.name), edit_issue_status_path(status) %></td>
+  <td class="name"><%= link_to status.name, edit_issue_status_path(status) %></td>
   <% if Issue.use_status_for_done_ratio? %>
-  <td><%= status.default_done_ratio %></td>
+  <td><%= status.default_done_ratio %></td>
   <% end %>
   <td><%= checked_image status.is_closed? %></td>
   <td class="reorder"><%= reorder_links('issue_status', {:action => 'update', :id => status, :page => params[:page]}, :put) %></td>
index fcb1759ef2d9ae26d9528b11aa1548aef9c1eb5c..d3e7f4d0b7e6591d244189a8b057104e65c4977c 100644 (file)
@@ -16,7 +16,7 @@
   <td class="subject" style="width: 50%">
     <%= relation.to_s(@issue) {|other| link_to_issue(other, :project => Setting.cross_project_issue_relations?)}.html_safe %>
   </td>
-  <td class="status"><%=h other_issue.status.name %></td>
+  <td class="status"><%= other_issue.status.name %></td>
   <td class="start_date"><%= format_date(other_issue.start_date) %></td>
   <td class="due_date"><%= format_date(other_issue.due_date) %></td>
   <td class="buttons"><%= link_to image_tag('link_break.png'),
index 4cdc257da86f590e737ca35d080bd18eb24a5a79..b4ec3d542ad0f65e2baf48931d264ff0bd512129 100644 (file)
@@ -93,7 +93,7 @@
 
 <% @custom_fields.each do |custom_field| %>
   <p>
-    <label><%= h(custom_field.name) %></label>
+    <label><%= custom_field.name %></label>
     <%= custom_field_tag_for_bulk_edit('issue', custom_field, @issues, @issue_params[:custom_field_values][custom_field.id.to_s]) %>
   </p>
 <% end %>
index f2c6024baaff9ff3c5f26ab2da3670a7b7774e4e..1cd61b78354f4f80157a3218989eb47c768419d3 100644 (file)
@@ -1,4 +1,4 @@
-<h2><%=h "#{@issue.tracker.name} ##{@issue.id}" %></h2>
+<h2><%= "#{@issue.tracker.name} ##{@issue.id}" %></h2>
 
 <%= render :partial => 'edit' %>
 <% content_for :header_tags do %>
index 50c8bf9bf57cdac943650086836f270bdc0a753d..55bfc5647549217e0e3c3b309400bbc9f8f4949b 100644 (file)
@@ -5,7 +5,7 @@
 <% end %>
 </div>
 
-<h2><%= @query.new_record? ? l(:label_issue_plural) : h(@query.name) %></h2>
+<h2><%= @query.new_record? ? l(:label_issue_plural) : @query.name %></h2>
 <% html_title(@query.new_record? ? l(:label_issue_plural) : @query.name) %>
 
 <%= form_tag({ :controller => 'issues', :action => 'index', :project_id => @project },
index 6a514ac88e0b663f676dfc21c1375a6b093afa47..ad8ee98a41876ab80d986c75374d389abf26a1db 100644 (file)
 
 <table class="attributes">
 <%= issue_fields_rows do |rows|
-  rows.left l(:field_status), h(@issue.status.name), :class => 'status'
-  rows.left l(:field_priority), h(@issue.priority.name), :class => 'priority'
+  rows.left l(:field_status), @issue.status.name, :class => 'status'
+  rows.left l(:field_priority), @issue.priority.name, :class => 'priority'
 
   unless @issue.disabled_core_fields.include?('assigned_to_id')
     rows.left l(:field_assigned_to), avatar(@issue.assigned_to, :size => "14").to_s.html_safe + (@issue.assigned_to ? link_to_user(@issue.assigned_to) : "-"), :class => 'assigned-to'
   end
   unless @issue.disabled_core_fields.include?('category_id')
-    rows.left l(:field_category), h(@issue.category ? @issue.category.name : "-"), :class => 'category'
+    rows.left l(:field_category), (@issue.category ? @issue.category.name : "-"), :class => 'category'
   end
   unless @issue.disabled_core_fields.include?('fixed_version_id')
     rows.left l(:field_fixed_version), (@issue.fixed_version ? link_to_version(@issue.fixed_version) : "-"), :class => 'fixed-version'
index 778f1d3cdb41beed13c0d926d4fc89c5d64bcfac..434f46ce8ad9d230db1cd5fca421c084cb8e0055 100644 (file)
@@ -2,7 +2,7 @@
 <html lang="<%= current_language %>">
 <head>
 <meta charset="utf-8" />
-<title><%=h html_title %></title>
+<title><%= html_title %></title>
 <meta name="description" content="<%= Redmine::Info.app_name %>" />
 <meta name="keywords" content="issue,bug,tracker" />
 <%= csrf_meta_tag %>
@@ -15,7 +15,7 @@
 <!-- page specific tags -->
 <%= yield :header_tags -%>
 </head>
-<body class="<%=h body_css_classes %>">
+<body class="<%= body_css_classes %>">
 <div id="wrapper">
 <div id="wrapper2">
 <div id="wrapper3">
index 6b84a5be10b027fe921a9d13aa16d52090d011e7..9461d849060fceef94119319c1f669a58c2b8fe4 100644 (file)
@@ -1,4 +1,4 @@
-<h1><%= link_to(h("#{issue.tracker.name} ##{issue.id}: #{issue.subject}"), issue_url) %></h1>
+<h1><%= link_to("#{issue.tracker.name} ##{issue.id}: #{issue.subject}", issue_url) %></h1>
 
 <%= render_email_issue_attributes(issue, users.first, true) %>
 
index cb8d8caa1b76fc3ddb91ed42b92eca109d383536..6dc95223897bfa8bb61eedb9953c9d5b8d1cb405 100644 (file)
@@ -1,2 +1,2 @@
 <p><%= l(:notice_account_activated) %></p>
-<p><%= l(:label_login) %>: <%= link_to h(@login_url), @login_url %></p>
+<p><%= l(:label_login) %>: <%= link_to @login_url, @login_url %></p>
index 4450631b92f640ecfef37cf28736d0f7e424f3df..b19cf32198ccea23547534d7978da461313aafa0 100644 (file)
@@ -1,2 +1,2 @@
 <p><%= l(:mail_body_account_activation_request, h(@user.login)) %></p>
-<p><%= link_to h(@url), @url %></p>
+<p><%= link_to @url, @url %></p>
index 426aacee1f7f562b6bd21f2e64c4b54a9b0119a2..4d4066d658be5187e60f03fb2a8bfac28e4ab5db 100644 (file)
@@ -3,9 +3,9 @@
 <% else %>
 <p><%= l(:mail_body_account_information) %>:</p>
 <ul>
-    <li><%= l(:field_login) %>: <%=h @user.login %></li>
-    <li><%= l(:field_password) %>: <%=h @password %></li>
+    <li><%= l(:field_login) %>: <%= @user.login %></li>
+    <li><%= l(:field_password) %>: <%= @password %></li>
 </ul>
 <% end %>
 
-<p><%= l(:label_login) %>: <%= link_to h(@login_url), @login_url %></p>
+<p><%= l(:label_login) %>: <%= link_to @login_url, @login_url %></p>
index 11d1cf54c584c0466f620f969e8d4a698b5a8a80..d2355b1c42e90d167a7f1cb9c79c2ad0f99008d2 100644 (file)
@@ -1,5 +1,5 @@
-<%= link_to h(@added_to), @added_to_url %><br />
+<%= link_to @added_to, @added_to_url %><br />
 
 <ul><% @attachments.each do |attachment | %>
-<li><%=h attachment.filename %></li>
+<li><%= attachment.filename %></li>
 <% end %></ul>
index 8606dd784c6a2926ba45525d8d9f2e8e8b1e909d..e3ece786dd044fc478ed57d1793c061f44ada07b 100644 (file)
@@ -1,3 +1,3 @@
-<%= link_to(h(@document.title), @document_url) %> (<%=h @document.category.name %>)<br />
+<%= link_to(@document.title, @document_url) %> (<%= @document.category.name %>)<br />
 <br />
 <%= textilizable(@document, :description, :only_path => false) %>
index d740480adcd04c6aca733e113f68105b0a12acea..9294bcfae10300aed78ca52a183649d0ff5492b4 100644 (file)
@@ -1,4 +1,4 @@
 <p><%= l(:mail_body_lost_password) %><br />
-<%= link_to h(@url), @url %></p>
+<%= link_to @url, @url %></p>
 
-<p><%= l(:field_login) %>: <b><%=h @token.user.login %></b></p>
+<p><%= l(:field_login) %>: <b><%= @token.user.login %></b></p>
index f43a8cf0f23a47c5e8797bfc5e213b2663e8a745..3401b181636e6575421bd04aa2e4bec1d9b2d241 100644 (file)
@@ -1,4 +1,4 @@
-<h1><%=h @message.board.project.name %> - <%=h @message.board.name %>: <%= link_to(h(@message.subject), @message_url) %></h1>
-<em><%=h @message.author %></em>
+<h1><%= @message.board.project.name %> - <%= @message.board.name %>: <%= link_to(@message.subject, @message_url) %></h1>
+<em><%= @message.author %></em>
 
 <%= textilizable(@message, :content, :only_path => false) %>
index 758ebccb8d0a7e1f1d2732e342acb3ea50baa309..daf250adfd2f88eb9ee2b6fce512319064a2a710 100644 (file)
@@ -1,4 +1,4 @@
-<h1><%= link_to(h(@news.title), @news_url) %></h1>
-<em><%=h @news.author.name %></em>
+<h1><%= link_to(@news.title, @news_url) %></h1>
+<em><%= @news.author.name %></em>
 
 <%= textilizable(@news, :description, :only_path => false) %>
index ef2be0f653bda45a18d093114090fca34c5784d1..c9cc2a78eaafed6e8478b2392e5e47b24d18017c 100644 (file)
@@ -1,4 +1,4 @@
-<h1><%= link_to(h(@news.title), @news_url) %></h1>
+<h1><%= link_to(@news.title, @news_url) %></h1>
 
 <p><%= l(:text_user_wrote, :value => h(@comment.author)) %></p>
 
index 282deca9094ac8d91d5414d6aa20bdeb52de03c8..5e8f6dfcff71c8a6e8386045a811a2caf03e320a 100644 (file)
@@ -1,2 +1,2 @@
 <p><%= l(:mail_body_register) %><br />
-<%= link_to h(@url), @url %></p>
+<%= link_to @url, @url %></p>
index 1e81b3bfe95a1254018a33859ed640e045879de6..c73f0e34188471b298b83659947e2b345b00d1f6 100644 (file)
@@ -1,2 +1,2 @@
 <p>This is a test email sent by Redmine.<br />
-Redmine URL: <%= link_to h(@url), @url %></p>
+Redmine URL: <%= link_to @url, @url %></p>
index 8c83f62c8557cde5863ccf4658e23dbfa24fe355..f6d92a9d86327393fecc68c5ca7a2a830d724d58 100644 (file)
@@ -1,3 +1,3 @@
-<p><%= l(:mail_body_wiki_content_added, :id => link_to(h(@wiki_content.page.pretty_title), @wiki_content_url),
+<p><%= l(:mail_body_wiki_content_added, :id => link_to(@wiki_content.page.pretty_title, @wiki_content_url),
                                         :author => h(@wiki_content.author)).html_safe %><br />
-<em><%=h @wiki_content.comments %></em></p>
+<em><%= @wiki_content.comments %></em></p>
index f1f3857bd962cd3cd2ac93ffd957e4f83eb61e39..83a9a16754f53e9f81664f5a1c1df31e1a6867e2 100644 (file)
@@ -1,6 +1,6 @@
-<p><%= l(:mail_body_wiki_content_updated, :id => link_to(h(@wiki_content.page.pretty_title), @wiki_content_url),
+<p><%= l(:mail_body_wiki_content_updated, :id => link_to(@wiki_content.page.pretty_title, @wiki_content_url),
                                           :author => h(@wiki_content.author)).html_safe %><br />
-<em><%=h @wiki_content.comments %></em></p>
+<em><%= @wiki_content.comments %></em></p>
 
 <p><%= l(:label_view_diff) %>:<br />
-<%= link_to h(@wiki_diff_url), @wiki_diff_url %></p>
+<%= link_to @wiki_diff_url, @wiki_diff_url %></p>
index 7ce0560bb248cff32d83307b14847dda276a0c25..53948e4dac5133f32afa5781dc6b44d9c86fe9a1 100644 (file)
@@ -1,6 +1,6 @@
 <%= board_breadcrumb(@message) %>
 
-<h2><%= avatar(@topic.author, :size => "24") %><%=h @topic.subject %></h2>
+<h2><%= avatar(@topic.author, :size => "24") %><%= @topic.subject %></h2>
 
 <%= form_for @message, {
                :as => :message,
index fbdac695fb21d6b69c206366c46fb7e163c55915..f8d8406949f2b337922906ce0804815fcdbe565f 100644 (file)
@@ -1,4 +1,4 @@
-<h2><%= link_to h(@board.name), :controller => 'boards', :action => 'show', :project_id => @project, :id => @board %> &#187; <%= l(:label_message_new) %></h2>
+<h2><%= link_to @board.name, :controller => 'boards', :action => 'show', :project_id => @project, :id => @board %> &#187; <%= l(:label_message_new) %></h2>
 
 <%= form_for @message, :url => {:action => 'new'}, :html => {:multipart => true, :id => 'message-form'} do |f| %>
   <%= render :partial => 'form', :locals => {:f => f} %>
index cb5e84a87d24eda4100ee96ae7fd2051561e6d3f..533be20bb90b994b2ea33bae3ad6d8e1fa31d35b 100644 (file)
@@ -22,7 +22,7 @@
          ) if @message.destroyable_by?(User.current) %>
 </div>
 
-<h2><%= avatar(@topic.author, :size => "24") %><%=h @topic.subject %></h2>
+<h2><%= avatar(@topic.author, :size => "24") %><%= @topic.subject %></h2>
 
 <div class="message">
 <p><span class="author"><%= authoring @topic.created_on, @topic.author %></span></p>
@@ -59,7 +59,7 @@
     </div>
   <h4>
     <%= avatar(message.author, :size => "24") %>
-    <%= link_to h(message.subject), { :controller => 'messages', :action => 'show', :board_id => @board, :id => @topic, :r => message, :anchor => "message-#{message.id}" } %>
+    <%= link_to message.subject, { :controller => 'messages', :action => 'show', :board_id => @board, :id => @topic, :r => message, :anchor => "message-#{message.id}" } %>
     -
     <%= authoring message.created_on, message.author %>
   </h4>
index 4c9270fc7ac4ec1c3422ca4a3fc8629e4fcaeb32..a35bcaf775d80cd74e4d35faee2e1639737fe349 100644 (file)
@@ -22,7 +22,7 @@
 <h4><%= l(:label_api_access_key) %></h4>
 <div>
   <%= link_to_function(l(:button_show), "$('#api-access-key').toggle();")%>
-  <pre id='api-access-key' class='autoscroll'><%= h(@user.api_key) %></pre>
+  <pre id='api-access-key' class='autoscroll'><%= @user.api_key %></pre>
 </div>
 <%= javascript_tag("$('#api-access-key').hide();") %>
 <p>
index f88de954901f74d5cc4a54461e9daa8e6fa3222a..747039c8524423b4b1e7992805e6351dca98d416 100644 (file)
@@ -36,9 +36,9 @@ entries_by_day = entries.group_by(&:spent_on)
     </tr>
     <% entries_by_day[day].each do |entry| -%>
     <tr class="time-entry" style="border-bottom: 1px solid #f5f5f5;">
-    <td class="activity"><%=h entry.activity %></td>
-    <td class="subject"><%=h entry.project %> <%= h(' - ') + link_to_issue(entry.issue, :truncate => 50) if entry.issue %></td>
-    <td class="comments"><%=h entry.comments %></td>
+    <td class="activity"><%= entry.activity %></td>
+    <td class="subject"><%= entry.project %> <%= h(' - ') + link_to_issue(entry.issue, :truncate => 50) if entry.issue %></td>
+    <td class="comments"><%= entry.comments %></td>
     <td class="hours"><%= html_hours("%.2f" % entry.hours) %></td>
     <td class="buttons">
     <% if entry.editable_by?(@user) -%>
index cc83d2a9eb5f8e7de9d8aaad8f1742248c3c9510..391d9a900dc0b6d2a105a6d67e5b77251286dcb4 100644 (file)
@@ -1,6 +1,6 @@
 <p><%= link_to_project(news.project) + ': ' unless @project %>
-<%= link_to h(news.title), news_path(news) %>
+<%= link_to news.title, news_path(news) %>
 <% if news.comments_count > 0 %><span class="comments">(<%= l(:label_x_comments, :count => news.comments_count) %>)</span><% end %>
 <br />
-<% unless news.summary.blank? %><span class="summary"><%=h news.summary %></span><br /><% end %>
+<% unless news.summary.blank? %><span class="summary"><%= news.summary %></span><br /><% end %>
 <span class="author"><%= authoring news.created_on, news.author %></span></p>
index 614a7b1f7316417e433b7f255037f1e41199d6f9..4560ac4fd5b6751287433d3a046515fd5457b9fd 100644 (file)
@@ -25,7 +25,7 @@
 <% else %>
 <% @newss.each do |news| %>
     <h3><%= avatar(news.author, :size => "24") %><%= link_to_project(news.project) + ': ' unless news.project == @project %>
-    <%= link_to h(news.title), news_path(news) %>
+    <%= link_to news.title, news_path(news) %>
     <%= "(#{l(:label_x_comments, :count => news.comments_count)})" if news.comments_count > 0 %></h3>
     <p class="author"><%= authoring news.created_on, news.author %></p>
     <div class="wiki">
index d359e90b95612090fe423fb3c626e940bfb4b2d8..c188d2e2c98928500fbcd152100127d01ccb4473 100644 (file)
@@ -23,7 +23,7 @@
 </div>
 <% end %>
 
-<p><% unless @news.summary.blank? %><em><%=h @news.summary %></em><br /><% end %>
+<p><% unless @news.summary.blank? %><em><%= @news.summary %></em><br /><% end %>
 <span class="author"><%= authoring @news.created_on, @news.author %></span></p>
 <div class="wiki">
 <%= textilizable(@news, :description) %>
index a670a03b6ae4649871bd1513a0f322c1341c81dd..e13604c36dcf49677d10bbd46cb5917dd0eb37b6 100644 (file)
@@ -46,7 +46,7 @@
 <% @trackers.each do |tracker| %>
     <label class="floating">
     <%= check_box_tag 'project[tracker_ids][]', tracker.id, @project.trackers.to_a.include?(tracker), :id => nil %>
-    <%=h tracker %>
+    <%= tracker %>
     </label>
 <% end %>
 <%= hidden_field_tag 'project[tracker_ids][]', '' %>
@@ -60,7 +60,7 @@
   <%= check_box_tag 'project[issue_custom_field_ids][]', custom_field.id, (@project.all_issue_custom_fields.include? custom_field),
         :disabled => (custom_field.is_for_all? ? "disabled" : nil),
         :id => nil %>
-  <%=h custom_field.name %>
+  <%= custom_field.name %>
   </label>
 <% end %>
 <%= hidden_field_tag 'project[issue_custom_field_ids][]', '' %>
index e8c8114c45224a083548af91c9a0555da73db8e0..7ac4b2cd7ebca0321649f6512651f6bd13e81ef9 100644 (file)
@@ -2,7 +2,7 @@
   <div class="members box">
     <h3><%=l(:label_member_plural)%></h3>
     <% @users_by_role.keys.sort.each do |role| %>
-      <p><span class="label"><%=h role %>:</span> <%= @users_by_role[role].sort.collect{|u| link_to_user u}.join(", ").html_safe %></p>
+      <p><span class="label"><%= role %>:</span> <%= @users_by_role[role].sort.collect{|u| link_to_user u}.join(", ").html_safe %></p>
     <% end %>
   </div>
   <% end %>
index ac392b72c20367ce06ff9cf3f4c5736fe81805e8..ca5ae17231e06392a2b0be496125aa048a8f360c 100644 (file)
@@ -6,7 +6,7 @@
 
 <% if @project_to_destroy.descendants.any? %>
 <br /><%= l(:text_subprojects_destroy_warning,
-          content_tag('strong', h(@project_to_destroy.descendants.collect{|p| p.to_s}.join(', ')))).html_safe %>
+          content_tag('strong', @project_to_destroy.descendants.collect{|p| p.to_s}.join(', '))).html_safe %>
 <% end %>
 </p>
 <p>
index 04de16044ac01e921afd4c51e95ed05fbe63d2fc..7f2ae37957556fb322b5c25308848e1a347ec925 100644 (file)
@@ -4,7 +4,7 @@
 
 <% members = @members.group_by {|m| m.role } %>
 <% members.keys.sort{|x,y| x.position <=> y.position}.each do |role| %>
-<h3><%= h(role.name) %></h3>
+<h3><%= role.name %></h3>
 <ul>
 <% members[role].each do |m| %>
 <li><%= link_to_user m.user %> (<%= format_date m.created_on %>)</li>
index 65c26f57c355310dd252245eb9be7dd172309807..db1a3c2869cf269d32028d661c4cb9923e5ab136 100644 (file)
@@ -5,7 +5,7 @@
     <th><%= l(:field_name) %></th>
     <th><%= l(:enumeration_system_activity) %></th>
     <% TimeEntryActivity.new.available_custom_fields.each do |value| %>
-    <th><%= value.name %></th>
+    <th><%= value.name %></th>
     <% end %>
     <th><%= l(:field_active) %></th>
   </tr></thead>
@@ -15,7 +15,7 @@
   <tr class="<%= cycle('odd', 'even') %>">
     <td class="name">
       <%= ff.hidden_field :parent_id, :value => enumeration.id unless enumeration.project %>
-      <%= h(enumeration) %>
+      <%= enumeration %>
     </td>
     <td class="tick"><%= checked_image !enumeration.project %></td>
     <% enumeration.custom_field_values.each do |value| %>
index b6a460b972f5d82fff5c46f9239ea09fdcd2a1fc..f115c2866b95a0baf28b49ee15d8a29d2248eb5b 100644 (file)
@@ -11,7 +11,7 @@
   next if board.new_record? %>
   <tr class="<%= cycle 'odd', 'even' %>">
     <td class="name" style="padding-left: <%= level * 18 %>px;"><%= link_to board.name, project_board_path(@project, board) %></td>
-    <td class="description"><%=h board.description %></td>
+    <td class="description"><%= board.description %></td>
     <td class="reorder">
     <% if authorize_for("boards", "edit") %>
       <%= reorder_links('board', {:controller => 'boards', :action => 'update', :project_id => @project, :id => board}, :put) %>
index 7c56fb667cf9bd0f8ea2beeec2fc47ff20316a3f..8a04f2555df2c681d3724a401bf26537e7eea1ea 100644 (file)
@@ -9,8 +9,8 @@
 <% for category in @project.issue_categories %>
   <% unless category.new_record? %>
   <tr class="<%= cycle 'odd', 'even' %>">
-    <td class="name"><%=h(category.name) %></td>
-    <td><%=h(category.assigned_to.name) if category.assigned_to %></td>
+    <td class="name"><%= category.name  %></td>
+    <td><%= category.assigned_to.name if category.assigned_to %></td>
     <td class="buttons">
       <% if User.current.allowed_to?(:manage_categories, @project) %>
         <%= link_to l(:button_edit), edit_issue_category_path(category), :class => 'icon icon-edit' %>
index 9352963cf8727a5c7ea3e6045ef23b3b4275f488..e60164caafac1a9f188c84054d41ce66f4de9bb9 100644 (file)
@@ -17,8 +17,8 @@
             {:controller => 'repositories', :action => 'show',:id => @project, :repository_id => repository.identifier_param} if repository.identifier.present? %>
       </td>
       <td><%= checked_image repository.is_default? %></td>
-      <td><%=h repository.scm_name %></td>
-      <td><%=h repository.url %></td>
+      <td><%= repository.scm_name %></td>
+      <td><%= repository.url %></td>
       <td class="buttons">
       <% if User.current.allowed_to?(:manage_repository, @project) %>
         <%= link_to(l(:label_user_plural), committers_repository_path(repository),
index 778803bf35a296cc9d4892aace5e402f7e6d3784..d33788a5a59a26d608d1b93d2b944634b024f440 100644 (file)
     <tr class="version <%= cycle 'odd', 'even' %> <%=h version.status %> <%= 'shared' if version.project != @project %>">
     <td class="name"><%= link_to_version version %></td>
     <td class="date"><%= format_date(version.effective_date) %></td>
-    <td class="description"><%=h version.description %></td>
+    <td class="description"><%= version.description %></td>
     <td class="status"><%= l("version_status_#{version.status}") %></td>
     <td class="sharing"><%=h format_version_sharing(version.sharing) %></td>
-    <td><%= link_to_if_authorized(h(version.wiki_page_title), {:controller => 'wiki', :action => 'show', :project_id => version.project, :id => Wiki.titleize(version.wiki_page_title)}) || h(version.wiki_page_title) unless version.wiki_page_title.blank? || version.project.wiki.nil? %></td>
+    <td><%= link_to_if_authorized(version.wiki_page_title, {:controller => 'wiki', :action => 'show', :project_id => version.project, :id => Wiki.titleize(version.wiki_page_title)}) || h(version.wiki_page_title) unless version.wiki_page_title.blank? || version.project.wiki.nil? %></td>
     <td class="buttons">
       <% if version.project == @project && User.current.allowed_to?(:manage_versions, @project) %>
         <%= link_to l(:button_edit), edit_version_path(version), :class => 'icon icon-edit' %>
index addcfdf6214c9dd528b433fa9c0c7ff539d1c283..dce288e4cdb69170a5fb5b41eddfe9d4c65376df 100644 (file)
@@ -25,7 +25,7 @@
   <% end %>
   <ul>
   <% unless @project.homepage.blank? %>
-    <li><span class="label"><%=l(:field_homepage)%>:</span> <%= link_to h(@project.homepage), @project.homepage %></li>
+    <li><span class="label"><%=l(:field_homepage)%>:</span> <%= link_to @project.homepage, @project.homepage %></li>
   <% end %>
   <% if @subprojects.any? %>
     <li><span class="label"><%=l(:label_subproject_plural)%>:</span>
@@ -41,7 +41,7 @@
     <h3><%=l(:label_issue_tracking)%></h3>
     <ul>
     <% for tracker in @trackers %>
-      <li><%= link_to h(tracker.name), project_issues_path(@project, :set_filter => 1, :tracker_id => tracker.id) %>:
+      <li><%= link_to tracker.name, project_issues_path(@project, :set_filter => 1, :tracker_id => tracker.id) %>:
           <%= l(:label_x_open_issues_abbr_on_total, :count => @open_issues_by_tracker[tracker].to_i,
                                                     :total => @total_issues_by_tracker[tracker].to_i) %>
       </li>
index 98b0dfb721754e368c7889f024aa3f8418d1791d..b0dbc05be455d2758bd1e7805929b4940e372829 100644 (file)
@@ -11,7 +11,7 @@
   <% @queries.each do |query| %>
     <tr class="<%= cycle('odd', 'even') %>">
       <td class="name">
-        <%= link_to h(query.name), :controller => 'issues', :action => 'index', :project_id => @project, :query_id => query %>
+        <%= link_to query.name, :controller => 'issues', :action => 'index', :project_id => @project, :query_id => query %>
       </td>
       <td class="buttons">
         <% if query.editable_by?(User.current) %>
index 7d2ea4dcbc5afc9ecd4913a63edd969ceed41c44..ab7fe3620597eb664b5b8d35cfd672d64a6e00c8 100644 (file)
@@ -5,7 +5,7 @@
 <thead><tr>
 <th></th>
 <% for status in @statuses %>
-<th><%=h status.name %></th>
+<th><%= status.name %></th>
 <% end %>
 <th><strong><%=l(:label_open_issues_plural)%></strong></th>
 <th><strong><%=l(:label_closed_issues_plural)%></strong></th>
@@ -14,7 +14,7 @@
 <tbody>
 <% for row in rows %>
 <tr class="<%= cycle("odd", "even") %>">
-  <td class="name"><%= link_to h(row.name), aggregate_path(@project, field_name, row) %></td>
+  <td class="name"><%= link_to row.name, aggregate_path(@project, field_name, row) %></td>
   <% for status in @statuses %>
     <td><%= aggregate_link data, { field_name => row.id, "status_id" => status.id }, aggregate_path(@project, field_name, row, :status_id => status.id) %></td>
   <% end %>
index 8cfefe8a74bd7f0fb7fd65c4f2976402ae49bd24..9dca3554c87d10c6bc2127d585ffd080f5d2fafd 100644 (file)
@@ -11,7 +11,7 @@
 <tbody>
 <% for row in rows %>
 <tr class="<%= cycle("odd", "even") %>">
-  <td class="name"><%= link_to h(row.name), aggregate_path(@project, field_name, row) %></td>
+  <td class="name"><%= link_to row.name, aggregate_path(@project, field_name, row) %></td>
   <td><%= aggregate_link data, { field_name => row.id, "closed" => 0 }, aggregate_path(@project, field_name, row, :status_id => "o") %></td>
   <td><%= aggregate_link data, { field_name => row.id, "closed" => 1 }, aggregate_path(@project, field_name, row, :status_id => "c") %></td>
   <td><%= aggregate_link data, { field_name => row.id }, aggregate_path(@project, field_name, row, :status_id => "*") %></td>
index 20c2040e5bc6567b66fcbea0adcb9d2e6ecb6e71..eb115f9ad4fa70b4cfb52c09a77e8d0cb06328fe 100644 (file)
@@ -1,4 +1,4 @@
-<%= link_to(@repository.identifier.present? ? h(@repository.identifier) : 'root',
+<%= link_to(@repository.identifier.present? ? @repository.identifier : 'root',
       :action => 'show', :id => @project,
       :repository_id => @repository.identifier_param,
       :path => nil, :rev => @rev) %>
@@ -13,11 +13,11 @@ dirs.each do |dir|
     link_path << '/' unless link_path.empty?
     link_path << "#{dir}"
     %>
-    / <%= link_to h(dir), :action => 'show', :id => @project, :repository_id => @repository.identifier_param,
+    / <%= link_to dir, :action => 'show', :id => @project, :repository_id => @repository.identifier_param,
                 :path => to_path_param(link_path), :rev => @rev %>
 <% end %>
 <% if filename %>
-    / <%= link_to h(filename),
+    / <%= link_to filename,
                    :action => 'changes', :id => @project, :repository_id => @repository.identifier_param,
                    :path => to_path_param("#{link_path}/#{filename}"), :rev => @rev %>
 <% end %>
@@ -26,6 +26,6 @@ dirs.each do |dir|
   # For Mercurial *tip*, @rev and @changeset are nil.
   rev_text = @changeset.nil? ? @rev : format_revision(@changeset)
 %>
-<%= "@ #{rev_text}" unless rev_text.blank? %>
+<%= "@ #{rev_text}" unless rev_text.blank? %>
 
 <% html_title(with_leading_slash(path)) -%>
index 21f205ad74dc8f3807bf80a244455801fdcf8594..9721fa66c6e54b7e3db9c84f97033ec9013946d1 100644 (file)
@@ -3,7 +3,7 @@
    depth = params[:depth].to_i %>
 <%  ent_path = Redmine::CodesetUtil.replace_invalid_utf8(entry.path)   %>
 <%  ent_name = Redmine::CodesetUtil.replace_invalid_utf8(entry.name)   %>
-<tr id="<%= tr_id %>" class="<%= params[:parent_id] %> entry <%= entry.kind %>">
+<tr id="<%= tr_id %>" class="<%= params[:parent_id] %> entry <%= entry.kind %>">
 <td style="padding-left: <%=18 * depth%>px;" class="<%=
            @repository.report_last_commit ? "filename" : "filename_no_report" %>">
 <% if entry.is_dir? %>
@@ -16,7 +16,7 @@
                        :depth  => (depth + 1),
                        :parent_id => tr_id)) %>');">&nbsp;</span>
 <% end %>
-<%=  link_to h(ent_name),
+<%=  link_to ent_name,
           {:action => (entry.is_dir? ? 'show' : 'changes'), :id => @project, :repository_id => @repository.identifier_param, :path => to_path_param(ent_path), :rev => @rev},
           :class => (entry.is_dir? ? 'icon icon-folder' : "icon icon-file #{Redmine::MimeType.css_class_of(ent_name)}")%>
 </td>
index d9c2d5d96fcc1a3c7fc5b78be6cbfb71207f988c..b942e4b82906a5eb89a9c4f13daef35453fc204b 100644 (file)
@@ -18,7 +18,7 @@
 <% i = 0 -%>
 <% @committers.each do |committer, user_id| -%>
   <tr class="<%= cycle 'odd', 'even' %>">
-    <td><%=h committer %></td>
+    <td><%= committer %></td>
     <td>
       <%= hidden_field_tag "committers[#{i}][]", committer, :id => nil %>
       <%= select_tag "committers[#{i}][]",
index 64dfd75ea4114bff7f8b0730cb824fc7bd3d6214..13edf07cb1dafec9fa2b8f9e2cc9dfcf9ac88d28 100644 (file)
@@ -32,7 +32,7 @@
 <table class="revision-info">
   <% if @changeset.scmid.present? %>
     <tr>
-      <td>ID</td><td><%= h(@changeset.scmid) %></td>
+      <td>ID</td><td><%= @changeset.scmid %></td>
     </tr>
   <% end %>
   <% if @changeset.parents.present? %>
index fcf0a0e0ded02e8a32e62216a42318afcea4ac16..b89bbf9fe9b88a80c042f716b53a8e0522f48c3b 100644 (file)
@@ -61,7 +61,7 @@
     <h3><%= l(:label_repository_plural) %></h3>
     <p>
       <%= @repositories.sort.collect {|repo|
-          link_to h(repo.name)
+          link_to repo.name
                   {:controller => 'repositories', :action => 'show',
                    :id => @project, :repository_id => repo.identifier_param, :rev => nil, :path => nil},
                   :class => 'repository' + (repo == @repository ? ' selected' : '')
index 19a6c42c4dfcde673c981d814c9ceb0ed04a31fb..9545d55090225154af28fff634c5bbf88f624d57 100644 (file)
@@ -14,7 +14,7 @@
   <tbody>
 <% for role in @roles %>
   <tr class="<%= cycle("odd", "even") %>">
-  <td class="name"><%= content_tag(role.builtin? ? 'em' : 'span', link_to(h(role.name), edit_role_path(role))) %></td>
+  <td class="name"><%= content_tag(role.builtin? ? 'em' : 'span', link_to(role.name, edit_role_path(role))) %></td>
   <td class="reorder">
   <% unless role.builtin? %>
     <%= reorder_links('role', {:action => 'update', :id => role, :page => params[:page]}, :put) %>
index 13a072ff314dd57657bbcdf579d0011c82399567..cea4bd9e6dac797f3642b3cb6865ba3c9e665863 100644 (file)
@@ -9,7 +9,7 @@
     <th><%=l(:label_permissions)%></th>
     <% @roles.each do |role| %>
     <th>
-        <%= content_tag(role.builtin? ? 'em' : 'span', h(role.name)) %>
+        <%= content_tag(role.builtin? ? 'em' : 'span', role.name) %>
         <%= link_to_function(image_tag('toggle_check.png'), "toggleCheckboxesBySelector('input.role-#{role.id}')",
                                                             :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}") %>
     </th>
@@ -26,7 +26,7 @@
             <%= l_or_humanize(mod, :prefix => 'project_module_') %>
           </td>
           <% @roles.each do |role| %>
-          <td class="role"><%= h(role.name) %></td>
+          <td class="role"><%= role.name %></td>
           <% end %>
         </tr>
     <% end %>
index 2f0b06a6ca9795193fc1a592db6dbc071465fef4..35d0d0bf72cb2f0819014898c8a2f97a2dc31716 100644 (file)
@@ -42,7 +42,7 @@
     <dl id="search-results">
       <% @results.each do |e| %>
         <dt class="<%= e.event_type %>">
-          <%= content_tag('span', h(e.project), :class => 'project') unless @project == e.project %>
+          <%= content_tag('span', e.project, :class => 'project') unless @project == e.project %>
           <%= link_to(highlight_tokens(e.event_title.truncate(255), @tokens), e.event_url) %>
         </dt>
         <dd><span class="description"><%= highlight_tokens(e.event_description, @tokens) %></span>
index 955c2d06b43b86fd5eab05f7a9a103c775c40195..9b078013d2a38203959ddbc706d121b8daa6aeb4 100644 (file)
@@ -13,7 +13,7 @@
   <% end %>
   <p>
     <%= f.text_field :issue_id, :size => 6 %>
-    <span id="time_entry_issue"><%= h("#{@time_entry.issue.tracker.name} ##{@time_entry.issue.id}: #{@time_entry.issue.subject}") if @time_entry.issue %></span>
+    <span id="time_entry_issue"><%= "#{@time_entry.issue.tracker.name} ##{@time_entry.issue.id}: #{@time_entry.issue.subject}" if @time_entry.issue %></span>
   </p>
   <p><%= f.text_field :spent_on, :size => 10, :required => true %><%= calendar_for('time_entry_spent_on') %></p>
   <p><%= f.text_field :hours, :size => 6, :required => true %></p>
index 8ebb29e580caf5d9dd879a546b251d3633aa1c14..c86b219d1f4b9eab8d6c56f82864e8f0099fc75f 100644 (file)
@@ -3,7 +3,7 @@
 <% next if hours_for_value.empty? -%>
 <tr class="<%= cycle('odd', 'even') %> <%= criterias.length > level+1 ? 'subtotal' : 'last-level' %>">
 <%= ("<td></td>" * level).html_safe %>
-<td class="name"><%= h(format_criteria_value(@report.available_criteria[criterias[level]], value)) %></td>
+<td class="name"><%= format_criteria_value(@report.available_criteria[criterias[level]], value) %></td>
 <%= ("<td></td>" * (criterias.length - level - 1)).html_safe -%>
   <% total = 0 -%>
   <% @report.periods.each do |period| -%>
index 5a741654805bee6375231329c636c7c04c8be618..107095540a8bf3cb9a4887574e884c48dece7421 100644 (file)
@@ -27,7 +27,7 @@
   <% IssueCustomField.all.each do |field| %>
     <label class="block">
       <%= check_box_tag 'tracker[custom_field_ids][]',field.id, @tracker.custom_fields.to_a.include?(field), :id => nil %>
-      <%=h field.name %>
+      <%= field.name %>
     </label>
   <% end %>
 </p>
index 64f06fc5c728705c38514570a54cf1b2d9a78584..f76a4f5dbd5e9f1494485692a3b5b735421e2736 100644 (file)
@@ -15,7 +15,7 @@
   <tbody>
 <% for tracker in @trackers %>
   <tr class="<%= cycle("odd", "even") %>">
-  <td class="name"><%= link_to h(tracker.name), edit_tracker_path(tracker) %></td>
+  <td class="name"><%= link_to tracker.name, edit_tracker_path(tracker) %></td>
   <td>
     <% unless tracker.workflow_rules.count > 0 %>
       <span class="icon icon-warning">
index 3b277abd7cec3f48c66987b0f0d9119c50131ec2..204bd9d00a148d4f93e0552eacfe91b18dbe9f20 100644 (file)
@@ -1,7 +1,7 @@
 <%= form_for(:user, :url => { :action => 'update' }, :html => {:method => :put}) do %>
 <div class="box">
 <% Group.givable.sort.each do |group| %>
-<label><%= check_box_tag 'user[group_ids][]', group.id, @user.groups.to_a.include?(group), :id => nil %> <%=h group %></label><br />
+<label><%= check_box_tag 'user[group_ids][]', group.id, @user.groups.to_a.include?(group), :id => nil %> <%= group %></label><br />
 <% end %>
 <%= hidden_field_tag 'user[group_ids][]', '' %>
 </div>
index fe3d6de44dc6f1a57609b16047a994ecbbfd8b56..a89712dadabfd046f830c60508a06bac5f85539f 100644 (file)
   <tbody>
 <% for user in @users -%>
   <tr class="<%= user.css_classes %> <%= cycle("odd", "even") %>">
-  <td class="username"><%= avatar(user, :size => "14") %><%= link_to h(user.login), edit_user_path(user) %></td>
-  <td class="firstname"><%= h(user.firstname) %></td>
-  <td class="lastname"><%= h(user.lastname) %></td>
-  <td class="email"><%= mail_to(h(user.mail)) %></td>
+  <td class="username"><%= avatar(user, :size => "14") %><%= link_to user.login, edit_user_path(user) %></td>
+  <td class="firstname"><%= user.firstname %></td>
+  <td class="lastname"><%= user.lastname %></td>
+  <td class="email"><%= mail_to(user.mail) %></td>
   <td class="tick"><%= checked_image user.admin? %></td>
   <td class="created_on"><%= format_time(user.created_on) %></td>
   <td class="last_login_on"><%= format_time(user.last_login_on) unless user.last_login_on.nil? %></td>
index fd4a1b9744a1b5d2b84ab319a0458ad138882136..570be315480e9f3e0f5e030c0a4f1c01aded8393 100644 (file)
@@ -2,7 +2,7 @@
 <%= link_to(l(:button_edit), edit_user_path(@user), :class => 'icon icon-edit') if User.current.admin? %>
 </div>
 
-<h2><%= avatar @user, :size => "50" %> <%=h @user.name %></h2>
+<h2><%= avatar @user, :size => "50" %> <%= @user.name %></h2>
 
 <div class="splitcontentleft">
 <ul>
     <li><%=l(:field_login)%>: <%= @user.login %></li>
   <% end %>
   <% unless @user.pref.hide_mail %>
-    <li><%=l(:field_mail)%>: <%= mail_to(h(@user.mail), nil, :encode => 'javascript') %></li>
+    <li><%=l(:field_mail)%>: <%= mail_to(@user.mail, nil, :encode => 'javascript') %></li>
   <% end %>
   <% @user.visible_custom_field_values.each do |custom_value| %>
   <% if !custom_value.value.blank? %>
-    <li><%=h custom_value.custom_field.name%>: <%=h show_value(custom_value) %></li>
+    <li><%= custom_value.custom_field.name %>: <%= show_value(custom_value) %></li>
   <% end %>
   <% end %>
     <li><%=l(:label_registered_on)%>: <%= format_date(@user.created_on) %></li>
@@ -28,7 +28,7 @@
 <ul>
 <% for membership in @memberships %>
   <li><%= link_to_project(membership.project) %>
-    (<%=h membership.roles.sort.collect(&:to_s).join(', ') %>, <%= format_date(membership.created_on) %>)</li>
+    (<%= membership.roles.sort.collect(&:to_s).join(', ') %>, <%= format_date(membership.created_on) %>)</li>
 <% end %>
 </ul>
 <% end %>
@@ -53,7 +53,7 @@
 <% @events_by_day[day].sort {|x,y| y.event_datetime <=> x.event_datetime }.each do |e| -%>
   <dt class="<%= e.event_type %>">
   <span class="time"><%= format_time(e.event_datetime, false) %></span>
-  <%= content_tag('span', h(e.project), :class => 'project') %>
+  <%= content_tag('span', e.project, :class => 'project') %>
   <%= link_to format_activity_title(e.event_title), e.event_url %></dt>
   <dd><span class="description"><%= format_activity_description(e.event_description) %></span></dd>
 <% end -%>
index 951cc018666c1f2e36cc24d6b3c068eda435b59f..7d9652250dd804f5ea8af7d46d9dacaf1acb85a7 100644 (file)
@@ -15,7 +15,7 @@
     <tr>
         <td style="width:130px; text-align:right;">
           <% if count[:group] -%>
-            <%= link_to(h(count[:group]), project_issues_path(version.project, :set_filter => 1, :status_id => '*', :fixed_version_id => version, "#{criteria}_id" => count[:group])) %>
+            <%= link_to(count[:group], project_issues_path(version.project, :set_filter => 1, :status_id => '*', :fixed_version_id => version, "#{criteria}_id" => count[:group])) %>
           <% else -%>
             <%= link_to(l(:label_none), project_issues_path(version.project, :set_filter => 1, :status_id => '*', :fixed_version_id => version, "#{criteria}_id" => "!*")) %>
           <% end %>
index fdbec6ff6c30574daa2265c2f4518dd77c9b45d2..d05729e518f9cade24dcb269e35e52bfcde0729c 100644 (file)
@@ -5,7 +5,7 @@
 <%= call_hook(:view_versions_show_contextual, { :version => @version, :project => @project }) %>
 </div>
 
-<h2><%= h(@version.name) %></h2>
+<h2><%= @version.name %></h2>
 
 <div id="roadmap">
 <%= render :partial => 'versions/overview', :locals => {:version => @version} %>
index b1b76590955a1c101172b4a3e12fa900981d1864..950a5a77c23f2641ba889ac25217d97ede7270dc 100644 (file)
@@ -13,7 +13,7 @@
 <p>
   <em><%= @annotate.content.author ? link_to_user(@annotate.content.author) : l(:label_user_anonymous)
        %>, <%= format_time(@annotate.content.updated_on) %> </em><br />
-  <%=h @annotate.content.comments %>
+  <%= @annotate.content.comments %>
 </p>
 
 <% colors = Hash.new {|k,v| k[v] = (k.size % 12) } %>
@@ -27,8 +27,8 @@
     <td class="revision"><%= link_to line[0], :controller => 'wiki',
                              :action => 'show', :project_id => @project,
                              :id => @page.title, :version => line[0] %></td>
-    <td class="author"><%= h(line[1]) %></td>
-    <td class="line-code"><pre><%=h line[2] %></pre></td>
+    <td class="author"><%= line[1] %></td>
+    <td class="line-code"><pre><%= line[2] %></pre></td>
 </tr>
 <% line_num += 1 %>
 <% end -%>
index a543ef229b4996a4ec14eb3e06e486115f8e7c84..74a5f45fbcd3eaa27a7338fe60d086d567f5c0c7 100644 (file)
@@ -12,7 +12,7 @@
 <h3><%= format_date(date) %></h3>
 <ul>
 <% @pages_by_date[date].each do |page| %>
-    <li><%= link_to h(page.pretty_title), :action => 'show', :id => page.title, :project_id => page.project %></li>
+    <li><%= link_to page.pretty_title, :action => 'show', :id => page.title, :project_id => page.project %></li>
 <% end %>
 </ul>
 <% end %>
index eebe250ca503ef5ae0c61df58f2b2a908515227d..d6270b6857286450be18dc46dd38f39eb84b628e 100644 (file)
@@ -1,6 +1,6 @@
 <%= wiki_page_breadcrumb(@page) %>
 
-<h2><%=h @page.pretty_title %></h2>
+<h2><%= @page.pretty_title %></h2>
 
 <%= form_tag({}, :method => :delete) do %>
 <div class="box">
index 40e6b792ab9e014b118c3184a5d7154587af0fac..2a2ba312a404979753fbcd3c7e8c8f3d4fe4ca76 100644 (file)
@@ -1,6 +1,6 @@
 <%= wiki_page_breadcrumb(@page) %>
 
-<h2><%= @page.pretty_title %></h2>
+<h2><%= @page.pretty_title %></h2>
 
 <%= form_for @content, :as => :content,
             :url => {:action => 'update', :id => @page.title},
index da45423dc00129825af492de95fea4d19e57eae3..a9df66dee367881bc48699bba4c22f8a2bda5d7e 100644 (file)
@@ -1,7 +1,7 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
 <head>
-<title><%=h @page.pretty_title %></title>
+<title><%= @page.pretty_title %></title>
 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
 <style>
 body { font:80% Verdana,Tahoma,Arial,sans-serif; }
index df8f7401232e7c688855db73420d4bbbcb039a24..b068ce1d684aef5ba5dcb3b156d8e2161b0405ac 100644 (file)
@@ -1,7 +1,7 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
 <head>
-<title><%=h @wiki.project.name %></title>
+<title><%= @wiki.project.name %></title>
 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
 <style>
 body { font:80% Verdana,Tahoma,Arial,sans-serif; }
@@ -20,13 +20,13 @@ h1:hover a.wiki-anchor, h2:hover a.wiki-anchor, h3:hover a.wiki-anchor { display
 <strong><%= l(:label_index_by_title) %></strong>
 <ul>
 <% @pages.each do |page| %>
-    <li><a href="#<%= h(page.title) %>"><%= h(page.pretty_title) %></a></li>
+    <li><a href="#<%= page.title %>"><%= page.pretty_title %></a></li>
 <% end %>
 </ul>
 
 <% @pages.each do |page| %>
 <hr />
-<a name="<%= h(page.title) %>" />
+<a name="<%= page.title %>" />
 <%= textilizable page.content ,:text, :wiki_links => :anchor %>
 <% end %>
 
index ebac6d514f6abc53571399ed492c7d8148f8c4f5..1369234603e5a137442e03962da2dd43313125c3 100644 (file)
 <% line_num = 1 %>
 <% @versions.each do |ver| %>
 <tr class="wiki-page-version <%= cycle("odd", "even") %>">
-    <td class="id"><%= link_to h(ver.version), :action => 'show', :id => @page.title, :project_id => @page.project, :version => ver.version %></td>
+    <td class="id"><%= link_to ver.version, :action => 'show', :id => @page.title, :project_id => @page.project, :version => ver.version %></td>
     <td class="checkbox"><%= radio_button_tag('version', ver.version, (line_num==1), :id => "cb-#{line_num}", :onclick => "$('#cbto-#{line_num+1}').prop('checked', true);") if show_diff && (line_num < @versions.size) %></td>
     <td class="checkbox"><%= radio_button_tag('version_from', ver.version, (line_num==2), :id => "cbto-#{line_num}") if show_diff && (line_num > 1) %></td>
     <td class="updated_on"><%= format_time(ver.updated_on) %></td>
     <td class="author"><%= link_to_user ver.author %></td>
-    <td class="comments"><%=h ver.comments %></td>
+    <td class="comments"><%= ver.comments %></td>
     <td class="buttons">
       <%= link_to l(:button_annotate), :action => 'annotate', :id => @page.title, :version => ver.version %>
       <%= delete_link wiki_page_path(@page, :version => ver.version) if User.current.allowed_to?(:delete_wiki_pages, @page.project) && @version_count > 1 %>
index c87641faffede5eccee1c27b65448ca2ed7e9d3f..ac88fd4bfc3c3937e637dd54973e9b2118072b21 100644 (file)
@@ -1,6 +1,6 @@
 <%= wiki_page_breadcrumb(@page) %>
 
-<h2><%= @original_title %></h2>
+<h2><%= @original_title %></h2>
 
 <%= error_messages_for 'page' %>
 
index 3ff7d040bb8a3013d5c300672f7157445e1bd081..a9db7a0c4f4a0d60280fc4fc3cc01a5bb394e08e 100644 (file)
@@ -36,7 +36,7 @@
     <br />
     <em><%= @content.author ? link_to_user(@content.author) : l(:label_user_anonymous)
          %>, <%= format_time(@content.updated_on) %> </em><br />
-    <%=h @content.comments %>
+    <%= @content.comments %>
     </p>
     <hr />
 <% end %>
index bc33600141e25e2f95604d84002b25f2ec8ffd27..af7dc6c6708e4db159da1c269ed261dc7088660f 100644 (file)
@@ -1,7 +1,7 @@
 <h2><%=l(:label_confirmation)%></h2>
 
 <div class="box"><center>
-<p><strong><%= h(@project.name) %></strong><br /><%=l(:text_wiki_destroy_confirmation)%></p>
+<p><strong><%= @project.name %></strong><br /><%=l(:text_wiki_destroy_confirmation)%></p>
 
 <%= form_tag({:controller => 'wikis', :action => 'destroy', :id => @project}) do %>
 <%= hidden_field_tag "confirm", 1 %>
index 9c5ef62fb48f41abe8443e74013bf833fbb396b1..a788a7a68e507ef609567a7136d62940631f5433 100644 (file)
@@ -14,7 +14,7 @@
     <td style="width:<%= 75 / @statuses.size %>%;">
       <%= link_to_function(image_tag('toggle_check.png'), "toggleCheckboxesBySelector('table.transitions-#{name} input.new-status-#{new_status.id}')",
                                                       :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}") %>
-      <%=h new_status.name %>
+      <%= new_status.name %>
     </td>
     <% end %>
   </tr>
@@ -26,7 +26,7 @@
       <%= link_to_function(image_tag('toggle_check.png'), "toggleCheckboxesBySelector('table.transitions-#{name} input.old-status-#{old_status.id}')",
                                                           :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}") %>
 
-      <%=h old_status.name %>
+      <%= old_status.name %>
     </td>
     <% for new_status in @statuses -%>
     <% checked = workflows.detect {|w| w.old_status_id == old_status.id && w.new_status_id == new_status.id} %>
index 2c529864e25a79ac43f63d26a0ac6b16e6a413f7..7b4b3f840f689241065a0a1aeb8026051a10d272 100644 (file)
@@ -47,7 +47,7 @@
         <td></td>
         <% for status in @statuses %>
         <td style="width:<%= 75 / @statuses.size %>%;">
-          <%=h status.name %>
+          <%= status.name %>
         </td>
         <% end %>
       </tr>
@@ -62,7 +62,7 @@
       <% @fields.each do |field, name| %>
       <tr class="<%= cycle("odd", "even") %>">
         <td class="name">
-          <%=h name %> <%= content_tag('span', '*', :class => 'required') if field_required?(field) %>
+          <%= name %> <%= content_tag('span', '*', :class => 'required') if field_required?(field) %>
         </td>
         <% for status in @statuses -%>
         <td class="<%= @permissions[status.id][field] %>">
@@ -82,7 +82,7 @@
         <% @custom_fields.each do |field| %>
         <tr class="<%= cycle("odd", "even") %>">
           <td class="name">
-            <%=h field.name %> <%= content_tag('span', '*', :class => 'required') if field_required?(field) %>
+            <%= field.name %> <%= content_tag('span', '*', :class => 'required') if field_required?(field) %>
           </td>
           <% for status in @statuses -%>
           <td class="<%= @permissions[status.id][field.id.to_s] %>">