- mail_index_lookup_first() didn't always find the result.
This caused SELECT not to return UNSEEN number always.
- Maildir: Fix to earlier >26 keywords handling change.
- i_stream_read(): Added a few more asserts.
- istream-tee: Minor cleanups, assert and a potential fix.
by the gtk2-clearlooks-engine package (we depends on gtk-engines2 which
depends on gtk2-clearlooks-engine)
- remove conflict with gtk2-clearlooks-engine
ok jasper@
- add missing icon goos
- regen WANTLIB and set GPL version marker
original conflict removal idea from Stefan Sperling
Douglas Santos (maintainer) agrees with the change
ok jasper@
Xhomer is a machine emulator for the DEC Professional 350 computer,
a PDP-11-based machine that was sold in the early to mid-'80's.
Xhomer is based on the PDP-11 CPU core from the SIMH simulator,
and is written entirely in C.
ok sturm@
CGI::Application::Plugin::ValidateRM helps to validate web forms when
using the CGI::Application framework and the Data::FormValidator module.
from Mikolaj Kucharski
CGI::Application::Plugin::ConfigAuto adds easy access to config file
variables to your CGI::Application modules. Lazy loading is used to
prevent the config file from being parsed if no configuration variables
are accessed during the request. In other words, the config file is not
parsed until it is actually needed. The Config::Auto package provides
the framework for this plugin.
from Mikolaj Kucharski
CGI::Application::Plugin::DBH adds easy access to a DBI database handle
to your CGI::Application modules. Lazy loading is used to prevent a
database connection from being made if the dbh method is not called
during the request. In other words, the database connection is not
created until it is actually needed.
from Mikolaj Kucharski
with >=2GB swap
- replace kvm reads with sysctl()
this change brings some useful improvements in the process:
* it fixes the disk plugin
* if you don't care about TCP connection statistics, then running sgid
is not needed anymore
all work done by Josh Elsasser, thank you!
"functionality-wise: thumbs up!" sturm@
HTML::FormFu is a HTML form framework which aims to be as easy as
possible to use for basic web forms, but with the power and flexibility
to do anything else you might want to do (as long as it involves forms).
You can configure almost any part of formfu's behaviour and output. By
default formfu renders "XHTML 1.0 Strict" compliant markup, with as
little extra markup as possible, but with sufficient CSS class names to
allow for a wide-range of output styles to be generated by changing only
the CSS.
HTML::Tiny is a simple, dependency free module for generating HTML (and
XML). It concentrates on generating syntactically correct XHTML using a
simple Perl notation.
In addition to the HTML generation functions, utility functions are
provided to:
* encode and decode URL encoded strings
* entity encode HTML
* build query strings
* JSON encode data structures
Regexp::Assemble takes an arbitrary number of regular expressions and
assembles them into a single regular expression (or RE) that matches all
that the individual REs match.
As a result, instead of having a large list of expressions to loop over,
a target string only needs to be tested against one expression. This is
interesting when you have several thousand patterns to deal with.
Serious effort is made to produce the smallest pattern possible.
This module was created to enable test suites to test code at specific
points in time. Specifically it overrides localtime, gmtime and time at
compile time and then relies on the user supplying a mock time via
set_relative_time, set_absolute_time or set_fixed_time to alter future
calls to gmtime, time or localtime.