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

Comparing cvsroot/schmorpforge/genpage (file contents):
Revision 1.88 by root, Sat Jun 11 17:31:30 2011 UTC vs.
Revision 1.102 by root, Fri Apr 5 09:11:40 2013 UTC

131</div> 131</div>
132<div class='section section-header'> 132<div class='section section-header'>
133<h1 class="$_[1]">$_[0]</h1> 133<h1 class="$_[1]">$_[0]</h1>
134<div style="text-align: center; float: right; margin-left: 1em; margin-bottom: 1em"> 134<div style="text-align: center; float: right; margin-left: 1em; margin-bottom: 1em">
135<!-- 135<!--
136 <a title="Mach mit!" href="http://www.piratenpartei.de/navigation/politik/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/navigation/politik/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
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 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
485IO-FDPass cpan cvs-pod(FDPass.pm,) cvs-co(Changes)
486 Pass a file descriptor over a socket.
487
488 This small low-level module only has one purpose: pass a file descriptor
489 to another process, using a (streaming) unix domain socket (on POSIX
490 systems) or any (streaming) socket (on WIN32 systems).
491
492Proc-FastSpawn cpan cvs-pod(FastSpawn.pm,) cvs-co(Changes)
493 fork+exec, or spawn, a subprocess as quickly as possible
494
495 The purpose of this small (in scope and footprint) module is simple:
496 spawn a subprocess asynchronously as efficiently and/or fast as
497 possible. Basically the same as calling fork+exec (on POSIX), but
498 hopefully faster than those two syscalls.
499
500 Apart from fork overhead, this module also allows you to fork+exec
501 programs when otherwise you couldn't - for example, when you use POSIX
502 threads in your perl process then it generally isn't safe to call
503 fork from perl, but it is safe to use this module to execute external
504 processes.
505
506AnyEvent-Fork cpan cvs-pod(Fork.pm,) cvs-pod(Fork/Early.pm) cvs-pod(Fork/Template) cvs-co(Changes)
507 Everything you wanted to use fork() for, but couldn't.
508
509 This module allows you to create new processes, without actually forking
510 them from your current process (avoiding the problems of forking), but
511 preserving most of the advantages of fork.
512
513 It can be used to create new worker processes or new independent
514 subprocesses for short- and long-running jobs, process pools (e.g. for
515 use in pre-forked servers) but also to spawn new external processes (such
516 as CGI scripts from a webserver), which can be faster (and more well
517 behaved) than using fork+exec in big processes.
518
479Guard cpan cvs-pod(Guard.pm,) cvs-co(Changes) 519Guard cpan cvs-pod(Guard.pm,) cvs-co(Changes)
480 This small module implements scope and object guards, that is, code blocks 520 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). 521 that are executed when a scope is being exited (or an object is destroyed).
482 522
483 Much effort was invested into these guards behaving "sensibly" in the 523 Much effort was invested into these guards behaving "sensibly" in the
484 presence of thrown exceptions, errors and other adverse conditions, as 524 presence of thrown exceptions, errors and other adverse conditions, as
485 well as into good performance. 525 well as into good performance.
526
527OpenCL cpan cvs-pod(OpenCL.pm,) cvs-co(Changes)
528 An interface to OpenCL (the Open Computing Language) for Perl.
529
530 Perlized (not C-ish) OpenCL interface.
486 531
487common-sense cpan cvs-pod(sense.pm,) cvs-co(Changes) 532common-sense cpan cvs-pod(sense.pm,) cvs-co(Changes)
488 This module implements some sane defaults for Perl programs, as defined 533 This module implements some sane defaults for Perl programs, as defined
489 by two typical (or not so typical - use your common sense) specimens of 534 by two typical (or not so typical - use your common sense) specimens of
490 Perl coders. 535 Perl coders.
608 See <a href="http://home.schmorp.de/marc/lmainit.html">its homepage</a> for more info. 653 See <a href="http://home.schmorp.de/marc/lmainit.html">its homepage</a> for more info.
609 654
610Algorithm-FEC cpan cvs-pod(FEC.pm,) cvs-co(README.fec) cvs-co(Changes) 655Algorithm-FEC cpan cvs-pod(FEC.pm,) cvs-co(README.fec) cvs-co(Changes)
611 Perl module implementing forward error correction using Vandermonde matrices 656 Perl module implementing forward error correction using Vandermonde matrices
612 657
613AnyEvent cpan cvs-pod(lib/AnyEvent.pm,) cvs-pod(lib/AnyEvent/Intro.pod,Introduction/Tutorial) cvs-pod(lib/AE.pm,AE) cvs-co(Changes) cvs-pod(lib/AnyEvent/Util.pm,AnyEvent::Util) cvs-pod(lib/AnyEvent/Handle.pm,AnyEvent::Handle) cvs-pod(lib/AnyEvent/Socket.pm,AnyEvent::Socket) cvs-pod(lib/AnyEvent/DNS.pm,AnyEvent::DNS) cvs-pod(lib/AnyEvent/Impl/EV.pm,AnyEvent::Impl::EV) cvs-pod(lib/AnyEvent/Impl/Event.pm,AnyEvent::Impl::Event) cvs-pod(lib/AnyEvent/Impl/Glib.pm,AnyEvent::Impl::Glib) cvs-pod(lib/AnyEvent/Impl/Tk.pm,AnyEvent::Impl::Tk) cvs-pod(lib/AnyEvent/Impl/Perl.pm,AnyEvent::Impl::Perl) cvs-pod(lib/AnyEvent/Impl/Qt.pm,AnyEvent::Impl::Qt) cvs-pod(lib/AnyEvent/Impl/EventLib.pm,AnyEvent::Impl::EventLib) cvs-pod(lib/AnyEvent/Impl/Irssi.pm,AnyEvent::Impl::Irssi) cvs-pod(lib/AnyEvent/Impl/IOAsync.pm,AnyEvent::Impl::IOAsync) cvs-pod(lib/AnyEvent/Impl/POE.pm,AnyEvent::Impl::POE) list(anyevent) irc(anyevent) 658AnyEvent cpan cvs-pod(lib/AnyEvent.pm,) cvs-pod(lib/AnyEvent/Intro.pod,Introduction/Tutorial) cvs-pod(lib/AE.pm,AE) cvs-co(Changes) cvs-pod(lib/AnyEvent/IO.pm,AnyEvent::IO) cvs-pod(lib/AnyEvent/Util.pm,AnyEvent::Util) cvs-pod(lib/AnyEvent/Handle.pm,AnyEvent::Handle) cvs-pod(lib/AnyEvent/Socket.pm,AnyEvent::Socket) cvs-pod(lib/AnyEvent/DNS.pm,AnyEvent::DNS) cvs-pod(lib/AnyEvent/Impl/EV.pm,AnyEvent::Impl::EV) cvs-pod(lib/AnyEvent/Impl/Event.pm,AnyEvent::Impl::Event) cvs-pod(lib/AnyEvent/Impl/Glib.pm,AnyEvent::Impl::Glib) cvs-pod(lib/AnyEvent/Impl/Tk.pm,AnyEvent::Impl::Tk) cvs-pod(lib/AnyEvent/Impl/Perl.pm,AnyEvent::Impl::Perl) cvs-pod(lib/AnyEvent/Impl/Qt.pm,AnyEvent::Impl::Qt) cvs-pod(lib/AnyEvent/Impl/EventLib.pm,AnyEvent::Impl::EventLib) cvs-pod(lib/AnyEvent/Impl/Irssi.pm,AnyEvent::Impl::Irssi) cvs-pod(lib/AnyEvent/Impl/IOAsync.pm,AnyEvent::Impl::IOAsync) cvs-pod(lib/AnyEvent/Impl/POE.pm,AnyEvent::Impl::POE) list(anyevent) irc(anyevent)
614 This module offers a simple API for I/O, timer, signal, child process 659 This module offers a simple API for I/O, timer, signal, child process
615 and completion events, independent of a specific event loop. 660 and completion events, independent of a specific event loop.
616 661
617 <p>This module allows module authors to use those events internally 662 <p>This module allows module authors to use those events internally
618 without forcing users of the module to use a specific event loop, without 663 without forcing users of the module to use a specific event loop, without
707 The caller is responsible for authentication management, cookies (if 752 The caller is responsible for authentication management, cookies (if
708 the simplistic implementation in this module doesn't suffice), referer 753 the simplistic implementation in this module doesn't suffice), referer
709 and other high-level protocol details for which this module offers only 754 and other high-level protocol details for which this module offers only
710 limited support. 755 limited support.
711 756
712AnyEvent-MP cpan cvs-pod(MP.pm,) cvs-pod(MP/Intro.pod,Introduction/Tutorial) cvs-co(Changes) list(anyevent) irc(anyevent) 757AnyEvent-MP cpan cvs-pod(MP.pm,) cvs-pod(MP/Intro.pod,Introduction/Tutorial) cvs-pod(bin/aemp,Config-Uility) cvs-pod(MP/Kernel.pm) cvs-pod(MP/Global.pm) cvs-pod(MP/Transport.pm) cvs-pod(MP/DataConn.pm) cvs-pod(MP/LogCatcher.pm) cvs-co(Changes) list(anyevent) irc(anyevent)
713 This Perl module (-family) implements a simple message passing framework for Perl. 758 This Perl module (-family) implements a simple message passing framework for Perl.
714 759
715 Despite its simplicity, you can securely message other processes running 760 Despite its simplicity, you can securely message other processes running
716 on the same or other hosts. 761 on the same or other hosts.
717 762
854 An adaptor that integrates the Net-SNMP Perl module into the EV event loop. 899 An adaptor that integrates the Net-SNMP Perl module into the EV event loop.
855 Loading it suffices to make background requests in EV programs. 900 Loading it suffices to make background requests in EV programs.
856 901
857libev cvs-co(README) cvs-pod(ev.pod) dist list(libev) 902libev cvs-co(README) cvs-pod(ev.pod) dist list(libev)
858 A full-featured and high-performance (<a 903 A full-featured and high-performance (<a
859 href="http://libev.schmorp.de/bench.html">see benchmark</a>) event loop that 904 href="http://libev.schmorp.de/bench.html">see benchmark</a>)
860 is loosely modelled after libevent, but without its limitations and bugs. It is 905 event loop that is loosely modelled after libevent, but without
906 its limitations and bugs. It is used in
861 used, among others, in the <a href="pkg/gvpe.html">GNU Virtual Private Ethernet</a> and 907 <a href="/pkg/gvpe.html">GNU Virtual Private Ethernet</a>,
862 <a href="pkg/rxvt-unicode.html">rxvt-unicode</a> packages, and in 908 <a href="/pkg/rxvt-unicode.html">rxvt-unicode</a>, <a
863 the Deliantra MORPG Server and Client. 909 href="http://people.redhat.com/sgrubb/audit/">auditd</a>, the
910 <a href="http://www.deliantra.net">Deliantra MORPG</a> Server and Client,
911 and many other programs.
864 912
865 Features include child/pid watchers, periodic timers based on wallclock 913 Features include child/pid watchers, periodic timers based on wallclock
866 (absolute) time (in addition to timers using relative timeouts), as well 914 (absolute) time (in addition to timers using relative timeouts), as well
867 as epoll/kqueue/event ports/inotify/eventfd/signalfd support, fast timer 915 as epoll/kqueue/event ports/inotify/eventfd/signalfd support, fast timer
868 management, time jump detection and correction, and ease-of-use. 916 management, time jump detection and correction, and ease-of-use.
1033Linux-NBD cpan cvs-pod(lib/Linux/NBD.pm) cvs-pod(lib/Linux/NBD/Client.pm) cvs-pod(lib/Linux/NBD/Server.pm) cvs-co(Changes) 1081Linux-NBD cpan cvs-pod(lib/Linux/NBD.pm) cvs-pod(lib/Linux/NBD/Client.pm) cvs-pod(lib/Linux/NBD/Server.pm) cvs-co(Changes)
1034 A Perl module that helps implementing netblock block device servers and 1082 A Perl module that helps implementing netblock block device servers and
1035 set up NBD instances. A sample application allowing you to mount most CD 1083 set up NBD instances. A sample application allowing you to mount most CD
1036 images is included. 1084 images is included.
1037 1085
1086Linux-Clone cpan cvs-pod(Clone.pm) cvs-co(Changes)
1087 A Perl interface to the clone(2) and unshare(2) syscalls.
1088
1089Urlader cpan cvs-pod(Urlader.pm) cvs-co(Changes)
1090 A self-unpacking archive that can be used for program deployment and upgrades.
1091
1092 Much like PAR, this module provides a simple way to build (silently) self-extracting
1093 executables that can contain perl, modules and shared libraries. Unlike PAR it is not
1094 restricted to perl programs, works transparently, without any magic and can cache
1095 unpacked archives for extra speed. Also unlike PAR, it leaves you out in the cold
1096 on the problem of how to atcually gather your files into the distribution.
1097
1038Mozilla-Plugin 1098Mozilla-Plugin
1039 Undocumented, unreleased and unfinished-but-somewhat-working Perl plug-in 1099 Undocumented, unreleased and unfinished-but-somewhat-working Perl plug-in
1040 for Mozilla (Netscape, Opera, IE...), that allows embedding Tk, Gtk etc. 1100 for Mozilla (Netscape, Opera, IE...), that allows embedding Tk, Gtk etc.
1041 plugins directly in the browser. 1101 plugins directly in the browser.
1042 1102

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines