2005-01-24 19:52:04 +01:00
|
|
|
<%
|
|
|
|
@title = "Editing #{@page.name}"
|
|
|
|
@content_width = 720
|
|
|
|
@hide_navigation = true
|
|
|
|
%>
|
2007-02-27 22:56:13 +01:00
|
|
|
<div>
|
2005-11-14 15:02:36 +01:00
|
|
|
<div id="MarkupHelp">
|
2005-04-08 07:02:48 +02:00
|
|
|
<%= render("#{@web.markup}_help") %>
|
|
|
|
<%= render 'wiki_words_help' %>
|
|
|
|
</div>
|
|
|
|
|
2006-04-02 05:32:39 +02:00
|
|
|
<div id="editForm">
|
2007-05-08 00:46:00 +02:00
|
|
|
<% form_tag({ :action => 'save', :web => @web.address, :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
|
|
|
|
2007-05-08 00:46:00 +02:00
|
|
|
<textarea name="content" id="content"><%= h(flash[:content] || @page.content) %></textarea>
|
2006-04-02 05:32:39 +02:00
|
|
|
<div id="editFormButtons">
|
|
|
|
<input type="submit" value="Submit" accesskey="s"/> as
|
|
|
|
<%= text_field_tag :author, @author,
|
|
|
|
:onfocus => "this.value == 'AnonymousCoward' ? this.value = '' : true;",
|
|
|
|
:onblur => "this.value == '' ? this.value = 'AnonymousCoward' : 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>
|
2007-02-27 22:56:13 +01:00
|
|
|
</div>
|
2006-04-02 05:32:39 +02:00
|
|
|
<script type="text/javascript">
|
2005-01-24 19:52:04 +01:00
|
|
|
function cleanAuthorName() {
|
|
|
|
if (document.getElementById('authorName').value == "") {
|
|
|
|
document.getElementById('authorName').value = 'AnonymousCoward';
|
|
|
|
}
|
|
|
|
}
|
2005-11-13 18:48:21 +01:00
|
|
|
document.forms["editForm"].elements["content"].focus();
|
2005-01-24 19:52:04 +01:00
|
|
|
</script>
|