[svn:parrot-pdd] r14436 - in trunk: . docs/pdds editor

2006-09-05 Thread chip
Author: chip Date: Tue Sep 5 15:01:35 2006 New Revision: 14436 Modified: trunk/docs/pdds/pdd07_codingstd.pod Changes in other areas also in this revision: Added: trunk/editor/parrot.el (contents, props changed) Modified: trunk/ (props changed) trunk/editor/README.pod Log: Commit

[svn:parrot-pdd] r14435 - in trunk: . docs/pdds

2006-09-05 Thread chip
Author: chip Date: Tue Sep 5 15:01:18 2006 New Revision: 14435 Modified: trunk/docs/pdds/pdd07_codingstd.pod Changes in other areas also in this revision: Modified: trunk/ (props changed) Log: About 25% done with update of pdd07. Modified: trunk/docs/pdds/pdd07_codingstd.pod =

[svn:parrot-pdd] r14432 - in trunk: . docs/pdds

2006-09-05 Thread chip
Author: chip Date: Tue Sep 5 15:00:42 2006 New Revision: 14432 Modified: trunk/docs/pdds/pdd07_codingstd.pod Changes in other areas also in this revision: Modified: trunk/ (props changed) Log: Move pdd07 out of clip Modified: trunk/docs/pdds/pdd07_codingstd.pod ===

Re: [perl #40279] [CAGE] C coding standards coda.

2006-09-05 Thread jerry gay
On 9/5/06, via RT Will Coleda <[EMAIL PROTECTED]> wrote: From the recently updated pdd07: C source files, and files largely consisting of C (e.g. yacc, lex, PMC, and opcode source files), must end with this block: /* * Local variables: * c-file-style: "parrot" * End: * vim: expandtab

[perl #40279] [CAGE] C coding standards coda.

2006-09-05 Thread via RT
# New Ticket Created by Will Coleda # Please include the string: [perl #40279] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=40279 > From the recently updated pdd07: C source files, and files largely consisting of C (e.g

[perl #40278] [CAGE] perl coding standards coda.

2006-09-05 Thread via RT
# New Ticket Created by Will Coleda # Please include the string: [perl #40278] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=40278 > From the recently updated pdd07: Perl source files must end with this block: # Local V

Re: synopses on smoke server

2006-09-05 Thread jesse
On Tue, Sep 05, 2006 at 07:24:14PM +0300, Yuval Kogman wrote: > There are two other smoke servers to look into... > > One is written in Catalyst + DBIC, by yours truly. > > > http://dev.catalystframework.org/repos/Catalyst/trunk/examples/SmokeServer > > I've stopped working on it due t

Re: synopses on smoke server

2006-09-05 Thread Yuval Kogman
On Tue, Sep 05, 2006 at 12:26:32 -0400, jesse wrote: > Actually, it uses Jifty::DBI for its storage, but it's not a jifty app ;) Oh! > The _intent_ was to make the tool more general than the existing pugs > smoker. If we've somehow messed that up, I'd like to hear about it. Oh! I thought the A

Re: synopses on smoke server

2006-09-05 Thread jesse
> Actually, it uses Jifty::DBI for its storage, but it's not a jifty app ;) > > > http://search.cpan.org/dist/Test-Chimps/ > > > > It's further along, but is a little more specific to BP's workflow. > > The _intent_ was to make the tool more general than the existing pugs > smoker. If we've

Re: [svn:parrot-pdd] r14416 - in trunk: . docs/pdds

2006-09-05 Thread chromatic
On Tuesday 05 September 2006 10:42, [EMAIL PROTECTED] wrote: *snip* Did you mean the macros PERL_IN_* or PARROT_IN_*? -- c

#parrotsketch logs: 05SEP06

2006-09-05 Thread Will Coleda
http://www.parrotcode.org/misc/parrotsketch-logs/ irclog.parrotsketch-200609/irclog.parrotsketch.20060905 -- Will "Coke" Coleda [EMAIL PROTECTED]

[svn:parrot-pdd] r14419 - in trunk: . docs/pdds

2006-09-05 Thread chip
Author: chip Date: Tue Sep 5 10:42:52 2006 New Revision: 14419 Modified: trunk/docs/pdds/pdd07_codingstd.pod Changes in other areas also in this revision: Modified: trunk/ (props changed) Log: About 25% done with update of pdd07. Modified: trunk/docs/pdds/pdd07_codingstd.pod =

[svn:parrot-pdd] r14416 - in trunk: . docs/pdds

2006-09-05 Thread chip
Author: chip Date: Tue Sep 5 10:42:07 2006 New Revision: 14416 Added: trunk/docs/pdds/pdd07_codingstd.pod (contents, props changed) Changes in other areas also in this revision: Modified: trunk/ (props changed) Log: Move pdd07 out of clip Added: trunk/docs/pdds/pdd07_codingstd.pod =

Re: clarify: how WALK arguments can be combined

2006-09-05 Thread Mark Stosberg
Brad Bowman wrote: > Mark Stosberg wrote: >> In the Objects chapter, a WALK pseudo-class is spec'ed for using >> when calling sets of methods: >> >> http://feather.perl6.nl/syn/S12.html#Calling_sets_of_methods >> >> These are the arguments listed that can be used with WALK: >> >> :canonical

Re: synopses on smoke server

2006-09-05 Thread Yuval Kogman
There are two other smoke servers to look into... One is written in Catalyst + DBIC, by yours truly. http://dev.catalystframework.org/repos/Catalyst/trunk/examples/SmokeServer I've stopped working on it due to lack of interest - nobody seemed unhappy enough with the currrent smoke serve

synopses on smoke server

2006-09-05 Thread Christopher D. Malon
Agentz++ writes, in a Pugs blog comment: if someone can offer regular smoke results (i.e. the tests.yml generated by `make smoke'), we can render the Synopses on feather with smoke results as well The obvious way to get this to happen, for all runtimes, is to integrate the synopsis-with-s

Re: multi method dispatching of optional arguments (further refined)

2006-09-05 Thread Ruud H.G. van Tol
Ph. Marek schreef: > [Haskell] > SomeThing a b > | a = 4 : b+2 > | b = 3 : a+1 > | otherwise : a*b > > In Perl5 this looks like > > sub SomeThing > { > my($a, $b)[EMAIL PROTECTED]; > > return b+2 if ($a == 4); > return a+1 if ($b == 3); > return a*b; > } Or like: sub SomeThing

Re: cperl-mode.el: twigils and opers

2006-09-05 Thread Steffen Schwigon
Trey Harris <[EMAIL PROTECTED]> writes: > In a message dated Mon, 4 Sep 2006, Steffen Schwigon writes: >> First you could try an older revision, I recommend r7845 or r10822 of >> pugs repository. > > No, neither of those work. To see what I'm talking about, just create > a file containing: > > use