Skip Menu |

This queue is for tickets about the ConfigReader CPAN distribution.

Report information
The Basics
Id: 689
Status: open
Priority: 0/
Queue: ConfigReader

People
Owner: Nobody in particular
Requestors: gstewart [...] ctcnet.com
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: (no value)
Fixed in: (no value)



Subject: ConfigReader::DirectiveStyle
ConfigReader::DirectiveStyle has 2 errors (broken brackets) *** ERROR: unterminated C<...> at line 43 in file Values.pm *** ERROR: unterminated C<...> at line 80 in file Values.pm /usr/bin/make -- OK line 43 reads "=head2 C<directive($directive, [$parser, [$default, [$whence]]])" line 43 should read "=head2 C<directive($directive, [$parser, [$default, [$whence]]]>" line 80 reads "=head2 C<required($directive, [$parser, [$whence]])" line 80 should read "=head2 C<required($directive, [$parser, [$whence]]>"
From: jtk
[guest - Thu May 30 10:13:18 2002]: Show quoted text
> line 43 reads "=head2 C<directive($directive, [$parser, [$default, > [$whence]]])" > > line 43 should read > > "=head2 C<directive($directive, [$parser, [$default, [$whence]]]>" > > line 80 reads "=head2 C<required($directive, [$parser, [$whence]])" > > line 80 should read > > "=head2 C<required($directive, [$parser, [$whence]]>"
Actually this is not quite right, they should be changed as follows: $ diff -u Values.pm Values.pm.new --- Values.pm 1996-02-19 10:16:57.000000000 -0600 +++ Values.pm.new 2004-07-07 11:06:40.000000000 -0500 @@ -40,7 +40,7 @@ =head1 USER METHODS -=head2 C<directive($directive, [$parser, [$default, [$whence]]]) +=head2 C<directive($directive, [$parser, [$default, [$whence]]])> Defines a directive named $directive for the configuration file. You may optionally specify a parsing function or method for the directive, @@ -77,7 +77,7 @@ } -=head2 C<required($directive, [$parser, [$whence]]) +=head2 C<required($directive, [$parser, [$whence]])> Defines a directive which must be specified in the configuration file.
From: jtk
[guest - Thu May 30 10:13:18 2002]: Show quoted text
> line 43 reads "=head2 C<directive($directive, [$parser, [$default, > [$whence]]])" > > line 43 should read > > "=head2 C<directive($directive, [$parser, [$default, [$whence]]]>" > > line 80 reads "=head2 C<required($directive, [$parser, [$whence]])" > > line 80 should read > > "=head2 C<required($directive, [$parser, [$whence]]>"
Actually this is not quite right, they should be changed as follows: $ diff -u Values.pm Values.pm.new --- Values.pm 1996-02-19 10:16:57.000000000 -0600 +++ Values.pm.new 2004-07-07 11:06:40.000000000 -0500 @@ -40,7 +40,7 @@ =head1 USER METHODS -=head2 C<directive($directive, [$parser, [$default, [$whence]]]) +=head2 C<directive($directive, [$parser, [$default, [$whence]]])> Defines a directive named $directive for the configuration file. You may optionally specify a parsing function or method for the directive, @@ -77,7 +77,7 @@ } -=head2 C<required($directive, [$parser, [$whence]]) +=head2 C<required($directive, [$parser, [$whence]])> Defines a directive which must be specified in the configuration file.
On Чтв. Май 30 10:13:18 2002, guest wrote: Show quoted text
> ConfigReader::DirectiveStyle > > > has 2 errors (broken brackets) > *** ERROR: unterminated C<...> at line 43 in file Values.pm > *** ERROR: unterminated C<...> at line 80 in file Values.pm > /usr/bin/make -- OK > > > line 43 reads "=head2 C<directive($directive, [$parser, [$default, > [$whence]]])" > > line 43 should read > > "=head2 C<directive($directive, [$parser, [$default, [$whence]]]>" > > line 80 reads "=head2 C<required($directive, [$parser, [$whence]])" > > line 80 should read > > "=head2 C<required($directive, [$parser, [$whence]]>"