Index

Show enters and exits. Hide enters and exits.

00:03:14Fullmoon enters the room.
00:03:26jbarnette_ enters the room.
00:04:47jbarnette leaves the room.
00:05:45nicksieger leaves the room.
00:06:16shame leaves the room.
00:06:33nicksieger enters the room.
00:06:47imajes_ enters the room.
00:12:58shame enters the room.
00:15:19shame leaves the room.
00:16:03shame enters the room.
00:17:49qrush leaves the room.
00:22:58fizx enters the room.
00:26:17jbarnette enters the room.
00:26:49jbarnette_ leaves the room.
00:29:57twbray leaves the room.
00:59:12botanicus leaves the room.
01:01:31fizx leaves the room.
01:07:55imajes_ enters the room.
01:08:19imajes leaves the room.
01:10:42jbarnette leaves the room.
01:11:05drbrainwhere should current_thread(STATE); go?
01:11:11drbrainshould it be static on VM?
01:11:30imajes enters the room.
01:11:36drbrainwe already have VM::current_thread(), but that can't be used for the primitive
01:11:46drbrainevan: ^^
01:11:55imajes_ leaves the room.
01:12:19evanshould be
01:12:27evanstatic Thread::current(STATE);
01:12:32evanstatic Thread* Thread::current(STATE);
01:12:35evanrather
01:12:40drbrainok
01:12:59drbrainwas there a reason why VM::current_thread() returned Qnil?
01:13:03drbrainI fixed it
01:13:43evanit wasn't implement.d
01:13:50evanis why.
01:15:28imajes leaves the room.
01:16:05imajes enters the room.
01:19:03nicksieger leaves the room.
01:32:43trythil enters the room.
01:35:26trythil leaves the room.
01:35:38trythil enters the room.
01:36:47lopex enters the room.
01:39:30fbuilesv enters the room.
01:40:30lopex leaves the room.
01:47:37CIA-30* fixnum_add and fixnum_sub are really add and sub.; 2366ead - Eric Hodel
01:47:39CIA-30* Implement VM::current_thread().; 6f546f0 - Eric Hodel
01:47:41CIA-30* Implement thread_current primitive.; cd5d2ff - Eric Hodel
01:48:27ezmobius leaves the room.
01:49:37evandrbrain: please revert your fixnum_add commit
01:49:44drbrainwhy?
01:49:53evancause we changed the name.
01:49:58evanthat was changed in my list
01:50:00drbrainwhen?
01:50:07evanto make them consistent
01:50:11evanway back when
01:50:17evanwhen dbussink implemented those
01:50:22drbrainare they changed in shotgun too?
01:50:25evanno
01:50:34evanbut we've using this opertunity to fix that.
01:50:44drbrainthen how is it going to work?
01:50:55evanhow would it not work?
01:51:05evanthe kernel will just have them hooked up as fixnum_add instead of add
01:51:35drbrainthen we should change it in shotgun first
01:51:39drbrainor, now
01:51:42evanno
01:51:44evanwe should not
01:51:49evanthat has no benefit
01:52:03drbrainright now it's confusing me
01:52:14evanwell, there are only a couple
01:52:24drbrainis it open season on primitive reanames?
01:52:28evanyes.
01:52:43evanthey need to be consistent though.
01:52:51evannaming them drbrain_rocks isn't allowed.
01:53:02drbraincan we please make them on both sides so that we're not groping around in the dark when we finally plug the kernel in?
01:53:05drbrainof course
01:53:22evanif it confuses you
01:53:29evanthen go right ahead.
01:53:33evando it on both sides.
01:53:35drbrainok
01:54:33drbrainI would like to see grep defprim shotgun/lib/primitives.rb match up with grep Ruby.primitive vm/**/*hpp
01:54:48evani can tell.
01:54:49drbrainotherwise it gets difficult to figure our done-ness
01:55:12evanbad drbrain!
01:55:16evanyou're forgetting return statements
01:55:29evanand not paying attention to warnings
01:55:32drbrainI did?
01:55:38evanvm/builtin/thread.cpp:29: warning: control reaches end of non-void function
01:55:47evanyou didn't return current_thread()
01:56:07drbrainah, shit, it's burried in there with the other things that don't need to be recompiled
01:56:16dgtized_ enters the room.
01:56:32evanthats why terse mode is important
01:56:39evanit makes warnings very obvious
01:57:10evanactually, i'm going to turn on -Werror
01:57:14evanso all warnings are errors.
01:58:04drbrainyes, please
01:58:25ijcd_ leaves the room.
01:59:05zenspiderYAY! _halved_ the number of dependencies
01:59:13drbrainis it OBJECT VM::current_thread() for a reason?
01:59:20evancause it was a stub.
01:59:22drbrainor is Thread * now appropriate
01:59:27evanit must be Thread*
01:59:59drbrainwhere is the star supposed to go?
02:00:04dgtized leaves the room.
02:00:04drbrainbecause I see both in this code
02:00:09evanon the left
02:00:14evansome old code has it on the right
02:00:17evanshould be on the left.
02:00:20drbrainVM *state; Exception* new_exception
02:00:25evanoh oh.
02:00:45evanwhere do you see that?
02:00:53zenspiderit should go on the var name, if anything
02:00:58evanno
02:01:03drbrainVM *state; from tests
02:01:05evanplease lets not chaneg it.
02:01:08zenspiderVM *state is idiomatic
02:01:12drbrainException* new_exception from vm/vm.hpp
02:01:20aotearoa enters the room.
02:01:22evanalmost everything has it on the left.
02:01:34evanlets leave it that way.
02:01:40drbraincpu.h has it on the right
02:01:45evanold code.
02:01:46zenspiderwhat happens if there are two vars on that line?
02:01:51evanC++ style is to have it on the left
02:01:53drbraintypdef struct rubinius_cpu *cpu; and IP_TYPE *data;
02:02:03evandrbrain: old.
02:02:06zenspiderVM* ptr, * xxx
02:02:13zenspiderthat isn't right
02:02:18zenspiderVM *ptr, *xxx;
02:02:22zenspideris right
02:02:22evanzenspider: so don't do that. :)
02:02:58evanthen we're going to be wrong
02:03:11evanat least for now.
02:03:19zenspiderwhere should kind_of<Numeric> actually go?
02:03:28evangoing through and changing it is just silly right now.
02:03:41zenspiderwhere should kind_of<Numeric> actually go?
02:03:49evanI heard you the first time.
02:03:53evani'm looking.
02:04:41evanit should go with the other numeric related ones
02:04:43evani guess in a new header file.
02:04:57zenspiderno, it doesn't go in a header file
02:05:05CIA-30* Oh yeah, C++ isn't ruby.; f1fa512 - Eric Hodel
02:05:17evanzenspider: you're C++ is very rusty then.
02:05:21evanit very much does go in a header.
02:05:53evani tried putting them in .cpp files
02:05:54zenspiderno, it doesn't. it is only necessary to put unexpanded templates in headers, not expanded ones
02:05:56evanthey've never picked up
02:06:20evanif you can make it work
02:06:24evanput in somewheres
02:06:27evani don't really care.
02:06:33zenspiderin this case, it is a total screw, as the code compiles and links without this method at all
02:06:36evanzenspider: so, are you working now or not?
02:06:39zenspiderpasses tests the same as well
02:06:54evani've still got you on leave.
02:06:57zenspiderI told you what days I had off
02:07:05evantues and thurs
02:07:08evanis what you said
02:07:26zenspiderand every Friday
02:07:35evanwait
02:07:39evanso the jury duty is 2 days a week?
02:08:07zenspiderno, it is monday through thursday, as I stated in my email to the group
02:08:31evani'm confused.
02:08:35evanso you're not off tues and thurs?
02:08:47evanyou're right, i see here, you did say mon to thurs
02:08:57zenspiderI was off yesterday, obviously, and I have next tuesday off as well
02:09:21AndrewO enters the room.
02:10:09evanok, so they just happen to give ya those days off?
02:10:13evanit's not a regular thing
02:10:36zenspideryesterday was judge on vaca
02:10:51zenspidertuesday is witness scheduling conflicts I guess
02:11:19zenspiderstill slated to go to the 15th, currently
02:11:35evanok
02:13:59zenspiderSWEET... If eric builds, touches vm/builtin/io.hpp and builds again, he recompiles 51 files
02:14:03zenspiderI recompile 16
02:19:55rubuildius_amd64 leaves the room.
02:20:05rubuildius_ey64 leaves the room.
02:20:17zenspiderdamnit... all of the tests have broken dependencies as well... *crap*
02:20:40rubuildius_ey64 enters the room.
02:20:58rubuildius_amd64 enters the room.
02:21:58CIA-30* Revert fixnum_add and fixnum_sub renames, as shotgun matches now. This reverts commit 2366eada01cdebd518e150864b93cbdf60463430.; 7ed1110 - Eric Hodel
02:21:58CIA-30* add, sub now fixnum_add, fixnum_sub in shotgun; 2d64e34 - Eric Hodel
02:25:23VVSiz_ enters the room.
02:28:07Fullmoon leaves the room.
02:31:47wmoxam leaves the room.
02:32:22VVSiz leaves the room.
02:34:01ryanlowe_ enters the room.
02:45:09josb leaves the room.
02:51:07ryanlowe leaves the room.
03:03:37dysinger leaves the room.
03:13:56yasuhito enters the room.
03:14:22imajes leaves the room.
03:18:47yasuhito leaves the room.
03:27:35ijcd enters the room.
03:35:23ijcd leaves the room.
03:43:14robin_dewd enters the room.
04:00:41benburkert enters the room.
04:05:07mernen enters the room.
04:19:37blakewatters enters the room.
04:20:25yugui enters the room.
04:25:20AndrewO leaves the room.
04:25:42benburkert leaves the room.
04:26:21AndrewO enters the room.
04:39:05benburkert enters the room.
05:00:04trythil leaves the room.
05:18:28benburkert leaves the room.
05:34:55twbray enters the room.
05:36:40masswaves
05:36:48masslooks like its dead in here tonight though
05:37:30blakewatters leaves the room.
06:29:28mernen leaves the room.
06:49:15mutle leaves the room.
06:50:57twbray leaves the room.
06:52:35yugui leaves the room.
06:57:25dysinger enters the room.
06:58:37mutle enters the room.
07:07:14blakewatters enters the room.
07:27:38trythil enters the room.
07:33:11headius leaves the room.
07:51:18aotearoa leaves the room.
07:53:43zenspiderruns tests hoping for good results
07:53:56aotearoa enters the room.
07:55:50zenspideryay
07:55:54zenspiderpushing
08:05:32zenspiderCIA-30 goes how often?
08:11:20brixenit's usually pretty snappy
08:11:25brixenodd
08:12:13AndrewO leaves the room.
08:15:21shame leaves the room.
08:16:30zenspider*shrug*
08:16:35brixenmust still be issues with deps: http://gist.github.com/3725
08:17:13zenspiderCC ? is that on the c++ branch or master?
08:17:25brixencpp
08:17:30brixenI've got TERSE=1
08:19:36brixenwth? CC /var/folders/nt/nt6kERtqF1OYkYX48kcYm++++TI/-Tmp-/rake.19895.1.cpp
08:20:19zenspidercrap. yeah. I neglected to do an extra clean.
08:20:24zenspiderfixing now
08:22:21zenspiderI found some more dependencies to delete too... so it should be even better. :)
08:26:35zenspiderthere is still an odd dependency error on instructions_gen.rb... I just can't get the damn thing to force a rebuild
08:26:41zenspiderw/o deleting the header it generates
08:26:56brixenhmm
08:27:22zenspidereverything looks kosher
08:27:42krsh enters the room.
08:27:47zenspiderbut really I want to nix instructions.rb so it isn't creating 4 files every time
08:34:41zenspider*sigh* this rubypp thing is kicking my ass... totally retarded
08:42:30pluskid enters the room.
08:47:30pluskid leaves the room.
08:51:38zenspiderok. looks all fixed now. doing another clean just to make sure
08:51:47zenspiderremoved about 60 more deps too
08:52:02zenspiderdown to 49% the deps we had earlier today
08:52:32zenspiderpushed
08:52:36CIA-30* Added filename to generated file to help with debugging... automatically deleting all these files makes fixing this stuff a PITA; b3ef3ab - Ryan Davis
08:52:36CIA-30* More dependency fixes; a390c02 - Ryan Davis
08:52:45zenspiderthere you are
08:52:49zenspiderlazy bitch
09:03:50blakewatters leaves the room.
09:12:06michalw enters the room.
09:14:58krsh leaves the room.
09:30:11michalw leaves the room.
09:31:52Maledictus enters the room.
09:43:34CIA-30* Removed immediates from objects.hpp; 8b5bf93 - Ryan Davis
09:43:35CIA-30* thinned deps even more; fc429bb - Ryan Davis
09:43:56zenspiderWOOHOO!!! I broke under 1k deps!
09:44:08zenspider920 lines in .depends.mf now
09:44:13evanheh
09:44:15zenspidercompare that to 2100 at lunch
09:44:30evani'm open to suggestions other than rubypp
09:44:43evani like it better than having instructions.rb generate files
09:44:43zenspiderand more yesterday... maybe... not sure because eric was busy breaking .depends.mf
09:44:52evanwhich I know it still does, but I want to remove that
09:45:02zenspiderI would like to get rid of the tempfile stuff... that is really hard to debug
09:45:29evanwithout the temp file
09:45:31evanwe're generating files
09:45:40evanwhich seemed to be a real bitch in terms of deps
09:45:47zenspidermaybe make it so instructions.cpp is instructions_tmpl.cpp and creates instructions.cpp or into gen
09:46:09evanhm.
09:46:21zenspiderit's still a bitch, even worse now because of all the ensure unlink
09:46:46zenspiderI couldn't figure out WHAT was broken at all, between the file disappearing and the #line lines
09:47:05evanyeah, thats a pain.
09:47:15zenspiderI think I'd rather all generated content go into gen
09:47:22zenspidereasy to peruse, but also easy to nuke
09:47:23evanit did at one point
09:47:34evaneasy enough to restore that.
09:47:45evanone point == 3 days ago
09:47:54zenspiderthe benefit of rubypp is that it only does one file at a time
09:48:26zenspidertho that's a bit of a misnomer... one of the files it does requires instructions.rb which creates 4 heavily dependent files
09:48:35zenspiderbreak that up and things should be a bit lighter
09:48:43evanyeah
09:48:45evanthats where it's ugly
09:48:53evanbecause instructions.rb was creating like 7 files
09:48:55zenspideryup
09:49:01evanit's now 4, plus being used in rubypp
09:49:20evancould just have instructions.rb take an arg
09:49:22evanof which to create
09:49:27evanthen use that
09:49:30evanso it runs
09:49:37evanruby instructions.rb primitive_glue
09:49:43zenspidermy next target in objects.hpp and prelude.hpp... I can nuke the former and half the latter (i think)
09:49:44evanand it only creates the primitive_glue file then
09:49:51zenspiderand that should reduce some of the heavier cycles
09:50:02zenspideryeah. I was thinking the arg route earlier
09:50:32zenspiderand vm/object.hpp... I don't like all these files named object*hpp
09:50:51zenspideresp since vm/object.hpp defines everything BUT object
09:50:56evanyeah
09:51:01evanit's evolved over time
09:51:03evanit was originally
09:51:09evanobjects.cpp is dumb too
09:51:41zenspiderI'm not sure how to break that one up... but I'm a lot less concerned with the cpp files
09:52:06evanI can tell
09:52:18evanthats going to need to be a task we do soon though.
09:52:34evani'm going to do some profiling soon
09:52:36zenspiderstripping all the code from builtin/*.hpp and pulling out as many includes as possible has really really helped tho
09:52:43evanprobabably have to add some inlines back in
09:52:49zenspidershould help linking time too, but we're not actually big enough for it to matter too much
09:52:49evanfor stuff like ObjectMemory::write_barrier
09:53:14zenspidersoon? can we get this thing running again first?
09:53:30evanthats the plan.
09:53:52zenspiderwell, "soon" worries me
09:54:15evanwhy?
09:55:08evannot like tomorrow
09:55:17zenspiderbecause we're still way behind master and you're talking optimization already
09:55:31evani'm sure i'll end up waiting anyway
09:56:58evanjust kinda thinking out loud
09:57:11zenspideromg... it's nearly 2am.
09:57:16zenspidersaturady
09:57:20zenspidersaturday even
09:57:24zenspiderI suck
09:59:48evanwell, bed time for me.
10:02:56lstoll enters the room.
10:04:02dysinger leaves the room.
10:12:42Arjen_ enters the room.
10:18:26pauldix enters the room.
10:20:35robin_dewd leaves the room.
10:24:34trythil leaves the room.
10:26:49pauldix leaves the room.
10:34:47juggler enters the room.
10:35:28dysinger enters the room.
10:38:22michalw enters the room.
10:43:42michalw leaves the room.
10:44:11michalw enters the room.
10:53:47pauldix enters the room.
10:54:01pauldix leaves the room.
11:00:58aotearoa leaves the room.
11:03:16botanicus enters the room.
11:13:42yugui enters the room.
11:21:28juggler leaves the room.
11:24:35mutle leaves the room.
11:25:18mutle enters the room.
11:28:14chris2 enters the room.
11:36:07robin_dewd enters the room.
11:50:50michalw leaves the room.
12:00:30juggler enters the room.
12:08:09lopex enters the room.
12:13:45cyndis leaves the room.
12:13:49juggler leaves the room.
12:15:43cyndis enters the room.
12:24:14robin_dewd leaves the room.
12:25:02Fullmoon enters the room.
12:25:57robin_dewd enters the room.
12:36:46yugui leaves the room.
12:40:44yugui enters the room.
12:44:45Fullmoon leaves the room.
12:57:02antares enters the room.
13:04:36imajes enters the room.
13:08:30lopex leaves the room.
13:11:25imajes_ enters the room.
13:12:01dysinger leaves the room.
13:28:42imajes leaves the room.
13:42:32imajes_ leaves the room.
14:02:07thehcdreamer enters the room.
14:15:47thehcdreamer leaves the room.
14:19:47rphillips leaves the room.
14:30:12thehcdreamer enters the room.
14:36:49headius enters the room.
14:39:04thehcdreamer leaves the room.
15:13:56qrush enters the room.
15:24:47antares leaves the room.
15:25:48thehcdreamer enters the room.
15:26:57thehcdreamer leaves the room.
15:31:51antares enters the room.
15:40:22shame enters the room.
15:47:26qrush leaves the room.
15:48:58krsh enters the room.
15:51:11thehcdreamer enters the room.
15:54:36thehcdreamer leaves the room.
15:55:45AndrewO enters the room.
15:58:28headius leaves the room.
15:58:39headius enters the room.
15:59:48headius leaves the room.
16:08:11CIA-30* Added BigDecimal.limit and BigDecimal.induced_from; 0e95cf9 - Gianluigi Spagnuolo
16:19:02rubuildius_amd64Gianluigi Spagnuolo: 0e95cf99c; 2629 files, 8609 examples, 28695 expectations, 0 failures, 0 errors
16:21:39yugui leaves the room.
16:22:29headius enters the room.
16:28:31benburkert enters the room.
16:33:20rubuildius_ey64Gianluigi Spagnuolo: 0e95cf99c; 2629 files, 8609 examples, 28695 expectations, 0 failures, 0 errors
16:50:05jackdempsey enters the room.
16:56:22benny enters the room.
17:06:33hemulen leaves the room.
17:08:15trythil enters the room.
17:11:12benburkert leaves the room.
17:14:11antares leaves the room.
17:29:55headius leaves the room.
17:32:48fbuilesv_ enters the room.
17:32:49fbuilesv leaves the room.
17:33:02shame leaves the room.
17:37:57headius enters the room.
17:48:26benburkert enters the room.
17:49:17benburkert leaves the room.
17:51:04krsh leaves the room.
17:55:46shame enters the room.
17:59:01headius_ enters the room.
17:59:01headius leaves the room.
18:09:02antares enters the room.
18:13:39thehcdreamer enters the room.
18:26:14shame leaves the room.
18:28:51shame enters the room.
18:34:18thehcdreamer leaves the room.
18:44:58shame leaves the room.
18:56:28imajes enters the room.
18:57:21binary42 enters the room.
19:15:05mernen enters the room.
19:18:34imajes leaves the room.
19:18:43shame enters the room.
19:27:37shame leaves the room.
20:11:48benburkert enters the room.
20:13:11benburkert leaves the room.
20:13:49jackdempsey leaves the room.
20:13:55dkubb enters the room.
20:16:45BobFunk enters the room.
20:17:45benburkert enters the room.
20:18:36benburkert leaves the room.
20:19:21dbussinkok, anyone knows why Time.now.to_s shows the year last
20:19:26shame enters the room.
20:19:28dbussinkand not after the month day?
20:28:48benburkert enters the room.
20:31:08trythil leaves the room.
20:35:15ruedbussink: Some RFC, could be HTTP format maybe?
20:35:29rueAway again
20:35:31dbussinkrue: i've digged through quite a few
20:35:36dbussinkbut no one has this format
20:35:47dbussinkxml, http, some iso and rfc formats, no one
20:36:09dbussinkit looks like the http format, but that has the year at the sane location
20:37:17robin_dewd leaves the room.
20:37:19antareswhat's the patchlevel of 1.8.6 recommended for production usage at the moment?
20:37:51dbussinki'm using 114 with security patches
20:38:05dbussinkand pthread disabled
20:40:04headiusafternoon
20:41:07dbussinkhowdy
20:44:32dbussinkheadius: do you have any idea about that Time#to_s thing?
20:45:17headiusnope, though it matches unix `date` output
20:46:25dbussinkheadius: it doesn't for me
20:46:30dbussinkwatch the location of the year...
20:46:41dbussinkthat's the retarded thing about it
20:46:59mernenthe year positioning matches here
20:47:05dbussinkstrange
20:47:15headiuswhat unix you on?
20:47:36dbussinkah wait, linux does the year at the end
20:47:39dbussinkos x doesn't
20:47:42mernenthough the number alignment and timezone description don't
20:47:48headiusI'm on OS X
20:48:02dbussinkah, probably locale settings dependent then
20:48:11dbussinkand it's not really a standard then i guess
20:48:52dbussinkpretty annoying, i was investigating some issues with the json library
20:49:00dbussinkfor Time, Date and DateTime objects
20:49:57zenspiderit is hardcoded into Time#to_s
20:50:25headiusyeah, ruby doesn't do anything with locale
20:50:30zenspiderstrftime(buf, 128, "%a %b %d %H:%M:%S UTC %Y", &tobj->tm)
20:50:43dbussinkyeah, but they probably based it on some version then
20:50:45dbussinkwhich is not an official standard
20:50:47dbussinkat least not one i can find
20:51:17zenspidermaybe it is more common in japan?
20:51:17dbussinkit looks a lot like rfc822, but it isn't
20:51:28zenspideryeah
20:51:28dbussinkdunno, could be
20:51:38zenspidermaybe it is a japanese tweak on 822
20:51:48Arjen_ leaves the room.
20:51:49dbussinkand for example internet explorer does reliably parse 822
20:52:01dbussinkbut it can't to the current Time#to_s
20:54:21dbussinkwould something like this be open for discussion?
20:54:56headiusyes
20:55:03headiusyou should bring it up
20:55:21headiusif it isn't based on any standard it would be nice to make that the case
20:55:30headiusif it is...maybe there's a better standard :)
20:55:45dbussinkwell, any standard would probably be nice
20:55:52dbussinkbecause most parser can handle the standards
20:55:56dbussinkmost parsers
20:56:09headiusit's Ruby Standard Time
20:56:22benburkert leaves the room.
20:57:17benburkert enters the room.
20:57:21zenspiderdbussink: how does the IE stuff factor in?
20:57:35dbussinkzenspider: it was the reason for me to dig into it
20:57:40dbussinkto see what was up with it
20:57:51dbussinkand try to find a standard that matches the ruby format
20:57:55dbussinkwhich i couldn't find
20:59:02zenspiderbut... time.rb defines rfc2822 so I don't really see what the conflict is.
20:59:08zenspiderand httpdate
20:59:21dbussinkzenspider: well, why shouldn't the default already be a standard?
20:59:23kli enters the room.
20:59:56headius leaves the room.
21:00:08headius enters the room.
21:01:09zenspiderhuh
21:01:21zenspideraccording to some spelunking it used to be:
21:01:30zenspidersprintf(buf2, "%%a, %%d %%b %%Y %%H:%%M:%%S %c%02d%02d",
21:01:53dbussinkthat looks like rfc2822 to me
21:01:58dbussinkwhen was that changed then?
21:02:34zenspiderthat was immediately previous to the current, which changed in r12004
21:02:45zenspiderr12004 | knu | 2007-03-06 01:36:29 -0800 (Tue, 06 Mar 2007) | 3 lines
21:02:54zenspider* time.c (time_to_s): Back out the format changes; discussed
21:02:59zenspider in [ruby-dev:30495].
21:03:09zenspiderso, check out ruby-dev:30495, if you can translate it well enough
21:03:09dbussinklet's see what was discussed there then
21:03:15dbussinkah wait
21:03:24dbussinkit that's japanese i'm screwed :P
21:03:30zenspiderthat also implies that it WAS the current format previously
21:03:34zenspideryup
21:03:46dbussinkyeah, but i can't imagine a reason why it was changed then
21:03:59dbussinkanyone capable / willing to translate it then?
21:04:08dbussinki'd love to see the reasoning behind it
21:05:01BobFunk leaves the room.
21:06:30dbussinkzenspider: but it looks like that commit in itself was a change, because the log says it reverts something
21:07:06zenspideryeah. so I think if you go back farther it'll go back to year-last format
21:08:02zenspideryeah: 10622 matz sprintf(buf2, "%%a %%b %%d %%H:%%M:%%S %c%02d%02d %%Y",
21:08:11benburkert leaves the room.
21:09:30zenspiderr10860 | matz | * time.c (time_to_s): make it conform to RFC2822 date format. [ruby-dev:29467]
21:09:33zenspider
21:09:51zenspiderthat's the one you WANT... the discussion on both sides of that log entry will be the meat of the argument
21:10:03zenspidergood luck dbussink
21:10:58headiushttp://tinyurl.com/5nm72v
21:11:06headiuscomes out in one long line but the translation is somewhat readable
21:15:14dbussinkRFC2822 is not adopted, Timezone as a numerical representation
21:15:32dbussinki don't get that line, because the format now is the same as in rfc2822
21:15:39dbussinkboth timezone formats are numerical
21:17:41chris2 leaves the room.
21:24:27blakewatters enters the room.
21:48:53michalw enters the room.
21:49:22headiusyeah, I think it's probably worth looking up again
21:49:26headiuser
21:49:28headiusbringing up again
21:50:17mutle leaves the room.
21:50:59mutle enters the room.
22:04:26qrush enters the room.
22:10:16aotearoa enters the room.
22:12:08jackdempsey enters the room.
22:16:12aotearoa leaves the room.
22:24:04thehcdreamer enters the room.
22:26:12kli leaves the room.
22:34:55rubuildius_amd64 leaves the room.
22:35:58rubuildius_amd64 enters the room.
22:40:55rubuildius_amd64 leaves the room.
22:41:57rubuildius_amd64 enters the room.
22:45:04rubuildius_amd64 leaves the room.
22:45:26thehcdreamer leaves the room.
22:46:07rubuildius_amd64 enters the room.
22:46:11brixencool, my changes to the ey64 bot seem to be weathering github being down
22:46:21brixennow, for amd64 bot
22:49:46imajes enters the room.
22:49:56rubuildius_amd64 leaves the room.
22:50:58rubuildius_amd64 enters the room.
22:54:01edwardam enters the room.
22:59:46imajes leaves the room.
23:09:46imajes enters the room.
23:21:03jackdempsey leaves the room.
23:33:43hemulen enters the room.
23:35:58imajes leaves the room.
23:48:42binary42 leaves the room.