Rev 107 | Blame | Compare with Previous | Last modification | View Log | RSS feed
package HTMLWorkspaceCreator;
# ************************************************************
# Description : An html workspace creator
# Author : Justin Michel
# Create Date : 8/25/2003
# ************************************************************
# ************************************************************
# Pragmas
# ************************************************************
use strict;
use HTMLProjectCreator;
use WorkspaceCreator;
use vars qw(@ISA);
@ISA = qw(WorkspaceCreator);
# ************************************************************
# Subroutine Section
# ************************************************************
sub workspace_file_name {
my($self) = shift;
return $self->get_modified_workspace_name($self->get_workspace_name(),
'_workspace.html');
}
sub pre_workspace {
my($self) = shift;
my($fh) = shift;
my($crlf) = $self->crlf();
print $fh '<html>', $crlf,
'<!-- $Id: HTMLWorkspaceCreator.pm 107 2005-09-02 16:42:23Z bj $ -->', $crlf,
'<!-- MPC Command: -->', $crlf,
"<!-- $0@ARGV -->", $crlf,
'<head>', $crlf,
' <style>', $crlf,
' a {font: 12pt bold verdana, lucida; color: white; padding: 3px;}', $crlf,
' td {font: 12pt bold verdana, lucida; color: white; padding: 3px; background-color: cadetblue;}', $crlf,
' thead tr td {font: 18pt "trebuchet ms", helvetica; color: white; padding: 3px; background-color: teal;}', $crlf,
' </style>', $crlf,
'</head>', $crlf,
'<body>', $crlf;
}
sub write_comps {
my($self) = shift;
my($fh) = shift;
my($creator) = shift;
my($projects) = $self->get_projects();
my($project_info) = $self->get_project_info();
my($crlf) = $self->crlf();
print $fh "<table style=\"table-layout:fixed\" width=\"400\">$crlf" .
"<col style=\"background-color: darkcyan;\">$crlf" .
"<thead>$crlf" .
"<tr><td>Projects</td></tr>$crlf" .
"</thead>$crlf" .
"<tbody>$crlf";
foreach my $project (sort { $creator->file_sorter($a, $b) } @$projects) {
my($name) = $$project_info{$project}->[0];
print $fh "<tr><td>" .
"<a href='$project'>$name</a>" .
"</td></tr>$crlf";
}
print $fh "</tbody></table>";
}
sub post_workspace {
my($self) = shift;
my($fh) = shift;
print $fh "</body></html>" . $self->crlf();
}
1;