www.parrotcode.org | Last Release: 0.7.0 "Severe Macaw"
Set by moderator on 28 August 2008.
dalek r30625 | Whiteknight++ | gsoc_pdd09: 00:02
: [gsoc_pdd09] flesh out this idea of duplicating flags (or possibly using one set in lieu of the other).
diff: www.parrotvm.org/svn/parrot/revision?rev=30625
00:04 bacek_ joined 00:18 AndyA joined 00:23 Limbic_Region joined 01:18 rurban_ joined 01:29 petdance joined
dalek r30626 | jkeenan++ | trunk: 02:15
: Eliminate import of init::defaults; these tests don't need it.
diff: www.parrotvm.org/svn/parrot/revision?rev=30626
r30627 | jkeenan++ | trunk: 02:17
: Add comment about way in which test needs fixing.
diff: www.parrotvm.org/svn/parrot/revision?rev=30627
02:22 kid51 joined
dalek r30628 | jkeenan++ | trunk: 02:39
: Eliminate import of init::defaults; these tests don't need it.
diff: www.parrotvm.org/svn/parrot/revision?rev=30628
r30629 | jkeenan++ | trunk: 02:40
: Eliminate import of init::defaults; these tests don't need it.
diff: www.parrotvm.org/svn/parrot/revision?rev=30629
02:40 petdance left
dalek r30630 | jkeenan++ | trunk: 02:41
: Eliminate import of init::defaults; these tests don't need it.
diff: www.parrotvm.org/svn/parrot/revision?rev=30630
02:47 dmknopp joined
dalek r30631 | jkeenan++ | trunk: 02:50
: Eliminate import of init::defaults; these tests don't need it.
diff: www.parrotvm.org/svn/parrot/revision?rev=30631
03:07 tetragon joined 03:53 jdv79 left 04:55 Zaba_ joined 05:16 bacek joined 05:23 Psyche^ joined, Zaba joined 05:30 tetragon joined 05:38 Khisanth joined 05:51 tetragon joined 06:08 Ademan joined 06:20 uniejo joined 06:25 Debolaz joined 06:38 masak joined 06:49 bacek joined 06:53 iblechbot joined 06:59 gmansi joined, bacek joined 07:17 magnachef_ joined 07:19 allison joined 07:53 viklund joined 08:08 Ademan joined
masak jonathan, pmichaud: ping 08:13
08:26 allison joined 09:19 rurban_ joined
dalek r30632 | kjs++ | trunk: 09:23
: [pdd19] list all PIR reserved words.
diff: www.parrotvm.org/svn/parrot/revision?rev=30632
09:33 gmansi joined 09:48 gaz joined 10:07 gmansi joined 10:10 Ademan joined
dalek r30633 | kjs++ | trunk: 10:14
: [pdd19] remove a previously added line of mine which I no longer understand myself. Something about subroutine identifiers and hiding opnames.
diff: www.parrotvm.org/svn/parrot/revision?rev=30633
10:26 rba joined 10:27 Whiteknight joined 10:47 gmansi joined 11:06 gmansi joined 11:07 tewk joined 11:30 cognominal joined 11:31 gmansi joined 11:54 Ademan joined 12:41 iblechbot joined 12:59 petdance joined 13:26 jhorwitz joined 13:40 AndyA joined 13:56 AndyA joined
rurban Wink, wink: I have two patches waiting for the cygwin070patches branch. At the parrot-porters list. 14:16
14:20 ejs joined
rurban I'll go surfing now for about 1.5 hrs. bye 14:37
dalek r30634 | pmichaud++ | trunk: 15:04
: [pge]: Fix escaping problem in names and arguments (RT #58452)
: * Fix based on report and patch courtesy Marcelo Serra Castilhos <mhelix@terra.com.br>
diff: www.parrotvm.org/svn/parrot/revision?rev=30634
r30635 | pmichaud++ | trunk: 15:05
: [rakudo]: spectest-progress.csv update: 132 files, 2351 passing tests
diff: www.parrotvm.org/svn/parrot/revision?rev=30635
15:24 kj joined
dalek r30636 | tene++ | trunk: 15:25
: [cardinal]
: * Minor doc fixes
: * Array::size
: * Array::slice
: Courtesy of Damiain Knopp (dmknopp++)
diff: www.parrotvm.org/svn/parrot/revision?rev=30636
NotFound In compiler.faq is mentioned the BUILD property as a way to specify a constructor. Is this supposed the work in the current state? I see the 'BUILD' word only in an unused function in oo.d, and in examples/sdl/tetris, that I can't test now. 15:55
oo.c, I mean
16:00 mj41_ joined, rurban_ joined
kj NotFound: on BUILD: I think this is no longer used 16:10
NotFound And there is a ticket for CONSTRUCT that looks that is no longer user, also. 16:12
dalek r30637 | julianalbo++ | trunk: 16:58
: delete several unused functions from oo.c
diff: www.parrotvm.org/svn/parrot/revision?rev=30637
17:21 Ron joined 18:19 Zaba_ joined 18:27 particle joined 18:31 dmknopp joined 18:49 Whiteknight joined 19:35 Whiteknight joined 19:57 cotto_w0rk joined 20:29 kj joined
particle is there a utility i can use to display a single line of a file? 20:30
pmichaud particle: grep? 20:31
purl ACK!
particle like: svn blame foo.pl | showme line 49
PerlJam cat + grep, head + tail
etc.
pmichaud particle: head ?
purl head is int+int+pointer or www.haitianconnection.com/ALBUMS/ki...wjob01.gif
particle cat readme | head -n 14 | tail -n 1 20:32
works, thanks
it's ugly, but it works. unix at its best 20:33
PerlJam cat -n readme | grep '^ *14' # works too
particle hrmm 20:34
what i really want is something that can show me svn blame for a single line 20:35
obra what's the use case?
pmichaud by line number, or by something on the line?
particle i'm trying to find out who put a line of code in 20:36
but svn blame is a pain becase it'll spit out the whole file
PerlJam particle: svn blame can't tell you that
particle i know it's line 49
i just want blame for that line
PerlJam svn blame will only tell you the last person who touched that line
particle that'll tell me the rev, and i can check svn log
PerlJam (unless you cycle through versions) 20:37
particle right
blame on a single line is a part of the slowdown in the search 20:38
but it's an annoying part that seems easily fixable
obra Time to learn the svn api?
PerlJam seems like a witch hunt for some reason.
particle svn api won't help, i'm afraid 20:39
if the line was refactored from another file
i need to view the diffs to be sure of the line's pedigree
cotto_home purl, forget head 20:44
purl cotto_home: I forgot head
cotto_home is there a way to mess with environment variables in PIR without an Env PMC? 20:45
PerlJam cotto_home: unless you create such a way, afaik, no. :)
cotto_home ok
21:11 ejs joined
dalek r30638 | cotto++ | trunk: 21:28
: [pmc] PIRified several tests: same coverage but faster to run
diff: www.parrotvm.org/svn/parrot/revision?rev=30638
22:01 kid51 joined 22:06 Limbic_Region joined
dalek r30639 | jkeenan++ | trunk: 22:09
: Reverting to r29867 per failure report from fperrad.
diff: www.parrotvm.org/svn/parrot/revision?rev=30639 22:10
r30640 | jkeenan++ | trunk: 23:11
: Merge newsc branch into trunk, implementing Configuration-File interface to
: Configure.pl. Applying patch submitted in
: rt.perl.org/rt3/Ticket/Display.html?id=44315.
diff: www.parrotvm.org/svn/parrot/revision?rev=30640
r30641 | jkeenan++ | newsc:
: Branch has been merged into trunk and is no longer needed at HEAD.
diff: www.parrotvm.org/svn/parrot/revision?rev=30641
23:12 tetragon joined
dalek r30642 | jkeenan++ | newsc-30513: 23:13
: Branch to which tag corresponded has been merged into trunk; tag no longer needed.
diff: www.parrotvm.org/svn/parrot/revision?rev=30642
r30643 | jkeenan++ | trunk: 23:18
: Set SVN metadata properties on 3 recently contributed files (so that
: file_metadata.t passes again).
diff: www.parrotvm.org/svn/parrot/revision?rev=30643
r30644 | jkeenan++ | trunk: 23:22
: Rebreak a couple of lines in error reporting to prevent
: t/codingstd/linelength.t from failing.
diff: www.parrotvm.org/svn/parrot/revision?rev=30644
23:26 dmknopp joined