##// END OF EJS Templates
Don't require category or target version when they are not available (#20583)....
Don't require category or target version when they are not available (#20583). git-svn-id: http://svn.redmine.org/redmine/trunk@14733 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r14240:7b12145ed904
r14351:68620da79ab5
Show More
edit.html.erb
47 lines | 1.7 KiB | text/plain | TextLexer
Jean-Philippe Lang
Adds breadcrumb on all wiki page views....
r6062 <%= wiki_page_breadcrumb(@page) %>
Jean-Philippe Lang
Removed unneeded #h calls in views....
r13661 <h2><%= @page.pretty_title %></h2>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= form_for @content, :as => :content,
Toshi MARUYAMA
code layout cleanup app/views/wiki/edit.html.erb...
r8673 :url => {:action => 'update', :id => @page.title},
:html => {:method => :put, :multipart => true, :id => 'wiki_form'} do |f| %>
Jean-Philippe Lang
Optimistic locking added for wiki edits....
r542 <%= f.hidden_field :version %>
Jean-Philippe Lang
Wiki: allows single section edit (#2222)....
r7709 <% if @section %>
<%= hidden_field_tag 'section', @section %>
<%= hidden_field_tag 'section_hash', @section_hash %>
<% end %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <%= error_messages_for 'content' %>
Jean-Philippe Lang
Display wiki syntax quick ref link within the jstoolbar (closes #629, #767)....
r1176
Jean-Philippe Lang
Changed style of the wiki edit form....
r8133 <div class="box tabular">
Toshi MARUYAMA
code layout cleanup app/views/wiki/edit.html.erb...
r9478 <%= text_area_tag 'content[text]', @text, :cols => 100, :rows => 25,
:class => 'wiki-edit', :accesskey => accesskey(:edit) %>
Jean-Philippe Lang
Changed style of the wiki edit form....
r8133
Jean-Philippe Lang
Ability to edit a wiki page's parent on the edit page (#6449)....
r8667 <% if @page.safe_attribute_names.include?('parent_id') && @wiki.pages.any? %>
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= fields_for @page do |fp| %>
Jean-Philippe Lang
Ability to edit a wiki page's parent on the edit page (#6449)....
r8667 <p>
Toshi MARUYAMA
replace tabs to spaces at app/views/wiki/edit.html.erb...
r8672 <label><%= l(:field_parent_title) %></label>
Toshi MARUYAMA
code layout cleanup app/views/wiki/edit.html.erb...
r9478 <%= fp.select :parent_id,
content_tag('option', '', :value => '') +
Toshi MARUYAMA
cleanup syntax of Relation#all at app/views/wiki/edit.html.erb...
r12312 wiki_page_options_for_select(
Jean-Philippe Lang
Merged rails-4.1 branch (#14534)....
r13100 @wiki.pages.includes(:parent).to_a -
Toshi MARUYAMA
code layout cleanup app/views/wiki/edit.html.erb...
r9478 @page.self_and_descendants, @page.parent) %>
Toshi MARUYAMA
replace tabs to spaces at app/views/wiki/edit.html.erb...
r8672 </p>
Jean-Philippe Lang
Ability to edit a wiki page's parent on the edit page (#6449)....
r8667 <% end %>
Jean-Philippe Lang
Option to set parent automatically for new wiki pages (#3108)....
r8135 <% end %>
Jean-Philippe Lang
Raises wiki edits comments limit to 1024 (#19886)....
r14240 <p><label><%= l(:field_comments) %></label><%= f.text_field :comments, :size => 120, :maxlength => 1024 %></p>
Jean-Philippe Lang
Changed style of the wiki edit form....
r8133 <p><label><%=l(:label_attachment_plural)%></label><%= render :partial => 'attachments/form' %></p>
</div>
Jean-Philippe Lang
Adds attachments upload on wiki edit form (#1223)....
r3386
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <p><%= submit_tag l(:button_save) %>
Jean-Philippe Lang
Adds a helper for preview links....
r9848 <%= preview_link({:controller => 'wiki', :action => 'preview', :project_id => @project, :id => @page.title }, 'wiki_form') %></p>
Jean-Philippe Lang
Fixed: wiki preview doesn't work on long entries....
r652 <%= wikitoolbar_for 'content_text' %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>
Jean-Philippe Lang
Fixed: wiki preview doesn't work on long entries....
r652 <div id="preview" class="wiki"></div>
Jean-Philippe Lang
Added code highlighting support in wiki, using this syntax:...
r699
<% content_for :header_tags do %>
Jean-Philippe Lang
Adds noindex,noarchive robots meta tag on form pages (#7582)....
r5323 <%= robot_exclusion_tag %>
Jean-Philippe Lang
Added code highlighting support in wiki, using this syntax:...
r699 <% end %>
Jean-Philippe Lang
Removed @html_title assignments in controllers....
r704
Etienne Massip
Remove unecessary page title HTML escaping from views (#9252)....
r7445 <% html_title @page.pretty_title %>