BZ-Client

 view release on metacpan or  search on metacpan

Build.PL  view on Meta::CPAN

  "dist_author" => [
    "Dean Hamstead <dean\@bytefoundry.com.au>",
    "Jochen Wiedmann <jochen.wiedmann\@gmail.com>"
  ],
  "dist_name" => "BZ-Client",
  "dist_version" => "4.4004",
  "license" => "perl",
  "module_name" => "BZ::Client",
  "recursive_test_files" => 1,
  "requires" => {
    "DateTime::Format::ISO8601" => 0,
    "DateTime::Format::Strptime" => 0,
    "DateTime::TimeZone" => 0,
    "Encode" => 0,
    "File::Basename" => 0,
    "File::Spec" => 0,
    "HTTP::CookieJar" => 0,
    "HTTP::Tiny" => 0,
    "MIME::Base64" => 0,
    "URI" => 0,
    "XML::Parser" => 0,

META.json  view on Meta::CPAN

            "Test::More" : "0.88",
            "Test::NoBreakpoints" : "0.15",
            "Test::NoTabs" : "0",
            "Test::Perl::Critic" : "0",
            "Test::Pod" : "1.41",
            "Test::Portability::Files" : "0"
         }
      },
      "runtime" : {
         "requires" : {
            "DateTime::Format::ISO8601" : "0",
            "DateTime::Format::Strptime" : "0",
            "DateTime::TimeZone" : "0",
            "Encode" : "0",
            "File::Basename" : "0",
            "File::Spec" : "0",
            "HTTP::CookieJar" : "0",
            "HTTP::Tiny" : "0",
            "MIME::Base64" : "0",
            "URI" : "0",
            "XML::Parser" : "0",

META.yml  view on Meta::CPAN

license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: '1.4'
name: BZ-Client
no_index:
  directory:
    - eg
    - t
requires:
  DateTime::Format::ISO8601: '0'
  DateTime::Format::Strptime: '0'
  DateTime::TimeZone: '0'
  Encode: '0'
  File::Basename: '0'
  File::Spec: '0'
  HTTP::CookieJar: '0'
  HTTP::Tiny: '0'
  MIME::Base64: '0'
  URI: '0'
  XML::Parser: '0'

Makefile.PL  view on Meta::CPAN

  },
  "CONFIGURE_REQUIRES" => {
    "ExtUtils::MakeMaker" => 0,
    "Module::Build" => "0.28"
  },
  "DISTNAME" => "BZ-Client",
  "LICENSE" => "perl",
  "MIN_PERL_VERSION" => "5.008000",
  "NAME" => "BZ::Client",
  "PREREQ_PM" => {
    "DateTime::Format::ISO8601" => 0,
    "DateTime::Format::Strptime" => 0,
    "DateTime::TimeZone" => 0,
    "Encode" => 0,
    "File::Basename" => 0,
    "File::Spec" => 0,
    "HTTP::CookieJar" => 0,
    "HTTP::Tiny" => 0,
    "MIME::Base64" => 0,
    "URI" => 0,
    "XML::Parser" => 0,

lib/BZ/Client/XMLRPC/Value.pm  view on Meta::CPAN

# ABSTRACT: Event handler for parsing a single XML-RPC value.

use strict;
use warnings 'all';

package BZ::Client::XMLRPC::Value;
$BZ::Client::XMLRPC::Value::VERSION = '4.4004';
use parent qw( BZ::Client::XMLRPC::Handler );
use BZ::Client::XMLRPC::Struct;
use BZ::Client::XMLRPC::Array;
use DateTime::Format::ISO8601 ();

sub start {
    my ( $self, $name ) = @_;
    my $l = $self->inc_level();
    if ( $l == 0 ) {
        if ( 'value' ne $name ) {
            $self->error("Expected value element, got $name");
        }
        $self->{'level0_content'} = q();
    }

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 1.166 second using v1.00-cache-2.02-grep-82fe00e-cpan-1925d2aa809 )