2008-12-15 20:19:22 +01:00
|
|
|
<%-
|
2010-05-26 07:27:49 +02:00
|
|
|
@title = "Rollback to #{@page.plain_name} Rev ##{@revision_number}".html_safe
|
2007-01-22 14:43:50 +01:00
|
|
|
@content_width = 720
|
|
|
|
@hide_navigation = true
|
2008-12-15 20:19:22 +01:00
|
|
|
-%>
|
2007-01-22 14:43:50 +01:00
|
|
|
|
|
|
|
<div id="MarkupHelp">
|
2009-12-17 17:29:51 +01:00
|
|
|
<%= render(:file => "#{@web.markup}_help") -%>
|
|
|
|
<%= render(:file => 'wiki_words_help') unless @web.brackets_only? -%>
|
2007-01-22 14:43:50 +01:00
|
|
|
</div>
|
|
|
|
|
2007-05-11 18:47:38 +02:00
|
|
|
<% form_tag({:web => @web.address, :action => 'save', :id => @page.name},
|
2007-01-22 15:36:51 +01:00
|
|
|
{ :id => 'editForm', :method => 'post', :onsubmit => 'cleanAuthorName();',
|
2007-05-11 18:47:38 +02:00
|
|
|
'accept-charset' => 'utf-8' }) do %>
|
2007-03-03 01:46:40 +01:00
|
|
|
<div>
|
2008-12-17 07:07:21 +01:00
|
|
|
<textarea name="content" id="content" rows="24" cols="60"><%= h(@revision.content.purify) %></textarea>
|
2007-01-22 14:43:50 +01:00
|
|
|
<div id="editFormButtons">
|
|
|
|
<input type="submit" value="Update" accesskey="u" /> as
|
2008-12-17 07:07:21 +01:00
|
|
|
<input type="text" name="author" id="authorName" value="<%= h(@author.purify) %>"
|
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'}) %>
|
2007-02-18 08:48:32 +01:00
|
|
|
<span class="unlock">(unlocks page)</span>
|
2007-01-22 14:43:50 +01:00
|
|
|
</span>
|
|
|
|
</div>
|
2007-03-03 01:46:40 +01:00
|
|
|
</div>
|
2008-12-15 20:19:22 +01:00
|
|
|
<%- 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>
|