DESCR:
GNUMP3d is a streaming server for MP3's, OGG vorbis files, movies and
other media. It is designed to be:
* Small, stable, portable, self-contained, and secure.
* Simple to install, configure, and use.
* Portable across different varieties of Unix and Microsoft Windows.
Mupen64 is a Nintendo 64 emulator desgined to be multi-OS. It has been
developped on/for Linux originally but the emulator has already been ported
succesfully on Windows and MacOSX for example. Actually the program can be
easily ported on all OS supported by the SDL library.
1.02 Tue Apr 13 22:45:10 CDT 2004
No reason to install if you have 1.00. Fixes are only in tests.
[FIXES]
* t/referer.t didn't cope with spaces in $FindBin::Bin. Plus,
it now forces its URL to localhost.
1.00 Sat Apr 10 00:35:51 CDT 2004
I figure it's about time we hit 1.00, and this version seems
like a good place to do it, because of the potential breakage
described below...
[THINGS THAT WILL BREAK YOUR CODE]
* Header handling has changed. There is no more package variable
%headers that holds all the headers to be added. They are now
added on a per-object basis.
If you were adding a header with add_header(), and the code
relied on that header still being set later on in a later
instance of the class, that code will now break, because the
later instance won't have the header set.
[ENHANCEMENTS]
* You can now prevent a header from being sent by adding it with
an undef value, as in:
$mech->add_header( Referer => undef );
[FIXES]
* Now correctly adds Accept-Encoding to all requests that need it.
[INTERNALS]
* Added new $mech->_modify_request($req) method to do all the
HTTP header modification before the actual request gets
sent off. Subclasses are able to override it if they want.
* Removed the unused Compress::Zlib stuff.
0.76 Wed Apr 7 22:01:43 CDT 2004
[ENHANCEMENTS]
* Added update_html() to let you update the HTML for the page
you're on.
[FIXES]
* Test files account for new Google layout.
[INTERNALS]
* Rearranged the local tests into their own t/local/ directory.
* Made the standalone tests show what server they're hitting.
* Checked that it runs under LWP 5.78.
0.74 Mon Mar 22 23:36:46 CST 2004
[ENHANCEMENTS]
* WWW::Mechanize now sends an Accept-Encoding header of "identity"
to always enforce plaintext responses. Preliminary support for
Compress::Zlib is also there, but is disabled by default.
* Added click_button() and select() methods. The field() method
can now take an arrayref of values, if appropriate. Thanks,
Linda Lee Julien.
* Added url_abs and url_abs_regex parms to find_all_links().
* URLs in META REFRESH tags are now treated as links.
* t/taint.t makes sure that things that should be tainted are.
[FIXES]
* Still more fixes if the machine you're on doesn't have
DNS pointing to it.
* The local changes use localhost as the local host name, instead
of whatever host name that might be on the box, but not in DNS.
Thanks to David Wheeler for letting me play on his box.
* The http_proxy and HTTP_PROXY environment variables get
deleted during the tests that access the dummy local server.
This should let your tests pass, and clear up a lot of RT
tickets.
much more quickly. A script can be made to to run persistently by changing
the interpreter line at the top of the script from:
#!/usr/bin/perl
to
#!/usr/bin/speedy
After the script is initially run, instead of exiting, the perl interpreter
is kept running. During subsequent runs, this interpreter is used to handle
new executions instead of starting a new perl interpreter each time. A very
fast frontend program, written in C, is executed for each request. This fast
frontend then contacts the persistent Perl process, which is usually already
running, to do the work and return the results.
the way it should be done in pkgsrc:
o Use REPLACE_PERL
o (Ab)use SUBST_CLASSES to make the other subsititions in the various
files.
o Make actual use of RCD_SCRIPTS (adding a few FILES_SUBST)
o Use PLIST_SUBST to make conditional inclusions of files, instead of
fiddling with PLIST_SRC.
And of course, bl3ify, although I can't test milter stuff. Volunteer,
anyone?
Once the rc.d script is NetBSD-ized, I will import that package.