Workaround MyWeb CVS path for all /^My::/ packages.
[MyWeb.git] / Project.pm
1 # $Id$
2 # Common functions for HTML/XHTML output generation
3 # Copyright (C) 2003 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; exactly version 2 of June 1991 is required
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
18
19 package My::Project;
20 require 5.6.0;  # at least 'use warnings;' but we need some 5.6.0+ modules anyway
21 our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
22 our $CVS_ID=q$Id$;
23 use strict;
24 use warnings;
25
26 use My::Web;
27 require CGI;
28
29 use Exporter;
30 our @EXPORT=qw();
31 our @ISA=qw(My::Web Exporter);
32
33
34 sub ENTRIES     { return top_dir_disk()."/project/CVS/Entries"; }
35 sub ENTRIES_LOG { return top_dir_disk()."/project/CVS/Entries.Log"; }
36
37
38 sub print_project
39 {
40 my($class,$ListItem,%args)=@_;
41
42         print "<h1>".$W->{"title"}."</h1>\n";
43         do { print $_ if $_; } for ($args{"project_text_after_title"});
44         print $ListItem->{"description"};
45         print "<hr />\n";
46         print $args{"before_project_data"} || "";
47         return if $args{"no_project_data"};
48         my @table=(
49                 {"key"=>"summary","text"=>"Summary"},
50                 {"key"=>"license","text"=>"License","format"=>sub ($) {
51                                 my %known=(
52                                                 "PD"=>"Public Domain",
53                                                 "GPL"=>a_href("http://www.gnu.org/licenses/gpl.html","GNU General Public License"),
54                                                 "LGPL"=>a_href("http://www.gnu.org/licenses/lgpl.html","GNU Lesser General Public License"),
55                                                 "com"=>"Commercial"
56                                                 );
57                                 return $known{$_[0]};
58                                 }},
59                 {"key"=>"maintenance","text"=>"State","format"=>sub ($) {
60                                 my %known=(
61                                                 "active"=>"Ready to use. Project is now actively developed.",
62                                                 "ready"=>"Ready to use. Maintained.",
63                                                 "dead"=>"Dead code, no longer supported.",
64                                                 "merge"=>"Functions belong to existing other project.",
65                                                 "obsolete"=>"Obsoleted.",
66                                                 "update"=>"Package needs updating to recent software.",
67                                                 "accepted"=>"This patch got already integrated by the original package maintainer.",
68                                                 "pending"=>"Patch is ready to be applied to the mainstream.",
69                                                 "ignored"=>"Patch was ignored. It is not applied in the mainstream.",
70                                                 ""=>"",
71                                                 );
72                                 my @r;
73                                 for ($known{($_[0]=~/^([^-]*)-?/)[0] || ""}) {
74                                         push @r,$_ if $_;
75                                         push @r," $'" if $';
76                                         }
77                                 return join(" ",@r);
78                                 }},
79                 {"key"=>"aminet","text"=>a_href('http://www.aminet.net/','Aminet'),"format"=>sub ($) {
80                                 return join(" ",
81                                                 a_href('http://www.aminet.net/'.$_[0].".lha",$_[0].".lha"),
82                                                 "(".a_href('http://www.aminet.net/'.$_[0].".readme","readme").")");
83                                 }},
84                 {"key"=>qr(^download\b),"text"=>sub ($) {
85                                                 $_[0]=~s/^download//;
86                                                 $_[0]=~s/^-/ /;
87                                                 return "Download".$_[0];
88                                                 },
89                                 "format"=>sub ($) {
90                                                 return a_href($_[0],CGI::escapeHTML(File::Basename::basename($_[0])),"size"=>2);
91                                                 }},
92                 {"key"=>qr(^link\b),"text"=>sub ($) {
93                                                 $_[0]=~s/^link-//;
94                                                 return $_[0];
95                                                 },
96                                 "format"=>sub ($) {
97                                                 return($_[0]=~/^<a\b/ ? $_[0] : a_href($_[0],CGI::escapeHTML($_[0])));
98                                                 }},
99                 {"key"=>qr(^cvs\b),"text"=>sub ($) {
100                                                 $_[0]=~s/^cvs//;
101                                                 $_[0]=~s/^-/ /;
102                                                 return "CVS".$_[0];
103                                                 },
104                                 "format"=>sub ($$) {
105                                                 my($val,$key)=@_;
106                                                 $key=~s/^cvs//;
107                                                 $key=~s/^-/ /;
108                                                 my $branch="";
109                                                 $branch=$1 if $val=~s/:(.*)//;
110                                                 return join("<br />\n\t\t",
111                                                                 CGI::escapeHTML("cvs -d ".$W->{"pserver"}.":".$W->{"pserver_path"}." -z3"
112                                                                                 ." checkout".(!$branch ? "" : " -r $branch -kk")
113                                                                                 .($val!~m#/# ? "" : " -d ".File::Basename::basename($val))
114                                                                                 ." $val"),
115                                                                 join(" | \n\t\t",
116                                                                                 map({ a_href($_->[1],$_->[0]); }
117                                                                                                 ["ViewCVS CVS repository",$W->{"project_viewcvs"}.$val."/".(!$branch ? "" : '?only_with_tag='.$branch)],
118                                                                                                 ["Download CVS snapshot" ,
119                                                                                                                 $W->{"project_viewcvs"}.$val."/".File::Basename::basename($val).".tar.gz?tarball=1"
120                                                                                                                                 .(!$branch ? "" : '&only_with_tag='.$branch)],
121                                                                                                 ["CVS ChangeLog"         ,"/project/ChangeLog.txt.pl?cvs=$val"])));
122                                                 }},
123                 {"key"=>"ownership","text"=>"Ownership"},
124                 {"key"=>"sponsorship","text"=>"Sponsorship"},
125                 {"key"=>"language","text"=>"Programming language","format"=>sub ($) {
126                                 return a_href("http://java.sun.com/",CGI::escapeHTML($_[0]))
127                                                 if $_[0]=~/^Java\b/;
128                                 return a_href("http://www.php.net/",CGI::escapeHTML($_[0]))
129                                                 if $_[0]=~/^PHP\b/;
130                                 return undef();
131                                 }},
132                 );
133
134 sub tableit_func
135 {
136 my($tableit,$val,$key,$ListItem)=@_;
137
138         delete $ListItem->{$key};
139         my $r="";
140         $r.="<tr>";
141                 if ($tableit->{"text"}) {
142                         $r.="<td>";
143                                 $r.=(!ref $_ ? $_ : &{$_}($key)) for ($tableit->{"text"});
144                         $r.="</td>";
145                         }
146                 if ($tableit->{"format"}) {
147                         do { $val=$_ if defined $_; } for (&{$tableit->{"format"}}($val,$key));
148                         }
149                 return join("",map("<tr><td>".$_->[0]."</td><td>".$_->[1]."</td></tr>\n",@$val))
150                                 if ref $val;
151                 $r.="<td>$val</td>";
152         $r.="</tr>\n";
153 }
154
155         print '<table border="0" class="print_project">'."\n";
156                 for my $tableit (@table) {
157                         if (!ref $tableit->{"key"}) {
158                                 print tableit_func($tableit,$ListItem->{$tableit->{"key"}},$tableit->{"key"},$ListItem)
159                                                 if $ListItem->{$tableit->{"key"}};
160                                 }
161                         else {
162                                 for my $key (@{$ListItem->{"keys_array"}}) {
163                                         my $keyregex=$tableit->{"key"};
164                                         next if $key!~/$keyregex/;
165                                         print tableit_func($tableit,$ListItem->{$key},$key,$ListItem);
166                                         }
167                                 }
168                         }
169         print "</table>\n";
170         print vskip;
171 }
172
173 sub project_arr_to_hash (@)
174 {
175 my(@arr)=@_;
176
177         return (
178                         @arr,
179                         "keys_array"=>[ My::Web::arr_keys(@arr) ],
180                         );
181 }
182
183 sub title ($$)
184 {
185 my($class,$hashref)=@_;
186
187         return $hashref->{"name"}.": ".$hashref->{"summary"},
188 }
189
190 # $args{"ListItem"}=\%...;
191 sub init_project ($%)
192 {
193 my($class,%args)=@_;
194
195         my $ListItem={ project_arr_to_hash(@{$args{"ListItem"}}) };
196         my $W=$class->init(
197                         "title"=>$class->title($ListItem),
198                         map(("rel_$_"=>top_dir('/project/Rel.pl?rel='.$_.'&project='.($args{"__PACKAGE__"}=~/^.*::([^:]+)::[^:]+$/)[0])),
199                                         qw(prev next)),
200                         "rel_up"=>top_dir('/project/'),
201 #                       "rel_start"=>top_dir(), # TODO:homepage
202                         %args,
203                         "head_css"=>($args{"head_css"} || "")."
204 table.print_project td { vertical-align: top; }
205 ",
206                         "WebConfig::heading_novskip"=>1,
207                         );
208         $class->heading();
209         print $class->platforms($ListItem->{"platform"});
210         $class->print_project({ %$ListItem },%args);
211         return $W;
212 }
213
214 sub one_item_list_read($$)
215 {
216 my($class,$name)=@_;
217
218         Wrequire "project::${name}::ListItem";
219         my $item=eval('\@project::'.$name.'::ListItem::ListItem');
220         do { warn "Broken project/$name/ListItem.pm"; next; } if !defined $item;
221         return @$item;
222 }
223
224 sub item_hash_read ()
225 {
226 # FIXME: $class
227         my %dirs;
228         for my $ENTRIES (ENTRIES(),ENTRIES_LOG()) {
229                 local *E;
230                 next if !open E,$ENTRIES;
231                 while (<E>) {
232                         chomp;
233                         do { $dirs{$1}=1; next; } if m#^(?:A )?D/([^/]*)/#;
234                         next if m#^/([^/]*)/# ;
235                         next if /^D$/;
236                         warn "File $ENTRIES contains invalid line \"$_\": $!";
237                         }
238                 close E;
239                 }
240
241         my %item;
242         for my $dir (keys(%dirs)) {
243                 Wrequire "project::${dir}::ListItem";
244                 my $item=eval('\@project::'.$dir.'::ListItem::ListItem');
245                 do { warn "Broken project/$dir/ListItem.pm"; next; } if !defined $item;
246                 $item{$dir}={ My::Project::project_arr_to_hash(My::Project->one_item_list_read($dir)) };
247                 }
248         return %item;
249 }
250
251 our @platforms=(
252                 "unixuser"=>"UNIX",
253                 "unixdevel"=>"UNIX-devel",
254                 "web"=>"Web",
255                 "amiga"=>"Amiga",
256                 "w32"=>"MS-Windows",
257                 "dos"=>"MS-DOS",
258                 "patch"=>"Patches",
259                 );
260
261 sub views ($$)
262 {
263 my($class,$view_selected)=@_;
264
265         my $view=sub ($$)
266                 {
267                 my($current,$href,$content)=@_;
268
269                         return a_href($href,$content) if $current ne $view_selected;
270                         return "<b>".$content."</b> (current)";
271                 };
272
273         return <<"HERE";
274 <h1>Project List of @{[ a_href 'http://www.jankratochvil.net/','Jan Kratochvil' ]}</h1>
275
276 <ul>
277         <li>@{[ &{$view}('Detailed'     ,'/project/','Detailed project listing per platform') ]}</li>
278         <li>@{[ &{$view}('BriefPlatform','/project/List.html.pl?platform=platform',
279                         'Brief project listing per platform') ]}</li>
280         <li>@{[ &{$view}('BriefUnified' ,'/project/List.html.pl',
281                         'Unified brief project listing') ]}</li>
282 </ul>
283 @{[ vskip "1ex" ]}
284 HERE
285 }
286
287 sub platforms ($;$%)
288 {
289 my($class,$platform_selected,%args)=@_;
290
291         my $r="";
292         $r.='<table border="0" align="center"><tr>'."\n";
293                 $r.='<td>';
294                         $r.='<table border="1" align="center"'  # align="left"
295                                         .' style="border-collapse: collapse; border-style: solid; border-width: 1px;">'."\n";
296                                 $r.='<tr>'."\n";
297                                         $r.='<td style="padding: 5px; font-weight: bold;">'."\n";
298                                                 $r.='Projects';
299                                         $r.='</td>'."\n";
300                                 $r.='</tr>'."\n";
301                         $r.='</table>';
302                 $r.='</td>';
303                 $r.='<td>';
304                         $r.='<table border="1" align="center" style="border-collapse: collapse; border-style: solid;">'."\n";
305                                 $r.='<tr>'."\n";
306                                         my @platforms=@platforms;
307                                         while (@platforms) {
308                                                 my $platform_sym =shift @platforms;
309                                                 my $platform_name=shift @platforms;
310                                                 my $chosen=($platform_selected && $platform_selected eq $platform_sym);
311                                                 $r.='<td style="padding: 5px;">';
312                                                         $r.=a_href((!$platform_selected ? "" : "/project/").'#'.$platform_sym,$platform_name,
313                                                                         "attr"=>($chosen
314                                                                                         ? 'style="text-decoration: underline; font-weight: bold;"'
315                                                                                         : 'style="text-decoration: inherit; /* revoke underline */"'));
316                                                 $r.="</td>\n";
317                                                 }
318                                 $r.='</tr>'."\n";
319                         $r.='</table>'."\n";
320                 $r.='</td>'."\n";
321         $r.='</tr></table>'."\n";
322         if (!$args{"novskip"}) {
323                 $r.="<hr />\n";
324                 $r.=My::Web::vskip "6ex";
325                 }
326         $r;
327 }
328
329 sub section ($$)
330 {
331 my($class,$name)=@_;
332
333         my %item=( $class->one_item_list_read($name) );
334         my $title=$class->title(\%item);
335         my $r="";
336
337         print $class->platforms($item{"platform"},"novskip"=>1);
338
339         $r.='<table border="0" align="center"><tr>'."\n";
340                 $r.='<td>';
341                         $r.='<table border="1" align="center" style="border-collapse: collapse; border-style: solid;">'."\n";
342                                 $r.='<tr><td style="font-size: larger;">'."\n";
343                                         $r.=a_href "/project/$name/",$title;
344                                 $r.='</td></tr>'."\n";
345                         $r.='</table>'."\n";
346                 $r.='</td>'."\n";
347         $r.='</tr></table>'."\n";
348         $r.=vskip "1ex";
349         $r;
350 }
351
352 1;