#!/usr/bin/env ruby
#
# 表題: rdnote
#
# 履歴: 2003/01/05 yukiko@ep.sci.hokudai.ac.jp
#
#
#

## main() ##############################################

END{

  rdnote_main

}

########################################################
##  ユーザ設定
########################################################

# 情報ファイル
$infofile = "comment.txt"

# インデックスファイル 
# /home/yukiko/work/shuron/rd/src/#{$index}.rd, /home/yukiko/work/shuron/rd/src../pub/#{$index}.html

$index = "shuron_001"

# テーブル, フォントの色
$color_table   = "#ADD8E6" 
$color_font    = "#000080" 
$color_link    = "#269900" 
$color_visited = "#269900" 
$color_hover   = "#99FF33" 

# notetitle
$title  = "rdnote"

# # サムネイルタイトル
# $header1 = $title 
# $header2 = "2000/07/29--30 at 朱鞠内湖畔キャンプ場"

# notefooter
$footer = "Last update: #{Time.now} <br> 
           Copyright &copy\; 2003 YAMADA Yukiko"

# rd のコマンド (環境によってコマンドが違うのでユーザで定義することにする)
 $rd2html =  'rd2 --r /home/yukiko/lib/ruby/site_ruby/1.6/rd/rd2html-ext-lib --with-part=html:include --out-code=euc --with-css=include/shuron.css  --ref-extension --native-inline'
#$rd2html =  'rd2 --r rd/rd2html-ext-lib --with-part=html:include --out-code=euc --with-css=include/shuron.css --ref-extension --native-inline'

########################################################
##  include ファイル
########################################################
require '/home/yukiko/lib/rdnote-y'
include Rdnote
$KCODE = "e"







