| 00:00.10 | brlcad | rightly so.. it's not what RT_BOT_CK_MAGIC expects |
| 00:00.17 | starseeker | ah |
| 00:00.42 | brlcad | we're feeding it a bot_specific there .. but that's not what that macro was written to test for |
| 00:00.50 | brlcad | it's a bad check, not a bad pointer |
| 00:00.54 | starseeker | oh, OK |
| 00:01.05 | starseeker | so we shouldn't be checking there at all? |
| 00:01.15 | ``Erik | um, like defgeneric vs no defmethod, 'r sumfin |
| 00:01.32 | ``Erik | magic type assertions O.o :D |
| 00:02.41 | starseeker | nukes the check and recompiles |
| 00:04.12 | ``Erik | bot_specific doesn't seem to have a magic field at all |
| 00:04.48 | starseeker | winces - so 7.16.4 won't raytrace bots |
| 00:05.00 | starseeker | well, unoriented bots anyhow |
| 00:06.02 | starseeker | makes a note to make some bot examples and stick them into the regression test suite |
| 00:07.56 | CIA-82 | BRL-CAD: 03brlcad * r37319 10/brlcad/trunk/src/librt/primitives/bot/ (bot.c g_bot_include.c): bad MAGIC check. it's not a rt_bot_internal so the check on a bot_specific is wrong. that variable isn't even used, so remove it as a parameter. |
| 00:08.13 | brlcad | I didn't expect 7.16.4 to be up more than a couple weeks regardless |
| 00:08.21 | starseeker | nods |
| 00:08.38 | starseeker | still, that probably warrants a NEWS item - visible to at least one user :-P |
| 00:09.04 | brlcad | a regression test on all the bot types would be good to have .. make one of each type on a sphere, make sure they all match |
| 00:09.17 | brlcad | sure, that's end-user visible |
| 00:09.20 | ``Erik | 36919... :) |
| 00:09.51 | ``Erik | (another thing to add to the regression test suite?) |
| 00:12.45 | CIA-82 | BRL-CAD: 03starseeker * r37320 10/brlcad/trunk/NEWS: Sean fixed a bad MAGIC check being performed on bots, resolves raytracing failure on unoriented bots. |
| 00:12.59 | starseeker | interesting, I wasn't doing the test compiles right |
| 00:13.09 | starseeker | ah, well - live and learn |
| 00:17.33 | CIA-82 | BRL-CAD: 03brlcad * r37321 10/brlcad/trunk/NEWS: |
| 00:17.33 | CIA-82 | BRL-CAD: might as well fill out as much info as we have room for, and past tense. fixed |
| 00:17.33 | CIA-82 | BRL-CAD: raytrace abort on unoriented bots due to a bogus badmagic check (testing for the |
| 00:17.33 | CIA-82 | BRL-CAD: wrong structure type).. a regression test on the various bot types is in order. |
| 00:32.40 | CIA-82 | BRL-CAD: 03starseeker * r37322 10/brlcad/branches/dmtogl/src/other/tkhtml3/tclconfig/: Add some svn:ignore settings for the autotools files. |
| 00:40.28 | CIA-82 | BRL-CAD: 03starseeker * r37323 10/brlcad/branches/dmtogl/src/other/tkhtml3/ (. src/): More tkhtml3 svn:ignore tweakage |
| 01:15.08 | CIA-82 | BRL-CAD: 03brlcad * r37324 10/brlcad/trunk/regress/ (Makefile.am bots.sh): |
| 01:15.08 | CIA-82 | BRL-CAD: add a new regression test to test BoT functionality. more specifically, see if |
| 01:15.08 | CIA-82 | BRL-CAD: the various oriented and unoriented volume mode bots all work as expected. |
| 01:15.08 | CIA-82 | BRL-CAD: tests various bot commands such as facetize, bot_flip, bot_merge, bot_sync, |
| 01:15.09 | CIA-82 | BRL-CAD: bot_vertex_fuse, bot_face_fuse. still WIP. next need to make sure they all |
| 01:15.11 | CIA-82 | BRL-CAD: render identical. |
| 01:47.21 | CIA-82 | BRL-CAD: 03brlcad * r37325 10/brlcad/trunk/regress/bots.sh: add in raytrace comparisons too. curiously, they all exhibit off-by-one differences from each other even though their got vertices seem to match exactly (per print resolution). |
| 01:49.28 | CIA-82 | BRL-CAD: 03brlcad * r37326 10/brlcad/trunk/regress/bots.sh: more turds to clean up |
| 01:50.43 | brlcad | there, that should catch bot changes now |
| 01:52.49 | brlcad | the off-by-one differences are certainly peculiar but minor .. there is one sensitive test in there that compares a merged an unmerged bot (comparing their db get V strings for both bots) but thusfar is an exact match |
| 02:01.37 | CIA-82 | BRL-CAD: 03brlcad * r37327 10/brlcad/trunk/src/libbu/malloc.c: |
| 02:01.37 | CIA-82 | BRL-CAD: encountered a bizzare crash where a zero-length realloc ended up getting called. |
| 02:01.37 | CIA-82 | BRL-CAD: sure enough, we weren't testing for 0-length bu_realloc() (we only checked |
| 02:01.37 | CIA-82 | BRL-CAD: malloc/calloc), so add the sanity test and bomb like we're supposed to. |
| 02:05.49 | CIA-82 | BRL-CAD: 03brlcad * r37328 10/brlcad/trunk/src/libbu/log.c: plug a memory leak |
| 02:16.36 | CIA-82 | BRL-CAD: 03brlcad * r37329 10/brlcad/trunk/src/mged/setup.c: |
| 02:16.36 | CIA-82 | BRL-CAD: bleh, make sure line is a non-null pointer before calling bu_log. moreover, |
| 02:16.36 | CIA-82 | BRL-CAD: make sure we provide a format specifier in case the line we parsed has format |
| 02:16.36 | CIA-82 | BRL-CAD: specifiers embedded in it! that had to be at least a few of the observed mged |
| 02:16.36 | CIA-82 | BRL-CAD: crashes.. |
| 02:18.05 | CIA-82 | BRL-CAD: 03brlcad * r37330 10/brlcad/trunk/src/libged/rt.c: clamp ReadFile to RT_MAXLINE like we do for the unix call; add a little bit of sanity clamping just in case we stumble down through the code with badness. |
| 03:06.48 | CIA-82 | BRL-CAD: 03brlcad * r37331 10/brlcad/trunk/src/librt/primitives/bot/bot.c: add some no-op +0's to keep things lined up nicely. |
| 03:07.08 | CIA-82 | BRL-CAD: 03brlcad * r37332 10/brlcad/trunk/include/rtgeom.h: ws |
| 04:08.00 | starseeker | cool - the trunk tkhtml3 build succeeded on Redhat, Mac, and Gentoo |
| 04:08.22 | starseeker | waits for ``Erik to complain about it breaking on FreeBSD... |
| 04:09.18 | starseeker | dmtogl branch is the beginnings of the "correct" solution, but that has a lot of testing and probably a lot of work ahead |
| 04:09.21 | ``Erik | neato, five errors in the bot.sh regression test :D |
| 04:09.44 | ``Erik | starseeker: won't know until tomorrow... someone shoved all that docbooks tuff in there and now I can't fit it on my home fbsd machine... :D |
| 04:25.35 | *** join/#brlcad akafubu (n=akafubu@unaffiliated/akafubu) | |
| 04:26.57 | *** join/#brlcad IriX64 (n=Warlock@bas2-sudbury98-1177680376.dsl.bell.ca) | |
| 04:35.21 | CIA-82 | BRL-CAD: 03brlcad * r37333 10/brlcad/trunk/src/librt/primitives/ (35 files in 34 dirs): add a slew of validation checks on the vhead parameter (independent of the checks done by the macro when adding to the list) |
| 04:54.06 | *** join/#brlcad akafubu (n=akafubu@unaffiliated/akafubu) | |
| 04:54.18 | CIA-82 | BRL-CAD: 03brlcad * r37334 10/brlcad/trunk/src/libged/draw.c: minor cleanup. ws. added null check. |
| 04:57.55 | brlcad | ``Erik: errors? |
| 05:06.28 | CIA-82 | BRL-CAD: 03brlcad * r37335 10/brlcad/trunk/TODO: upshift my tasks expected for the remainder of this month. |
| 05:11.38 | CIA-82 | BRL-CAD: 03brlcad * r37336 10/brlcad/trunk/TODO: add stephen's work to implement a new rt lighting model. |
| 05:13.40 | CIA-82 | BRL-CAD: 03brlcad * r37337 10/brlcad/trunk/TODO: oop, it was already listed down below -- move it on up. |
| 05:22.08 | starseeker | ``Erik: here's a nickel kid, go get yourself a new harddrive |
| 05:22.29 | CIA-82 | BRL-CAD: 03brlcad * r37338 10/brlcad/trunk/src/ (libgcv/Makefile.am libged/Makefile.am): re-enable strict flags in libgcv, placehold in libged. purported jump clobber issue isn't going to sort itself out. (fix it..) |
| 06:56.20 | *** join/#brlcad akafubu (n=akafubu@unaffiliated/akafubu) | |
| 07:10.39 | *** mode/#brlcad [+o brlcad] by ChanServ | |
| 10:58.34 | *** join/#brlcad mafm_ (n=mafm@121.Red-81-32-105.dynamicIP.rima-tde.net) | |
| 11:16.25 | d-lo | Morning all! |
| 12:02.49 | *** join/#brlcad mafm (n=mafm@121.Red-81-32-105.dynamicIP.rima-tde.net) | |
| 12:12.30 | *** join/#brlcad Ralith (n=ralith@69.90.48.97) | |
| 12:24.17 | ``Erik | brlcad: http://pastebin.bzflag.bz/d28740b31 |
| 12:25.01 | ``Erik | starseeker: got one, and a new machine... but I'm pulling a brlcad and taking forever to migrate... :D (I may need to fix parts of the kenrel to get things to work right) |
| 12:32.37 | *** join/#brlcad ChanServ (ChanServ@services.) | |
| 12:32.37 | *** join/#brlcad Ralith (n=ralith@69.90.48.97) [NETSPLIT VICTIM] | |
| 12:32.37 | *** join/#brlcad mafm (n=mafm@121.Red-81-32-105.dynamicIP.rima-tde.net) [NETSPLIT VICTIM] | |
| 12:32.37 | *** join/#brlcad CIA-82 (n=CIA@208.69.182.149) [NETSPLIT VICTIM] | |
| 12:32.37 | *** join/#brlcad ``Erik (n=erik@c-69-140-109-104.hsd1.md.comcast.net) [NETSPLIT VICTIM] | |
| 12:32.37 | *** join/#brlcad louipc (n=louipc@archlinux/trusteduser/louipc) [NETSPLIT VICTIM] | |
| 12:32.37 | *** join/#brlcad d-lo (n=claymore@63.246.136.16) [NETSPLIT VICTIM] | |
| 12:32.37 | *** join/#brlcad Computer (n=Computer@unaffiliated/computer) [NETSPLIT VICTIM] | |
| 12:32.37 | *** join/#brlcad Yoshi47 (n=jan@64.235.102.210) [NETSPLIT VICTIM] | |
| 12:32.37 | *** join/#brlcad poolio (n=poolio@63.246.136.16) [NETSPLIT VICTIM] | |
| 12:32.37 | *** join/#brlcad SWPadnos (n=Me@emc/developer/SWPadnos) [NETSPLIT VICTIM] | |
| 12:32.37 | *** join/#brlcad cosurg1 (n=cosurgi@atak.bl.pg.gda.pl) [NETSPLIT VICTIM] | |
| 12:32.37 | *** join/#brlcad starseeker (n=starseek@BZ.BZFLAG.BZ) [NETSPLIT VICTIM] | |
| 12:32.38 | *** join/#brlcad alex_joni (n=alex_jon@emc/board-of-directors/alexjoni) [NETSPLIT VICTIM] | |
| 12:32.38 | *** join/#brlcad roberthl (n=robert@silentflame/member/roberthl) [NETSPLIT VICTIM] | |
| 12:32.38 | *** join/#brlcad yukonbob (i=1000@s142-179-54-198.bc.hsia.telus.net) [NETSPLIT VICTIM] | |
| 12:32.38 | *** join/#brlcad Maloeran (n=maloeran@glvortex.net) [NETSPLIT VICTIM] | |
| 12:32.38 | *** join/#brlcad indianla1ry (n=indianla@BZ.BZFLAG.BZ) [NETSPLIT VICTIM] | |
| 12:32.38 | *** join/#brlcad brlcad (n=sean@BZ.BZFLAG.BZ) [NETSPLIT VICTIM] | |
| 12:32.38 | *** join/#brlcad PrezKennedy (i=Matthew@whitecalf.net) [NETSPLIT VICTIM] | |
| 12:32.38 | *** mode/#brlcad [+oo ChanServ brlcad] by irc.freenode.net | |
| 12:43.32 | *** join/#brlcad Computer (n=Computer@unaffiliated/computer) [NETSPLIT VICTIM] | |
| 12:43.32 | *** join/#brlcad Yoshi47 (n=jan@64.235.102.210) [NETSPLIT VICTIM] | |
| 12:45.40 | *** join/#brlcad ChanServ (ChanServ@services.) | |
| 12:45.43 | *** join/#brlcad mafm (n=mafm@121.Red-81-32-105.dynamicIP.rima-tde.net) [NETSPLIT VICTIM] | |
| 12:45.43 | *** join/#brlcad poolio (n=poolio@63.246.136.16) [NETSPLIT VICTIM] | |
| 12:45.43 | *** join/#brlcad Ralith (n=ralith@69.90.48.97) [NETSPLIT VICTIM] | |
| 12:45.43 | *** join/#brlcad ``Erik (n=erik@c-69-140-109-104.hsd1.md.comcast.net) [NETSPLIT VICTIM] | |
| 12:45.43 | *** join/#brlcad louipc (n=louipc@archlinux/trusteduser/louipc) [NETSPLIT VICTIM] | |
| 12:45.43 | *** join/#brlcad d-lo (n=claymore@63.246.136.16) [NETSPLIT VICTIM] | |
| 12:45.43 | *** join/#brlcad SWPadnos (n=Me@emc/developer/SWPadnos) [NETSPLIT VICTIM] | |
| 12:45.43 | *** join/#brlcad cosurg1 (n=cosurgi@atak.bl.pg.gda.pl) [NETSPLIT VICTIM] | |
| 12:45.43 | *** join/#brlcad starseeker (n=starseek@BZ.BZFLAG.BZ) [NETSPLIT VICTIM] | |
| 12:45.43 | *** join/#brlcad brlcad (n=sean@BZ.BZFLAG.BZ) | |
| 12:45.43 | *** join/#brlcad indianla1ry (n=indianla@BZ.BZFLAG.BZ) [NETSPLIT VICTIM] | |
| 12:45.43 | *** join/#brlcad Maloeran (n=maloeran@glvortex.net) [NETSPLIT VICTIM] | |
| 12:45.43 | *** join/#brlcad yukonbob (i=1000@s142-179-54-198.bc.hsia.telus.net) [NETSPLIT VICTIM] | |
| 12:45.43 | *** join/#brlcad roberthl (n=robert@silentflame/member/roberthl) [NETSPLIT VICTIM] | |
| 12:45.43 | *** mode/#brlcad [+oo ChanServ brlcad] by irc.freenode.net | |
| 12:45.54 | *** join/#brlcad archivist (n=archivis@87-194-141-154.bethere.co.uk) | |
| 12:46.00 | *** join/#brlcad CIA-82 (n=CIA@208.69.182.149) [NETSPLIT VICTIM] | |
| 12:46.00 | *** join/#brlcad alex_joni (n=alex_jon@emc/board-of-directors/alexjoni) [NETSPLIT VICTIM] | |
| 12:46.00 | *** join/#brlcad PrezKennedy (i=Matthew@whitecalf.net) | |
| 12:52.43 | *** join/#brlcad brlcad (n=sean@BZ.BZFLAG.BZ) [NETSPLIT VICTIM] | |
| 12:52.43 | *** join/#brlcad PrezKennedy (i=Matthew@whitecalf.net) [NETSPLIT VICTIM] | |
| 12:52.43 | *** join/#brlcad alex_joni (n=alex_jon@emc/board-of-directors/alexjoni) [NETSPLIT VICTIM] | |
| 12:52.43 | *** join/#brlcad CIA-82 (n=CIA@208.69.182.149) [NETSPLIT VICTIM] | |
| 12:52.43 | *** join/#brlcad archivist (n=archivis@87-194-141-154.bethere.co.uk) [NETSPLIT VICTIM] | |
| 12:52.43 | *** join/#brlcad roberthl (n=robert@silentflame/member/roberthl) [NETSPLIT VICTIM] | |
| 12:52.43 | *** join/#brlcad yukonbob (i=1000@s142-179-54-198.bc.hsia.telus.net) [NETSPLIT VICTIM] | |
| 12:52.43 | *** join/#brlcad Maloeran (n=maloeran@glvortex.net) [NETSPLIT VICTIM] | |
| 12:52.43 | *** join/#brlcad indianla1ry (n=indianla@BZ.BZFLAG.BZ) [NETSPLIT VICTIM] | |
| 12:52.43 | *** join/#brlcad starseeker (n=starseek@BZ.BZFLAG.BZ) [NETSPLIT VICTIM] | |
| 12:52.43 | *** join/#brlcad cosurg1 (n=cosurgi@atak.bl.pg.gda.pl) [NETSPLIT VICTIM] | |
| 12:52.43 | *** join/#brlcad SWPadnos (n=Me@emc/developer/SWPadnos) [NETSPLIT VICTIM] | |
| 12:52.43 | *** join/#brlcad d-lo (n=claymore@63.246.136.16) [NETSPLIT VICTIM] | |
| 12:52.43 | *** join/#brlcad louipc (n=louipc@archlinux/trusteduser/louipc) [NETSPLIT VICTIM] | |
| 12:52.43 | *** join/#brlcad ``Erik (n=erik@c-69-140-109-104.hsd1.md.comcast.net) [NETSPLIT VICTIM] | |
| 12:52.43 | *** join/#brlcad Ralith (n=ralith@69.90.48.97) [NETSPLIT VICTIM] | |
| 12:52.43 | *** join/#brlcad poolio (n=poolio@63.246.136.16) [NETSPLIT VICTIM] | |
| 12:52.43 | *** join/#brlcad mafm (n=mafm@121.Red-81-32-105.dynamicIP.rima-tde.net) [NETSPLIT VICTIM] | |
| 12:52.43 | *** join/#brlcad ChanServ (ChanServ@services.) | |
| 12:52.43 | *** join/#brlcad Yoshi47 (n=jan@64.235.102.210) [NETSPLIT VICTIM] | |
| 12:52.44 | *** join/#brlcad Computer (n=Computer@unaffiliated/computer) [NETSPLIT VICTIM] | |
| 12:52.44 | *** mode/#brlcad [+oo brlcad ChanServ] by irc.freenode.net | |
| 12:55.28 | *** join/#brlcad Computer (n=Computer@unaffiliated/computer) [NETSPLIT VICTIM] | |
| 12:55.28 | *** join/#brlcad Yoshi47 (n=jan@64.235.102.210) [NETSPLIT VICTIM] | |
| 12:58.30 | *** join/#brlcad mafm (n=mafm@121.Red-81-32-105.dynamicIP.rima-tde.net) [NETSPLIT VICTIM] | |
| 12:58.30 | *** join/#brlcad poolio (n=poolio@63.246.136.16) [NETSPLIT VICTIM] | |
| 13:16.23 | *** join/#brlcad brlcad (n=sean@BZ.BZFLAG.BZ) [NETSPLIT VICTIM] | |
| 13:16.23 | *** join/#brlcad poolio (n=poolio@63.246.136.16) [NETSPLIT VICTIM] | |
| 13:16.23 | *** join/#brlcad mafm (n=mafm@121.Red-81-32-105.dynamicIP.rima-tde.net) [NETSPLIT VICTIM] | |
| 13:16.23 | *** join/#brlcad Yoshi47 (n=jan@64.235.102.210) [NETSPLIT VICTIM] | |
| 13:16.23 | *** join/#brlcad Computer (n=Computer@unaffiliated/computer) [NETSPLIT VICTIM] | |
| 13:16.24 | *** join/#brlcad PrezKennedy (i=Matthew@whitecalf.net) [NETSPLIT VICTIM] | |
| 13:16.24 | *** join/#brlcad alex_joni (n=alex_jon@emc/board-of-directors/alexjoni) [NETSPLIT VICTIM] | |
| 13:16.24 | *** join/#brlcad CIA-82 (n=CIA@208.69.182.149) [NETSPLIT VICTIM] | |
| 13:16.24 | *** join/#brlcad archivist (n=archivis@87-194-141-154.bethere.co.uk) [NETSPLIT VICTIM] | |
| 13:16.24 | *** join/#brlcad roberthl (n=robert@silentflame/member/roberthl) [NETSPLIT VICTIM] | |
| 13:16.24 | *** join/#brlcad yukonbob (i=1000@s142-179-54-198.bc.hsia.telus.net) [NETSPLIT VICTIM] | |
| 13:16.24 | *** join/#brlcad Maloeran (n=maloeran@glvortex.net) [NETSPLIT VICTIM] | |
| 13:16.24 | *** join/#brlcad indianla1ry (n=indianla@BZ.BZFLAG.BZ) [NETSPLIT VICTIM] | |
| 13:16.24 | *** join/#brlcad starseeker (n=starseek@BZ.BZFLAG.BZ) [NETSPLIT VICTIM] | |
| 13:16.24 | *** join/#brlcad cosurg1 (n=cosurgi@atak.bl.pg.gda.pl) [NETSPLIT VICTIM] | |
| 13:16.24 | *** join/#brlcad SWPadnos (n=Me@emc/developer/SWPadnos) [NETSPLIT VICTIM] | |
| 13:16.24 | *** join/#brlcad d-lo (n=claymore@63.246.136.16) [NETSPLIT VICTIM] | |
| 13:16.24 | *** join/#brlcad louipc (n=louipc@archlinux/trusteduser/louipc) [NETSPLIT VICTIM] | |
| 13:16.24 | *** join/#brlcad ``Erik (n=erik@c-69-140-109-104.hsd1.md.comcast.net) [NETSPLIT VICTIM] | |
| 13:16.24 | *** join/#brlcad Ralith (n=ralith@69.90.48.97) [NETSPLIT VICTIM] | |
| 13:16.24 | *** join/#brlcad ChanServ (ChanServ@services.) | |
| 13:16.24 | *** mode/#brlcad [+oo brlcad ChanServ] by irc.freenode.net | |
| 13:19.32 | *** join/#brlcad Computer (n=Computer@unaffiliated/computer) [NETSPLIT VICTIM] | |
| 13:19.32 | *** join/#brlcad Yoshi47 (n=jan@64.235.102.210) [NETSPLIT VICTIM] | |
| 13:36.46 | *** join/#brlcad ChanServ (ChanServ@services.) | |
| 13:36.46 | *** join/#brlcad poolio (n=poolio@63.246.136.16) [NETSPLIT VICTIM] | |
| 13:36.46 | *** join/#brlcad mafm (n=mafm@121.Red-81-32-105.dynamicIP.rima-tde.net) [NETSPLIT VICTIM] | |
| 13:36.46 | *** join/#brlcad archivist (n=archivis@87-194-141-154.bethere.co.uk) [NETSPLIT VICTIM] | |
| 13:36.46 | *** join/#brlcad Ralith (n=ralith@69.90.48.97) [NETSPLIT VICTIM] | |
| 13:36.46 | *** join/#brlcad ``Erik (n=erik@c-69-140-109-104.hsd1.md.comcast.net) [NETSPLIT VICTIM] | |
| 13:36.46 | *** join/#brlcad louipc (n=louipc@archlinux/trusteduser/louipc) [NETSPLIT VICTIM] | |
| 13:36.46 | *** join/#brlcad d-lo (n=claymore@63.246.136.16) [NETSPLIT VICTIM] | |
| 13:36.46 | *** join/#brlcad SWPadnos (n=Me@emc/developer/SWPadnos) [NETSPLIT VICTIM] | |
| 13:36.46 | *** join/#brlcad cosurg1 (n=cosurgi@atak.bl.pg.gda.pl) [NETSPLIT VICTIM] | |
| 13:36.46 | *** join/#brlcad starseeker (n=starseek@BZ.BZFLAG.BZ) [NETSPLIT VICTIM] | |
| 13:36.46 | *** join/#brlcad brlcad (n=sean@BZ.BZFLAG.BZ) | |
| 13:36.46 | *** join/#brlcad indianla1ry (n=indianla@BZ.BZFLAG.BZ) [NETSPLIT VICTIM] | |
| 13:36.46 | *** join/#brlcad Maloeran (n=maloeran@glvortex.net) [NETSPLIT VICTIM] | |
| 13:36.47 | *** join/#brlcad yukonbob (i=1000@s142-179-54-198.bc.hsia.telus.net) [NETSPLIT VICTIM] | |
| 13:36.57 | *** join/#brlcad roberthl (n=robert@silentflame/member/roberthl) [NETSPLIT VICTIM] | |
| 13:36.57 | *** mode/#brlcad [+oo ChanServ brlcad] by irc.freenode.net | |
| 13:39.44 | *** join/#brlcad Computer (n=Computer@unaffiliated/computer) [NETSPLIT VICTIM] | |
| 13:39.44 | *** join/#brlcad Yoshi47 (n=jan@64.235.102.210) [NETSPLIT VICTIM] | |
| 13:42.37 | *** join/#brlcad CIA-82 (n=CIA@208.69.182.149) [NETSPLIT VICTIM] | |
| 13:42.37 | *** join/#brlcad alex_joni (n=alex_jon@emc/board-of-directors/alexjoni) [NETSPLIT VICTIM] | |
| 13:42.37 | *** join/#brlcad PrezKennedy (i=Matthew@whitecalf.net) | |
| 15:00.32 | CIA-82 | BRL-CAD: 03irpguardian * r37339 10/brlcad/trunk/src/rt/view.c: |
| 15:00.32 | CIA-82 | BRL-CAD: Properly initialized timeTable with '-1' when first created. This however causes |
| 15:00.33 | CIA-82 | BRL-CAD: program to die when more than 1 processor works on it. (Adding semaphores made program |
| 15:00.33 | CIA-82 | BRL-CAD: hang). |
| 15:00.33 | CIA-82 | BRL-CAD: Fixed pointers returned from timeTable_init to allow them to work correctly. |
| 15:00.35 | CIA-82 | BRL-CAD: Inverted test Image now renders with 1 processor, as opposed to having a bus error. |
| 15:12.08 | CIA-82 | BRL-CAD: 03davidloman * r37340 10/rt^3/trunk/ (3 files in 3 dirs): Drop NMAD stuff for now. |
| 15:26.47 | CIA-82 | BRL-CAD: 03davidloman * r37341 10/rt^3/trunk/ (10 files in 2 dirs): Drop AbstractDBObjectSource and subclasses for now. |
| 16:06.30 | CIA-82 | BRL-CAD: 03davidloman * r37342 10/rt^3/trunk/ (30 files in 11 dirs): Roll contents of iBME/iBMECommon.h to GS/GSCommon.h |
| 16:13.30 | CIA-82 | BRL-CAD: 03davidloman * r37343 10/rt^3/trunk/ (8 files in 3 dirs): Move array.h |
| 16:21.10 | *** join/#brlcad Elrohir (n=kvirc@p5B14945A.dip.t-dialin.net) | |
| 16:21.36 | CIA-82 | BRL-CAD: 03davidloman * r37344 10/rt^3/trunk/include/common/: Drop unused dir. |
| 16:29.03 | CIA-82 | BRL-CAD: 03davidloman * r37345 10/rt^3/trunk/ (5 files in 4 dirs): Drop Object class. There's just no point in keeping it. |
| 16:30.36 | CIA-82 | BRL-CAD: 03irpguardian * r37346 10/brlcad/trunk/src/rt/view.c: |
| 16:30.36 | CIA-82 | BRL-CAD: Basic Heat-Graph now works! ...with single processor only. |
| 16:30.36 | CIA-82 | BRL-CAD: Currently uses only 3 different shades of colors to represent time |
| 16:30.36 | CIA-82 | BRL-CAD: taken to process image. Blue-short, Yellow-Medium, Red-Long. |
| 16:32.16 | CIA-82 | BRL-CAD: 03davidloman * r37347 10/rt^3/trunk/include/iBME/String.h: Drop String class. There's just no point in keeping it either. |
| 16:36.27 | CIA-82 | BRL-CAD: 03davidloman * r37348 10/rt^3/trunk/include/iBME/: Drop unused dir. |
| 16:38.30 | CIA-82 | BRL-CAD: 03davidloman * r37349 10/rt^3/trunk/src/ (3 files in 2 dirs): Consolidate Util classes |
| 16:40.39 | CIA-82 | BRL-CAD: 03davidloman * r37350 10/rt^3/trunk/src/GS/CMakeLists.txt: Forgot mod to CMakeLists.txt |
| 16:43.54 | CIA-82 | BRL-CAD: 03davidloman * r37351 10/rt^3/trunk/src/utility/: Drop unused dir. |
| 16:54.44 | CIA-82 | BRL-CAD: 03davidloman * r37352 10/rt^3/trunk/ (9 files in 8 dirs): Drop DataStream. Using QT's instead. |
| 17:03.58 | CIA-82 | BRL-CAD: 03davidloman * r37353 10/rt^3/trunk/ (23 files in 5 dirs): Drop now obsolete io stream classes. |
| 17:09.56 | CIA-82 | BRL-CAD: 03davidloman * r37354 10/rt^3/trunk/include/GE/io/array.h: Drop Array.h |
| 17:11.00 | CIA-82 | BRL-CAD: 03davidloman * r37355 10/rt^3/trunk/ (include/GE/io/ src/GE/io/): Drop unused dirs. |
| 17:14.51 | CIA-82 | BRL-CAD: 03davidloman * r37356 10/rt^3/trunk/ (include/uuid/ src/other/CMakeLists.txt src/other/uuid/): Drop third party UUID package, using QT's |
| 17:18.08 | *** join/#brlcad akafubu (n=akafubu@unaffiliated/akafubu) | |
| 19:13.02 | *** join/#brlcad talcite (n=matthew@dhcp-143-177.mcme-students.carleton.ca) | |
| 19:18.34 | CIA-82 | BRL-CAD: 03brlcad * r37357 10/brlcad/trunk/regress/bots.sh: |
| 19:18.34 | CIA-82 | BRL-CAD: mged spits out a 'Using Tcl Library...' message for certain build |
| 19:18.34 | CIA-82 | BRL-CAD: configurations, so make sure we strip that out. another plug to get better |
| 19:18.34 | CIA-82 | BRL-CAD: separation of stdout from stderr for MGED/LIBBU so command results are written |
| 19:18.34 | CIA-82 | BRL-CAD: to stdout with info sent to stderr, all via libbu logging mechanism |
| 19:21.47 | CIA-82 | BRL-CAD: 03irpguardian * r37358 10/brlcad/trunk/src/rt/view.c: |
| 19:21.47 | CIA-82 | BRL-CAD: Heat-graph now has a set greyscale color distribution, where light pixels took the longest |
| 19:21.47 | CIA-82 | BRL-CAD: while dark pixels took the shortest. Still only works with 1 processor. |
| 19:33.43 | starseeker | growls... big E and little e commands complicate man page naming |
| 19:42.13 | starseeker | makes a note to merge the doc on the new sca options into the docbook version... |
| 19:47.23 | CIA-82 | BRL-CAD: 03starseeker * r37359 10/brlcad/trunk/ (127 files in 2 dirs): |
| 19:47.23 | CIA-82 | BRL-CAD: Add extensive work by Janine Gettier on generating MGED comman man pages in |
| 19:47.23 | CIA-82 | BRL-CAD: Docbook. Haven't proof-read these for indenting/etc. but they do all compile to |
| 19:47.23 | CIA-82 | BRL-CAD: html and man page, so go ahead and add them to revision control. |
| 20:55.15 | *** join/#brlcad akafubu (n=akafubu@unaffiliated/akafubu) | |
| 21:02.12 | *** join/#brlcad R0b0t1 (n=Enigma@unaffiliated/r0b0t1) | |
| 21:27.07 | CIA-82 | BRL-CAD: 03brlcad * r37360 10/brlcad/trunk/TODO: need a bu logging mechanism that allows better separation of stderr from stdout while still being a bu_log() style mechanism. mged particularly needs this as do the ray tracers. |
| 21:27.52 | brlcad | starseeker: e is 'draw', E is usually 'bigE' |
| 21:28.04 | starseeker | nods |
| 21:28.39 | brlcad | e is draw, d is erase .. it doesn't get much better than that :) |
| 21:29.01 | starseeker | can we fix that in 8.0? :-P |
| 21:29.06 | brlcad | hehe |
| 21:35.55 | ``Erik | but it's so intuitive, just like the vim commands I was telling bob about earlier... :D |
| 21:36.53 | louipc | hey guys. How would I embed math into mged commands. I think I recall someone using Tcl... |
| 21:37.51 | louipc | something like 'in shaft rcc 0 0 0 0 0 10 [math 2/2]' |
| 21:37.56 | ``Erik | [expr 5+3] |
| 21:38.53 | louipc | hmm seems to throw an error for me |
| 21:42.08 | ``Erik | globbing |
| 21:42.16 | ``Erik | turn globbing off or escape the brackets :) |
| 21:44.05 | louipc | aarrr thank you |
| 21:45.09 | ``Erik | yargh, np |
| 21:45.27 | brlcad | set glob_compat_mode 0 |
| 21:50.40 | CIA-82 | BRL-CAD: 03irpguardian * r37361 10/brlcad/trunk/src/rt/view.c: Made the background better contrast to dark and light colors in heat-map |
| 22:01.41 | *** join/#brlcad Phurl (n=mdupont@ip-81-210-245-60.unitymediagroup.de) | |
| 22:08.32 | *** join/#brlcad akafubu (n=akafubu@unaffiliated/akafubu) | |
| 22:29.29 | *** join/#brlcad Phurl (n=mdupont@ip-81-210-245-60.unitymediagroup.de) | |
| 22:31.14 | CIA-82 | BRL-CAD: 03starseeker * r37362 10/brlcad/branches/dmtogl/src/other/tkhtml3/src/Makefile.am: Take a stab at creating a pkgIndex.tcl - dlopen doesn't seem to like the target library for some reason when given the output fo this rule as a pkgIndex.tcl, so some issues to resolve. |
| 22:40.21 | *** join/#brlcad talcite (n=matthew@dhcp-143-177.mcme-students.carleton.ca) | |
| 22:48.03 | CIA-82 | BRL-CAD: 03starseeker * r37363 10/brlcad/branches/dmtogl/src/other/tkhtml3/src/Makefile.am: Tkhtml Makefile.am fixes - this setup has now successfully installed Tkhtml in such a fashion that package require Tkhtml succeeded. |
| 22:55.52 | starseeker | notes he still has to deal with the whole STUB thing... |
| 23:08.54 | starseeker | brlcad: just when you get a sec - I note the presence of "developer commands" in the Vol II appendix - would those also go under man1 or would it be better to stick them somewhere else? |
| 23:10.40 | starseeker | would like to document devel only commands, but is aware they need to be (minimally) flagged as not for end-user consumption - man8 seemed like it is the closest conceptual map, but is flagged as avoid in the docbook README file |
| 23:10.56 | starseeker | should we just leave the devel command descriptions in the source only? |
| 23:11.46 | starseeker | thinks rset in particular benefit from a man page and some common use examples, but that's just me... |
| 23:30.46 | CIA-82 | BRL-CAD: 03irpguardian * r37364 10/brlcad/trunk/src/rt/view.c: Code cleanup, and commenting |
| 23:50.55 | brlcad | mv: cannot stat `e_muves.1': No such file or directory |
| 23:52.22 | ``Erik | saw that earlier, too |
| 23:53.23 | brlcad | ahh, looks like E_MUVES.1 is getting put into doc/docbook/. |
| 23:56.46 | CIA-82 | BRL-CAD: 03brlcad * r37365 10/brlcad/trunk/doc/docbook/system/man1/en/e_muves.xml: e_muves not E_MUVES for the refname, also set a refentry id |