2008-12-15 20:19:22 +01:00
|
|
|
<%-
|
2010-05-26 08:27:09 +02:00
|
|
|
@title = "Creating #{WikiWords.separate(@page_name).escapeHTML}".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>
|
|
|
|
|
|
|
|
<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] ||
|
2009-09-07 23:02:36 +02:00
|
|
|
params['content'] ? 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();
|
2010-01-29 06:37:10 +01:00
|
|
|
<%- if [:markdownMML, :markdownPNG, :markdown].include?(@web.markup) -%>
|
2010-02-06 04:36:35 +01:00
|
|
|
setupSVGedit('<%= compute_public_path("editor/svg-editor.html", "svg-edit").split(/\?/)[0] %>');
|
2010-03-29 16:27:14 +02:00
|
|
|
addS5button('<%= @page_name.escapeHTML %>');
|
2010-01-29 06:37:10 +01:00
|
|
|
<%- end -%>
|
2007-01-22 14:43:50 +01:00
|
|
|
</script>
|