<?PHP
/*
#
#(ӣ)áݣ£ϣңĥƥץ졼
#
#̲̤եǤ
#̾Σȣԣ̤ͣƱФԽ뤳Ȥޤ
#ʤˤ$פϤ줾ץˤäǤդʸ
#֤ޤ
#
*/

class DESIGN_RST extends DESIGN {

/*
#
#
#
*/
  function info() {
    $r_word	= array_shift(func_get_args()); //# ʸ

    print <<< HTML
<table border=0 width={$GLOBALS['CNFSTY']['bse']['width']}>
 <tr>
  <td bgcolor="{$GLOBALS['CNFSTY']['rst']['info']['table']['back']}">
   <span class=ResultInfo><b></b>(ʸ  <b>{$r_word}</b>)</span>
  </td>
 </tr>
</table>

HTML;
    print DESIGN::line() ."\n";
  }
//#ޤǨ


/*
#
#̳
#
*/
  function summary() {
    $r_str	= array_shift(func_get_args()); //# ʸ

    print <<< HTML
<span class=ResultSummary>{$r_str}</span>

HTML;
    print DESIGN::line() . "\n";
  }
//#ޤǨ


/*
#
#ޥåե̾ɽ
#
*/
  function log_name() {
    $name	= array_shift(func_get_args()); //# ե̾

    print <<< HTML
      <a class=ResultLogFile href="{$GLOBALS['CNF']['place']['log']['url']}/{$name}">&nbsp;<b>{$name}</b></a><br>

HTML;
  }
//#ޤǨ


/*
#
#ޥåĥ꡼ɽ
#
*/
  function log_tree() {
    $_ = func_get_args();
    $path	= array_shift($_); //# ѥ
    $title	= array_shift($_); //# ȥ

    print <<< HTML
      <a class=ResultLogTree href="{$GLOBALS['CNF']['place']['log']['url']}/{$path}">&nbsp;&nbsp;&nbsp;{$title}</a><br>

HTML;
  }
//#ޤǨ

}
//1;

//# $Id: rst.txt,v 1.4 2006/03/09 09:19:39 susumu Exp $;
?>