[Bioperl-l] avantgo-friendly web page with list archives
Hilmar Lapp
hlapp at gnf.org
Tue May 27 15:15:53 EDT 2003
Cool! I have a doctor's appointment this afternoon! If only it weren't
so incredibly painful writing on a Palm (I do know Graffiti, but I'm
sloppy). -hilmar
On Tuesday, May 27, 2003, at 01:29 PM, Jonathan Epstein wrote:
> Perhaps others, like me, prefer to read the BioPerl list offline on
> their Palm or WinCE device while waiting at the doctor's office, etc.
>
> I've setup a simple web page so that one can access the current
> month's archives (to date), along with the all of the previous month's
> archives. To set this up with Avantgo, I suggest that you use the
> following channel settings:
>
> ------------------------
> Maximum Channel Size: 700k
> Link Depth: 3
> Include Images: No
> Follow Off-site Links: Yes
>
> Refresh this channel on every sync
> ------------------------
>
> In general, users of mobile devices can setup Avantgo at:
> https://my.avantgo.com/home/
>
> You're welcome to use my web page in your AvantGo settings:
> http://zfish.nichd.nih.gov/bioperl/last_two_months.cgi
>
> ... or you can use my simple CGI script (or any variant thereof) on
> your own web page for your own personal use.
>
> Hopefully someone will find this useful.
>
> Jonathan
>
> ===================================================
>
> #!/usr/bin/perl
> use CGI qw/:standard/;
> use strict;
> my @months;
> my $year;
> my $mon;
> @months =
> ("January","February","March","April","May","June","July","August","Sep
> tember","October","November","December");
>
> print header, start_html('bioperl-archives');
> (undef,undef,undef,undef,$mon,$year,undef,undef,undef) =
> localtime(time);
>
> my $i;
> for ($i = 0 ; $i < 2; $i++) {
> my $url = "http://bioperl.org/pipermail/bioperl-l/" . ($year + 1900)
> . "-" . $months[$mon] . "/thread.html";
> print p,a({-href => $url}, "$url") . "\n";
> if ($mon == 0) {
> $mon = 11;
> $year--;
> } else {
> $mon--;
> }
> }
>
> print end_html;
>
> _______________________________________________
> Bioperl-l mailing list
> Bioperl-l at portal.open-bio.org
> http://portal.open-bio.org/mailman/listinfo/bioperl-l
>
--
-------------------------------------------------------------
Hilmar Lapp email: lapp at gnf.org
GNF, San Diego, Ca. 92121 phone: +1-858-812-1757
-------------------------------------------------------------
More information about the Bioperl-l
mailing list