##// END OF EJS Templates
Reverting commit r1748. Some environments are not allowing the cached file to...
Reverting commit r1748. Some environments are not allowing the cached file to write to public, causing all JavaScript to fail. Javascripts are now cached into a single file for downloads in production mode. #1186 git-svn-id: http://redmine.rubyforge.org/svn/trunk@1771 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1689:60d066f943c6
r1770:8f3a04ce6906
Show More
rename.rhtml
12 lines | 429 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Added the ability to rename wiki pages (specific permission required)....
r709 <h2><%= l(:button_rename) %>: <%= @original_title %></h2>
<%= error_messages_for 'page' %>
<% labelled_tabular_form_for :wiki_page, @page, :url => { :action => 'rename' } do |f| %>
<div class="box">
Jean-Philippe Lang
Wiki page hierarchy (#528). Parent page can be assigned on Rename screen....
r1689 <p><%= f.text_field :title, :required => true, :size => 100 %></p>
Jean-Philippe Lang
Added the ability to rename wiki pages (specific permission required)....
r709 <p><%= f.check_box :redirect_existing_links %></p>
Jean-Philippe Lang
Wiki page hierarchy (#528). Parent page can be assigned on Rename screen....
r1689 <p><%= f.text_field :parent_title, :size => 100 %></p>
Jean-Philippe Lang
Added the ability to rename wiki pages (specific permission required)....
r709 </div>
<%= submit_tag l(:button_rename) %>
<% end %>