Under maintenance.

Most probably CPANTS databases are being regenerated from scratch due to major changes in Kwalitee metrics or updates of relevant modules/perl. Usually this maintenance takes about a day or two, and some of the information may be old or missing tentatively. Sorry for the inconvenience.

Kwalitee Issues

use_strict

Add 'use strict' (or its equivalents) to all modules, or convince us that your favorite module is well-known enough and people can easily see the modules are strictly written.

Error: TPath, TPath::AttributeTest

no_pod_errors

Remove the POD errors. You can check for POD errors automatically by including Test::Pod to your test suite.

Error: TPath-0.007/lib/TPath/Index.pm -- Around line 169: Unknown directive: =attribute

has_meta_json

Add a META.json to the distribution. Your buildtool should be able to autogenerate it.

use_warnings

Add 'use warnings' (or its equivalents) to all modules, or convince us that your favorite module is well-known enough and people can easily see the modules warn when something bad happens.

Error: TPath, TPath::AttributeTest

meta_yml_has_provides

Add all modules contained in this distribution to the META.yml field 'provides'. Module::Build or Dist::Zilla::Plugin::MetaProvides do this automatically for you.

meta_yml_has_repository_resource

Add a 'repository' resource to the META.yml via 'meta_add' accessor (for Module::Build) or META_ADD parameter (for ExtUtils::MakeMaker).

has_security_doc

Add SECURITY(.pod|md). See Software::Security::Policy.

security_doc_contains_contact

Add SECURITY(.pod|md) and add a contact address. See Software::Security::Policy.

has_contributing_doc

Add CONTRIBUTING(.pod|md). See https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/setting-guidelines-for-repository-contributors.

Modules

