You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage perl-XML-DOM-1.45-3.fc25.noarch
This is a Perl extension to XML::Parser. It adds a new 'Style' to XML::Parser, called 'DOM', that allows XML::Parser to build an Object Oriented data structure with a DOM Level 1 compliant interface. For a description of the DOM (Document Object Model), see <http://www.w3.org/DOM/>.
RPMPackage perl-WWW-RobotRules-6.02-21.lbn25.noarch
This module parses /robots.txt files as specified in "A Standard for Robot Exclusion", at <http://www.robotstxt.org/wc/norobots.html>. Webmasters can use the /robots.txt file to forbid conforming robots from accessing parts of their web site.
RPMPackage perl-Variable-Magic-0.62-6.lbn25.x86_64
Magic is Perl way of enhancing objects. This mechanism let the user add extra data to any variable and hook syntactical operations (such as access, assignation or destruction) that can be applied to it. With this module, you can add your own magic to any variable without the pain of the C API.
RPMPackage perl-Unicode-UTF8-0.62-8.lbn25.x86_64
This module provides functions to encode and decode UTF-8 encoding form as specified by Unicode and ISO/IEC 10646:2011.
RPMPackage perl-Unicode-Normalize-1.26-418.lbn25.x86_64
This package provides Perl functions that can convert strings into various Unicode normalization forms as defined in Unicode Standard Annex #15.
RPMPackage perl-URI-1.76-2.lbn25.noarch
This module implements the URI class. Objects of this class represent "Uniform Resource Identifier references" as specified in RFC 2396 (and updated by RFC 2732).
RPMPackage perl-Type-Tiny-1.004004-2.lbn25.noarch
Type::Tiny is a tiny class for creating Moose-like type constraint objects which are compatible with Moo, Moose and Mouse.
RPMPackage perl-Try-Tiny-0.30-5.lbn25.noarch
This module provides bare bones try/catch statements that are designed to minimize common mistakes with eval blocks, and NOTHING else. This is unlike TryCatch, which provides a nice syntax and avoids adding another call stack layer, and supports calling return from the try block to return from the parent subroutine. These extra features come at a cost of a few dependencies, namely Devel::Declare and Scope::Upper that are occasionally problematic, and the additional catch filtering uses Moose type constraints, which may not be desirable either.
RPMPackage perl-TimeDate-2.30-16.lbn25.noarch
This module includes a number of smaller modules suited for manipulation of time and date strings with Perl. In particular, the Date::Format and Date::Parse modules can display and read times and dates in various formats, providing a more reliable interface to textual representations of points in time.
RPMPackage perl-Time-Piece-1.33-436.lbn25.1.x86_64
The Time::Piece module replaces the standard localtime and gmtime functions with implementations that return objects. It does so in a backwards compatible manner, so that using localtime or gmtime as documented in perlfunc still behave as expected.
RPMPackage perl-Time-Local-1.280-4.lbn25.noarch
This module provides functions that are the inverse of built-in perl functions localtime() and gmtime(). They accept a date as a six-element array, and return the corresponding time(2) value in seconds since the system epoch (Midnight, January 1, 1970 GMT on Unix, for example). This value can be positive or negative, though POSIX only requires support for positive values, so dates before the system's epoch may not work on all operating systems.
RPMPackage perl-Text-Template-1.55-1.lbn25.noarch
This is a library for generating form letters, building HTML pages, or filling in templates generally. A 'template' is a piece of text that has little Perl programs embedded in it here and there. When you 'fill in' a template, you evaluate the little programs and replace them with their values.
RPMPackage perl-Text-Tabs+Wrap-2013.0523-418.lbn25.noarch
Text::Tabs performs the same job that the UNIX expand(1) and unexpand(1) commands do: adding or removing tabs from a document. Text::Wrap::wrap() will reformat lines into paragraphs. All it does is break up long lines, it will not join short lines together.
RPMPackage perl-Text-ParseWords-3.30-418.lbn25.noarch
The nested_quotewords() and quotewords() functions accept a delimiter (which can be a regular expression) and a list of lines and then breaks those lines up into a list of words ignoring delimiters that appear inside quotes. quotewords() returns all of the tokens in a single long list, while nested_quotewords() returns a list of token lists corresponding to the elements of @lines. parse_line() does tokenizing on a single string. The quotewords() functions simply call &parse_line(), so if you're only splitting one line you can call parse_line() directly and save a function call.
RPMPackage perl-Text-Glob-0.11-7.lbn25.noarch
Text::Glob implements glob(3) style matching that can be used to match against text, rather than fetching names from a file-system. If you want to do full file globbing use the File::Glob module instead.
RPMPackage perl-Text-Diff-1.45-5.lbn25.noarch
Text::Diff provides a basic set of services akin to the GNU diff utility. It is not anywhere near as feature complete as GNU diff, but it is better integrated with Perl and available on all platforms. It is often faster than shelling out to a system's diff executable for small files, and generally slower on larger files.
RPMPackage perl-Text-Balanced-2.03-418.lbn25.noarch
These Perl subroutines may be used to extract a delimited substring, possibly after skipping a specified prefix string.
RPMPackage perl-Test-Warnings-0.026-10.lbn25.noarch
If you've ever tried to use Test::NoWarnings to confirm there are no warnings generated by your tests, combined with the convenience of done_testing to not have to declare a test count, you'll have discovered that these two features do not play well together, as the test count will be calculated before the warnings test is run, resulting in a TAP error (see examples/test_nowarnings.pl in this distribution for a demonstration). This module is intended to be used as a drop-in replacement for Test::NoWarnings: it also adds an extra test, but runs this test before done_testing calculates the test count, rather than after. It does this by hooking into done_testing as well as via an END block. You can declare a plan, or not, and things will still Just Work. It is actually equivalent to: use Test::NoWarnings 1.04 ':early'; as warnings are still printed normally as they occur. You are safe, and enthusiastically encouraged, to perform a global search-replace of the above with use Test::Warnings; whether or not your tests have a plan.
RPMPackage perl-Test-TypeTiny-1.004004-2.lbn25.noarch
Test::TypeTiny module.
RPMPackage perl-Test-Simple-1.302164-1.lbn25.noarch
This package provides the bulk of the core testing facilities. For more information, see perldoc for Test::Simple, Test::More, etc. This package is the CPAN component of the dual-lifed core package Test-Simple.