ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cvsroot/schmorpforge/genpage
(Generate patch)

Comparing cvsroot/schmorpforge/genpage (file contents):
Revision 1.98 by root, Thu Apr 12 14:45:59 2012 UTC vs.
Revision 1.101 by root, Thu Apr 4 07:55:54 2013 UTC

136 <a title="Mach mit!" href="http://www.piratenpartei.de/unsere_ziele"> 136 <a title="Mach mit!" href="http://www.piratenpartei.de/unsere_ziele">
137 <img src="http://res.tst.eu/denke_selbst.gif" alt="Werde Pirat!" width="468" height="60" border="0" /> 137 <img src="http://res.tst.eu/denke_selbst.gif" alt="Werde Pirat!" width="468" height="60" border="0" />
138 </a> 138 </a>
139 <br /> 139 <br />
140--> 140-->
141 <a href="http://www.piratenpartei.de/unsere_ziele"> 141 <a href="http://www.piratenpartei.de/unsere_ziele">
142 <img src="http://res.tst.eu/piraten1.png" alt="Piratenpartei" width="468" height="60" border="0" /> 142 <img src="http://res.tst.eu/piraten1.png" alt="Piratenpartei" width="468" height="60" border="0" />
143 </a> 143 </a>
144 <br /> 144 <br />
145 <a href="http://www.deliantra.net/"> 145 <a href="http://www.deliantra.net/">
146 <img src="http://www.deliantra.net/images/deliantra.png" border="0" alt="Deliantra Free MMORPG" style="display: inline"/> 146 <img src="http://www.deliantra.net/images/deliantra.png" border="0" alt="Deliantra Free MMORPG" style="display: inline"/>
177 or die "malformed desc in $name: $desc"; 177 or die "malformed desc in $name: $desc";
178 178
179 my $short = $1; 179 my $short = $1;
180 180
181 (my $id = $name) =~ y%/%-%; 181 (my $id = $name) =~ y%/%-%;
182 $index{$name} = "<tr><th id='$id'><a href='pkg/$name.html'>$name</a></th><td>$short</td></tr>"; 182 $index{$name} = "<tr><th id='$id' style='white-space:nowrap'><a href='pkg/$name.html'>$name</a></th><td>$short</td></tr>";
183 183
184 open STDOUT, ">", "software.schmorp.de/pkg/$name.html" 184 open STDOUT, ">", "software.schmorp.de/pkg/$name.html"
185 or die "software.schmorp.de/pkg/$name.html: $!"; 185 or die "software.schmorp.de/pkg/$name.html: $!";
186 186
187 my $bg = (grep /cpan/, @args) ? "bg-perl" : "bg-ede"; 187 my $bg = (grep /cpan/, @args) ? "bg-perl" : "bg-ede";
454 include some highly subjective package selections are available as 454 include some highly subjective package selections are available as
455 <a href="http://staticperl.schmorp.de/smallperl.html">smallperl</a> 455 <a href="http://staticperl.schmorp.de/smallperl.html">smallperl</a>
456 and 456 and
457 <a href="http://staticperl.schmorp.de/bigperl.html">bigperl</a>. 457 <a href="http://staticperl.schmorp.de/bigperl.html">bigperl</a>.
458 458
459Net-Knuddels cvs-pod(Net/Knuddels.pm,) 459Net-Knuddels cvs-pod(Net/Knuddels.pm,)
460 This perl module provides an API for group communications using the 460 This perl module provides an API for group communications using the
461 <a href="http://www.knuddels.de/">www.knuddels.de</a> protocol. It is outdated 461 <a href="http://www.knuddels.de/">www.knuddels.de</a> protocol. It is outdated
462 and only provided as reference. 462 and only provided as reference.
463 463
464 This module implements the knuddels.de chat protocol. Since it was created 464 This module implements the knuddels.de chat protocol. Since it was created
473AnyEvent-IRC cpan-elmex git-pod(lib/AnyEvent/IRC.pm,) git-co(Changes) git-co(samples/anyeventirccl) git-co(samples/anyeventirc) list(anyevent) irc(anyevent) 473AnyEvent-IRC cpan-elmex git-pod(lib/AnyEvent/IRC.pm,) git-co(Changes) git-co(samples/anyeventirccl) git-co(samples/anyeventirc) list(anyevent) irc(anyevent)
474 This module provides an alternative to the Net-IRC and Net-IRC2 474 This module provides an alternative to the Net-IRC and Net-IRC2
475 modules. Its design rationale is offering a 100% non-blocking 475 modules. Its design rationale is offering a 100% non-blocking
476 callback-based interface, RFC-compliant parsing and a lightweight 476 callback-based interface, RFC-compliant parsing and a lightweight
477 approach to modularity and reusability. 477 approach to modularity and reusability.
478
479AnyEvent-ReadLine-Gnu cpan cvs-pod(Gnu.pm,) list(anyevent) irc(anyevent)
480 This is a small interface to Term::ReadLine::Gnu for event-based programs.
481
482 This module has event-based readline, as well as asynchronous message printing
483 with readline figured out for you.
484
485Proc-FastSpawn cpan cvs-pod(FastSpawn.pm,) cvs-co(Changes)
486 fork+exec, or spawn, a subprocess as quickly as possible
487
488 The purpose of this small (in scope and footprint) module is simple:
489 spawn a subprocess asynchronously as efficiently and/or fast as
490 possible. Basically the same as calling fork+exec (on POSIX), but
491 hopefully faster than those two syscalls.
492
493 Apart from fork overhead, this module also allows you to fork+exec
494 programs when otherwise you couldn't - for example, when you use POSIX
495 threads in your perl process then it generally isn't safe to call
496 fork from perl, but it is safe to use this module to execute external
497 processes.
498
499AnyEvent-Fork cpan cvs-pod(Fork.pm,) cvs-pod(Fork/Early.pm) cvs-pod(Fork/Template) cvs-co(Changes)
500 Everything you wanted to use fork() for, but couldn't.
501
502 This module allows you to create new processes, without actually forking
503 them from your current process (avoiding the problems of forking), but
504 preserving most of the advantages of fork.
505
506 It can be used to create new worker processes or new independent
507 subprocesses for short- and long-running jobs, process pools (e.g. for
508 use in pre-forked servers) but also to spawn new external processes (such
509 as CGI scripts from a webserver), which can be faster (and more well
510 behaved) than using fork+exec in big processes.
478 511
479Guard cpan cvs-pod(Guard.pm,) cvs-co(Changes) 512Guard cpan cvs-pod(Guard.pm,) cvs-co(Changes)
480 This small module implements scope and object guards, that is, code blocks 513 This small module implements scope and object guards, that is, code blocks
481 that are executed when a scope is being exited (or an object is destroyed). 514 that are executed when a scope is being exited (or an object is destroyed).
482 515
865 event loop that is loosely modelled after libevent, but without 898 event loop that is loosely modelled after libevent, but without
866 its limitations and bugs. It is used in 899 its limitations and bugs. It is used in
867 <a href="/pkg/gvpe.html">GNU Virtual Private Ethernet</a>, 900 <a href="/pkg/gvpe.html">GNU Virtual Private Ethernet</a>,
868 <a href="/pkg/rxvt-unicode.html">rxvt-unicode</a>, <a 901 <a href="/pkg/rxvt-unicode.html">rxvt-unicode</a>, <a
869 href="http://people.redhat.com/sgrubb/audit/">auditd</a>, the 902 href="http://people.redhat.com/sgrubb/audit/">auditd</a>, the
870 <a href="http://www.deliantra.,net">Deliantra MORPG</a> Server and Client, 903 <a href="http://www.deliantra.net">Deliantra MORPG</a> Server and Client,
871 and many other programs. 904 and many other programs.
872 905
873 Features include child/pid watchers, periodic timers based on wallclock 906 Features include child/pid watchers, periodic timers based on wallclock
874 (absolute) time (in addition to timers using relative timeouts), as well 907 (absolute) time (in addition to timers using relative timeouts), as well
875 as epoll/kqueue/event ports/inotify/eventfd/signalfd support, fast timer 908 as epoll/kqueue/event ports/inotify/eventfd/signalfd support, fast timer

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines