]> source.dussan.org Git - redmine.git/commitdiff
Additional escaping.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 30 Jul 2011 08:35:43 +0000 (08:35 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 30 Jul 2011 08:35:43 +0000 (08:35 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6327 e93f8b46-1217-0410-a6f0-8f06a7374b81

13 files changed:
app/helpers/custom_fields_helper.rb
app/helpers/queries_helper.rb
app/helpers/sort_helper.rb
app/views/context_menus/issues.html.erb
app/views/custom_fields/_form.rhtml
app/views/custom_fields/_index.rhtml
app/views/issue_statuses/index.html.erb
app/views/issues/_relations.rhtml
app/views/projects/_form.rhtml
app/views/reports/_details.rhtml
app/views/reports/_simple.rhtml
app/views/roles/index.html.erb
app/views/trackers/index.html.erb

index 3028cd4ede518604746a745289505ddd77189f12..bcc4cfa111ddc697e460c2140ff50e77c4e91eaa 100644 (file)
@@ -57,7 +57,7 @@ module CustomFieldsHelper
   
   # Return custom field label tag
   def custom_field_label_tag(name, custom_value)
-    content_tag "label", custom_value.custom_field.name +
+    content_tag "label", h(custom_value.custom_field.name) +
        (custom_value.custom_field.is_required? ? " <span class=\"required\">*</span>" : ""),
        :for => "#{name}_custom_field_values_#{custom_value.custom_field.id}",
        :class => (custom_value.errors.empty? ? nil : "error" )
index 31a363d2802abc7d52914ee7c826a12e1dd37101..e65e957b68d9ca3e7293aea683ed0f1fb553f15b 100644 (file)
@@ -24,7 +24,7 @@ module QueriesHelper
   def column_header(column)
     column.sortable ? sort_header_tag(column.name.to_s, :caption => column.caption,
                                                         :default_order => column.default_order) : 
-                      content_tag('th', column.caption)
+                      content_tag('th', h(column.caption))
   end
   
   def column_content(column, issue)
index a1808a0566a0841e6bf612bc0e7750970e5a6d9c..e7b2ba7c059cc971e24bdffe67ed402016bd0f5a 100644 (file)
@@ -205,7 +205,7 @@ module SortHelper
      # Add project_id to url_options
     url_options = url_options.merge(:project_id => params[:project_id]) if params.has_key?(:project_id)
 
-    link_to_content_update(caption, url_options, :class => css)
+    link_to_content_update(h(caption), url_options, :class => css)
   end
 
   # Returns a table header <th> tag with a sort link for the named column
index 7b67c65c7eb2f719f1ba5dc9c2e7d9bf1794b853..34861c9170d9d7421f071f9478ef3357e216cf01 100644 (file)
@@ -14,7 +14,7 @@
                <a href="#" class="submenu" onclick="return false;"><%= l(:field_status) %></a>
                <ul>
                <% @statuses.each do |s| -%>
-                   <li><%= context_menu_link s.name, {:controller => 'issues', :action => 'bulk_edit', :ids => @issues.collect(&:id), :issue => {:status_id => s}, :back_url => @back}, :method => :post,
+                   <li><%= context_menu_link h(s.name), {:controller => 'issues', :action => 'bulk_edit', :ids => @issues.collect(&:id), :issue => {:status_id => s}, :back_url => @back}, :method => :post,
                                              :selected => (@issue && s == @issue.status), :disabled => !(@can[:update] && @allowed_statuses.include?(s)) %></li>
                <% end -%>
                </ul>
@@ -26,7 +26,7 @@
                <a href="#" class="submenu"><%= l(:field_tracker) %></a>
                <ul>
                <% @trackers.each do |t| -%>
-                   <li><%= context_menu_link t.name, {:controller => 'issues', :action => 'bulk_edit', :ids => @issues.collect(&:id), :issue => {'tracker_id' => t}, :back_url => @back}, :method => :post,
+                   <li><%= context_menu_link h(t.name), {:controller => 'issues', :action => 'bulk_edit', :ids => @issues.collect(&:id), :issue => {'tracker_id' => t}, :back_url => @back}, :method => :post,
                                              :selected => (@issue && t == @issue.tracker), :disabled => !@can[:edit] %></li>
                <% end -%>
                </ul>
@@ -37,7 +37,7 @@
                <a href="#" class="submenu"><%= l(:field_priority) %></a>
                <ul>
                <% @priorities.each do |p| -%>
-                   <li><%= context_menu_link p.name, {:controller => 'issues', :action => 'bulk_edit', :ids => @issues.collect(&:id), :issue => {'priority_id' => p}, :back_url => @back}, :method => :post,
+                   <li><%= context_menu_link h(p.name), {:controller => 'issues', :action => 'bulk_edit', :ids => @issues.collect(&:id), :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>
@@ -62,7 +62,7 @@
                <a href="#" class="submenu"><%= l(:field_assigned_to) %></a>
                <ul>
                <% @assignables.each do |u| -%>
-                   <li><%= context_menu_link u.name, {:controller => 'issues', :action => 'bulk_edit', :ids => @issues.collect(&:id), :issue => {'assigned_to_id' => u}, :back_url => @back}, :method => :post,
+                   <li><%= context_menu_link h(u.name), {:controller => 'issues', :action => 'bulk_edit', :ids => @issues.collect(&:id), :issue => {'assigned_to_id' => u}, :back_url => @back}, :method => :post,
                                              :selected => (@issue && u == @issue.assigned_to), :disabled => !@can[:update] %></li>
                <% end -%>
                    <li><%= context_menu_link l(:label_nobody), {:controller => 'issues', :action => 'bulk_edit', :ids => @issues.collect(&:id), :issue => {'assigned_to_id' => 'none'}, :back_url => @back}, :method => :post,
@@ -75,7 +75,7 @@
                <a href="#" class="submenu"><%= l(:field_category) %></a>
                <ul>
                <% @project.issue_categories.each do |u| -%>
-                   <li><%= context_menu_link u.name, {:controller => 'issues', :action => 'bulk_edit', :ids => @issues.collect(&:id), :issue => {'category_id' => u}, :back_url => @back}, :method => :post,
+                   <li><%= context_menu_link h(u.name), {:controller => 'issues', :action => 'bulk_edit', :ids => @issues.collect(&:id), :issue => {'category_id' => u}, :back_url => @back}, :method => :post,
                                              :selected => (@issue && u == @issue.category), :disabled => !@can[:update] %></li>
                <% end -%>
                    <li><%= context_menu_link l(:label_none), {:controller => 'issues', :action => 'bulk_edit', :ids => @issues.collect(&:id), :issue => {'category_id' => 'none'}, :back_url => @back}, :method => :post,
index 2900af900c479b0dd85e0865aae02e2fab4ba2a7..7bbce5d5725bf5472c54e51fca2a2f0dfc242c20 100644 (file)
@@ -82,7 +82,7 @@ when "IssueCustomField" %>
     
     <fieldset><legend><%=l(:label_tracker_plural)%></legend>
     <% for tracker in @trackers %>
-        <%= check_box_tag "custom_field[tracker_ids][]", tracker.id, (@custom_field.trackers.include? tracker) %> <%= tracker.name %>
+        <%= check_box_tag "custom_field[tracker_ids][]", tracker.id, (@custom_field.trackers.include? tracker) %> <%=h tracker.name %>
     <% end %>
                <%= hidden_field_tag "custom_field[tracker_ids][]", '' %>
     </fieldset>
index 21ae01beff344486f1d0f861cde5105124295150..a6495fbfefd610c07c31c58520c7970065df9f32 100644 (file)
@@ -13,7 +13,7 @@
   <tbody>
        <% (@custom_fields_by_type[tab[:name]] || []).sort.each do |custom_field| -%>
                <tr class="<%= cycle("odd", "even") %>">
-                       <td><%= link_to custom_field.name, :action => 'edit', :id => custom_field %></td>
+                       <td><%= link_to h(custom_field.name), :action => 'edit', :id => custom_field %></td>
                        <td align="center"><%= l(Redmine::CustomFieldFormat.label_for(custom_field.field_format)) %></td>
                        <td align="center"><%= checked_image custom_field.is_required? %></td>
                        <% if tab[:name] == 'IssueCustomField' %>
index 03f767252a17c31dd61abb29d6779e09e4bf6bcc..9b6a552f7fb878281822d2c9dceed840df7675d1 100644 (file)
@@ -19,7 +19,7 @@
   <tbody>  
 <% for status in @issue_statuses %>
   <tr class="<%= cycle("odd", "even") %>">
-  <td><%= link_to status.name, :action => 'edit', :id => status %></td>
+  <td><%= link_to h(status.name), :action => 'edit', :id => status %></td>
   <% if Issue.use_status_for_done_ratio? %>
   <td align="center"><%= h status.default_done_ratio %></td>
   <% end %>
index 12a39ddc4b52e3cbb0c2cd9e5cbdbc99385d6a95..022ed590b77ccfbd5703d3d685c9a5066550ab37 100644 (file)
@@ -16,7 +16,7 @@
     <%= h(relation.other_issue(@issue).project) + ' - ' if Setting.cross_project_issue_relations? %>
     <%= link_to_issue(relation.other_issue(@issue), :truncate => 60) %>
 </td>
-<td class="status"><%= relation.other_issue(@issue).status.name %></td>
+<td class="status"><%=h relation.other_issue(@issue).status.name %></td>
 <td class="start_date"><%= format_date(relation.other_issue(@issue).start_date) %></td>
 <td class="due_date"><%= format_date(relation.other_issue(@issue).due_date) %></td>
 <td class="buttons"><%= link_to_remote(image_tag('link_break.png'), { :url => {:controller => 'issue_relations', :action => 'destroy', :id => relation},                                              
index 9772a899cf54882509c783626ba87853a8a099c8..45d0ff1c4c9b9119087a63820eec8024e93a7dcc 100644 (file)
@@ -42,7 +42,7 @@
 <% @trackers.each do |tracker| %>
     <label class="floating">
     <%= check_box_tag 'project[tracker_ids][]', tracker.id, @project.trackers.include?(tracker) %>
-    <%= tracker %>
+    <%=h tracker %>
     </label>
 <% end %>
 <%= hidden_field_tag 'project[tracker_ids][]', '' %>
@@ -54,7 +54,7 @@
 <% @issue_custom_fields.each do |custom_field| %>
     <label class="floating">
        <%= check_box_tag 'project[issue_custom_field_ids][]', custom_field.id, (@project.all_issue_custom_fields.include? custom_field), (custom_field.is_for_all? ? {:disabled => "disabled"} : {}) %>
-       <%= custom_field.name %>
+       <%=h custom_field.name %>
        </label>
 <% end %>
 <%= hidden_field_tag 'project[issue_custom_field_ids][]', '' %>
index c9cd88bb812c03c703dea9e3fb2428ff6a55e164..7b565a32587e2d7473ae09f27ba3f81d6b53d8a5 100644 (file)
@@ -6,7 +6,7 @@
 <thead><tr>
 <th style="width:25%"></th>
 <% for status in @statuses %>
-<th style="width:<%= col_width %>%"><%= status.name %></th>
+<th style="width:<%= col_width %>%"><%=h status.name %></th>
 <% end %>
 <th align="center" style="width:<%= col_width %>%"><strong><%=l(:label_open_issues_plural)%></strong></th>
 <th align="center" style="width:<%= col_width %>%"><strong><%=l(:label_closed_issues_plural)%></strong></th>
@@ -15,7 +15,7 @@
 <tbody>
 <% for row in rows %>
 <tr class="<%= cycle("odd", "even") %>">
-  <td><%= link_to row.name, :controller => 'issues', :action => 'index', :project_id => ((row.is_a?(Project) ? row : @project)), 
+  <td><%= link_to h(row.name), :controller => 'issues', :action => 'index', :project_id => ((row.is_a?(Project) ? row : @project)), 
                                                 :set_filter => 1, 
                                                 :subproject_id => '!*',
                                                 "#{field_name}" => row.id %></td>
index e82f376a16793a4f0c873304ee072f5610d608e8..8d47bba76680a6ef5306d73f27765de9f403d215 100644 (file)
@@ -11,7 +11,7 @@
 <tbody>
 <% for row in rows %>
 <tr class="<%= cycle("odd", "even") %>">
-  <td><%= link_to row.name, :controller => 'issues', :action => 'index', :project_id => ((row.is_a?(Project) ? row : @project)), 
+  <td><%= link_to h(row.name), :controller => 'issues', :action => 'index', :project_id => ((row.is_a?(Project) ? row : @project)), 
                                                 :set_filter => 1, 
                                                 :subproject_id => '!*',
                                                 "#{field_name}" => row.id %></td>
index 41878146be0d45a619c9dd958652c802bdbd6e3b..73c7e0841b2591f6248349933a9b13a8905946b2 100644 (file)
@@ -13,7 +13,7 @@
   <tbody>
 <% for role in @roles %>
   <tr class="<%= cycle("odd", "even") %>">
-  <td><%= content_tag(role.builtin? ? 'em' : 'span', link_to(role.name, :action => 'edit', :id => role)) %></td>
+  <td><%= content_tag(role.builtin? ? 'em' : 'span', link_to(h(role.name), :action => 'edit', :id => role)) %></td>
   <td align="center" style="width:15%;">
   <% unless role.builtin? %>
     <%= reorder_links('role', {:action => 'edit', :id => role}) %>
index ab6eba57530fa3cab5b9dcf2b505ad7bff0c8f54..c4981ccd3beda6f73f494b752ab2891dd0e4ec6f 100644 (file)
@@ -14,7 +14,7 @@
   <tbody>
 <% for tracker in @trackers %>
   <tr class="<%= cycle("odd", "even") %>">
-  <td><%= link_to tracker.name, :action => 'edit', :id => tracker %></td>
+  <td><%= link_to h(tracker.name), :action => 'edit', :id => tracker %></td>
   <td align="center"><% unless tracker.workflows.count > 0 %><span class="icon icon-warning"><%= l(:text_tracker_no_workflow) %> (<%= link_to l(:button_edit), {:controller => 'workflows', :action => 'edit', :tracker_id => tracker} %>)</span><% end %></td>
   <td align="center" style="width:15%;"><%= reorder_links('tracker', {:action => 'edit', :id => tracker}) %></td>
   <td class="buttons">