[svn:parrot] r36546 - in trunk: . lib/Parrot/Docs/Section
coke at svn.parrot.org
coke at svn.parrot.org
Tue Feb 10 17:28:12 UTC 2009
Author: coke
Date: Tue Feb 10 17:28:11 2009
New Revision: 36546
URL: https://trac.parrot.org/parrot/changeset/36546
Log:
Fix 'make html' - the files that had this documentation were removed in r36461.
Deleted:
trunk/lib/Parrot/Docs/Section/BigNum.pm
Modified:
trunk/MANIFEST
trunk/lib/Parrot/Docs/Section/Parrot.pm
Modified: trunk/MANIFEST
==============================================================================
--- trunk/MANIFEST Tue Feb 10 17:02:28 2009 (r36545)
+++ trunk/MANIFEST Tue Feb 10 17:28:11 2009 (r36546)
@@ -1,7 +1,7 @@
# ex: set ro:
# $Id$
#
-# generated by tools/dev/mk_manifest_and_skip.pl Tue Feb 10 03:30:40 2009 UT
+# generated by tools/dev/mk_manifest_and_skip.pl Tue Feb 10 17:24:44 2009 UT
#
# See tools/dev/install_files.pl for documentation on the
# format of this file.
@@ -2317,7 +2317,6 @@
lib/Parrot/Docs/Item.pm [devel]
lib/Parrot/Docs/POD2HTML.pm [devel]
lib/Parrot/Docs/Section.pm [devel]
-lib/Parrot/Docs/Section/BigNum.pm [devel]
lib/Parrot/Docs/Section/C.pm [devel]
lib/Parrot/Docs/Section/Compilers.pm [devel]
lib/Parrot/Docs/Section/Config.pm [devel]
Deleted: trunk/lib/Parrot/Docs/Section/BigNum.pm
==============================================================================
--- trunk/lib/Parrot/Docs/Section/BigNum.pm Tue Feb 10 17:28:11 2009 (r36545)
+++ /dev/null 00:00:00 1970 (deleted)
@@ -1,61 +0,0 @@
-# Copyright (C) 2004-2006, The Perl Foundation.
-# $Id$
-
-=head1 NAME
-
-Parrot::Docs::Section::BigNum - Big Number documentation section
-
-=head1 SYNOPSIS
-
- use Parrot::Docs::Section::BigNum;
-
-=head1 DESCRIPTION
-
-A documentation section describing Parrot's big number subsystem.
-
-=head2 Class Methods
-
-=over
-
-=cut
-
-package Parrot::Docs::Section::BigNum;
-
-use strict;
-use warnings;
-
-use base qw( Parrot::Docs::Section );
-
-=item C<new()>
-
-Returns a new section.
-
-=cut
-
-sub new {
- my $self = shift;
-
- return $self->SUPER::new(
- 'Big Number Arithmetic',
- 'bignum.html',
- '',
- $self->new_group(
- 'Decimal Arithmetic',
- '', $self->new_item( '', 'src/bignum.c', 'src/bignum.h' ),
- ),
- $self->new_group( 'Testing', '', $self->new_item( '', 't/pmc/bignum.t' ), ),
- );
-}
-
-=back
-
-=cut
-
-1;
-
-# Local Variables:
-# mode: cperl
-# cperl-indent-level: 4
-# fill-column: 100
-# End:
-# vim: expandtab shiftwidth=4:
Modified: trunk/lib/Parrot/Docs/Section/Parrot.pm
==============================================================================
--- trunk/lib/Parrot/Docs/Section/Parrot.pm Tue Feb 10 17:02:28 2009 (r36545)
+++ trunk/lib/Parrot/Docs/Section/Parrot.pm Tue Feb 10 17:28:11 2009 (r36546)
@@ -41,7 +41,6 @@
use Parrot::Docs::Section::Perl;
use Parrot::Docs::Section::Libs;
use Parrot::Docs::Section::Tools;
-use Parrot::Docs::Section::BigNum;
use Parrot::Docs::Section::Compilers;
use Parrot::Docs::Section::Languages;
use Parrot::Docs::Section::Config;
@@ -65,7 +64,6 @@
Parrot::Docs::Section::C->new, Parrot::Docs::Section::Ops->new,
Parrot::Docs::Section::IMCC->new, Parrot::Docs::Section::Perl->new,
Parrot::Docs::Section::Libs->new, Parrot::Docs::Section::Tools->new,
- Parrot::Docs::Section::BigNum->new, Parrot::Docs::Section::Compilers->new,
Parrot::Docs::Section::Languages->new, Parrot::Docs::Section::Config->new,
Parrot::Docs::Section::Tests->new, Parrot::Docs::Section::EditorPlugins->new,
);
@@ -130,8 +128,6 @@
=item C<Parrot::Docs::Section::Tools>
-=item C<Parrot::Docs::Section::BigNum>
-
=item C<Parrot::Docs::Section::Compilers>
=item C<Parrot::Docs::Section::Languages>
More information about the parrot-commits
mailing list