instiki/app/views/wiki/rollback.rhtml

40 lines
1.5 KiB
Plaintext
Raw Normal View History

2007-01-22 14:43:50 +01:00
<%
@title = "Rollback to #{@page.plain_name} Rev ##{@revision_number}"
@content_width = 720
@hide_navigation = true
%>
<%= "<p style='color:red'>Please correct the error that caused this error in rendering:<br/><small>#{params["msg"]}</small></p>" if params["msg"] %>
2007-01-22 14:43:50 +01:00
<div id="MarkupHelp">
<%= render(:file => "#{@web.markup}_help") %>
<%= render(:file => 'wiki_words_help') %>
2007-01-22 14:43:50 +01:00
</div>
<% form_tag({:web => @web.address, :action => 'save', :id => @page.name},
2007-01-22 15:36:51 +01:00
{ :id => 'editForm', :method => 'post', :onsubmit => 'cleanAuthorName();',
'accept-charset' => 'utf-8' }) do %>
<div>
<textarea name="content" id="content" rows="24" cols="60"><%= h(@revision.content.delete("\x01-\x08\x0B\x0C\x0E-\x1F")) %></textarea>
2007-01-22 14:43:50 +01:00
<div id="editFormButtons">
<input type="submit" value="Update" accesskey="u" /> as
2007-03-05 05:56:52 +01:00
<input type="text" name="author" id="authorName" value="<%= h(@author.delete("\x01-\x08\x0B\x0C\x0E-\x1F")) %>"
2007-01-22 15:36:51 +01:00
onclick="this.value == 'AnonymousCoward' ? this.value = '' : true" />
2007-01-22 14:43:50 +01:00
|
<span>
<%= link_to('Cancel', {:web => @web.address, :action => 'cancel_edit', :id => @page.name},
{:accesskey => 'c'}) %>
<span class="unlock">(unlocks page)</span>
2007-01-22 14:43:50 +01:00
</span>
</div>
</div>
<% end %>
2007-01-22 14:43:50 +01:00
<script type="text/javascript">
function cleanAuthorName() {
if (document.getElementById('authorName').value == "") {
document.getElementById('authorName').value = 'AnonymousCoward';
}
}
</script>