instiki/app/views/wiki/edit.rhtml

40 lines
1.4 KiB
Plaintext
Raw Normal View History

2008-12-15 20:19:22 +01:00
<%-
@title = "Editing #{CGI.escapeHTML(@page.name)}"
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">
<%= render(:file => "#{@web.markup}_help") %>
<%= render(:file => 'wiki_words_help') %>
2007-01-22 14:43:50 +01:00
</div>
<% form_tag({ :action => 'save', :web => @web.address, :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(flash[:content] || (params['content'] || @page.content).purify) %></textarea>
2007-01-22 14:43:50 +01:00
<div id="editFormButtons">
<input type="submit" value="Submit" accesskey="s"/> as
<%= text_field_tag :author, h(@author.purify),
2007-01-22 14:43:50 +01:00
: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'}) %>
<span class="unlock">(unlocks page)</span>
2007-01-22 14:43:50 +01:00
</span>
</div>
</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';
}
}
document.forms["editForm"].elements["content"].focus();
</script>