/[pxelator]/lib/PXElator/httpd.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /lib/PXElator/httpd.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 433 by dpavlin, Mon Sep 14 21:11:23 2009 UTC revision 474 by dpavlin, Tue Jan 5 17:34:07 2010 UTC
# Line 338  warn "XXX pids = ", dump( $daemons::pids Line 338  warn "XXX pids = ", dump( $daemons::pids
338    
339                  } else {                  } else {
340    
341                            print $client ok qq|<h2>Clients on $server::ip</h2>|;
342    
343                          my @ping;                          my @ping;
344                          if ( my $host = $param->{ping_target} ) {                          if ( my $host = $param->{ping_target} ) {
345                                  @ping = ( $host );                                  @ping = ( $host );
# Line 348  warn "XXX pids = ", dump( $daemons::pids Line 350  warn "XXX pids = ", dump( $daemons::pids
350                          my $ping = ping::fping( @ping ) if @ping;                          my $ping = ping::fping( @ping ) if @ping;
351                          my $arp = client::arp_mac_dev;                          my $arp = client::arp_mac_dev;
352    
353                          print $client ok                          my @clients;
354                                  , qq|<h2>Clients on $server::ip</h2>|  
355                                  , html::table( -5,                          foreach my $ip ( client::all_ips ) {
356                                          'ip', 'mac', 'dev', 'hostname', 'conf',                                  
357                                          map {                                  my $conf = client::all_conf( $ip );
358                                                  my $ip = $_;                                  my $mac = delete $conf->{mac} || '';
359                                                  my $conf = client::all_conf( $ip );                                  my $dev = $arp->{$mac};
360                                                  my $mac = delete $conf->{mac} || '';  
361                                                  my $style;                                  next unless $dev || $param->{all};
362                                                  $style  
363                                                          = 'style="color:'                                  my $style
364                                                          . ( $ping->{$ip} ? 'green' : 'red' )                                          = 'style="color:'
365                                                          . '"'                                          . ( $ping->{$ip} ? 'green' : 'red' )
366                                                          if $ping;                                          . '"'
367                                                  $style ||= '';                                          if $ping;
368                                                  my $ip_text = qq|<tt>$ip</tt>|;  
369                                                  $ip_text = qq|<tt><b>$ip</b></tt>| if ip::in_dhcp_range($ip);                                  $style ||= '';
370                                                  (                                  my $ip_text = qq|<tt>$ip</tt>|;
371                                                          qq|<a $style name=$ip target=client href=/client/$ip>$ip_text</a>|                                  $ip_text = qq|<tt><b>$ip</b></tt>| if ip::in_dhcp_range($ip);
372                                                          , format::mac( $mac => 'html' )  
373                                                          , $arp->{$mac}                                  $dev = qq|<tt>$dev</tt>| if $dev;
374                                                          , delete $conf->{hostname}  
375                                                          , html::conf( $ip, $conf, 'inline' )                                  push @clients
376                                                  )                                          , qq|<a $style name=$ip target=client href=/client/$ip>$ip_text</a>|
377                                          } client::all_ips                                          , format::mac( $mac => 'html' )
378                                  )                                          , $dev
379                                            , delete $conf->{hostname}
380                                            , html::conf( $ip, $conf, 'inline' )
381                                  ;                                  ;
382                            }
383    
384                            my $all = $param->{all} ? 0 : 1;
385    
386                            print $client html::table( -5, 'ip', 'mac', qq|<a href="?all=$all">dev</a>|, 'hostname', 'conf', @clients );
387                          print $client qq|                          print $client qq|
388                                  <form method=get>                                  <form method=get>
389                                  <input type=text   name=ping_target   size=15>                                  <input type=text   name=ping_target   size=15>

Legend:
Removed from v.433  
changed lines
  Added in v.474

  ViewVC Help
Powered by ViewVC 1.1.26