]> source.dussan.org Git - redmine.git/commitdiff
Slight views refactoring
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 27 May 2007 12:38:29 +0000 (12:38 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 27 May 2007 12:38:29 +0000 (12:38 +0000)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@548 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/documents/_form.rhtml
app/views/documents/show.rhtml
app/views/issues/edit.rhtml
app/views/messages/_form.rhtml
app/views/news/_form.rhtml
app/views/projects/add_file.rhtml
app/views/projects/add_issue.rhtml

index bd6e6cc7e4f53bf9ae308185b9a03315e8ab9f82..ee7c289f14ddf1814ddf47cd97755341115b1fef 100644 (file)
 <!--[eoform:document]-->
 </div>
 
-<% if Setting.text_formatting == 'textile' %>
-<%= javascript_include_tag 'jstoolbar' %>
-<script type="text/javascript">
-//<![CDATA[
-if (document.getElementById) { 
-       if (document.getElementById('document_description')) { 
-               var commentTb = new jsToolBar(document.getElementById('document_description')); 
-               commentTb.draw(); 
-       }
-}
-//]]>
-</script>
-<% end %>
\ No newline at end of file
+<%= wikitoolbar_for 'document_description' %>
index 9f530539f111c76ce4fb324a404cd8a4fe102141..74b8f343d1c5105bec6c6a6e600df89c0a6dd95c 100644 (file)
@@ -30,9 +30,7 @@
 <% if authorize_for('documents', 'add_attachment') %>
 <p><%= toggle_link l(:label_attachment_new), "add_attachment_form" %></p>
   <% form_tag({ :controller => 'documents', :action => 'add_attachment', :id => @document }, :multipart => true, :class => "tabular", :id => "add_attachment_form", :style => "display:none;") do %>
-    <p id="attachments_p"><label for="attachment_file"><%=l(:label_attachment)%>
-    <%= image_to_function "add.png", "addFileField();return false" %></label>
-    <%= file_field_tag 'attachments[]', :size => 30  %> <em>(<%= l(:label_max_size) %>: <%= number_to_human_size(Setting.attachment_max_size.to_i.kilobytes) %>)</em></p>
+    <%= render :partial => 'attachments/form' %>
   <%= submit_tag l(:button_add) %>
   <% end %> 
 <% end %>
index 02430127d97554fc9da480d03ab8a5c7353f4a23..8551bfab520578d8e5a49a687e6dfc00f94707ad 100644 (file)
 <%= submit_tag l(:button_save) %>
 <% end %>
 
-<% if Setting.text_formatting == 'textile' %>
-<%= javascript_include_tag 'jstoolbar' %>
-<script type="text/javascript">
-//<![CDATA[
-if (document.getElementById) { 
-       if (document.getElementById('issue_description')) { 
-               var commentTb = new jsToolBar(document.getElementById('issue_description')); 
-               commentTb.draw(); 
-       }
-}
-//]]>
-</script>
-<% end %>
+<%= wikitoolbar_for 'issue_description' %>
 
 <% content_for :header_tags do %>
 <%= javascript_include_tag 'calendar/calendar' %>
index 93e4311b9c0f154ccde1c6a3083f427fff66b537..0d1ec73903030b3c46bff7027313daf93e7ec97d 100644 (file)
@@ -5,7 +5,7 @@
 <p><label><%= l(:field_subject) %></label><br />
 <%= f.text_field :subject, :required => true, :size => 80 %></p>
 
-<p><%= f.text_area :content, :required => true, :cols => 80, :rows => 15 %></p>
+<p><%= f.text_area :content, :required => true, :cols => 80, :rows => 15, :class => 'wiki-edit' %></p>
 <%= wikitoolbar_for 'message_content' %>
 <!--[eoform:message]-->
 
index d5fec279a9e70cc0c51a08a532b202b3b54b5115..1ea3c6aa7f6c68bb6ca06796a3039437b2c04ed6 100644 (file)
@@ -5,16 +5,4 @@
 <p><%= f.text_area :description, :required => true, :cols => 60, :rows => 15, :class => 'wiki-edit' %></p>
 </div>
 
-<% if Setting.text_formatting == 'textile' %>
-<%= javascript_include_tag 'jstoolbar' %>
-<script type="text/javascript">
-//<![CDATA[
-if (document.getElementById) { 
-       if (document.getElementById('news_description')) { 
-               var commentTb = new jsToolBar(document.getElementById('news_description')); 
-               commentTb.draw(); 
-       }
-}
-//]]>
-</script>
-<% end %>
\ No newline at end of file
+<%= wikitoolbar_for 'news_description' %>
index f39018cc84865675dff8f29a8b134b71e5c83ff4..839275373f44c7c274e322abaa6d6b4dfc4a2888 100644 (file)
@@ -7,9 +7,7 @@
 <p><label for="version_id"><%=l(:field_version)%> <span class="required">*</span></label>
 <%= select_tag "version_id", options_from_collection_for_select(@versions, "id", "name") %></p>
 
-<p id="attachments_p"><label for="attachment_file"><%=l(:label_attachment)%>
-<%= image_to_function "add.png", "addFileField();return false" %></label>
-<%= file_field_tag 'attachments[]', :size => 30  %> <em>(<%= l(:label_max_size) %>: <%= number_to_human_size(Setting.attachment_max_size.to_i.kilobytes) %>)</em></p>
+<%= render :partial => 'attachments/form' %>
 </div>
 <%= submit_tag l(:button_add) %>
 <% end %> 
\ No newline at end of file
index 36c6d5869bdf0d758817bad529a68cdcdea1d157..3f1815e388b0649bd410a5382d7c608738a8b222 100644 (file)
 <%= submit_tag l(:button_create) %>
 <% end %>
 
-<% if Setting.text_formatting == 'textile' %>
-<%= javascript_include_tag 'jstoolbar' %>
-<script type="text/javascript">
-//<![CDATA[
-if (document.getElementById) { 
-       if (document.getElementById('issue_description')) { 
-               var commentTb = new jsToolBar(document.getElementById('issue_description')); 
-               commentTb.draw(); 
-       }
-}
-//]]>
-</script>
-<% end %>
+<%= wikitoolbar_for 'issue_description' %>
 
 <% content_for :header_tags do %>
 <%= javascript_include_tag 'calendar/calendar' %>