REAL SLOPPY WORK by initial porter.
If you see error messages in the configure output, you DEAL WITH THEM.
you don't just expect them to not mean anything.
Class related functionality in Perl is broken up into a variety of
different modules. Class::Handle attempts to provide a convenient
object wrapper around the various different types of functions that can
be performed on a class.
ok pyr@
Class::Default provides a mechanism to allow your class to take static
method calls and apply it to a default instantiation of an object. It
provides a flexibility to an API that allows it to be used more
comfortably in different situations.
ok pyr@
Many applications require that a large set of results be broken down
into a smaller set of 'windows', or 'pages' in web language.
Array::Window implements an algorithm specifically for dealing with
these windows. It is very flexible and permissive, making adjustments
to the window as needed.
ok pyr@
Major changes compared to Horde 3.1.4 are:
* Improved webroot detection.
* Fixed language selection in login screen.
* Updated Czech, Estonian, German, Polish, Spanish, and Simplified
Chinese translations.
* Small bug fixes and improvements.
The full list of changes (from version 3.1.4) can be viewed here:
http://cvs.horde.org/diff.php/horde/docs/CHANGES?r1=1.515.2.298&r2=1.515.2.306&ty=h
OpenSync is a synchronization framework that is platform and
distribution independent. It consists of a powerful sync-engine and
several plugins that can be used to connect to devices.
OpenSync is very flexible and capable of synchronizing any type of data,
including contacts, calendar, tasks, notes and files.
Note that it is still a development version. But it's better to have
this in-tree now so that one can port the different sync plugins as they
come out. Also it will ease integration with other apps (i.e kdepim).
"as long as it doesn't break kdepim" espie@
A code coverage tool for Ruby featuring fast execution, multiple
analysis modes, cross-referenced XHTML and several kinds of text
reports, easy automation with Rake and Rant.
Submitted and maintained by markus@.
ok sturm@
UUIDTools was designed to be a simple library for generating any of the
various types of UUIDs (or GUIDs if you prefer to call them that).
It conforms to RFC 4122 whenever possible.
through a tie interface. Any time data is stored in the tied hash, that
key/value pair has an entry time associated with it, and as the cache
fills up, those members of the cache that are the oldest are removed to
make room for new entries.
So, the cache only "remembers" the last written entries, up to the size
of the cache. This can be especially useful if you access great amounts
of data, but only access a minority of the data a majority of the time.
ok simon@
files. This file format is more compact and more readable than XML. And
unlike XML, it is type-aware, so it is not necessary to do string
parsing in application code.
Libconfig is very compact - just 25K for the stripped C shared library
(one-fifth the size of the expat XML parser library) and 39K for the
stripped C++ shared library. This makes it well-suited for
memory-constrained systems like handheld devices.
From Will Maier (MAINTAINER)
tweaks and ok sturm@ and kili@
Test::Expect is a module for automated driving and testing of
terminal-based programs. It is handy for testing interactive programs
which have a prompt, and is based on the same concepts as the Tcl Expect
tool. As in Expect::Simple, the Expect object is made available for
tweaking.
Expect::Simple is a wrapper around the Expect module which should
suffice for simple applications. It hides most of the Expect machinery;
the Expect object is available for tweaking if need be.
Test::Group allows for grouping together related tests in a standard
Test::More-style script. It provides a bunch of maintainability and
scalability advantages to large test suites.
feedback & ok merdely@
* cdecl and cundecl - decode and encode C type declarations
* cobfusc - make a C source file unreadable but compilable
* chilight - highlight C source files
* cunloop - unloop C loops
* yyextract - extract grammar rules from yacc grammar
* yyref - yacc grammar reference program
ok steven@
GOffice is a library of document-centric objects and utilities building
on top of GLib and Gtk+.
- fix cairo for gnucash, asked by todd@
tweaks/ok jasper@, todd@, alek@
This is an expiring LRU cache, using Tie::Cache::LRU. Each entry
in this cache expires after 'EXPIRES' seconds (default 3600).
The cache is in RAM (see Tie::Cache::LRU).
ok merdely@
This is a base class for implementing virtual base classes (what
some people call an abstract class). Kinda kooky. It allows you to
explicitly declare what methods are virtual and that must be
implemented by subclasses. This might seem silly, since your program
will halt and catch fire when an unimplemented virtual method is
hit anyway, but there's some benefits.
The error message is more informative. Instead of the usual "Can't
locate object method" error, you'll get one explaining that a virtual
method was left unimplemented.
Subclass authors can explicitly check to make sure they've implemented
all the necessary virtual methods. When used as part of a regression
test, it will shield against the virtual method requirements changing
out from under the subclass.
Finally, subclass authors can get an explicit list of everything
they're expected to implement.
ok merdely@
Defines a set of symbolic constants with ordered numeric values ala
C enum types. What are they good for? Typical uses would be for giving
mnemonic names to indexes of arrays.
This not only reads easier, but can also be typo-checked at compile
time when run under use strict. That is, if you misspell Days_Fri
as Days_Fry, you'll generate a compile error.
Also capable of creating ordered bitmask constants, allowing the
easy creation of bitmask constants, allowing you to efficiently store
many true/false options within a single integer.
ok merdely@
This class implements an ordered hash-like object. It's a cross
between a Perl hash and a linked list. Use it whenever you want the
speed and structure of a Perl hash, but the orderedness of a list.
ok merdely@
This module provides an interface to concisely yet expressively create
classes Class::Meta. The intent is to provide a simpler, more meaningful
interface for creating Class::Meta classes while preserving the power
and flexibility of Class::Meta.
This module exports a number of functions that are useful for validating
and converting data types. It is intended for use in applications where
data types are more important than they typically are in Perl -- e.g.,
database applications.