From 19f2853a2ae2e82467679522c842842628dfa35e Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Mon, 24 Sep 2007 19:54:48 +0000 Subject: [PATCH] Boards: new message form displayed with no additional request. git-svn-id: http://redmine.rubyforge.org/svn/trunk@763 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/views/boards/show.rhtml | 14 +++++++++++++- app/views/messages/_form.rhtml | 2 +- app/views/messages/show.rhtml | 5 +++-- 3 files changed, 17 insertions(+), 4 deletions(-) diff --git a/app/views/boards/show.rhtml b/app/views/boards/show.rhtml index cdb9e772d..0af89fdb7 100644 --- a/app/views/boards/show.rhtml +++ b/app/views/boards/show.rhtml @@ -1,8 +1,20 @@
-<%= link_to_if_authorized l(:label_message_new), {:controller => 'messages', :action => 'new', :board_id => @board}, :class => "icon icon-add" %> +<%= link_to_if_authorized l(:label_message_new), + {:controller => 'messages', :action => 'new', :board_id => @board}, + :class => 'icon icon-add', + :onclick => 'Element.show("add-message"); return false;' %> <%= watcher_tag(@board, User.current) %>
+ +

<%=h @board.name %>

<% if @topics.any? %> diff --git a/app/views/messages/_form.rhtml b/app/views/messages/_form.rhtml index 0d1ec7390..e484baf2f 100644 --- a/app/views/messages/_form.rhtml +++ b/app/views/messages/_form.rhtml @@ -3,7 +3,7 @@


-<%= f.text_field :subject, :required => true, :size => 80 %>

+<%= f.text_field :subject, :required => true, :size => 120 %>

<%= f.text_area :content, :required => true, :cols => 80, :rows => 15, :class => 'wiki-edit' %>

<%= wikitoolbar_for 'message_content' %> diff --git a/app/views/messages/show.rhtml b/app/views/messages/show.rhtml index 3e546ceea..772f0653e 100644 --- a/app/views/messages/show.rhtml +++ b/app/views/messages/show.rhtml @@ -1,16 +1,17 @@

<%= link_to h(@board.name), :controller => 'boards', :action => 'show', :project_id => @project, :id => @board %> » <%=h @message.subject %>

-

<%= @message.author.name %>, <%= format_time(@message.created_on) %>

+

<%= authoring @message.created_on, @message.author %>

<%= textilizable(@message.content, :attachments => @message.attachments) %>
<%= link_to_attachments @message.attachments, :no_author => true %> +

<%= l(:label_reply_plural) %>

<% @message.children.each do |message| %> ">

<%=h message.subject %> - <%= message.author.name %>, <%= format_time(message.created_on) %>

-

<%= textilizable message.content %>

+
<%= textilizable message.content %>
<% end %> <% if authorize_for('messages', 'reply') %> -- 2.39.5