Name Abstract Version View
TPath general purpose path languages for trees 0.007 metacpan
TPath::Attribute handles evaluating an attribute for a particular node 0.007 metacpan
TPath::AttributeTest compares an attribute value to another value 0.007 metacpan
TPath::Attributes::Extended a collection of attributes beyond the standard set 0.007 metacpan
TPath::Attributes::Standard the standard collection of attributes available to any forester by default 0.007 metacpan
TPath::Compiler takes ASTs and returns compiled L<TPath::Expression> objects 0.007 metacpan
TPath::Expression a compiled TPath expression 0.007 metacpan
TPath::Forester a generator of TPath expressions for a particular class of nodes 0.007 metacpan
TPath::Grammar parses TPath expressions into ASTs 0.007 metacpan
TPath::Index general purpose path languages for trees 0.007 metacpan
TPath::LogStream role of log-like things 0.007 metacpan
TPath::Predicate interface of square bracket sub-expressions in TPath expressions 0.007 metacpan
TPath::Predicate::Attribute implements the C<[@foo]> in C<//a/b[@foo]> 0.007 metacpan
TPath::Predicate::AttributeTest implements the C<[@foo = 1]> in C<//a/b[@foo = 1]> 0.007 metacpan
TPath::Predicate::Boolean implements the C<[@foo or @bar ]> in C<//a/b[@foo or @bar]> 0.007 metacpan
TPath::Predicate::Expression implements the C<[c]> in C<//a/b[c]> 0.007 metacpan
TPath::Predicate::Index implements the C<[0]> in C<//a/b[0]> 0.007 metacpan
TPath::Selector an interface for classes that select nodes from a candidate collection 0.007 metacpan
TPath::Selector::Id C<TPath::Selector> that implements C<id(foo)> 0.007 metacpan
TPath::Selector::Parent L<TPath::Selector> that implements C<..> 0.007 metacpan
TPath::Selector::Self L<TPath::Selector> that implements C<.> 0.007 metacpan
TPath::Selector::Test role of selectors that apply some test to a node to select it 0.007 metacpan
TPath::Selector::Test::Anywhere handles C<//*> expression 0.007 metacpan
TPath::Selector::Test::AnywhereAttribute handles C<//@foo> expression 0.007 metacpan
TPath::Selector::Test::AnywhereMatch handles C<//~foo~> expression 0.007 metacpan
TPath::Selector::Test::AnywhereTag handles C<//foo> expression 0.007 metacpan
TPath::Selector::Test::AxisAttribute handles C</ancestor::@foo> or C</preceding::@foo> where this is not the first step in the path, or C<ancestor::@foo>, etc. 0.007 metacpan
TPath::Selector::Test::AxisMatch handles C</ancestor::~foo~> or C</preceding::~foo~> where this is not the first step in the path, or C<ancestor::~foo~>, etc. 0.007 metacpan
TPath::Selector::Test::AxisTag handles C</ancestor::foo> or C</preceding::foo> where this is not the first step in the path, or C<ancestor::foo> 0.007 metacpan
TPath::Selector::Test::AxisWildcard handles C</ancestor::*> or C</preceding::*> where this is not the first step in the path, or C<ancestor::*>, etc. 0.007 metacpan
TPath::Selector::Test::ChildAttribute handles C</@foo> where this is not the first step in the path, or C<child::@foo> 0.007 metacpan
TPath::Selector::Test::ChildMatch handles C</~foo~> where this is not the first step in the path, or C<child::~foo~> 0.007 metacpan
TPath::Selector::Test::ChildTag handles C</foo> where this is not the first step in the path, or C<child::foo> 0.007 metacpan
TPath::Selector::Test::ClosestAttribute handles C</>@foo> 0.007 metacpan
TPath::Selector::Test::ClosestMatch handles C</>~foo~> 0.007 metacpan
TPath::Selector::Test::ClosestTag handles C</>foo> 0.007 metacpan
TPath::Selector::Test::Root handles C</.> 0.007 metacpan
TPath::Selector::Test::RootAttribute handles C</@foo> 0.007 metacpan
TPath::Selector::Test::RootAxisAttribute handles C</ancestor::@foo> or C</preceding::@foo> where this is the first step in the path 0.007 metacpan
TPath::Selector::Test::RootAxisMatch handles C</ancestor::~foo~> or C</preceding::~foo~> where this is the first step in the path 0.007 metacpan
TPath::Selector::Test::RootAxisTag handles C</ancestor::foo> or C</preceding::foo> where this is the first step in the path 0.007 metacpan
TPath::Selector::Test::RootAxisWildcard handles C</ancestor::*> or C</preceding::*> where this is the first step in the path 0.007 metacpan
TPath::Selector::Test::RootMatch handles C</~foo~> 0.007 metacpan
TPath::Selector::Test::RootTag handles C</foo> 0.007 metacpan
TPath::StderrLog implementation of TPath::LogStream that simply prints to STDERR 0.007 metacpan
TPath::Test interface of conditional expressions in predicates 0.007 metacpan
TPath::Test::And implements logical conjunction of tests 0.007 metacpan
TPath::Test::Boolean any empty role used to tag boolean TPath::Tests 0.007 metacpan
TPath::Test::Compound role of TPath::Tests that combine multiple other tests under some boolean operator 0.007 metacpan
TPath::Test::Node role for tests determining whether a node has some property 0.007 metacpan
TPath::Test::Node::Attribute L<TPath::Test::Node> implementing matching; e.g., C<//~foo~> 0.007 metacpan
TPath::Test::Node::Match L<TPath::Test::Node> implementing matching; e.g., C<//~foo~> 0.007 metacpan
TPath::Test::Node::Tag L<TPath::Test::Node> implementing basic tag pattern; e.g., C<//foo> 0.007 metacpan
TPath::Test::Node::True TPath::Test::Node implementing the wildcard; e.g., //* 0.007 metacpan
TPath::Test::Not implements logical negation of a test 0.007 metacpan
TPath::Test::Or implements logical disjunction of tests 0.007 metacpan
TPath::Test::XOr implements logical function of tests which returns true iff only one test is true 0.007 metacpan
TPath::TypeCheck applies type constraint on nodes 0.007 metacpan
TPath::TypeConstraints assorted type constraints 0.007 metacpan

Other Files

ChangeLog metacpan
MANIFEST metacpan
META.yml metacpan
Makefile.PL metacpan
README metacpan
README.md metacpan
dist.ini metacpan