2008-12-15 20:19:22 +01:00
|
|
|
<%-
|
2008-03-14 05:02:12 +01:00
|
|
|
@title = "Creating #{CGI.escapeHTML(WikiWords.separate(@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">
|
2008-11-24 22:53:39 +01:00
|
|
|
<%= render(:file => "#{@web.markup}_help") %>
|
|
|
|
<%= render(:file => 'wiki_words_help') %>
|
2007-01-22 14:43:50 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="editForm">
|
2007-05-11 18:47:38 +02:00
|
|
|
<% form_tag({ :action => 'save', :web => @web.address, :id => @page_name },
|
|
|
|
{ 'id' => 'editForm', 'method' => 'post', 'onsubmit' => 'cleanAuthorName();', 'accept-charset' => 'utf-8' }) do %>
|
2007-01-22 14:43:50 +01:00
|
|
|
|
2008-12-17 08:42:24 +01:00
|
|
|
<textarea name="content" id="content" rows="24" cols="60"><%= h(flash[:content] ||
|
|
|
|
( (params['content'] && params['content'].is_utf8?) ? params['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, @author,
|
|
|
|
:onfocus => "this.value == 'AnonymousCoward' ? this.value = '' : true;",
|
|
|
|
:onblur => "this.value == '' ? this.value = 'AnonymousCoward' : true" %>
|
|
|
|
</div>
|
2008-12-15 20:19:22 +01:00
|
|
|
<%- end -%>
|
2007-01-22 14:43:50 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
function cleanAuthorName() {
|
|
|
|
if (document.getElementById('authorName').value == "") {
|
|
|
|
document.getElementById('authorName').value = 'AnonymousCoward';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
document.forms["editForm"].elements["content"].focus();
|
|
|
|
</script>
|