1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
CSS::DOM, version 0.14
This module implements a CSS-specific subset of the interfaces
described in the W3C DOM specification.
RECENT CHANGES
0.014
-----
• The full text of the licence is now included in the distribution.
Thanks to Ville Skyttä for providing it (RT #60770).
• A few pod syntax errors have been corrected, thanks to Nicholas Bam-
ber (RT #63388).
• CSS::DOM::PropertyParser has been fixed to work with perl 5.13.8
and higher.
• New getStringValue method of CSS::DOM::Value::Primitive
0.013
-----
Oops. Fix another problem, introduced in 0.12. I forgot to add a file
to MANIFEST. (I *thought* I had run make disttest.)
0.012
-----
Fix dependency problem introduced in 0.11. (I tried to remove the
dependency on constant::lexical, gave up and reverted my changes, but
forgot to add it back to Makefile.PL. Oh well.)
INSTALLATION
The easiest way to install this module is to use the CPAN module or
the cpan script:
perl -MCPAN -e "install CSS::DOM"
cpan CSS::DOM
Or you can use the following:
perl Makefile.PL
make
make test
[sudo] make install
DEPENDENCIES
This module requires perl 5.8.2 or later, and the following modules:
• Exporter 5.57 or later
• Encode 2.10 or later
• Clone 0.09 or later
DOCUMENTATION
After installing, you can find documentation for these modules with
the perldoc command.
perldoc CSS::DOM
Or try using man (it's faster, in my experience):
man CSS::DOM
COPYRIGHT AND LICENCE
Copyright (C) 2007-10 Father Chrysostomos
This program is free software; you may redistribute it and/or modify
it under the same terms as perl. The full text of the license can be
found in the LICENSE file included with this module.
|