| Path: | app/views/wiki/edit.rhtml |
| Last Update: | Sun May 02 23:26:24 GMT+2:00 2004 |
<%
@title = "Editing #{@page.name}"
@content_width = 720
@hide_navigation = true
%><%= sub_template "top" %>
<%= "<p style=’color:red’>Please correct the error that caused this error in rendering:<br/><small>#{@params["msg"]}</small></p>" if @params["msg"] %>
<%= render_markup_help %>
<form id="editForm" action="../save/<%= @page.name %>" method="post" onSubmit="cleanAuthorName();"> <p>
<textarea name="content" style="width: 450px; height: 500px"><%= @page.content %></textarea>
</p> <p>
<input type="submit" value="Update"> as
<input type="text" name="author" id="authorName" value="<%= @author %>"
onClick="this.value == 'AnonymousCoward' ? this.value = '' : true">
| <a href="../cancel_edit/<%= @page.name %>">Cancel</a> <small>(unlocks page)</small>
</p> </form>
<script language="JavaScript1.2"> function cleanAuthorName() {
if (document.getElementById('authorName').value == "") {
document.getElementById('authorName').value = 'AnonymousCoward';
}
} </script>
<%= sub_template "bottom" %>