-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshow_help
More file actions
executable file
·104 lines (70 loc) · 2.96 KB
/
show_help
File metadata and controls
executable file
·104 lines (70 loc) · 2.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
#!/usr/local/bin/perl -T
use strict;
use warnings;
use lib qw(/var/www/lib/core);
use lib qw(/var/www/lib/S_pombe);
use SangerWeb;
use pombetv::pombetv_module;
#########
# Author: fs3
# Group: team 79
#
# Shows helpfile for transcriptome viewer (pombetv)
#
our $VERSION = do { my @r = (q$Revision: 0.1 $ =~ /\d+/mxg); sprintf '%d.'.'%03d' x $#r, @r };
main();
1;
sub main {
my $sw = SangerWeb->new({
'title' => q(Pombe TV),
'banner' => q(TranscriptomeViewer Help),
'inifile' => SangerWeb->document_root() . q(/Info/header.ini),
'inifile' => q(/var/www/htdocs/header.ini),
});
# print $sw->header();
print qq(Content-type: text/html\n\n);
print qq (<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Bahler Lab</title>
<meta name="keywords" content="" />
<meta name="description" content="" />
<link href="/css/other.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="header">
<div style="text-align:left; margin-left:70px; margin-bottom:0px; margin-top:0px;"><span style="text-shadow:#FFF; font-family:'Arial Black', Gadget, sans-serif; font-size:32pt; color:#EBF1DE; ">bähler</span><span style="text-shadow:auto; font-family:'Arial Black', Gadget, sans-serif; font-size:32pt; color:#77933C; ">lab </span></div>
<div style="text-align:left; margin-left:30px; margin-top:0px;"><span style="font-family:'Arial Black', Gadget, sans-serif; font-size:20pt; color:#4F6228; "> Genome Regulation</span></div>
<div class="O">
<div style="text-align:center; margin-bottom:0; margin-top:-72px; margin-left:120px;margin-right:-20px;"><span style="font-family:Arial, Helvetica, sans-serif; font-size:92pt; color:#D7E4BD; "><strong><em>pombeTV </em></strong></span></div>
<div style="text-align:right; margin-bottom:0; margin-top:-80px; margin-left:150px;margin-right:20px;"><span style="font-family:'Arial Black', Helvetica, sans-serif; font-size:36pt; color:white; ">UCL</span></div>
<div></div>
</div>
</div>
<div id="sidebar">
<div id="menu">
<ul>
<li ><a href="/index.html" title="">Home</a></li>
<li><a href="/people" title="">People</a></li>
<li><a href="/research.htm" title="">Research</a></li>
<li><a href="/publications" title="">Publications</a></li>
<li class="active first"><a href="/resources" title="">Resources</a></li>
<li ><a href="/contact.htm" title="">Contact</a></li>
</ul>
</div>
</div> <div id="content">
<div class="feature bg7">
</div>
<div class="content" >
<br />
);
#########
# print page content
#
print_help();
# show_citation;
# show_citation_links;
print '</div></div>';
# print $sw->footer();
return(1);
}