Fix remote documents in Zeal::Docset
[zeal.git] / lib / Zeal / Document.pm
CommitLineData
c1c9c817
MG
1package Zeal::Document;
2
3use 5.014000;
4use strict;
5use warnings;
6
7our $VERSION = '0.000_001';
8
9use parent qw/Class::Accessor::Fast/;
10__PACKAGE__->mk_accessors(qw/id name type path docset/);
11
12sub fetch {
13 my ($self) = @_;
14 $self->docset->fetch($self->path)
15}
16
171;
18__END__
19
20=encoding utf-8
21
22=head1 NAME
23
24Zeal::Document - Class representing a Dash/Zeal document
25
26=head1 SYNOPSIS
27
28 use Zeal::Document;
29
30=head1 DESCRIPTION
31
32Dash is an offline API documentation browser. Zeal::Document is a class
33representing a Dash/Zeal document.
34
35Available methods:
36
37=over
38
39=item $doc->B<id>
40
41The ID of this document. Not typically interesting.
42
43=item $doc->B<name>
44
45The name of this document.
46
47=item $doc->B<type>
48
49The type of this document. The list of types is available on
50the Dash website: L<http://kapeli.com/docsets#supportedentrytypes>
51
52=item $doc->B<path>
53
54The path of this document, relative to
55F<docset_root/Contents/Resources/Documents/>. This can also be a HTTP
56URL.
57
58=item $doc->B<fetch>
59
60The HTML content of this document, retrieved from the file system or
61via HTTP::Tiny.
62
63=back
64
65=head1 SEE ALSO
66
67L<Zeal>, L<http://kapeli.com/dash>, L<http://zealdocs.org>
68
69=head1 AUTHOR
70
71Marius Gavrilescu, E<lt>marius@ieval.roE<gt>
72
73=head1 COPYRIGHT AND LICENSE
74
75Copyright (C) 2014 by Marius Gavrilescu
76
77This library is free software; you can redistribute it and/or modify
78it under the same terms as Perl itself, either Perl version 5.20.1 or,
79at your option, any later version of Perl 5 you may have available.
80
81
82=cut
This page took 0.013865 seconds and 4 git commands to generate.