1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
<%%=navi%>
<h1><%=h @conf.html_title %> [<%%=preview_label%>]</h1>
<%
param = {
'date_format' => @conf.date_format,
'index' => @conf.index,
'section_anchor' => @conf.section_anchor,
'comment_anchor' => @conf.comment_anchor,
'long_mode' => false,
'show_referer' => false,
'referer_limit' => 100,
'referer_table' => @conf.referer_table,
'show_comment' => false,
'comment_limit' => -1,
'multi_user' => @conf.multi_user,
'hide_comment_form' => true,
'anchor' => false,
'show_nyear' => @conf.show_nyear,
} %>
<% if @show_result %>
<%= @diary.eval_rhtml( param ) %>
<% else %>
<div class="day">
<h2><span class="title">Plugin Error</span></h2>
<div class="body">
<div class="section">
<h3><%=h @exception.class.to_s %></h3>
<pre><%=h @exception.to_s %></pre>
</div>
</div>
</div>
<% end %>
<hr class="sep">
<div class="update day">
<h2><span class="title">Updating Form</span></h2>
<div class="form">
<form class="update" method="post" action="<%=h @conf.update %>"><div>
<%=@csrf_protection%>
<input type="hidden" name="old" value="<%=h @old_date %>">
<span class="field year">
<input type="hidden" id="year" name="year" value="<%= @date.year %>"><%= @date.year %>-
</span>
<span class="field month">
<input type="hidden" id="month" name="month" value="<%= @date.mon %>"><%= @date.mon %>-
</span>
<span class="field day">
<input type="hidden" id="day" name="day" value="<%= @date.day %>"><%= @date.day %>
</span>
<div class="field title">
Title: <input class="field" id="title" name="title" tabindex="5" accesskey="T" size="40" value="<%=h @diary.title %>">
</div>
<div class="textarea">
Article(<span id="style"><%=h @conf.style %></span> style<%%= style_howto %>):<textarea id="body" name="body" tabindex="6" accesskey="C" cols="70" rows="15"><%=h @diary.to_src %></textarea>
</div>
<%%=edit_proc( @date )%>
<span class="button preview">
<input type="submit" tabindex="998" accesskey="P" name="<%%= preview_command %>" value="<%%= preview_label %>">
</span>
<span class="button append">
<input type="submit" tabindex="999" accesskey="A" name="<%%= submit_command %>" value=" <%%= submit_label %> ">
</span>
<span class="checkbox hidediary"><label for="hide">
<input type="checkbox" id="hide" name="hide" value="true" <% unless @diary.visible? then %>checked <% end %>tabindex="1000" accesskey="H">Hide this day
</label></span>
</div></form>
</div>
</div>
<hr class="sep">
|