r26674 - docs/Perl6/Spec

2009-05-04 Thread pugs-commits
Author: lwall Date: 2009-05-04 23:23:49 +0200 (Mon, 04 May 2009) New Revision: 26674 Modified: docs/Perl6/Spec/S05-regex.pod docs/Perl6/Spec/S12-objects.pod Log: [S12] clarify has = semantics Modified: docs/Perl6/Spec/S05-regex.pod ==

CharLingua and Unicode locales

2009-05-04 Thread Helmut Wollmersdorfer
AFAIR in two Specs 'CharLingua' appears as - maybe - a leftover from the history of Perl 6. Whatever the idea of 'CharLingua' was, something nice-to-have would be support of locale-dependent processing in the sense of Unicode http://cldr.unicode.org/ Helmut Wollmersdorfer

Re: Docstrings in Perl 6

2009-05-04 Thread Hinrik Örn Sigurðsson
2009/5/4 Jon Lang : > With this in mind, I'd propose two forms of '#=', based on what comes > after the '='.  If it is followed by one or more '['s, you have > bracketed POD which is terminated by an equal number of ']'s; > otherwise, you have POD which is terminated at the end of the current > lin

S02 Names - Alphabetic?

2009-05-04 Thread Helmut Wollmersdorfer
http://perlcabal.org/syn/S02.html quote- Names [...] * An identifier is composed of an alphabetic character followed by any sequence of alphanumeric characters. The definitions of alphabetic and numeric include appropriate Unicode characters. Underscore is always considered alphab

Re: Docstrings in Perl 6

2009-05-04 Thread Jon Lang
This message deals strictly with the syntax of '#='-based POD; the semantics is a separate issue. -- I'd like '#=' to follow similar rules to what '#' follows, with the caveat that a line beginning with '#' counts as a single-line comment no matter what the second character is. Specifically, hav

r26668 - docs/Perl6/Spec

2009-05-04 Thread pugs-commits
Author: hinrik Date: 2009-05-04 18:34:57 +0200 (Mon, 04 May 2009) New Revision: 26668 Modified: docs/Perl6/Spec/S07-iterators.pod Log: [S07] fix the year in Last Modified date Modified: docs/Perl6/Spec/S07-iterators.pod === --- do

Re: Docstrings in Perl 6

2009-05-04 Thread Hinrik Örn Sigurðsson
2009/5/4 Hinrik Örn Sigurðsson : > Could Perl allow Pod blocks to be indented in #={ } comments? Maybe > the "local" beginning-of-line in the comment could be considered to be > at the position where the #={ appeared, or at the position of the > first whitespace character after it. I meant write /

Re: Docstrings in Perl 6

2009-05-04 Thread Hinrik Örn Sigurðsson
I suppose that #={ } would work like a normal Pod block which does not allow implicit code. That way you could keep it properly indented by default: class Foo; method bar ($x, $y) { #={Swaps $x and $y} ... } method baz ($a, @b) { #={ Takes $a, applies it to the values in @b Bl

Re: Docstrings in Perl 6

2009-05-04 Thread Hinrik Örn Sigurðsson
The only reason that Pod directives have to be at the beginning of the line is so that Pod parsers don't need to know Perl (or any other language) in order to extract Pod from files, right? Allowing them to be indented like I suggested would break that, but the tool would need to parse Perl in orde

Re: Docstrings in Perl 6

2009-05-04 Thread Hinrik Örn Sigurðsson
On Mon, May 4, 2009 at 12:30 PM, Charles Bailey wrote: > If the two can be made eqaully expressive (i.e. content is normal POD, > and multiple lines merged logically), I think I favor the pod-comment > form, since it allows one to place the doc close to the thing > documented - in particular, to t

Re: Docstrings in Perl 6

2009-05-04 Thread Charles Bailey
If the two can be made eqaully expressive (i.e. content is normal POD, and multiple lines merged logically), I think I favor the pod-comment form, since it allows one to place the doc close to the thing documented - in particular, to the head of the function definition. That's a convenience for the

Re: Docstrings in Perl 6

2009-05-04 Thread Mark Overmeer
* Hinrik ??rn Sigur??sson (hinrik@gmail.com) [090504 10:45]: > In Perl 5 I hate having Pod interleaved with code, since it is usually > mostly /user/ documentation and so just gets in the way. Having normal > Pod elsewhere (at end-of-file or in a different file) and keeping API > Pod docs inlin

Re: Docstrings in Perl 6

2009-05-04 Thread Hinrik Örn Sigurðsson
These two (generalized Pod comments and C are both better than my suggestion. :) They require less typing, so documenting at a finer granularity (e.g. object attributes) is easier. It would provide an opportunity for very thorough auto-generated documentation as outlined in Mark's 2007 post In Per

Re: Docstrings in Perl 6

2009-05-04 Thread Mark Overmeer
* Damian Conway (dam...@conway.org) [090504 00:03]: > Hinrik ?rn Sigur?sson wrote: > > I've been thinking lately about how Perl 6 might offer functionality > > similar to Python's docstrings. That is, documentation which is tied > > directly to a particular routine, class or module[1]. This is > >