diff --git a/app/views/wiki/annotate.html.erb b/app/views/wiki/annotate.html.erb
index a0e97370d..b1b765909 100644
--- a/app/views/wiki/annotate.html.erb
+++ b/app/views/wiki/annotate.html.erb
@@ -6,15 +6,14 @@
<%= wiki_page_breadcrumb(@page) %>
-
<%=h @page.pretty_title %>
+<%= title [@page.pretty_title, project_wiki_page_path(@page.project, @page.title, :version => nil)],
+ [l(:label_history), history_project_wiki_page_path(@page.project, @page.title)],
+ "#{l(:label_version)} #{@annotate.content.version}" %>
-<%= l(:label_version) %> <%= link_to h(@annotate.content.version),
- :action => 'show', :project_id => @project,
- :id => @page.title, :version => @annotate.content.version %>
-(<%= h(@annotate.content.author ?
- @annotate.content.author.name : l(:label_user_anonymous))
- %>, <%= format_time(@annotate.content.updated_on) %>)
+ <%= @annotate.content.author ? link_to_user(@annotate.content.author) : l(:label_user_anonymous)
+ %>, <%= format_time(@annotate.content.updated_on) %>
+ <%=h @annotate.content.comments %>
<% colors = Hash.new {|k,v| k[v] = (k.size % 12) } %>
diff --git a/app/views/wiki/diff.html.erb b/app/views/wiki/diff.html.erb
index ca1a57ae7..335e581f8 100644
--- a/app/views/wiki/diff.html.erb
+++ b/app/views/wiki/diff.html.erb
@@ -5,7 +5,9 @@
<%= wiki_page_breadcrumb(@page) %>
-<%= h(@page.pretty_title) %>
+<%= title [@page.pretty_title, project_wiki_page_path(@page.project, @page.title, :version => nil)],
+ [l(:label_history), history_project_wiki_page_path(@page.project, @page.title)],
+ "#{l(:label_version)} #{@diff.content_to.version}" %>
<%= l(:label_version) %> <%= link_to @diff.content_from.version, :action => 'show', :id => @page.title, :project_id => @page.project, :version => @diff.content_from.version %>
diff --git a/app/views/wiki/history.html.erb b/app/views/wiki/history.html.erb
index 90ce353df..56a447855 100644
--- a/app/views/wiki/history.html.erb
+++ b/app/views/wiki/history.html.erb
@@ -1,8 +1,6 @@
<%= wiki_page_breadcrumb(@page) %>
-
<%= h(@page.pretty_title) %>
-
-<%= l(:label_history) %>
+<%= title [@page.pretty_title, project_wiki_page_path(@page.project, @page.title, :version => nil)], l(:label_history) %>
<%= form_tag({:controller => 'wiki', :action => 'diff',
:project_id => @page.project, :id => @page.title},
diff --git a/app/views/wiki/show.html.erb b/app/views/wiki/show.html.erb
index b4386b754..3ff7d040b 100644
--- a/app/views/wiki/show.html.erb
+++ b/app/views/wiki/show.html.erb
@@ -17,6 +17,10 @@
<%= wiki_page_breadcrumb(@page) %>
<% unless @content.current_version? %>
+ <%= title [@page.pretty_title, project_wiki_page_path(@page.project, @page.title, :version => nil)],
+ [l(:label_history), history_project_wiki_page_path(@page.project, @page.title)],
+ "#{l(:label_version)} #{@content.version}" %>
+
<%= link_to(("\xc2\xab " + l(:label_previous)),
:action => 'show', :id => @page.title, :project_id => @page.project,