Patch #2654 » minor_flaws.diff
| app/models/message.rb (Arbeitskopie) | ||
|---|---|---|
| 23 | 23 |
belongs_to :last_reply, :class_name => 'Message', :foreign_key => 'last_reply_id' |
| 24 | 24 |
|
| 25 | 25 |
acts_as_searchable :columns => ['subject', 'content'], |
| 26 |
:include => {:board, :project},
|
|
| 26 |
:include => {:board => :project},
|
|
| 27 | 27 |
:project_key => 'project_id', |
| 28 | 28 |
:date_column => "#{table_name}.created_on"
|
| 29 | 29 |
acts_as_event :title => Proc.new {|o| "#{o.board.name}: #{o.subject}"},
|
| app/views/issues/bulk_edit.rhtml (Arbeitskopie) | ||
|---|---|---|
| 51 | 51 |
<fieldset><legend><%= l(:field_notes) %></legend> |
| 52 | 52 |
<%= text_area_tag 'notes', @notes, :cols => 60, :rows => 10, :class => 'wiki-edit' %> |
| 53 | 53 |
<%= wikitoolbar_for 'notes' %> |
| 54 |
</fieldset> |
|
| 54 | 55 |
</div> |
| 55 | 56 | |
| 56 | 57 |
<p><%= submit_tag l(:button_submit) %> |
| app/views/my/blocks/_timelog.rhtml (Arbeitskopie) | ||
|---|---|---|
| 47 | 47 |
</tr> |
| 48 | 48 |
<% end -%> |
| 49 | 49 |
<% end -%> |
| 50 |
</tbdoy>
|
|
| 50 |
</tbody>
|
|
| 51 | 51 |
</table> |
| 52 | 52 |
<% end %> |
| app/views/projects/settings/_versions.rhtml (Arbeitskopie) | ||
|---|---|---|
| 17 | 17 |
<td><%= link_to(version.wiki_page_title, :controller => 'wiki', :page => Wiki.titleize(version.wiki_page_title)) unless version.wiki_page_title.blank? || @project.wiki.nil? %></td> |
| 18 | 18 |
<td align="center"><%= link_to_if_authorized l(:button_edit), { :controller => 'versions', :action => 'edit', :id => version }, :class => 'icon icon-edit' %></td>
|
| 19 | 19 |
<td align="center"><%= link_to_if_authorized l(:button_delete), {:controller => 'versions', :action => 'destroy', :id => version}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %></td>
|
| 20 |
</td> |
|
| 21 | 20 |
</tr> |
| 22 | 21 |
<% end; reset_cycle %> |
| 23 | 22 |
</tbody> |
| app/views/wiki/export.rhtml (Arbeitskopie) | ||
|---|---|---|
| 5 | 5 |
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> |
| 6 | 6 |
<style> |
| 7 | 7 |
body { font:80% Verdana,Tahoma,Arial,sans-serif; }
|
| 8 |
h1, h2, h3, h4 { font-family: Trebuchet MS,Georgia,"Times New Roman",serif; }
|
|
| 8 |
h1, h2, h3, h4 { font-family: "Trebuchet MS",Georgia,"Times New Roman",serif; }
|
|
| 9 | 9 |
ul.toc { padding: 4px; margin-left: 0; }
|
| 10 | 10 |
ul.toc li { list-style-type:none; }
|
| 11 | 11 |
ul.toc li.heading2 { margin-left: 1em; }
|
| app/views/wiki/export_multiple.rhtml (Arbeitskopie) | ||
|---|---|---|
| 5 | 5 |
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> |
| 6 | 6 |
<style> |
| 7 | 7 |
body { font:80% Verdana,Tahoma,Arial,sans-serif; }
|
| 8 |
h1, h2, h3, h4 { font-family: Trebuchet MS,Georgia,"Times New Roman",serif; }
|
|
| 8 |
h1, h2, h3, h4 { font-family: "Trebuchet MS",Georgia,"Times New Roman",serif; }
|
|
| 9 | 9 |
</style> |
| 10 | 10 |
</head> |
| 11 | 11 |
<body> |