summaryrefslogtreecommitdiffstats
path: root/app/views
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2014-12-24 12:24:00 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2014-12-24 12:24:00 +0000
commitbfd811304601edbc3c17edc1259a1029c230726d (patch)
tree9d8923db0f497f5e7d97e70407d2d3381c10f21e /app/views
parente723081ff4df9fa4002729add73316f74c4085b9 (diff)
downloadredmine-bfd811304601edbc3c17edc1259a1029c230726d.tar.gz
redmine-bfd811304601edbc3c17edc1259a1029c230726d.zip
Adds p/n access keys for previous/next links (#18692).
Patch by Go MAEDA. git-svn-id: http://svn.redmine.org/redmine/trunk@13794 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r--app/views/activities/index.html.erb6
-rw-r--r--app/views/calendars/show.html.erb2
-rw-r--r--app/views/gantts/show.html.erb6
-rw-r--r--app/views/issues/show.html.erb6
-rw-r--r--app/views/repositories/revision.html.erb6
5 files changed, 17 insertions, 9 deletions
diff --git a/app/views/activities/index.html.erb b/app/views/activities/index.html.erb
index a3a441154..c6fd357c7 100644
--- a/app/views/activities/index.html.erb
+++ b/app/views/activities/index.html.erb
@@ -24,12 +24,14 @@
<div style="float:left;">
<%= link_to_content_update("\xc2\xab " + l(:label_previous),
params.merge(:from => @date_to - @days - 1),
- :title => l(:label_date_from_to, :start => format_date(@date_to - 2*@days), :end => format_date(@date_to - @days - 1))) %>
+ :title => l(:label_date_from_to, :start => format_date(@date_to - 2*@days), :end => format_date(@date_to - @days - 1)),
+ :accesskey => accesskey(:previous)) %>
</div>
<div style="float:right;">
<%= link_to_content_update(l(:label_next) + " \xc2\xbb",
params.merge(:from => @date_to + @days - 1),
- :title => l(:label_date_from_to, :start => format_date(@date_to), :end => format_date(@date_to + @days - 1))) unless @date_to >= Date.today %>
+ :title => l(:label_date_from_to, :start => format_date(@date_to), :end => format_date(@date_to + @days - 1)),
+ :accesskey => accesskey(:next)) unless @date_to >= Date.today %>
</div>
&nbsp;
<% other_formats_links do |f| %>
diff --git a/app/views/calendars/show.html.erb b/app/views/calendars/show.html.erb
index 0fd97ac29..bfa8351d6 100644
--- a/app/views/calendars/show.html.erb
+++ b/app/views/calendars/show.html.erb
@@ -11,7 +11,7 @@
</fieldset>
<p style="float:right;">
- <%= link_to_previous_month(@year, @month) %> | <%= link_to_next_month(@year, @month) %>
+ <%= link_to_previous_month(@year, @month, :accesskey => accesskey(:previous)) %> | <%= link_to_next_month(@year, @month, :accesskey => accesskey(:next)) %>
</p>
<p class="buttons">
diff --git a/app/views/gantts/show.html.erb b/app/views/gantts/show.html.erb
index b0e82fa54..5dd95232d 100644
--- a/app/views/gantts/show.html.erb
+++ b/app/views/gantts/show.html.erb
@@ -295,11 +295,13 @@
<tr>
<td style="text-align:left;">
<%= link_to_content_update("\xc2\xab " + l(:label_previous),
- params.merge(@gantt.params_previous)) %>
+ params.merge(@gantt.params_previous),
+ :accesskey => accesskey(:previous)) %>
</td>
<td style="text-align:right;">
<%= link_to_content_update(l(:label_next) + " \xc2\xbb",
- params.merge(@gantt.params_next)) %>
+ params.merge(@gantt.params_next),
+ :accesskey => accesskey(:next)) %>
</td>
</tr>
</table>
diff --git a/app/views/issues/show.html.erb b/app/views/issues/show.html.erb
index e5a3298668..6a514ac88 100644
--- a/app/views/issues/show.html.erb
+++ b/app/views/issues/show.html.erb
@@ -8,14 +8,16 @@
<%= link_to_if @prev_issue_id,
"\xc2\xab #{l(:label_previous)}",
(@prev_issue_id ? issue_path(@prev_issue_id) : nil),
- :title => "##{@prev_issue_id}" %> |
+ :title => "##{@prev_issue_id}",
+ :accesskey => accesskey(:previous) %> |
<% if @issue_position && @issue_count %>
<span class="position"><%= l(:label_item_position, :position => @issue_position, :count => @issue_count) %></span> |
<% end %>
<%= link_to_if @next_issue_id,
"#{l(:label_next)} \xc2\xbb",
(@next_issue_id ? issue_path(@next_issue_id) : nil),
- :title => "##{@next_issue_id}" %>
+ :title => "##{@next_issue_id}",
+ :accesskey => accesskey(:next) %>
</div>
<% end %>
diff --git a/app/views/repositories/revision.html.erb b/app/views/repositories/revision.html.erb
index d945972f5..64dfd75ea 100644
--- a/app/views/repositories/revision.html.erb
+++ b/app/views/repositories/revision.html.erb
@@ -1,13 +1,15 @@
<div class="contextual">
&#171;
<% unless @changeset.previous.nil? -%>
- <%= link_to_revision(@changeset.previous, @repository, :text => l(:label_previous)) %>
+ <%= link_to_revision(@changeset.previous, @repository,
+ :text => l(:label_previous), :accesskey => accesskey(:previous)) %>
<% else -%>
<%= l(:label_previous) %>
<% end -%>
|
<% unless @changeset.next.nil? -%>
- <%= link_to_revision(@changeset.next, @repository, :text => l(:label_next)) %>
+ <%= link_to_revision(@changeset.next, @repository,
+ :text => l(:label_next), :accesskey => accesskey(:next)) %>
<% else -%>
<%= l(:label_next) %>
<% end -%>