Re: [svn:perl6-synopsis] r14485 - doc/trunk/design/syn

2008-01-17 Thread Moritz Lenz
[EMAIL PROTECTED] wrote: > The C<:ii> variant may be used on a substitution to change the > substituted string to the same case pattern as the matched string. > -Case info is carried across on a character by character basis. If > -the right string is longer than the left one, the case of the fi

Re: Extending Parrot NCI callback functionality

2008-01-17 Thread Paul Seamons
> I am starting to implement a GLUT and OpenGL binding for Parrot. GLUT > is extremely callback-oriented. You essentially can't do anything > beyond open the top-level window until callbacks are functional. You > can't even draw in that window -- the rendered image never actually > appears, and

Re: [svn:perl6-synopsis] r14485 - doc/trunk/design/syn

2008-01-17 Thread Ryan Richter
On Thu, Jan 17, 2008 at 10:57:11AM +0100, Moritz Lenz wrote: > what happens if some of the characters aren't cased at all, like white > spaces? > > my $str = "AB DE"; > $str ~~ s:ii/.*/abcde/; > > is the result ABcDE ? or is the space ignored and the substition is > performed as if $str was "ABDE

[svn:perl6-synopsis] r14490 - doc/trunk/design/syn

2008-01-17 Thread larry
Author: larry Date: Thu Jan 17 10:22:06 2008 New Revision: 14490 Modified: doc/trunk/design/syn/S05.pod Log: Clarifications suggested by moritz++ and rhr++ Modified: doc/trunk/design/syn/S05.pod == --- doc/trunk/desi

[svn:parrot-pdd] r24944 - trunk/docs/pdds/draft

2008-01-17 Thread chromatic
Author: chromatic Date: Thu Jan 17 11:28:43 2008 New Revision: 24944 Modified: trunk/docs/pdds/draft/pdd09_gc.pod Log: [PDD] Added yet another reference link to the GC PDD. Modified: trunk/docs/pdds/draft/pdd09_gc.pod ===

[svn:perl6-synopsis] r14491 - doc/trunk/design/syn

2008-01-17 Thread larry
Author: larry Date: Thu Jan 17 13:18:31 2008 New Revision: 14491 Modified: doc/trunk/design/syn/S02.pod Log: Define truthiness of standard types. Modified: doc/trunk/design/syn/S02.pod == --- doc/trunk/design/syn/S02

Re: Extending Parrot NCI callback functionality

2008-01-17 Thread Geoffrey Broadwell
On Wed, 2008-01-16 at 22:38 -0700, Paul Seamons wrote: > > I am starting to implement a GLUT and OpenGL binding for Parrot. > > I started down this path several months ago. The following is the thread on > the topic. > > http://tinyurl.com/3crzpu OK, read it now. I think I got a little farthe

Perl6::Doc - the next step

2008-01-17 Thread herbert breunung
hello dear list attendees after taken step 1 (reactivate p6doc and update to current state) and step 2 (perl.com articles)[thanks to all authors] , which is nearly finished (just fix some UTF problems) i have next plans. there are some interesting docs in the parrot svn regarding perl6 that a

Use of revision number in Perl6 and Parrot

