da7c8315ba402f2cd8d58deabb08828f1fc726d1
[www.jankratochvil.net.git] / project / ircon / Index.html.pl
1 #! /usr/bin/perl
2
3 # $Id$
4 # Main page of 'My::Project::ircon'
5 # Copyright (C) 2003 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
6
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; exactly version 2 of June 1991 is required
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
20
21 package project::ircon::Index;
22 require 5.6.0;  # at least 'use warnings;' but we need some 5.6.0+ modules anyway
23 our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
24 our $CVS_ID=q$Id$;
25 use strict;
26 use warnings;
27
28 BEGIN{ open F,"Makefile"; our $top_dir=pop @{[split /\s/,(grep /^top_srcdir/,<F>)[0]]}; eval "use lib '$top_dir'"; close F; }
29 use My::Web;
30 Wuse 'My::Project';
31 Wuse 'project::ircon::ListItem';
32
33
34 My::Project->init_project(
35                 "__PACKAGE__"=>__PACKAGE__,
36                 "ListItem"=>\@project::ircon::ListItem::ListItem,
37                 );
38
39 print <<"HERE";
40 <p>Package consists of:</p>
41 <ul>
42 <li>Linux kernel module implementing <code>/dev/ircon</code> device as hardware interface</li>
43 <li>Daemon to provide service for easy remote use over network</li>
44 <li>Multifunction decoder for singal analysis</li>
45 <li>Database of all the buttons (<strong>including some secret!</strong>) for supported devices</li>
46 <lI>Set of CGIs for WWW interface operation support</li>
47 <li>Java 1.0 applet for more comforable WWW control from remote (not required, static HTML used if Java not available)</lI>
48 <li>Software for complete tune-up of Maspro SRE-100R as set in text database (not useful, see last notice)</li>
49 </ul>
50 <p>Currently supported/decoded devices:</p>
51 <ul>
52 <li><a href="ircon-img/Panasonic-NV-HD650EE-1.png">Panasonic NV-HD650EE video</a>
53     <a href="ircon-img/Panasonic-NV-HD650EE-2.png">(in opened state)</a></li>
54 <li><a href="ircon-img/Korting-TV.png">Korting television</a></li>
55 <li><a href="ircon-img/AIWA-PX-E80.png">AIWA PX-E80 audio tower(?)</a></li>
56 <li><a href="ircon-img/Maspro-SRE-100R-SAC-90.png">Maspro SRE-100R satellite receiver/SAC-90 positioner</a></li>
57 <li><a href="ircon-img/Toshiba-V-800SZ.png">Toshiba V-800SZ video</a></li>
58 <li><a href="ircon-img/Sharp-VL-N1S.png">Sharp VL-N1S handy video camera</a></li>
59 </ul>
60 <P>Last code touches were done in summer 1997 and it's not in use for now. In fact the hardware
61 should be more intelligent and generate the signal itself as PC hardware simply is too slow to keep up strictly
62 with the original frequencies and so in about 1 of 30 button presses it misses. Due to this the automatic Maspro
63 tuning software (generating hundreds of button presses) is not usable.</p>
64
65 @{[ centerimg
66                 ['ircon-parport-small.jpeg','Parallel Port Adapter',"a_href_img"=>'ircon-parport.jpeg'],
67                 ['ircon-led-small.jpeg','Remote LED Transmitter',"a_href_img"=>'ircon-led.jpeg']
68                 ]}
69 HERE
70
71 My::Web->footer();