The Cache modules are designed to assist a developer in persisting
data for a specified period of time. Often these modules are used
in web applications to store data locally to save repeated and
redundant expensive calls to remote machines or databases.
The Cache interface is implemented by derived classes that store
cached data in different manners (such as as files on a filesystem,
or in memory).
To use the Cache system, a cache implementation must be chosen to
suit your needs. The most common is Cache::File, which is suitable
for sharing data between multiple invocations and even between
concurrent processes.
File::NFSLock - perl module to do NFS (or not) locking
Program based of concept of hard linking of files being atomic
across NFS. This concept was mentioned in Mail::Box::Locker (which
was originally presented in Mail::Folder::Maildir). Some routine
flow is taken from there -- particularly the idea of creating a
random local file, hard linking a common file to the local file,
and then checking the nlink status. Some ideologies were not complete
(uncache mechanism, shared locking) and some coding was even
incorrect (wrong stat index). File::NFSLock was written to be light,
generic, and fast.
0.60 Sun Nov 16 16:58:12 EST 2003
- ensured that $elem->heap can be tested for undef
to determine whether it is actually on a heap at
the moment
- requested by Dan Bolser <dmb@mrc-dunn.cam.ac.uk>
- fixed bug in Heap::Binary delete
- noted by Arun Bhalla <bhalla@uiuc.edu>
- changes to t/test.t
- added tests for delete
- made test run against all Heap variants
- made test configurable to get a small test case
for solving bugs
- fixed bug in Heap::Binomial delete
- Heap::Fibonacci delete worked in tests
0.70 Fri Dec 5 00:55:41 EST 2003
- finally got around to renaming minimum and
extract_minimum methods to top and extract_top
- prompted by Steve Lembark <lembark@wrkhors.com>
- old names are still supported, but depracated
0.71 Thu Jun 17 12:25:36 EDT 2004
- fixed a memory leak in Heap::Fibonacci
- the DESTROY method did'nt traverse fully
- one final reference to extract_minimum in doc for Heap.pm
- both issues reported by Christian Plessl <plessl@tik.ee.ethz.ch>
- obex mtu fixes (submitted by Alexander V. Ribchansky)
- obexapp now registers both opush and ftrn services
- obexapp now supports quotation (with backslash \) in file names
(with spaces etc.)
- other minor fixes
* Added thumbnail format to write EXIF thumbnails.
* Move EXIF properties to the EXIF namespace (e.g. exif:XResolution).
* Add interpolate and background options to PerlMagick's AffineTransform().
* Revert to Postscript rendering if Freetype delegate library is not
available.
* updated config.sub to newer version
* added custom RGBA blitter function that sets/maintains target alpha
* added setAlpha function that sets alpha values in 32bit surfaces
* added TextGfxBlit testprogram for new functions
* Fixed C++ type in .h files (thanks Olivier)
* Update some text in README and .spec file
* Removed broken Uint filter routines from test program
* "Cosmetic" changes to test programs and Automake.am
PyKaraoke is a free karaoke player for Linux, FreeBSD, Windows and
GP2X.
You can use this program to play your collection of CDG, MIDI and
MPEG karaoke songs. No songs are provided, you must obtain these
from elsewhere.
In short, CDG is the format of professional karaoke CDs. These CDs
can be ripped to your hard disk, and turned into a .mp3 file together
with a .cdg file. This player gives you the ability to play those
mp3+cdg files. PyKaraoke Features:
* CDG (MP3+G, OGG+G) playback - Play standard CDG karaoke files
* MIDI (.MID/.KAR) playback - Play MIDI format karaoke files
* MPEG playback - Play karaoke songs and movies in MPEG format
* Playlist - Queue up songs, sit back and enjoy
* Searchable song database - Easily find your songs from the main screen
* Search inside ZIP files - Play MP3+G/MIDI files wrapped in ZIP files
* Cross-platform - Runs on Windows, Linux, FreeBSD and GP2X
NEW IN VERSION 3.5.18
---------------------
- Renamed djview as djview3.
- Various enhancement of DDJVUAPI.
- Partial support for page titles instead of page numbers.
- Clarification of metadata information.
- Fixed djvumake mask separation feature.
- Complain when given a so-called "secure" djvu file.
- Fixed handling of urls with cgi arguments
- Fixed bug related to caching and ddjvuapi
- Reorganized ${datadir}/djvu
- Provide scripts in ${datadir}/djvu/*/desktop to register
the djvu mime types and the djview menu entries.
Uploaded FluidSynth 1.0.7a with a bug fix for the build error that
occurred when neither LASH or LADCCA were enabled. Also contains an
updated README-OSX from Ebrahim Mayat.
Net::MySQL is a Pure Perl client interface for the MySQL database.
This module implements network protocol between server and client
of MySQL, thus you don't need external MySQL client library like
libmysqlclient for this module to work. It means this module enables
you to connect to MySQL server from some operation systems which
MySQL is not ported.
How nifty!
Since this module's final goal is to completely replace DBD::mysql,
API is made similar to that of DBI.
From perl you activate the interface with the statement
Packaged by Francisco Valladolid Hdez.
libnet 1.20 -- Fri Feb 2 19:42:51 CST 2007
Bug Fixes
* Fixed incorrect handling of CRLF that straddled two blocks
* Fix bug in response() which was too liberal in what it thought was a response line
* Silence uninitialized value warnings in Net::Cmd during testing on Win32
* Documentations typos and updates
Enhancements
* Added support for ORCPT into Net::SMTP
* Support for servers that expect the USER command in upper or lower case. Try USER
first then try user if that fails