/[pxelator]/lib/PXElator/html.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/html.pm

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

revision 380 by dpavlin, Sun Aug 30 16:36:37 2009 UTC revision 521 by dpavlin, Thu Aug 26 19:27:49 2010 UTC
# Line 51  sub select { Line 51  sub select {
51                  , qq|<select type=select name=$name>|                  , qq|<select type=select name=$name>|
52                  , join("\n", map { my $selected = $_ eq $selected_option ? 'selected' : ''; qq|<option name=$_ $selected>$_</option>| } @_ )                  , join("\n", map { my $selected = $_ eq $selected_option ? 'selected' : ''; qq|<option name=$_ $selected>$_</option>| } @_ )
53                  , qq|</select>|                  , qq|</select>|
                 , qq|</form>|  
54          );          );
55  }  }
56    
# Line 71  sub conf { Line 70  sub conf {
70          my ($ip,$conf,$format) = @_;          my ($ip,$conf,$format) = @_;
71          my @editable = splice(@_,3);          my @editable = splice(@_,3);
72    
73          warn "# conf ",dump( $ip, $conf, $format, [ @editable ] );  #       warn "# conf ",dump( $ip, $conf, $format, [ @editable ] );
74    
75          $format ||= 'inline';          $format ||= 'inline';
76    
# Line 85  sub conf { Line 84  sub conf {
84                  } else {                  } else {
85                          if ( $name eq 'amt' ) {                          if ( $name eq 'amt' ) {
86                                  my $amt_ip = amt::ip($ip,$html);                                  my $amt_ip = amt::ip($ip,$html);
87                                  $html = qq|<a title="$html" href=http://$amt_ip:16992/logon.htm target=$amt_ip>$amt_ip</a>|;                                  # $html contains password!
88                                    $html = qq|<a href=http://$amt_ip:16992/logon.htm target=$amt_ip>$amt_ip</a>|;
89    
90                                  if ( $format ne 'inline' ) {                                  if ( $format ne 'inline' ) {
91                                          my $power = amt::power_on($ip);                                          my $power = amt::power_on($ip);
# Line 99  sub conf { Line 99  sub conf {
99                          } elsif ( $name eq 'ssh' ) {                          } elsif ( $name eq 'ssh' ) {
100                                  $html =~ s{\s(\S{16}).+(\S{16})\s}{ $1..$2 };                                  $html =~ s{\s(\S{16}).+(\S{16})\s}{ $1..$2 };
101                                  chomp($html);                                  chomp($html);
102                            } elsif ( $name eq 'kvm' ) {
103                                    $html = qq|<a href="/start_stop/kvm?nr=$html">$html</a>|;
104                            } elsif ( $name eq 'munin' ) {
105                                    $html = join("\n", map { my $url = $_; $url =~ s/-d\w+\.\w+$/.html/; qq|<a href="$url"><img src="$_"></a>| } split(/\s+/s,$html));
106                          }                          }
107                          $html = qq|<pre style="display: inline">$html</pre>|                          $html = qq|<tt>$html</tt>|
108                          unless                          unless
109                          $html =~ s{\b(\S+)\t(\S+)\t(\S+)\b}{<b title="$1/$2">$3</b> }gs;                          $html =~ s{\b(\S+)\t(\S+)\t(\S+)\b}{<b title="$1/$2">$3</b> }gs;
110                                    
111                          if ( $format =~ /edit|table/ ) {                          if ( $format =~ /edit|table/ ) {
112                                  ( $name, $html );                                  ( $name, $html );
113                          } else {                          } else {
114                                  qq|<em>$name</em> $html<br>|                                  qq|<div class="config $name"><em>$name</em> $html</div>|
115                          }                          }
116                  }                  }
117          } sort keys %$conf;          } grep { length($conf->{$_}) > 0 } sort keys %$conf;
118    
119          $format eq 'inline' ? join("\n", @opts) : @opts;          $format eq 'inline' ? join("\n", @opts) : @opts;
120  }  }

Legend:
Removed from v.380  
changed lines
  Added in v.521

  ViewVC Help
Powered by ViewVC 1.1.26