Author: bernhard
Date: Mon Jan 16 11:13:20 2006
New Revision: 11218
Modified:
trunk/RESPONSIBLE_PARTIES
trunk/config/gen/makefiles/languages.in
trunk/languages/forth/README
trunk/languages/scheme/README
trunk/lib/Parrot/Docs/Section/Languages.pm
Log:
LANGUAGES.STATUS is now LANGUAGES.STATUS.pod
Modified: trunk/RESPONSIBLE_PARTIES
==============================================================================
--- trunk/RESPONSIBLE_PARTIES (original)
+++ trunk/RESPONSIBLE_PARTIES Mon Jan 16 11:13:20 2006
@@ -16,4 +16,4 @@ Misc core stuff Leopold
Debian packaging Florian Ragwitz
Test suite Jerry Gay
-See also languages/LANGUAGES.STATUS for language authors/maintainers.
+See also languages/LANGUAGES.STATUS.pod for language authors/maintainers.
Modified: trunk/config/gen/makefiles/languages.in
==============================================================================
--- trunk/config/gen/makefiles/languages.in (original)
+++ trunk/config/gen/makefiles/languages.in Mon Jan 16 11:13:20 2006
@@ -57,7 +57,7 @@ help:
@echo " make <lang>"
@echo " make <lang>.test"
@echo " make <lang>.clean"
- @echo "For the status of individual languages see LANGUAGES.STATUS"
+ @echo "For the status of individual languages see LANGUAGES.STATUS.pod"
@echo ""
test: all
Modified: trunk/languages/forth/README
==============================================================================
--- trunk/languages/forth/README (original)
+++ trunk/languages/forth/README Mon Jan 16 11:13:20 2006
@@ -3,4 +3,4 @@ Forth
See forth.pod
-Also see ../LANGUAGES.STATUS
+Also see ../LANGUAGES.STATUS.pod
Modified: trunk/languages/scheme/README
==============================================================================
--- trunk/languages/scheme/README (original)
+++ trunk/languages/scheme/README Mon Jan 16 11:13:20 2006
@@ -3,4 +3,4 @@ Scheme
No documentation available.
-Also see ../LANGUAGES.STATUS
+Also see ../LANGUAGES.STATUS.pod
Modified: trunk/lib/Parrot/Docs/Section/Languages.pm
==============================================================================
--- trunk/lib/Parrot/Docs/Section/Languages.pm (original)
+++ trunk/lib/Parrot/Docs/Section/Languages.pm Mon Jan 16 11:13:20 2006
@@ -7,7 +7,7 @@ Parrot::Docs::Section::Languages - Langu
=head1 SYNOPSIS
- use Parrot::Docs::Section::Languages;
+ use Parrot::Docs::Section::Languages;
=head1 DESCRIPTION
@@ -34,37 +34,37 @@ Returns a new section.
sub new
{
- my $self = shift;
-
- return $self->SUPER::new(
- 'Language Implementations', 'languages.html', '',
- $self->new_item('', 'languages/LANGUAGES.STATUS'),
- $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('Regex', 'regex.html', '',
'languages/regex'),
- $self->new_section('Cola', 'cola.html', '', 'languages/cola'),
- $self->new_section('TCL', 'tcl.html', '', 'languages/tcl'),
- $self->new_section('Scheme', 'scheme.html', '',
'languages/scheme'),
- $self->new_section('URM', 'urm.html', '', 'languages/urm'),
- $self->new_section('Ruby', 'ruby.html', '', 'languages/ruby'),
- $self->new_section('Language Conversion', 'conversion.html',
'',
- 'languages/converter.pl', 'languages/conversion'),
- $self->new_section('miniperl', 'miniperl.html', '',
'languages/miniperl'),
- $self->new_section('Befunge', 'befunge.html', '',
'languages/befunge'),
- $self->new_section('Forth', 'forth.html', '',
'languages/forth'),
- $self->new_section('BF', 'bf.html', '', 'languages/bf'),
- $self->new_section('Ook!', 'ook.html', '', 'languages/ook'),
- $self->new_section('Python', 'python.html', '',
'languages/python'),
- $self->new_section('PASM', 'pasm.html', '',
'languages/parrot_compiler'),
- $self->new_section('Lua', 'lua.html', '', 'languages/lua'),
- );
+ my $self = shift;
+
+ 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('Regex', 'regex.html', '', 'languages/regex'),
+ $self->new_section('Cola', 'cola.html', '', 'languages/cola'),
+ $self->new_section('TCL', 'tcl.html', '', 'languages/tcl'),
+ $self->new_section('Scheme', 'scheme.html', '',
'languages/scheme'),
+ $self->new_section('URM', 'urm.html', '', 'languages/urm'),
+ $self->new_section('Ruby', 'ruby.html', '', 'languages/ruby'),
+ $self->new_section('Language Conversion', 'conversion.html', '',
+ 'languages/converter.pl',
'languages/conversion'),
+ $self->new_section('miniperl', 'miniperl.html', '',
'languages/miniperl'),
+ $self->new_section('Befunge', 'befunge.html', '',
'languages/befunge'),
+ $self->new_section('Forth', 'forth.html', '', 'languages/forth'),
+ $self->new_section('BF', 'bf.html', '', 'languages/bf'),
+ $self->new_section('Ook!', 'ook.html', '', 'languages/ook'),
+ $self->new_section('Python', 'python.html', '',
'languages/python'),
+ $self->new_section('PASM', 'pasm.html', '',
'languages/parrot_compiler'),
+ $self->new_section('Lua', 'lua.html', '', 'languages/lua'),
+ );
}
=back