From 7b13b58a2f247bab702d00b2a061ce4844d66b68 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Mon, 14 May 2007 17:46:58 +0000 Subject: Text search added on messages. git-svn-id: http://redmine.rubyforge.org/svn/trunk@533 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/views/search/index.rhtml | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'app/views') diff --git a/app/views/search/index.rhtml b/app/views/search/index.rhtml index 110f81411..66b89743f 100644 --- a/app/views/search/index.rhtml +++ b/app/views/search/index.rhtml @@ -14,6 +14,9 @@ <% if @project.wiki %> <%= check_box_tag 'scope[]', 'wiki', (@scope.include? 'wiki') %> <% end %> + <% if @project.boards.any? %> + <%= check_box_tag 'scope[]', 'messages', (@scope.include? 'messages') %> + <% end %> <% else %> <%= check_box_tag 'scope[]', 'projects', (@scope.include? 'projects') %> <% end %> @@ -51,6 +54,10 @@ <%=l(:label_revision)%> <%= link_to h(e.revision), :controller => 'repositories', :action => 'revision', :id => @project, :rev => e.revision %>
<%= highlight_tokens(e.comments, @tokens) %>
<%= e.committer.blank? ? e.committer : "Anonymous" %>, <%= format_time(e.committed_on) %> + <% elsif e.is_a? Message %> + <%=h e.board.name %>: <%= link_to_message e %>
+ <%= highlight_tokens(e.content, @tokens) %>
+ <%= e.author ? e.author.name : "Anonymous" %>, <%= format_time(e.created_on) %> <% end %>

<% end %> -- cgit v1.2.3