Author: bernhard
Date: Tue Jan 17 12:39:30 2006
New Revision: 11231

Modified:
   trunk/lib/Parrot/Docs/Section/C.pm
   trunk/lib/Parrot/Docs/Section/Docs.pm
   trunk/lib/Parrot/Docs/Section/Examples.pm
   trunk/lib/Parrot/Docs/Section/Info.pm
   trunk/lib/Parrot/Docs/Section/Languages.pm
Log:
Silence warnings during 'make html'.
Detabify some files below lib/Parrot/Docs.


Modified: trunk/lib/Parrot/Docs/Section/C.pm
==============================================================================
--- trunk/lib/Parrot/Docs/Section/C.pm  (original)
+++ trunk/lib/Parrot/Docs/Section/C.pm  Tue Jan 17 12:39:30 2006
@@ -180,8 +180,7 @@ sub new
             '',
             $self->c_item(
                 'Parrot Packfile API and utilities.', 
-                'pairs' => ['packfile'],
-                'sources' => ['packdump', 'packout', 'pdump', 'pf_items']
+                'contents' => ['src/packfile'],
             ),
             $self->c_source_item('', 'byteorder'),
         ),
@@ -240,11 +239,6 @@ sub new
             $self->c_pair_item('', 'extend'),
         ),
         $self->new_group(
-            'NCI', 
-            '',
-            $self->c_pair_item('', 'nci'),
-        ),
-        $self->new_group(
             'JIT', 
             '',
             $self->c_item(

Modified: trunk/lib/Parrot/Docs/Section/Docs.pm
==============================================================================
--- trunk/lib/Parrot/Docs/Section/Docs.pm       (original)
+++ trunk/lib/Parrot/Docs/Section/Docs.pm       Tue Jan 17 12:39:30 2006
@@ -55,7 +55,7 @@ sub new
                        $self->new_item('', 'docs/strings.pod'),
                        $self->new_item('', 'docs/memory_internals.pod'),
                        $self->new_item('', 'docs/parrotbyte.pod'),
-                       $self->new_item('', 'docs/packfile-c.pod'),
+                       $self->new_item('', 'docs/parrotbyte.pod'),
                        $self->new_item('', 'docs/jit.pod'),
                        $self->new_item('', 'docs/native_exec.pod'),
                        $self->new_item('', 'docs/running.pod'),

Modified: trunk/lib/Parrot/Docs/Section/Examples.pm
==============================================================================
--- trunk/lib/Parrot/Docs/Section/Examples.pm   (original)
+++ trunk/lib/Parrot/Docs/Section/Examples.pm   Tue Jan 17 12:39:30 2006
@@ -7,7 +7,7 @@ Parrot::Docs::Section::Examples - Exampl
 
 =head1 SYNOPSIS
 
-       use Parrot::Docs::Section::Examples;
+    use Parrot::Docs::Section::Examples;
 
 =head1 DESCRIPTION
 
@@ -37,18 +37,19 @@ Returns a new section.
 
 sub new
 {
-       my $self = shift;
-       
-       return $self->SUPER::new(
-               'Examples', 'examples.html', '',
-               $self->new_group('PASM and PIR', '', 'examples/assembly'),
-               $self->new_group('Subroutines', '', 'examples/subs'),
-               $self->new_group('IO', '', 'examples/io'),
-               $self->new_group('Streams', '', 'examples/streams'),
-               $self->new_group('Benchmarking', '', 'examples/benchmarks'),
-               $self->new_group('Speed Comparison', '', 'examples/mops'),
-               $self->new_group('Parrot Extensions', '', 'examples/nci'),
-       );
+    my $self = shift;
+    
+    return $self->SUPER::new(
+        'Examples', 'examples.html', '',
+            $self->new_group('PASM and PIR',         '', 'examples/pasm'),
+            $self->new_group('PIR',                  '', 'examples/pir'),
+            $self->new_group('Subroutines',          '', 'examples/subs'),
+            $self->new_group('IO',                   '', 'examples/io'),
+            $self->new_group('Streams',              '', 'examples/streams'),
+            $self->new_group('Benchmarking',         '', 
'examples/benchmarks'),
+            $self->new_group('Speed Comparison',     '', 'examples/mops'),
+            $self->new_group('Native Call Interface','', 'examples/nci'),
+    );
 }
 
 =back

Modified: trunk/lib/Parrot/Docs/Section/Info.pm
==============================================================================
--- trunk/lib/Parrot/Docs/Section/Info.pm       (original)
+++ trunk/lib/Parrot/Docs/Section/Info.pm       Tue Jan 17 12:39:30 2006
@@ -1,4 +1,4 @@
-# Copyright: 2004 The Perl Foundation.  All Rights Reserved.
+# Copyright: 2004-2006 The Perl Foundation.  All Rights Reserved.
 # $Id$
 
 =head1 NAME
@@ -7,7 +7,7 @@ Parrot::Docs::Section::Info - Project in
 
 =head1 SYNOPSIS
 
-       use Parrot::Docs::Section::Info;
+    use Parrot::Docs::Section::Info;
 
 =head1 DESCRIPTION
 
@@ -34,41 +34,41 @@ Returns a new section.
 
 sub new
 {
-       my $self = shift;
-       
-       return $self->SUPER::new(
-               'Project Information', 
-               'info.html', 
-               'The conventional, generally all-caps, project information 
files which contain assorted bits and pieces of information about the 
distribution.',
-               $self->new_group('Documentation', '',
-                       $self->new_item('General information about licences, 
prerequisites, and building instructions.', 'README'),
-                       $self->new_item('This file lists what\'s new in each 
version.', 'NEWS'),
-                       $self->new_item('A plan for Parrot.', 'docs/ROADMAP'),
-                       $self->new_item('A list of things that need doing in 
Parrot.', 'TODO'),
-                       $self->new_item('This is a description of the steps 
someone should follow when they have to prepare a new version for release.', 
'RELEASE_INSTRUCTIONS'),
-               ),
-               $self->new_group('Legal', '',
-                       $self->new_item('The licences under which Parrot is 
distributed.', 'LICENSES/Artistic', 'LICENSES/gpl.txt'),
-               ),
-               $self->new_group('Status', '',
-                       $self->new_item('A table showing which aspects of 
Parrot run on various platforms.', 'PLATFORMS'),
-                       $self->new_item('Contains the version number of the 
distribution.', 'VERSION'),
-                       $self->new_item('The presence of this file indicates 
that the distribution is a development version.', 'DEVELOPING'),
-               ),
-               $self->new_group('People', '',
-                       $self->new_item('A list of some of the Parrot 
developers with SVN commit access.', 'RESPONSIBLE_PARTIES'),
-                       $self->new_item('A list of some of people who have 
contributed to Parrot.', 'CREDITS'),
-               ),
-               $self->new_group('Contents', 'See the 
<code>ExtUtils::Manifest</code> documentation for more information about 
MANIFEST files.',
-                       $self->new_item('Lists all the files in the 
distribution, with their metadata.', 'MANIFEST'),
-                       $self->new_item('Lists all the generated files, i.e. 
the files that will be added to the distribution after configuration and 
installing.', 'MANIFEST.generated'),
-                       $self->new_item('Specifies the files to leave out of 
MANIFEST.', 'MANIFEST.SKIP'),
-               ),
-               $self->new_group('History', '',
-                       $self->new_item('Provide a timeline of changes made to 
the project.', 'ChangeLog'),
-                       $self->new_item('Documents incompatible changes to 
Parrot that invalidate existing bytecode files. This is the new experimental 
alternative to the fingerprint produced by tools/build/fingerprint_c.pl.', 
'PBC_COMPAT'),
-               ),
-       );
+    my $self = shift;
+    
+    return $self->SUPER::new(
+        'Project Information', 
+        'info.html', 
+        'The conventional, generally all-caps, project information files which 
contain assorted bits and pieces of information about the distribution.',
+        $self->new_group('Documentation', '',
+            $self->new_item('General information about licences, 
prerequisites, and building instructions.', 'README'),
+            $self->new_item('This file lists what\'s new in each version.', 
'NEWS'),
+            $self->new_item('A plan for Parrot.', 'docs/ROADMAP.pod'),
+            $self->new_item('A list of things that need doing in Parrot.', 
'TODO'),
+            $self->new_item('This is a description of the steps someone should 
follow when they have to prepare a new version for release.', 
'RELEASE_INSTRUCTIONS'),
+        ),
+        $self->new_group('Legal', '',
+            $self->new_item('The licences under which Parrot is distributed.', 
'LICENSES/Artistic', 'LICENSES/gpl.txt'),
+        ),
+        $self->new_group('Status', '',
+            $self->new_item('A table showing which aspects of Parrot run on 
various platforms.', 'PLATFORMS'),
+            $self->new_item('Contains the version number of the 
distribution.', 'VERSION'),
+            $self->new_item('The presence of this file indicates that the 
distribution is a development version.', 'DEVELOPING'),
+        ),
+        $self->new_group('People', '',
+            $self->new_item('A list of some of the Parrot developers with SVN 
commit access.', 'RESPONSIBLE_PARTIES'),
+            $self->new_item('A list of some of people who have contributed to 
Parrot.', 'CREDITS'),
+        ),
+        $self->new_group('Contents', 'See the <code>ExtUtils::Manifest</code> 
documentation for more information about MANIFEST files.',
+            $self->new_item('Lists all the files in the distribution, with 
their metadata.', 'MANIFEST'),
+            $self->new_item('Lists all the generated files, i.e. the files 
that will be added to the distribution after configuration and installing.', 
'MANIFEST.generated'),
+            $self->new_item('Specifies the files to leave out of MANIFEST.', 
'MANIFEST.SKIP'),
+        ),
+        $self->new_group('History', '',
+            $self->new_item('Provide a timeline of changes made to the 
project.', 'ChangeLog'),
+            $self->new_item('Documents incompatible changes to Parrot that 
invalidate existing bytecode files. This is the new experimental alternative to 
the fingerprint produced by tools/build/fingerprint_c.pl.', 'PBC_COMPAT'),
+        ),
+    );
 }
 
 =back

Modified: trunk/lib/Parrot/Docs/Section/Languages.pm
==============================================================================
--- trunk/lib/Parrot/Docs/Section/Languages.pm  (original)
+++ trunk/lib/Parrot/Docs/Section/Languages.pm  Tue Jan 17 12:39:30 2006
@@ -39,14 +39,13 @@ sub new
    return $self->SUPER::new(
               'Language Implementations', 'languages.html', '',
               $self->new_item('', 'languages/LANGUAGES.STATUS.pod'),
-              $self->new_section('Perl6', 'perl6.html', '', 'languages/perl6'),
               $self->new_section('Jako', 'jako.html', '', 'languages/jako'),
               $self->new_section('M4', 'm4.html', '', 'languages/m4'),
               $self->new_section('BASIC', 'basic.html', '',
-                  $self->new_section('BASIC Interpreter', 
'basic_interpreter.html', 
-                                     '', 'languages/BASIC/interpreter'),
-                  $self->new_section('BASIC Compiler', 'basic_compiler.html', 
-                                     '', 'languages/BASIC/compiler'),
+              $self->new_section('BASIC Interpreter', 
'basic_interpreter.html', 
+                                 '', 'languages/BASIC/interpreter'),
+              $self->new_section('BASIC Compiler', 'basic_compiler.html', 
+                                 '', 'languages/BASIC/compiler'),
                                 ),
               $self->new_section('Regex', 'regex.html', '', 'languages/regex'),
               $self->new_section('Cola', 'cola.html', '', 'languages/cola'),

Reply via email to