Skip to content

Commit

Permalink
* skel/preview.rhtml*: supported label element for hide diary checkbox.
Browse files Browse the repository at this point in the history
git-svn-id: https://tdiary.svn.sourceforge.net/svnroot/tdiary/trunk/core@3228 7f22e88f-374d-0410-998f-c91420d97ba2
  • Loading branch information
tadatadashi committed Feb 27, 2008
1 parent bde8215 commit 776ccb2
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 14 deletions.
1 change: 1 addition & 0 deletions ChangeLog
@@ -1,5 +1,6 @@
2008-02-27 TADA Tadashi <sho@spc.gr.jp>
* misc/style/etdiary: catch up current specification of the style.
* skel/preview.rhtml*: supported label element for hide diary checkbox.

2008-02-24 TADA Tadashi <sho@spc.gr.jp>
* plugin/05referer.rb: fixed no saving referer on day mode.
Expand Down
8 changes: 4 additions & 4 deletions skel/preview.rhtml
@@ -1,4 +1,4 @@
<%# preview.rhtml $Revision: 1.14 $ %>
<%# preview.rhtml $Revision: 1.15 $ %>
<%%=navi%>

<h1><%=h @conf.html_title %> [<%%=preview_label%>]</h1>
Expand Down Expand Up @@ -63,9 +63,9 @@ param = {
<span class="button append">
<input type="submit" tabindex="999" accesskey="A" name="<%%= submit_command %>" value=" <%%= submit_label %> ">
</span>
<span class="checkbox hidediary">
この日の日記を隠す<input type="checkbox" name="hide" value="true" <% unless @diary.visible? then %>checked <% end %>tabindex="1000" accesskey="H">
</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">この日の日記を隠す
</label></span>
</div></form>
</div>
</div>
Expand Down
8 changes: 4 additions & 4 deletions skel/preview.rhtml.en
@@ -1,4 +1,4 @@
<%# preview.rhtml.en $Revision: 1.13 $ %>
<%# preview.rhtml.en $Revision: 1.14 $ %>
<%%=navi%>

<h1><%=h @conf.html_title %> [<%%=preview_label%>]</h1>
Expand Down Expand Up @@ -63,9 +63,9 @@ param = {
<span class="button append">
<input type="submit" tabindex="999" accesskey="A" name="<%%= submit_command %>" value=" <%%= submit_label %> ">
</span>
<span class="checkbox hidediary">
Hide this day<input type="checkbox" name="hide" value="true" <% unless @diary.visible? then %>checked <% end %>tabindex="1000" accesskey="H">
</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>
Expand Down
8 changes: 4 additions & 4 deletions skel/preview.rhtml.zh
@@ -1,4 +1,4 @@
<%# preview.rhtml.en $Revision: 1.5 $ %>
<%# preview.rhtml.en $Revision: 1.6 $ %>
<%%=navi%>

<h1><%=h @conf.html_title %> [<%%=preview_label%>]</h1>
Expand Down Expand Up @@ -63,9 +63,9 @@ param = {
<span class="button append">
<input type="submit" tabindex="999" accesskey="A" name="<%%= submit_command %>" value=" <%%= submit_label %> ">
</span>
<span class="checkbox hidediary">
���n�Z�X�o�Ѫ���x(����)<input type="checkbox" name="hide" value="true" <% unless @diary.visible? then %>checked <% end %>tabindex="1000" accesskey="H">
</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">���n�Z�X�o�Ѫ���x(����)
</label></span>
</div></form>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions tdiary.rb
@@ -1,13 +1,13 @@
=begin
== NAME
tDiary: the "tsukkomi-able" web diary system.
tdiary.rb $Revision: 1.336 $
tdiary.rb $Revision: 1.337 $
Copyright (C) 2001-2007, TADA Tadashi <sho@spc.gr.jp>
You can redistribute it and/or modify it under GPL2.
=end

TDIARY_VERSION = '2.2.0.20080224'
TDIARY_VERSION = '2.2.0.20080227'

$:.insert( 1, File::dirname( __FILE__ ) + '/misc/lib' )

Expand Down

0 comments on commit 776ccb2

Please sign in to comment.