2008-01-17 Thread ajr
Is there anyone familiar with the use (if any) of the revision number in the Perl 6 and Parrot code? It looks as though it might be possible to simplify some processes, but I'm having trouble tracking down evidence. If there's a maven on the topic, an explanation or some references, (maybe out-of

[perl #49898] [PATCH] .chars method for Str

2008-01-17 Thread Ævar Arnfjörð Bjarmason
binshuKZzIEr8.bin Description: Index: src/classes/Str.pir === --- src/classes/Str.pir (revision 24949) +++ src/classes/Str.pir (working copy) @@ -21,6 +21,11 @@ $P0('Perl6Str', 'Str') .end +.sub 'chars' :method +$S0 = se

[perl #49902] [PATCH][perl6] small glossary clarification

2008-01-17 Thread via RT
# New Ticket Created by Zev Benjamin # Please include the string: [perl #49902] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=49902 > May as well mention what Rakudo is in the glossary entry. Zev Index: languages/perl6/d

[perl #49886] [PATCH] languages/perl6 requires `=begin' to have a corrisponding ident. Remove that requirement

2008-01-17 Thread Ævar Arnfjörð Bjarmason
bin2lTUAakyKC.bin Description: Index: src/parser/grammar.pg === --- src/parser/grammar.pg (revision 24905) +++ src/parser/grammar.pg (working copy) @@ -111,8 +111,8 @@ token pod_comment { ^^ '=' <.unsp>? [ -

[perl #49900] [PATCH] Two arg substr implementation

2008-01-17 Thread Ævar Arnfjörð Bjarmason
bindC5wtFvE7f.bin Description: Index: t/01-sanity/07-substr.t === --- t/01-sanity/07-substr.t (revision 24949) +++ t/01-sanity/07-substr.t (working copy) @@ -1,9 +1,13 @@ use v6-alpha; -say "1..1"; +say "1..3"; my $string =

Re: [perl #49886] [PATCH] languages/perl6 requires `=begin' to have a corrisponding ident. Remove that requirement

2008-01-17 Thread Larry Wall
On Thu, Jan 17, 2008 at 12:34:23PM -0800, Ævar Arnfjörð Bjarmason via RT wrote: : Index: src/parser/grammar.pg : === : --- src/parser/grammar.pg (revision 24905) : +++ src/parser/grammar.pg (working copy) : @@ -111,8 +111,8 @@

[perl #49894] [PATCH] .true method for all objects

2008-01-17 Thread Ævar Arnfjörð Bjarmason
binwFiSNZdAhZ.bin Description:

Re: [svn:perl6-synopsis] r14491 - doc/trunk/design/syn

2008-01-17 Thread Patrick R. Michaud
On Thu, Jan 17, 2008 at 01:18:32PM -0800, [EMAIL PROTECTED] wrote: > +=item * > + > +The definition of C<.true> for the most ancestral type (that is, the > +C type) is equivalent to C<.defined>. Would we normally consider prefix: to be defined in terms of C<.true>, or vice versa? Is there a pre

Re: [perl #49886] [PATCH] languages/perl6 requires `=begin' to have a corrisponding ident. Remove that requirement

2008-01-17 Thread Patrick R. Michaud
On Thu, Jan 17, 2008 at 05:36:43PM -0800, Larry Wall wrote: > On Thu, Jan 17, 2008 at 12:34:23PM -0800, Ævar Arnfjörð Bjarmason via RT > wrote: > > : Index: src/parser/grammar.pg > : === > : --- src/parser/grammar.pg (revision 2490

[perl #49714] [PATCH] Extend perl6 spectest to fetch and execute S04-S29 tests

2008-01-17 Thread Jerry Gay via RT
applied as r24965. it's causing a heck of a lot of failing tests. however, i'll leave them in for a day or three, while we see what we can do to get them passing. hint: getting 'fudge' working on rakudo would do us a world of good. ~jerry

[perl #49902] [PATCH][perl6] small glossary clarification

2008-01-17 Thread Jerry Gay via RT
applied with minor modifications as r24966. ~jerry

Re: [perl #49458] [PATCH] Fix compiler error & warning in nanoparrot example

2008-01-17 Thread chromatic
On Sunday 06 January 2008 22:40:50 Geoffrey Broadwell wrote: > examples/c/nanoparrot.c can be compiled with any of three different > runloops. The default computed goto runloop compiles cleanly, but the > switched and function runloops do not. The attached patch gets rid of a > compiler error wh

Re: third PMC implementation task

2008-01-17 Thread chromatic
On Tuesday 08 January 2008 12:52:28 Allison Randal wrote: > Would be a good PMC cleanup to get in place, if this code can be removed. > Original Message > Subject: Zombie code? > Date: Wed, 2 Jan 2008 20:43:27 - (UTC) > From: [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > > > W