~ubuntu-branches/ubuntu/raring/libpod-pom-perl/raring

« back to all changes in this revision

Viewing changes to lib/Pod/POM/Node/Pod.pm

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Yu, Jonathan Yu, Ryan Niebur, Nathan Handler, gregor herrmann
  • Date: 2010-04-03 01:25:15 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20100403012515-653u8knzzvr3yge9
Tags: 0.27-1
[ Jonathan Yu ]
* New upstream release
* Standards-Version 3.8.4 (no changes)
* Use new short debhelper rules format
* Use new DEP5 copyright format
* Update to 3.0 (quilt) source format
* Rewrite control description
* Add myself to Uploaders
* Update copyright information
* Refresh POD whatis patch
* Do not install Pod::POM::Node::* manpages, as there is little
  documentation contained in them

[ Ryan Niebur ]
* New upstream release
* add copyright information for t/YAML/Tiny.pm
* drop build dependency on libyaml-perl
* fix my patch..
* forwarded patch
* remove my patch, it's applied upstream in verion 0.26
* Update ryan52's email address

[ Nathan Handler ]
* debian/watch: Update to ignore development releases.

[ gregor herrmann ]
* debian/copyright: add info about new third-party test file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#============================================================= -*-Perl-*-
 
2
#
 
3
# Pod::POM::Node::Pod
 
4
#
 
5
# DESCRIPTION
 
6
#   Module implementing specific nodes in a Pod::POM, subclassed from
 
7
#   Pod::POM::Node.
 
8
#
 
9
# AUTHOR
 
10
#   Andy Wardley   <abw@kfs.org>
 
11
#   Andrew Ford    <a.ford@ford-mason.co.uk>
 
12
#
 
13
# COPYRIGHT
 
14
#   Copyright (C) 2000, 2001 Andy Wardley.  All Rights Reserved.
 
15
#   Copyright (C) 2009 Andrew Ford.  All Rights Reserved.
 
16
#
 
17
#   This module is free software; you can redistribute it and/or
 
18
#   modify it under the same terms as Perl itself.
 
19
#
 
20
# REVISION
 
21
#   $Id: Pod.pm 76 2009-08-20 20:41:33Z ford $
 
22
#
 
23
#========================================================================
 
24
 
 
25
package Pod::POM::Node::Pod;
 
26
 
 
27
use strict;
 
28
 
 
29
use parent qw( Pod::POM::Node );
 
30
use vars qw( @ACCEPT $ERROR );
 
31
 
 
32
@ACCEPT = qw( head1 head2 head3 head4 over begin for text verbatim code );
 
33
 
 
34
1;
 
35
 
 
36
=head1 NAME
 
37
 
 
38
Pod::POM::Node::Pod -
 
39
 
 
40
=head1 SYNOPSIS
 
41
 
 
42
    use Pod::POM::Nodes;
 
43
 
 
44
=head1 DESCRIPTION
 
45
 
 
46
This module implements a specialization of the node class to represent C<=pod> elements.
 
47
 
 
48
=head1 AUTHOR
 
49
 
 
50
Andrew Ford E<lt>a.ford@ford-mason.co.ukE<gt>
 
51
 
 
52
Andy Wardley E<lt>abw@kfs.orgE<gt>
 
53
 
 
54
=head1 COPYRIGHT
 
55
 
 
56
Copyright (C) 2000, 2001 Andy Wardley.  All Rights Reserved.
 
57
 
 
58
Copyright (C) 2009 Andrew Ford.  All Rights Reserved.
 
59
 
 
60
This module is free software; you can redistribute it and/or
 
61
modify it under the same terms as Perl itself.
 
62
 
 
63
=head1 SEE ALSO
 
64
 
 
65
Consult L<Pod::POM::Node> for a discussion of nodes.