Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- conserver8-8.1.15, drraw-2.2a4, guile-1.8.1,
mksh-29, opera-9.21, qconf-1.3, ruby-rd-mode-0.6.20, up-imapproxy-1.2.5.
(updates done, thanks)
|
|
|
|
|
|
|
|
|
|
glibmm-2.12.10, gmpc-0.15.1, gnash-0.8.0, gnome-games-2.18.2.1,
gpaint-0.3.1, libxml++-2.18.1, loudmouth-1.2.3, meld-1.1.5,
micq-0.5.4.1, moc-2.4.2, p5-IO-Socket-SSL-1.07, py-m2crypto-0.17,
rox-2.6.1, source-highlight-2.7, zile-2.2.34.
|
|
|
|
|
|
www/p5-LWPx-ParanoidAgent
time/p5-DateTime-Calendar-Discordian
2007-06-
|
|
|
|
|
|
sysutils/dvdisaster to 0.70.4nb2
Added
textproc/p5-Text-Textile
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This module is a sub class of Template::Stash, automatically escape
all HTML strings and avoid XSS vulnerability.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Rose::DB::Object is a base class for objects that encapsulate a
single row in a database table. It provides the following functions:
* Create a row in the database by saving a newly constructed object.
* Initialize an object by loading a row from the database.
* Update a row by saving a modified object back to the database.
* Delete a row from the database.
* Fetch an object referred to by a foreign key in the current object.
(i.e., "one to one" and "many to one" relationships.)
* Fetch multiple objects that refer to the current object, either directly
through foreign keys or indirectly through a mapping table. (i.e., "one
to many" and "many to many" relationships.)
* Load an object along with "foreign objects" that are related through any
of the supported relationship types.
|
|
Rose::DB is a wrapper and abstraction layer for DBI-related
functionality. A Rose::DB object "has a" DBI object; it is not a
subclass of DBI.
Tip: Are you looking for an object-relational mapper (ORM)? If so,
please see the Rose::DB::Object module. Rose::DB::Object is an ORM
that uses this module to manage its database connections. Rose::DB
alone is simply a data source abstraction layer; it is not an ORM.
|
|
Rose::Class is a generic base class for classes. It provides a
single class method (error), but may be expanded further in the
future.
A class that inherits from Rose::Class is not expected to allow
objects of that class to be instantiated, since the namespace for
class and object methods is shared. For example, it is common for
Rose::Object-derived classes to have error methods, but this would
conflict with the Rose::Class method of the same name.
|
|
The Rose::DateTime::* modules provide a few convenience functions
and objects for use with DateTime dates.
Rose::DateTime::Util contains a simple date parser and a slightly
customized date formatter.
Rose::DateTime::Parser encapsulates a date parser with an associated
default time zone.
This module (Rose::DateTime) exists mostly to provide a version
number for CPAN. See the individual modules for some actual
documentation.
|
|
Reserved SQL words by standard and vendors, including:
* ANSI/ISO
* DB2
* MySQL
* ODBC
* Oracle
* PostgreSQL
* SQL Server
* SQLite
* Sybase
|
|
|
|
This module provides a general-purpose clone function to make deep
copies of Perl data structures. It calls itself recursively to copy
nested hash, array, scalar and reference types, including tied
variables and objects.
The clone() function takes a scalar argument to copy. To duplicate
arrays or hashes, pass them in by reference:
The clone() function also accepts an optional second parameter that
can be used to limit the depth of the copy. If you pass a limit of
0, clone will return the same value you supplied; for a limit of
1, a shallow copy is constructed; for a limit of 2, two layers of
copying are done, and so on.
|
|
|
|
parse and validate simple name/value option pairs. Example:
use Data::OptList;
my $options = Data::Optlist::mkopt([
qw(key1 key2 key3 key4),
key5 => { ... },
key6 => [ ... ],
key7 => sub { ... },
key8 => { ... },
key8 => [ ... ],
]);
|
|
Sub::Exporter provides a sophisticated alternative to Exporter.pm.
It allows for renaming, currying/sub-generation, and other cool
stuff.
|