Ignore:
Timestamp:
06/20/05 14:50:55 (19 years ago)
Author:
bastiaans
Message:

web/addons/toga/templates/host_view.tpl:

  • First checkin of host_view template

web/addons/toga/host_view.php:

  • Modified host view for toga (archive)
  • Will parse same periods as search

web/addons/toga/templates/search.tpl, web/addons/toga/search.php, web/addons/toga/graph.php:

  • Renamed start and stop to period_start and period_stop

web/addons/toga/index.php:

  • Added inclusion of host_view if specified
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/web/addons/toga/graph.php

    r145 r149  
    4848
    4949if (isset($graph)) {
    50         $rrd_dirs = $trd->getRrdDirs( $start, $stop );
     50        $rrd_dirs = $trd->getRrdDirs( $period_start, $period_stop );
    5151        $series = '';
    5252
     
    332332# Generate the rrdtool graph command.
    333333#
    334 $command = RRDTOOL . " graph - --start $start --end $stop ".
     334$command = RRDTOOL . " graph - --start $period_start --end $period_stop ".
    335335        "--width $width --height $height $upper_limit $lower_limit ".
    336336        "--title '$title' $vertical_label $extras $background ".
Note: See TracChangeset for help on using the changeset viewer.