EnsEMBL::Development::Configuration Server
Included librariesPackage variablesGeneral documentationMethods
Toolbar
WebCvsRaw content
Package variables
No package variables defined.
Included modules
EnsEMBL::Web::Configuration
EnsEMBL::Web::Document::Panel::Information
EnsEMBL::Web::Document::Panel::SpreadSheet
Inherit
EnsEMBL::Web::Configuration
Synopsis
No synopsis!
Description
No description!
Methods
status
No description
Code
Methods description
None available.
Methods code
statusdescriptionprevnextTop
sub status {
  my $self = shift;
  my $TP = $self->{page}->content->panel( 'info' );
  if( $TP ) {
    $TP->add_component_last( 'tree', 'EnsEMBL::Development::Component::Server::static_tree' );
  }
  my $panel2 = new EnsEMBL::Web::Document::Panel::SpreadSheet(
    'code'    => 'apache',
    'caption' => 'Apache Environment',
    'object'  => $self->{object},
    'status'  => 'panel_apache'
  );
  $panel2->add_component( qw(apache EnsEMBL::Development::Component::Server::spreadsheet_Apache));
  $self->{page}->content->add_panel_last( $panel2 );
  my $panel3 = new EnsEMBL::Web::Document::Panel::Information(
    'code'    => 'apache',
    'caption' => 'Ensembl SpeciesDefs configuration',
    'object'  => $self->{object},
    'status'  => 'panel_conf'
  );
  $panel3->add_component( qw(conf EnsEMBL::Development::Component::Server::configuration_hash));
  $self->{page}->content->add_panel_last( $panel3 );
}

1;
}
General documentation
No general documentation available.