#edit_today.rb Rev.1.1$ def edit_today_init @conf['edit_today.caption'] ||= 'この日を編集' end unless @mode == 'day' add_body_enter_proc do |date| edit_today_init ymd = Time::at(date).strftime('%Y%m%d') y, m, d = ymd.scan(/^(\d{4})(\d\d)(\d\d)$/)[0] caption = @conf['edit_today.caption'] %Q|
#{caption}
| end end def saveconf_edit_today if @mode == 'saveconf' then @conf['edit_today.caption'] = @cgi.params['edit_today_caption'][0] end end add_conf_proc('EditToday', '日付毎に編集画面へのアンカーを付ける') do saveconf_edit_today edit_today_init r = <<-HTML

表示関連

#{"

リンクを示す文字列を指定します.アイコンなども指定出来ます。

" unless @conf.mobile_agent?}

記入例:

  1. この日の日記を編集
  2. <img src='icons/edit.png' alt='この日を編集' width='15' height='15'>

リンク:

CSS関連

テーマを編集出来る場合はそちらで、出来ない場合はappend-css.rbを使って見た目を定義してください。

div.edit-todayspan.edit-todayの2つのクラスを用意しています。

HTML end