Group
Extension

Matches 2

WWW-ASN ( M/MS/MSTRAT/WWW-ASN-0.01.tar.gz, MSTRAT, 2012; MetaCPAN )
WWW-ASN/lib/WWW/ASN.pm ( view source; MetaCPAN )
L<WWW::ASN::Standard> object, it has to fetch two
documents, the "details" xml and the "manifest" json.

Ideally this would get everything from the "details" document.  We use both though, since it's
WWW-ASN ( M/MS/MSTRAT/WWW-ASN-0.01.tar.gz, MSTRAT, 2012; MetaCPAN )
WWW-ASN/lib/WWW/ASN/Document.pm ( view source; MetaCPAN )
;
use strict;
use warnings;
use Moo;
extends 'WWW::ASN::Downloader';

use WWW::ASN::Standard;
use JSON;

=head1 NAME

WWW::ASN::Document - Represents a collection of standards or learning objectives

 return $self->_read_or_download(
        $self->manifest_cache_file,
        $self->uri_manifest_json,
    );
}

=head2 id

This is a globally unique URI for this document.

=cut

has 'id' => (
    i
=> 'ro',
    required => 0,
);

sub uri_manifest_json { return $_[0]->uri . '_manifest.json'; }

sub uri_details_json { return $_[0]->uri . '_full.json'; }

sub uri_details_xml { return $_[0]->uri . '

Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.