2005-01-24 19:52:04 +01:00
|
|
|
<%
|
|
|
|
@title = "Editing #{@page.name}"
|
|
|
|
@content_width = 720
|
|
|
|
@hide_navigation = true
|
|
|
|
%>
|
|
|
|
|
|
|
|
<%= "<p style='color:red'>Please correct the error that caused this error in rendering:<br/><small>#{@params["msg"]}</small></p>" if @params["msg"] %>
|
|
|
|
|
|
|
|
<%= render("#{@web.markup}_help") if @web %>
|
|
|
|
|
|
|
|
<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>
|
2005-01-30 06:12:01 +01:00
|
|
|
<input type="submit" value="Submit" accesskey="s"/> as
|
2005-01-24 19:52:04 +01:00
|
|
|
<input type="text" name="author" id="authorName" value="<%= @author %>"
|
|
|
|
onClick="this.value == 'AnonymousCoward' ? this.value = '' : true" />
|
2005-01-30 06:12:01 +01:00
|
|
|
| <a href="../cancel_edit/<%= @page.name %>" accesskey="c">Cancel</a> <small>(unlocks page)</small>
|
2005-01-24 19:52:04 +01:00
|
|
|
</p>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<script language="JavaScript1.2">
|
|
|
|
function cleanAuthorName() {
|
|
|
|
if (document.getElementById('authorName').value == "") {
|
|
|
|
document.getElementById('authorName').value = 'AnonymousCoward';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|