2005-01-15 21:26:54 +01:00
|
|
|
<%
|
2005-08-15 00:26:54 +02:00
|
|
|
@title = "Rollback to #{@page.plain_name} Rev ##{@revision_number}"
|
2005-01-15 21:26:54 +01:00
|
|
|
@content_width = 720
|
|
|
|
@hide_navigation = true
|
2005-01-16 16:00:11 +01:00
|
|
|
%>
|
2005-01-15 21:26:54 +01:00
|
|
|
|
2007-05-08 00:46:00 +02:00
|
|
|
<%= "<p style='color:red'>Please correct the error that caused this error in rendering:<br/><small>#{params["msg"]}</small></p>" if params["msg"] %>
|
2005-01-15 21:26:54 +01:00
|
|
|
|
2006-04-02 05:32:39 +02:00
|
|
|
<div id="MarkupHelp">
|
|
|
|
<%= render("#{@web.markup}_help") %>
|
|
|
|
<%= render 'wiki_words_help' %>
|
|
|
|
</div>
|
2005-01-15 21:26:54 +01:00
|
|
|
|
2006-04-02 05:32:39 +02:00
|
|
|
<div id="editForm">
|
2007-05-08 00:46:00 +02:00
|
|
|
<% form_tag({:web => @web.address, :action => 'save', :id => @page.name},
|
2006-04-02 05:32:39 +02:00
|
|
|
{ :id => 'editForm', :method => 'post', :onSubmit => 'cleanAuthorName();',
|
2007-05-08 00:46:00 +02:00
|
|
|
'accept-charset' => 'utf-8' }) do %>
|
2006-04-02 05:32:39 +02:00
|
|
|
<textarea name="content" id="content"><%= @revision.content %></textarea>
|
|
|
|
<div id="editFormButtons">
|
|
|
|
<input type="submit" value="Update" accesskey="u" /> as
|
|
|
|
<input type="text" name="author" id="authorName" value="<%= @author %>"
|
|
|
|
onClick="this.value == 'AnonymousCoward' ? this.value = '' : true" />
|
|
|
|
|
|
|
|
|
<span>
|
|
|
|
<%= link_to('Cancel', {:web => @web.address, :action => 'cancel_edit', :id => @page.name},
|
|
|
|
{:accesskey => 'c'}) %>
|
|
|
|
<small>(unlocks page)</small>
|
|
|
|
</span>
|
|
|
|
</div>
|
2007-05-08 00:46:00 +02:00
|
|
|
<% end %>
|
2006-04-02 05:32:39 +02:00
|
|
|
</div>
|
2005-01-15 21:26:54 +01:00
|
|
|
|
2006-04-02 05:32:39 +02:00
|
|
|
<script type="text/javascript">
|
2005-01-15 21:26:54 +01:00
|
|
|
function cleanAuthorName() {
|
|
|
|
if (document.getElementById('authorName').value == "") {
|
|
|
|
document.getElementById('authorName').value = 'AnonymousCoward';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|