00:03.02 |
starseeker |
caen23: I'm getting the validation failures on
info too - it's not just a Windows issue |
00:03.48 |
starseeker |
looks like if we put the author info inside
the refentrytitle block, it'll validate |
00:04.09 |
starseeker |
will commit a few - could you
handle the rest? |
00:05.18 |
starseeker |
sorry for delay - just now getting a serious
look at it |
00:05.30 |
starseeker |
(have a different Windows issue to
debug...) |
00:08.45 |
Notify |
03BRL-CAD:starseeker * 53992
(brlcad/trunk/doc/docbook/system/man1/en/anim_script.xml
brlcad/trunk/doc/docbook/system/man1/en/anim_sort.xml and 5
others): Start shifting the author block to pass validation. More
to do. |
00:11.31 |
Notify |
03BRL-CAD:starseeker * 53993
brlcad/trunk/CMakeLists.txt: Turn off strict again until the info
thing is fixed in the man pages. |
00:18.59 |
*** join/#brlcad louipc
(~louipc@archlinux/fellow/louipc) |
00:19.25 |
*** join/#brlcad zero57
(~an@211.224-ppp.3menatwork.com) |
00:19.32 |
zero57 |
brlcad: are you there? |
00:28.38 |
Notify |
03BRL-CAD:starseeker * 53994
brlcad/trunk/CMakeLists.txt: Visual Studio 2012 seems to be pushed
beyond its limits when validation targets are added - pushes the
build target count over 1800. Disable validation if we are on
MSVC. |
00:29.06 |
starseeker |
whoops - that's Visual Studio 2010, not
2012 |
00:31.19 |
zero57 |
does anyone know why using find and sed breaks
my svn? |
00:31.37 |
zero57 |
I'm using find and sed together to find and
replace multiple files with text recursively |
00:31.48 |
zero57 |
and when using svn diff, it doesn't detect the
changes |
00:31.53 |
Notify |
03BRL-CAD:starseeker * 53995
brlcad/trunk/CMakeLists.txt: More informative comment for DocBook
validation issue on MSVC - note it's 2010, not 2012 |
00:32.29 |
zero57 |
find . -type f -exec sed -i
's/mytext/newtext/g' {} \; |
00:32.50 |
zero57 |
that's the command I used to replace the text
with |
00:39.15 |
Notify |
03BRL-CAD:starseeker * 53996
brlcad/trunk/CMakeLists.txt: Typo |
00:40.53 |
Notify |
03GCI: An: Find and fix at least 5 spelling
mistakes in at least 40 different files - I really need an
extension on the deadline, and I have a question Hi, I really
need an extension on the deadline, school has been giving me a lot
of homework and tests. Also, my question is that why does svn not
detect my changes made to all the files in...
http://www.google-melange.com/gci/task/view/google/gci2012/7999212 |
00:42.48 |
Notify |
03GCI: reikaze: Fix closedb - Thanks for
reprimanding me for being lazy Another progress update: through
DGB, I've found that stdin_input isn't firing, so that might be why
the commands aren't being parsed.
http://www.google-melange.com/gci/task/view/google/gci2012/7958214 |
00:46.59 |
brlcad |
starseeker: I've heard of msvc project with
thousands of targets, so that is unlikely the problem |
00:51.29 |
Notify |
03GCI: Luis: Design an MGED command
spreadsheet - Task Claimed I would like to work on this task.
http://www.google-melange.com/gci/task/view/google/gci2012/7985228 |
00:52.36 |
*** join/#brlcad archivist
(~archivist@host81-149-189-98.in-addr.btopenworld.com) |
00:52.54 |
Notify |
03GCI: Luis: Design an MGED command
spreadsheet - Claim Removed The claim on this task has been
removed, someone else can claim it now.
http://www.google-melange.com/gci/task/view/google/gci2012/7985228 |
00:53.31 |
zero57 |
brlcad: hey brlcad |
00:53.46 |
zero57 |
brlcad: I don't know why using find and sed
doesn't work |
00:55.09 |
zero57 |
brlcad: however, using just "diff" will work
but it doesn't tell you what I changed like svn diff does |
00:55.19 |
zero57 |
brlcad: is it possible to use diff instead of
svn diff? |
00:59.51 |
brlcad |
zero57: run find without sed and look at the
files it finds |
01:00.06 |
brlcad |
you're modifying book-keeping files, which
corrupts your checkout |
01:00.40 |
zero57 |
brlcad: ok and can you show me how to do this?
I'm not very familiar with find as I just found the command online
using google |
01:03.01 |
brlcad |
i haven't read the backlog yet so don't know
what you're trying to do |
01:03.17 |
brlcad |
but the general way to work with it is to just
tell it what to ignore |
01:03.38 |
zero57 |
well I want to just find text inside a
file |
01:03.40 |
zero57 |
and replace that |
01:03.50 |
brlcad |
find . -name \*.c -not -regex '.*svn.*' -not
-regex '.*other.*' -not -regex '.*cmake.*' |
01:03.54 |
zero57 |
oh and find it recursively |
01:04.17 |
brlcad |
you'll have to be very careful with recursive
replacements and review your patch *very* carefully |
01:04.43 |
brlcad |
very easy to mess up even if you have done it
100 times, and I'm guessing you haven't ;) |
01:05.33 |
zero57 |
nope i haven't ;p but I just need to find and
replace text in every file that contains a spelling
mistake |
01:05.56 |
zero57 |
will that command ignore the ones I shouldn't
edit? |
01:06.08 |
starseeker |
brlcad: dunno - testing here seems to suggest
that... I can try a few more things tomorrow, but darned if I can
see how just adding the validation targets to the mix could cause
VS to hang... |
01:06.28 |
brlcad |
here's a dangerous example: find . -name \*.c
-not -regex '.*svn.*' -not -regex '.*other.*' -not -regex
'.*cmake.*' -exec perl -pi -e 's/mispeling/mispelling/g' {}
\; |
01:06.45 |
brlcad |
zero57: suggest you read the manpage to find
and perl to understand what all that does ;) |
01:07.17 |
brlcad |
starseeker: easy to prove that's not the case,
add some dummy targets |
01:08.30 |
starseeker |
brlcad: I may have an idea how we can use
fewer build targets to handle the DocBook stuff anyway |
01:09.18 |
starseeker |
stress testing VS is low on starseeker's list
of things he wants to care about... |
01:10.12 |
zero57 |
brlcad: How's that dangerous? and I just tried
it, (obviously changing mispeling and misspelling), and it doesn't
work |
01:11.36 |
starseeker |
brlcad: we'd have to add dummy targets using
the custom target mechanism rather than c/c++ compilation - not
sure how to do that in vanilla VS either... |
01:12.21 |
brlcad |
again, something to delegate to
minions.. |
01:12.50 |
starseeker |
shrugs - if you think that's
a worthwhile use of their time, sure |
01:18.41 |
zero57 |
nevermind brlcad :) I fixed it |
01:19.15 |
zero57 |
brlcad: You gave me a nice hint that needed to
fix my problem |
01:19.27 |
zero57 |
basically, all I had to use was the -prune
argument |
01:19.37 |
zero57 |
so I just ignored .svn and then it works
:) |
01:20.07 |
brlcad |
note that you should still review what all got
changed |
01:20.22 |
brlcad |
a variable named "animmate" for example might
be entirely intentional |
01:20.46 |
zero57 |
brlcad: Thanks, but can you very kindly extend
my deadline? I don't have anymore time than this because I have a
lot of homework and tests (semester almost ending)
http://www.google-melange.com/gci/task/view/google/gci2012/7999212 |
01:21.19 |
zero57 |
Of course :) Also I would have to count all
the spelling mistakes and files I've changed |
01:23.04 |
Notify |
03GCI: Chris Kloehn: Crash MGED reliably -
Ready for review The work on this task is ready to be reviewed.
http://www.google-melange.com/gci/task/view/google/gci2012/7948218 |
01:23.24 |
Notify |
03GCI: Skriptkid: Set up BuildBot continuous
integration for BRL-CAD - I Know I just wanted to test if I'd
logged in right.
http://www.google-melange.com/gci/task/view/google/gci2012/8006217 |
01:34.37 |
*** join/#brlcad Skriptkid
(~Skriptkid@117.202.105.206) |
01:44.23 |
*** part/#brlcad Skriptkid
(~Skriptkid@117.202.105.206) |
01:48.59 |
*** join/#brlcad archivist
(~archivist@host81-149-189-98.in-addr.btopenworld.com) |
01:53.13 |
*** part/#brlcad zero57
(~an@211.224-ppp.3menatwork.com) |
01:56.19 |
Notify |
03GCI: Sean: Find and fix at least 5 spelling
mistakes in at least 40 different files - Deadline extended The
deadline of the task has been extended with 2 days and 0 hours.
http://www.google-melange.com/gci/task/view/google/gci2012/7999212 |
01:59.43 |
Notify |
03GCI: Sean: Design an MGED command
spreadsheet - any will work OO spreadsheets are just fine, even a
Google Doc spreadsheet would be fine.
http://www.google-melange.com/gci/task/view/google/gci2012/7985228 |
02:08.10 |
Notify |
03GCI: Sean: Crash MGED reliably - crash log
This one technically qualifies as a graceful abort (the bu_bomb()
that is referred to in the description), but you should send in a
crash log anyways. MGED takes a couple seconds to shut down because
it's writing out a bomb log. Find it and submit. It'll probably
either be within the application...
http://www.google-melange.com/gci/task/view/google/gci2012/7948218 |
02:08.30 |
Notify |
03GCI: Sean: Crash MGED reliably - Deadline
extended The deadline of the task has been extended with 1 days
and 0 hours.
http://www.google-melange.com/gci/task/view/google/gci2012/7948218 |
02:10.11 |
brlcad |
starseeker: so what led you to the analysis
conclusion that you were hitting an msvc limit? |
02:15.11 |
Notify |
03GCI: Sean: Create an artistic screenshot -
Deadline extended The deadline of the task has been extended with
2 days and 0 hours.
http://www.google-melange.com/gci/task/view/google/gci2012/8025213 |
02:16.37 |
Notify |
03GCI: Sean: Create an RTWizard screenshot -
yes You can import a model from 3ds max, but you'll have to
export to one of the numerous formats that we will import.
http://www.google-melange.com/gci/task/view/google/gci2012/8034204 |
02:19.04 |
*** join/#brlcad maths22
(~maths22@c-50-141-159-74.hsd1.il.comcast.net) |
02:25.55 |
brlcad |
caen23: so what would you like to do about the
window close task? |
02:27.44 |
*** join/#brlcad maths22
(~maths22@c-50-141-159-74.hsd1.il.comcast.net) |
02:29.08 |
brlcad |
your code is definitely in a good/right
direction, but I think that bug is actually related to the
change |
02:30.02 |
Notify |
03GCI: Sean: Close MGED when both windows are
closed - probably I don't have a linux build handy at the moment,
but the crash is almost certainly cross-platform. That error means
it tried to bring a GL context to focus that doesn't exist. That
can only be the GL context that was in the graphics window that was
closed/hidden or it's a new...
http://www.google-melange.com/gci/task/view/google/gci2012/7945212 |
02:30.12 |
Notify |
03GCI: Sean: Close MGED when both windows are
closed - Task Needs More Work One of the mentors has sent this
task back for more work. Talk to the mentor(s) assigned to this
task to satisfy the requirements needed to complete this task,
submit your work again and mark the task as complete once you
re-submit your work.
http://www.google-melange.com/gci/task/view/google/gci2012/7945212 |
02:30.22 |
Notify |
03GCI: Sean: Close MGED when both windows are
closed - Deadline extended The deadline of the task has been
extended with 1 days and 0 hours.
http://www.google-melange.com/gci/task/view/google/gci2012/7945212 |
02:31.02 |
Notify |
03GCI: Chris Kloehn: Crash MGED reliably - Got
what you asked for Found the files, submited them seconds ago.
Thanks for extending deadline just in case.
http://www.google-melange.com/gci/task/view/google/gci2012/7948218 |
03:04.02 |
Notify |
03GCI: Sean: Implement thread creation for
Windows - Task Needs More Work One of the mentors has sent this
task back for more work. Talk to the mentor(s) assigned to this
task to satisfy the requirements needed to complete this task,
submit your work again and mark the task as complete once you
re-submit your work.
http://www.google-melange.com/gci/task/view/google/gci2012/8030203 |
03:07.49 |
Notify |
03BRL-CAD Wiki:Sean * 0
/wiki/Special:Log/delete: deleted "[[Dog Collars - What You Need To
Know]]": spam |
03:08.09 |
Notify |
03BRL-CAD Wiki:Sean * 0
/wiki/Special:Log/block: blocked [[User:180.194.172.94]] with an
expiry time of infinite (anonymous users only, account creation
disabled): Spamming links to external sites |
03:08.57 |
Notify |
03GCI: Willie Zhu: Implement a primitive
volume function ... for hyperboloids of one sheet (HYP) - Help?
Sorry, I don't really know how to approach this, as neither Google
nor Wolfram are much help, and I have only taken introductory
calculus (my best guess is substuting the area of a circle, pi * r2
with the area of an ellipse, pi * a * b...
http://www.google-melange.com/gci/task/view/google/gci2012/8009213 |
03:11.18 |
*** join/#brlcad zero57
(~an@211.224-ppp.3menatwork.com) |
03:11.24 |
Notify |
03GCI: An: Find and fix at least 5 spelling
mistakes in at least 40 different files - Ready for review The
work on this task is ready to be reviewed.
http://www.google-melange.com/gci/task/view/google/gci2012/7999212 |
03:11.54 |
Notify |
03GCI: Sean: Crash MGED reliably - Task Closed
Congratulations, this task has been completed successfully.
http://www.google-melange.com/gci/task/view/google/gci2012/7948218 |
03:12.09 |
zero57 |
brlcad: Hi, I actually didn't need that
extension for the deadline :P I did GCI instead of my
homework |
03:18.34 |
Notify |
03GCI: Matt S.: Implement a primitive volume
function ... for hyperboloids of one sheet (HYP) - I think I worked
it out Heya! I've sketched up a solution to this by integrating
the volume form: https://en.wikipedia.org/wiki/Volume_form
after first applying a couple transforms to make the cylinder
behave nicely. I'll type it up for you as...
http://www.google-melange.com/gci/task/view/google/gci2012/8009213 |
03:18.35 |
Notify |
03GCI: Matt S.: Implement a primitive volume
function ... for hyperboloids of one sheet (HYP) - Deadline
extended The deadline of the task has been extended with 2 days
and 0 hours.
http://www.google-melange.com/gci/task/view/google/gci2012/8009213 |
03:20.10 |
Notify |
03GCI: Matt S.: Implement a primitive volume
function ... for hyperboloids of one sheet (HYP) - imezones And
for what it's worth, when I say later this evening I'm in Australia
and cannot access the irc channel during the day due to network
restrictions.
http://www.google-melange.com/gci/task/view/google/gci2012/8009213 |
03:29.01 |
Notify |
03GCI: Sean: Find and fix at least 10 spelling
mistakes in at least 10 different files - how many Monika, Were
you able to find any? You may be able to help the next person if
you can identify any you did find.
http://www.google-melange.com/gci/task/view/google/gci2012/7959223 |
03:36.43 |
Notify |
03GCI: Sean: Compile BRL-CAD using GCC 4.8 -
did you figure it out? There are instructions on the page where
you downloaded the image with setup information including that
password.
http://www.google-melange.com/gci/task/view/google/gci2012/7982223 |
03:38.38 |
Notify |
03GCI: Sean: Add a primitive surface area
function ... for hyperboloids of one sheet (HYP) - giving up?
skriptkid, you're giving up? sounds like you were on the right
track, just needing to validate your work. You could create a hyp
that is close to or matching a right circular cylinder and make
sure you get the same results (see the...
http://www.google-melange.com/gci/task/view/google/gci2012/7983225 |
03:38.39 |
*** part/#brlcad zero57
(~an@211.224-ppp.3menatwork.com) |
03:42.03 |
Notify |
03GCI: Chris Kloehn: Crash MGED reliably (#3)
- Task Claimed I would like to work on this task.
http://www.google-melange.com/gci/task/view/google/gci2012/7958221 |
03:45.55 |
Notify |
03GCI: Sean: Crash MGED reliably (#3) - Task
Assigned This task has been assigned to Chris Kloehn. You have 48
hours to complete this task, good luck!
http://www.google-melange.com/gci/task/view/google/gci2012/7958221 |
03:52.55 |
Notify |
03GCI: Sean: Make mged 'tables' command not
call system() - Task Needs More Work One of the mentors has sent
this task back for more work. Talk to the mentor(s) assigned to
this task to satisfy the requirements needed to complete this task,
submit your work again and mark the task as complete once you
re-submit your work.
http://www.google-melange.com/gci/task/view/google/gci2012/8007219 |
03:52.56 |
Notify |
03GCI: Sean: Make mged 'tables' command not
call system() - Deadline extended The deadline of the task has
been extended with 1 days and 0 hours.
http://www.google-melange.com/gci/task/view/google/gci2012/8007219 |
03:54.40 |
Notify |
03GCI: Chris Kloehn: Crash MGED reliably (#3)
- Ready for review The work on this task is ready to be reviewed.
http://www.google-melange.com/gci/task/view/google/gci2012/7958221 |
03:55.00 |
Notify |
03GCI: Sean: Make mged 'tables' command not
call system() - hat's not a patch So I see you created a new item
on our patches tracker, but you didn't submit a *patch* file there
(or here). A patch file is a text file that includes only the
changes you made to files. The diff command will generate a patch
file. The "svn diff" command is even...
http://www.google-melange.com/gci/task/view/google/gci2012/8007219 |
03:59.07 |
Notify |
03GCI: Sean: Make mged 'tables' command not
call system() - by the way For what it's worth, making a patch is
a fundamental developer skill so it's definitely worth learning.
It's the way code changes are exchanged both throughout open source
and professionally.
http://www.google-melange.com/gci/task/view/google/gci2012/8007219 |
04:03.27 |
Notify |
03GCI: Sean: Write BRL-CAD News article on
.deb/.rpm builds - full name John, if you provide your full name,
I'll gladly credit you in our authorship documentation accordingly.
Thank you for your efforts. It's a great piece that we'll work to
publish to our news outlets.
http://www.google-melange.com/gci/task/view/google/gci2012/7945213 |
04:03.38 |
Notify |
03GCI: Sean: Write BRL-CAD News article on
.deb/.rpm builds - Task Closed Congratulations, this task has been
completed successfully.
http://www.google-melange.com/gci/task/view/google/gci2012/7945213 |
04:06.23 |
Notify |
03GCI: Sean: Upgrade Drupal website - accounts
Jacob, so that looks just fantastic, nice work. The only problem
I noticed is that my account (at least) seems to have no permission
to do anything. I can log in, but somehow the permission roles are
gone or not being used. Any thoughts?
http://www.google-melange.com/gci/task/view/google/gci2012/7958216 |
04:06.28 |
Notify |
03GCI: Sean: Upgrade Drupal website - Task
Closed Congratulations, this task has been completed successfully.
http://www.google-melange.com/gci/task/view/google/gci2012/7958216 |
04:07.23 |
Notify |
03GCI: Gmercer015: Make mged 'tables' command
not call system() - Sorry! I'm terribly sorry, i thought i had
uploaded the patch file! i must have accidently uploaded the text
file, i read through the tutorial and created the patch file
correctly it's still sitting here on my desktop(how embarassing!).
Ill resubmit this now, thanks again for...
http://www.google-melange.com/gci/task/view/google/gci2012/8007219 |
04:11.44 |
Notify |
03GCI: Sean: Add a primitive surface area
function ... for triangle meshes (BOT) - upcoming tasks can
fix/validate this one Johannes, so the patch seems reasonable at
a quick glance, but it obviously warrants some validation testing.
We'll add some more tasks in a few days to test routines like this
one that haven't been fully tested. The...
http://www.google-melange.com/gci/task/view/google/gci2012/7968224 |
04:12.00 |
Notify |
03GCI: Sean: Add a primitive surface area
function ... for triangle meshes (BOT) - Task Closed
Congratulations, this task has been completed successfully.
http://www.google-melange.com/gci/task/view/google/gci2012/7968224 |
04:14.45 |
Notify |
03GCI: Gmercer015: Make mged 'tables' command
not call system() - Ready for review The work on this task is
ready to be reviewed.
http://www.google-melange.com/gci/task/view/google/gci2012/8007219 |
04:15.00 |
Notify |
03GCI: Sean: Implement a primitive volume
function ... for right hyperbolic cylinders (RHC) - complicated
testing As testing whether your implementation is actually
correct will take some time, we'll be going on some blind faith..
;) We'll be adding tasks soon to perform validation tasks for new
functions like this one, so let me know if...
http://www.google-melange.com/gci/task/view/google/gci2012/7960224 |
04:15.05 |
Notify |
03GCI: Sean: Implement a primitive volume
function ... for right hyperbolic cylinders (RHC) - Task Closed
Congratulations, this task has been completed successfully.
http://www.google-melange.com/gci/task/view/google/gci2012/7960224 |
04:16.35 |
Notify |
03GCI: Gmercer015: Make mged 'tables' command
not call system() - Updated updated sourceforge link with patch
now, if for some reason the changelog.txt is needed it will still
be in the compressed files aobe the link.
http://www.google-melange.com/gci/task/view/google/gci2012/8007219 |
04:18.40 |
Notify |
03GCI: Sean: Create a utility library (LIBBU)
API unit test ... for avs.c - nicely done Still have to commit
the patch, but a manual inspection looks great. Nice work. You may
have already provided it elsewhere, but I don't see it in my notes.
If you provide your full name, we'll credit you accordingly in our
authorship documentation.
http://www.google-melange.com/gci/task/view/google/gci2012/7986218 |
04:18.45 |
Notify |
03GCI: Sean: Create a utility library (LIBBU)
API unit test ... for avs.c - Task Closed Congratulations, this
task has been completed successfully.
http://www.google-melange.com/gci/task/view/google/gci2012/7986218 |
04:20.30 |
Notify |
03GCI: Lachlan P: Create a utility library
(LIBBU) API unit test ... for avs.c - Thanks Hi, Thanks for that
(very hard to be patient waiting for it to be checked...) Lachlan
Phillips, if you need it, but I think its already in the AUTHORS
file from a previous task. Thanks, Lachlan
http://www.google-melange.com/gci/task/view/google/gci2012/7986218 |
04:29.23 |
Notify |
03GCI: Sean: Make mged 'tables' command not
call system() - so close That's looking a lot better! The patch
looks good but has several problems that make it unapplyable. Does
it compile for you? I would assume you have, but you may have
disabled or otherwise be ignoring warnings. In particular, I
noticed the use of // comments throughout,...
http://www.google-melange.com/gci/task/view/google/gci2012/8007219 |
04:29.32 |
Notify |
03GCI: Sean: Make mged 'tables' command not
call system() - Task Needs More Work One of the mentors has sent
this task back for more work. Talk to the mentor(s) assigned to
this task to satisfy the requirements needed to complete this task,
submit your work again and mark the task as complete once you
re-submit your work.
http://www.google-melange.com/gci/task/view/google/gci2012/8007219 |
04:30.13 |
Notify |
03GCI: javamonn: Make tables.c not call
system("cat ...") - A few questions... First of all, where is the
third system() call? I can find the two in the ged tables method
but I cant seem to locate the third. Secondly, only one of these
calls to system are a "cat" command, the other is a sort command.
I'm assuming that I only replace the call...
http://www.google-melange.com/gci/task/view/google/gci2012/7966235 |
04:30.59 |
caen23 |
brlcad: hmm… at this point, i really don't
know what to do, i will have to do some more research. but to me,
it definitely looks like an xquartz issue. the code works on deb 6
and googling for 'error: xp_attach_gl_context returned: 2' doesn't
return a single non-osx result |
04:31.18 |
Notify |
03GCI: fernozzle: Implement a primitive volume
function ... for right hyperbolic cylinders (RHC) - My name My
name is Michael Huang. How would you recommend I include my name
in the future (since I can't change my username)? Thanks in
advance.
http://www.google-melange.com/gci/task/view/google/gci2012/7960224 |
04:33.13 |
Notify |
03GCI: fernozzle: Implement a primitive volume
function ... for gridded volumes (VOL) - Task Claimed I would like
to work on this task.
http://www.google-melange.com/gci/task/view/google/gci2012/7998215 |
04:34.18 |
Notify |
03GCI: Sean: Find and fix at least 5 spelling
mistakes in at least 40 different files - nicely done Well done.
This looks like the first spelling mistake task to get caught. I
just noticed one problem in that you missed fixing a mistake for
one of the words you found, and it was even included in the patch
mispelled/unchanged. See...
http://www.google-melange.com/gci/task/view/google/gci2012/7999212 |
04:34.19 |
Notify |
03GCI: Sean: Find and fix at least 5 spelling
mistakes in at least 40 different files - Task Needs More Work One
of the mentors has sent this task back for more work. Talk to the
mentor(s) assigned to this task to satisfy the requirements needed
to complete this task, submit your work again and mark the task as
complete once you re-submit your...
http://www.google-melange.com/gci/task/view/google/gci2012/7999212 |
04:35.39 |
caen23 |
starseeker: isn't the xmllint issue a bit
weird? it shouldn't be platform-specific, but if your fix works, i
will take care of the rest of the files |
04:36.29 |
Notify |
03GCI: Sean: Create an ISST screenshot or
animation - wrong tool Thanks for the screenshot of archer,
Diane, but.... This task specifically asks for a screenshot or
animation of the 'isst' tool. Not 'archer'. There's a separate task
for archer that I believe is still incomplete, but even your
included image would need to use a more...
http://www.google-melange.com/gci/task/view/google/gci2012/7945221 |
04:36.33 |
Notify |
03GCI: Sean: Create an ISST screenshot or
animation - Task Needs More Work One of the mentors has sent this
task back for more work. Talk to the mentor(s) assigned to this
task to satisfy the requirements needed to complete this task,
submit your work again and mark the task as complete once you
re-submit your work.
http://www.google-melange.com/gci/task/view/google/gci2012/7945221 |
04:36.43 |
Notify |
03GCI: Sean: Create an ISST screenshot or
animation - Deadline extended The deadline of the task has been
extended with 1 days and 0 hours.
http://www.google-melange.com/gci/task/view/google/gci2012/7945221 |
04:39.29 |
Notify |
03GCI: Sean: Crash MGED reliably (#3) - Task
Needs More Work One of the mentors has sent this task back for
more work. Talk to the mentor(s) assigned to this task to satisfy
the requirements needed to complete this task, submit your work
again and mark the task as complete once you re-submit your work.
http://www.google-melange.com/gci/task/view/google/gci2012/7958221 |
04:43.35 |
Notify |
03GCI: Sean: Crash MGED reliably (#3) - same
issue Not only is it a "graceful" bu_bomb termination that the
description says don't count, that's the exact same crash as the
first one you reported. If you're going to get points for a second
crash task, it needs to be a non bu_bomb() crash (which means there
WON'T be an mged-#####-bomb.log...
http://www.google-melange.com/gci/task/view/google/gci2012/7958221 |
04:45.50 |
Notify |
03GCI: Sean: Compile BRL-CAD on Windows using
Cygwin - Deadline extended The deadline of the task has been
extended with 2 days and 0 hours.
http://www.google-melange.com/gci/task/view/google/gci2012/7972239 |
04:46.00 |
Notify |
03GCI: Sean: Compile BRL-CAD on Windows using
Cygwin - Task Needs More Work One of the mentors has sent this
task back for more work. Talk to the mentor(s) assigned to this
task to satisfy the requirements needed to complete this task,
submit your work again and mark the task as complete once you
re-submit your work.
http://www.google-melange.com/gci/task/view/google/gci2012/7972239 |
04:47.12 |
brlcad |
caen23: the mac gl drivers are very
intolerant |
04:47.29 |
brlcad |
especially under glx |
04:47.59 |
brlcad |
that error has come up before and it's always
been an avoidable book-keeping problem |
04:49.01 |
brlcad |
maybe something to make a gci task of for
someone else to hack on, so it's progress either way (so long as
mac isn't busted) |
04:50.41 |
Notify |
03GCI: Sean: Implement a primitive volume
function ... for gridded volumes (VOL) - Task Assigned This task
has been assigned to fernozzle. You have 72 hours to complete this
task, good luck!
http://www.google-melange.com/gci/task/view/google/gci2012/7998215 |
05:08.19 |
caen23 |
brlcad: i don't understand what you mean by
'avoidable book-keeping problem'? :D |
05:12.30 |
Notify |
03GCI: Chris Kloehn: Crash MGED reliably (#3)
- Yes sir Will do
http://www.google-melange.com/gci/task/view/google/gci2012/7958221 |
05:12.31 |
Notify |
03GCI: reikaze: Fix closedb - Claim Removed
The claim on this task has been removed, someone else can claim it
now.
http://www.google-melange.com/gci/task/view/google/gci2012/7958214 |
05:33.32 |
*** join/#brlcad crdueck
(~cdk@24.212.219.10) |
05:35.44 |
Notify |
03GCI: Melange: Create a technical screenshot
- Task Reopened Melange has detected that the final deadline has
passed and it has reopened the task.
http://www.google-melange.com/gci/task/view/google/gci2012/8022221 |
05:35.54 |
Notify |
03GCI: Monika: Find and fix at least 10
spelling mistakes in at least 10 different files - Hi I'm fairly
certain that in the 'AUTHORS.txt' file, 'Northrup Research and
Technology Center' should actually be 'Northrop Research and
Technology Centre'.
http://www.google-melange.com/gci/task/view/google/gci2012/7959223 |
05:47.52 |
*** join/#brlcad crdueck
(~cdk@24.212.219.10) |
05:53.20 |
*** join/#brlcad harmanpreet
(~chatzilla@202.164.53.117) |
06:17.21 |
*** join/#brlcad crdueck
(~cdk@24.212.219.10) |
06:44.16 |
Notify |
03GCI: Ambar Pal: Compile BRL-CAD using GCC
4.8 - Thanks Tom Browder sent me the password and I got to know
that it was already provided in the instructions.
http://www.google-melange.com/gci/task/view/google/gci2012/7982223 |
07:18.42 |
Notify |
03GCI: fernozzle: Implement a primitive volume
function ... for gridded volumes (VOL) - Ready for review The work
on this task is ready to be reviewed.
http://www.google-melange.com/gci/task/view/google/gci2012/7998215 |
07:19.37 |
Notify |
03GCI: fernozzle: Implement a primitive volume
function ... for gridded volumes (VOL) - My name My name is
Michael Huang. Thanks!
http://www.google-melange.com/gci/task/view/google/gci2012/7998215 |
07:33.38 |
*** join/#brlcad
GrantMercer015
(~GrantMerc@p23184-ipngn100301fukuokachu.fukuoka.ocn.ne.jp) |
07:38.55 |
mansi22 |
starseeker: still no luck :( |
07:39.21 |
mansi22 |
http://slexy.org/view/s2qY2s7K9s |
08:04.22 |
*** join/#brlcad Al_Da_Best
(Al_Da_Best@cpc2-shep12-2-0-cust21.8-3.cable.virginmedia.com) |
08:13.16 |
*** join/#brlcad
GrantMercer015
(~GrantMerc@p23184-ipngn100301fukuokachu.fukuoka.ocn.ne.jp) |
08:15.56 |
GrantMercer015 |
after calling cmake -dcmake_build_type=debug
do i need to use 'make |
08:16.08 |
GrantMercer015 |
or with the cmake itself tell me whether my
source built |
08:20.09 |
mansi22 |
i use cmake GUI |
08:20.22 |
mansi22 |
so not sure about that |
08:36.55 |
*** join/#brlcad harmanpreet
(~chatzilla@202.164.53.117) |
08:45.29 |
GrantMercer015 |
is bu_malloc requires a char * to allocate
memory, how would i go about allocating memory for my char **? i
used malloc before but i cannot do that now, as i have to use
bu_alloc(size_t buf, char * str); |
08:45.33 |
GrantMercer015 |
if* |
08:56.19 |
Notify |
03GCI: Ambar Pal: Compile BRL-CAD using GCC
4.8 - How to compile? I have got the build directory set up
properly using Cmake(see th configuration log). now how/where do I
given the gcc <filename> -o <fileout> command?
http://www.google-melange.com/gci/task/view/google/gci2012/7982223 |
08:57.09 |
Notify |
03GCI: Andrei Tudorica: Create prototype 2D
CAD drawing(s) - hey something like this?:D
http://www.google-melange.com/gci/task/view/google/gci2012/7985229 |
09:03.33 |
*** join/#brlcad mansi22
(~Mansi@182.64.83.125) |
09:07.36 |
Notify |
03GCI: Aaron Keesing: Implement a primitive
centroid function ... for hyperboloids of one sheet (HYP) - Task
Claimed I would like to work on this task.
http://www.google-melange.com/gci/task/view/google/gci2012/8030210 |
09:18.15 |
GrantMercer015 |
hey mansi22 do you use svn with
brlcad? |
09:18.44 |
GrantMercer015 |
im wondering if after building and confirming
my file compiles i should redownload the svn off BRLCAD |
09:18.46 |
mansi22 |
yes |
09:19.10 |
GrantMercer015 |
thanks |
09:19.14 |
GrantMercer015 |
!* |
09:31.20 |
*** join/#brlcad d_rossberg
(~rossberg@BZ.BZFLAG.BZ) |
09:31.55 |
Notify |
03GCI: Daniel Rossberg: Implement a primitive
centroid function ... for hyperboloids of one sheet (HYP) - Task
Assigned This task has been assigned to Aaron Keesing. You have 72
hours to complete this task, good luck!
http://www.google-melange.com/gci/task/view/google/gci2012/8030210 |
09:37.10 |
Notify |
03GCI: Gmercer015: Make mged 'tables' command
not call system() - Ready for review The work on this task is
ready to be reviewed.
http://www.google-melange.com/gci/task/view/google/gci2012/8007219 |
09:39.45 |
Notify |
03GCI: Gmercer015: Make mged 'tables' command
not call system() - Crossing my fingers Im just thrilled to be
able to help out in a legitamate open source project and actually
finish something, so actually thank you! I updated the latest patch
with what i searched through in the hacker file, changed functions
to cross platform bu_func() and...
http://www.google-melange.com/gci/task/view/google/gci2012/8007219 |
09:50.07 |
Notify |
03GCI: Gmercer015: Make mged 'tables' command
not call system() - Name put on comment I put my name on the
tracker, but in the case you miss it, my full name is Grant Mercer,
and that would awesome if im added to the authorship!
http://www.google-melange.com/gci/task/view/google/gci2012/8007219 |
09:50.27 |
Notify |
03GCI: Daniel Rossberg: Implement a primitive
volume function ... for gridded volumes (VOL) - The for-loops
should go from 0 to vip->~dim - 1 Values equal to vip->~dim
won't crash the program but are unnecessary.
http://www.google-melange.com/gci/task/view/google/gci2012/7998215 |
09:50.37 |
Notify |
03GCI: Daniel Rossberg: Implement a primitive
volume function ... for gridded volumes (VOL) - Task Needs More
Work One of the mentors has sent this task back for more work.
Talk to the mentor(s) assigned to this task to satisfy the
requirements needed to complete this task, submit your work again
and mark the task as complete once you...
http://www.google-melange.com/gci/task/view/google/gci2012/7998215 |
09:54.57 |
*** join/#brlcad archivist
(~archivist@host81-149-189-98.in-addr.btopenworld.com) |
10:37.10 |
*** join/#brlcad hsrai
(~quassel@202.164.53.117) |
11:31.19 |
*** join/#brlcad Skriptkid
(~Skriptkid@117.202.99.196) |
11:32.14 |
Notify |
03GCI: Lohit: Crash Archer reliably (#3) -
Task Claimed I would like to work on this task.
http://www.google-melange.com/gci/task/view/google/gci2012/7994230 |
11:35.50 |
*** join/#brlcad d_rossberg
(~rossberg@BZ.BZFLAG.BZ) |
11:37.55 |
Notify |
03GCI: Daniel Rossberg: Crash Archer reliably
(#3) - Task Assigned This task has been assigned to Lohit. You
have 48 hours to complete this task, good luck!
http://www.google-melange.com/gci/task/view/google/gci2012/7994230 |
11:40.16 |
*** join/#brlcad Skriptkid
(~Skriptkid@117.202.99.196) |
11:47.31 |
Notify |
03GCI: Skriptkid: Add a primitive surface area
function ... for hyperboloids of one sheet (HYP) - I'll get back
I'll get back to this after my current task.
http://www.google-melange.com/gci/task/view/google/gci2012/7983225 |
11:48.51 |
Notify |
03GCI: Cristian: Find and fix at least 20
spelling mistakes in at least 5 different files - Task Claimed I
would like to work on this task.
http://www.google-melange.com/gci/task/view/google/gci2012/8033204 |
11:52.04 |
*** join/#brlcad wdnz
(~zndr@hiding-leuven.cegeka.be) |
12:06.59 |
Notify |
03GCI: Daniel Rossberg: Find and fix at least
20 spelling mistakes in at least 5 different files - Task Assigned
This task has been assigned to Cristian. You have 48 hours to
complete this task, good luck!
http://www.google-melange.com/gci/task/view/google/gci2012/8033204 |
12:11.20 |
Notify |
03GCI: Petar Stanev: Create an artistic
screenshot - I try it but nothing I try it but nothing. I even
made a video LINK : http://www.youtube.com/watch?v=KOxF_1YGhf4&feature=youtu.be
Can i use some model of human , tank , tire or download .g files
from somewhere ?
http://www.google-melange.com/gci/task/view/google/gci2012/8025213 |
12:21.52 |
Notify |
03GCI: Daniel Rossberg: Create an artistic
screenshot - Sample databases You'll find some .g files in your
BRL-CAD installation at share/db. There are nice programs for
database creation too. Look at src/shapes and src/proc-db (in the
source code check-out) to get an idea what's available. Eg the
program tire creates nice BRL-CAD tires.
http://www.google-melange.com/gci/task/view/google/gci2012/8025213 |
12:36.18 |
Notify |
03GCI: An: Find and fix at least 5 spelling
mistakes in at least 40 different files - How did I even miss that?
Sorry! I did this late at night and didn't seem to notice it!
I'll get onto it ASAP
http://www.google-melange.com/gci/task/view/google/gci2012/7999212 |
12:43.35 |
Notify |
03GCI: An: Find and fix at least 5 spelling
mistakes in at least 40 different files - Ready for review The
work on this task is ready to be reviewed.
http://www.google-melange.com/gci/task/view/google/gci2012/7999212 |
12:59.42 |
Notify |
03GCI: John: Write a BRL-CAD showcase article
- Task Claimed I would like to work on this task.
http://www.google-melange.com/gci/task/view/google/gci2012/8022213 |
13:02.23 |
Notify |
03GCI: Petar Stanev: Create an artistic
screenshot - Ready for review The work on this task is ready to be
reviewed.
http://www.google-melange.com/gci/task/view/google/gci2012/8025213 |
13:05.28 |
Notify |
03GCI: Daniel Rossberg: Write a BRL-CAD
showcase article - Task Assigned This task has been assigned to
John. You have 48 hours to complete this task, good luck!
http://www.google-melange.com/gci/task/view/google/gci2012/8022213 |
13:17.15 |
*** join/#brlcad harmanpreet
(~chatzilla@124.253.151.200) |
13:18.39 |
*** join/#brlcad caen23_
(~caen23@92.81.204.43) |
13:21.32 |
*** join/#brlcad M0J0E
(~johannes@p4FDFB03A.dip.t-dialin.net) |
14:21.43 |
Notify |
03BRL-CAD:bob1961 * 53997
brlcad/trunk/src/libbu/vls_vprintf.c: Fixed a typo. |
14:32.42 |
caen23_ |
starseeker: i think i've found a better way to
fix the windows issues: apparently, the <author> tag does not
need to appear inside <refentrytitle> or <info> as long
as you specify the author at the end of the file, using something
like <refsection
xml:id="author"><title>AUTHOR</title><para>BRL-CAD
Team</para></refsection> |
14:32.48 |
caen23_ |
i think this is the way to go |
14:40.55 |
Notify |
03GCI: Ambar Pal: Compile BRL-CAD using GCC
4.8 - Please Reply Please reply to the above comment. I am not
able to ficure out which file to compile using gcc.
http://www.google-melange.com/gci/task/view/google/gci2012/7982223 |
14:52.02 |
Notify |
03GCI: Melange: Model BRL-CAD logo in BRL-CAD
(alan one) - Initial Deadline passed Melange has detected that the
initial deadline has passed and it has set the task status to
ActionNeeded. The student has 24 hours to submit the work before
the task is reopened and sent back to the pool for other students
to claim.
http://www.google-melange.com/gci/task/view/google/gci2012/7994225 |
14:55.06 |
*** join/#brlcad ambarpal
(~ambarpal@120.59.168.89) |
14:55.41 |
ambarpal |
i have a query regarding compiling brlcad
using gcc for google code in |
15:02.54 |
*** join/#brlcad JordiGH
(~jordi@octave/developer/JordiGH) |
15:03.02 |
JordiGH |
ambarpal: What seems to be the
problem? |
15:03.50 |
Notify |
03BRL-CAD:n_reed * 53998
brlcad/trunk/src/librt/primitives/epa/epa.c: choose curve points
based on estimated curve length |
15:04.07 |
ambarpal |
i have run the cmake command to make the build
directory |
15:04.38 |
ambarpal |
but now i cannot find .c or .cpp file with
which i would compile gcc |
15:04.59 |
JordiGH |
After you run cmake, type "make" |
15:05.33 |
ambarpal |
this is for linux, right? but i am on
windows |
15:05.47 |
ambarpal |
but i ave got the linux vm that you
provided |
15:05.58 |
JordiGH |
I didn't provide it. |
15:06.16 |
JordiGH |
And it's not about the kernel you use, but
about the OS. Make would exist on any GNU or BSD system, with or
without linux. |
15:06.33 |
JordiGH |
Anyways, if you're using Windows, on Windows
cmake will generate Visual C++ project files, I believe. |
15:06.35 |
Notify |
03GCI: Sean: Compile BRL-CAD using GCC 4.8 -
his is going to be an uphill battle This sounds like it's going
to be an uphill battle for you. I'm glad to help, but we cannot
tell you every step along the way or we'd be better off just doing
the task ourself (or letting someone else). We have extensive
documentation in many places on how to...
http://www.google-melange.com/gci/task/view/google/gci2012/7982223 |
15:06.56 |
JordiGH |
ambarpal: Is that for you? |
15:07.13 |
ambarpal |
ok then ill see |
15:07.38 |
JordiGH |
Okay, so the task is specifically to compile
for gcc on Windows? |
15:08.07 |
ambarpal |
oh sorry, i guess sean commented just
now |
15:08.15 |
ambarpal |
no, the lask is not specifically for
windows |
15:08.20 |
ambarpal |
*task |
15:11.22 |
Notify |
03BRL-CAD:n_reed * 53999
brlcad/trunk/src/librt/primitives/epa/epa.c: space curves
evenly |
15:14.41 |
Notify |
03GCI: Sean: Implement thread creation for
Windows - invalid patch file The ThirdPatch.patch file is not a
valid patch file. Also, the changes still do not conform to our
coding style. The indentation is wrong and you still have a slew of
superfluous blank lines being added. That's obvious without even
applying the file just by reading the...
http://www.google-melange.com/gci/task/view/google/gci2012/8030203 |
15:15.21 |
Notify |
03GCI: fernozzle: Implement a primitive volume
function ... for gridded volumes (VOL) - Ready for review The work
on this task is ready to be reviewed.
http://www.google-melange.com/gci/task/view/google/gci2012/7998215 |
15:15.46 |
*** part/#brlcad ambarpal
(~ambarpal@120.59.168.89) |
15:16.37 |
Notify |
03GCI: fernozzle: Implement a primitive volume
function ... for gridded volumes (VOL) - Corrected Sorry about
that.
http://www.google-melange.com/gci/task/view/google/gci2012/7998215 |
15:17.13 |
*** part/#brlcad JordiGH
(~jordi@octave/developer/JordiGH) |
15:22.02 |
Notify |
03GCI: Jacob B: Upgrade Drupal website -
Account Your account should work now.
http://www.google-melange.com/gci/task/view/google/gci2012/7958216 |
15:22.43 |
Notify |
03GCI: Jacob B: Upgrade Mediawiki website -
Task Claimed I would like to work on this task.
http://www.google-melange.com/gci/task/view/google/gci2012/7974236 |
15:22.47 |
Notify |
03GCI: Richard Akira Heru: Model BRL-CAD logo
in BRL-CAD (alan one) - Ready for review The work on this task is
ready to be reviewed.
http://www.google-melange.com/gci/task/view/google/gci2012/7994225 |
15:27.41 |
*** join/#brlcad Skriptkid
(~Skriptkid@117.202.99.196) |
15:27.54 |
Notify |
03BRL-CAD:brlcad * 54000 (brlcad/trunk/AUTHORS
brlcad/trunk/BUGS and 40 others): apply a patch from peter stanev
(GCI:
http://www.google-melange.com/gci/task/view/google/gci2012/7999212)
that fixes 5+ spelling mistakes in 40+ files. |
15:28.18 |
Notify |
03GCI: Sean: Find and fix at least 5 spelling
mistakes in at least 40 different files - applied Thanks! A
modified version of your patch was applied in r54000 and you were
documented in our authorship documentation with the code
contribution. Note that src/other sources needed to be ignored
(that's not our code) and you shouldn't edit...
http://www.google-melange.com/gci/task/view/google/gci2012/7999212 |
15:28.28 |
Notify |
03GCI: Sean: Find and fix at least 5 spelling
mistakes in at least 40 different files - Task Closed
Congratulations, this task has been completed successfully.
http://www.google-melange.com/gci/task/view/google/gci2012/7999212 |
15:32.09 |
Notify |
03GCI: John: Write a BRL-CAD showcase article
- Who should I interview Hi, can you suggest me someone to
interview? I have already some questions. One more thing. My
computer has a problem so I'll only be able to write in the CPP.
http://www.google-melange.com/gci/task/view/google/gci2012/8022213 |
15:33.13 |
*** join/#brlcad code-in
(~code-in@62.28.72.245) |
15:33.26 |
brlcad |
hello code-in |
15:33.38 |
brlcad |
I assume you're here for the pizza
party? |
15:34.11 |
code-in |
Hi I'm a google code-in student and I'm
looking for someone to interview for the CPP. Anyone
volunteers? |
15:36.26 |
*** join/#brlcad JordiGH
(~jordi@octave/developer/JordiGH) |
15:36.42 |
brlcad |
code-in: what's your task suggest? |
15:36.53 |
*** part/#brlcad JordiGH
(~jordi@octave/developer/JordiGH) |
15:39.29 |
code-in |
you csn view my task is called "Write a
BRL-CAD showcase article" and requires me to interview a developer
and publish an article on the CPP |
15:43.51 |
brlcad |
code-in: I suggest you interview one of our
gsoc students about their project |
15:44.00 |
brlcad |
code-in: http://brlcad.org/d/node/98 |
15:45.21 |
brlcad |
code-in: any of them are fair game, but I
suggest contacting either wu, chris, andrei, or cristina
first |
15:45.41 |
brlcad |
since they're more accessible and have good
things they can talk about |
15:45.50 |
brlcad |
code-in: have you seen the other two interview
tasks? |
15:48.10 |
*** join/#brlcad maths22
(~maths22@c-50-141-159-74.hsd1.il.comcast.net) |
15:49.02 |
Notify |
03GCI: Sean: Find and fix at least 5 spelling
mistakes in at least 40 different files - full name An -- if you
provide your full name, I'll be sure to credit you accordingly in
our authorship documentation.
http://www.google-melange.com/gci/task/view/google/gci2012/7999212 |
15:49.53 |
Notify |
03BRL-CAD:brlcad * 54001 brlcad/trunk/AUTHORS:
that's twice I've made the mistake of pulling the top name instead
of the bottom one. stanev didn't provide the spelling fixes, 'An'
did. |
15:51.33 |
Notify |
03GCI: Sean: Find and fix at least 20 spelling
mistakes in at least 5 different files - update your sources One
of the other spelling tasks was just completed, so be sure to
update your checkout of our sources to get those changes. You can't
get credit for spelling mistakes that are already reported and
fixed.. ;) svn up
http://www.google-melange.com/gci/task/view/google/gci2012/8033204 |
15:51.54 |
code-in |
I haven't seen those tasks but I'll gladly
fulfill them when I end this one |
15:51.59 |
code-in |
thanks for the names. |
15:52.53 |
code-in |
ok I think I have enough information |
15:52.58 |
caen23_ |
alright, i think i've fixed docbook so that it
works on both win and linux. on linux it sure does, and on windows,
there should be nothing to complain about (<info> has been
removed). but we still have to wait for someone (mansi22?) to try
compiling on windows and see if it's ok |
15:53.28 |
Notify |
03GCI: Sean: Find and fix at least 10 spelling
mistakes in at least 10 different files - update your sources
Anshul, one of the other spelling tasks was just completed, so be
sure to update your checkout of our sources to get those changes.
You can't get credit for mistakes that are already reported/fixed.
;) Monica, thanks for pointing...
http://www.google-melange.com/gci/task/view/google/gci2012/7959223 |
15:55.59 |
brlcad |
caen23_:
http://www.google-melange.com/gci/task/view/google/gci2012/7964207 |
15:56.40 |
caen23_ |
still haven't got round to the "mged window"
task, so i can't claim, but i will as soon as i fix the other
one |
15:56.49 |
Notify |
03GCI: Daniel Rossberg: Implement a primitive
volume function ... for gridded volumes (VOL) - RT_ELL_CK_MAGIC
Are you sure? BTW, do you see any chance to test the function by
yourself?
http://www.google-melange.com/gci/task/view/google/gci2012/7998215 |
15:56.53 |
Notify |
03GCI: Daniel Rossberg: Implement a primitive
volume function ... for gridded volumes (VOL) - Task Needs More
Work One of the mentors has sent this task back for more work.
Talk to the mentor(s) assigned to this task to satisfy the
requirements needed to complete this task, submit your work again
and mark the task as complete once you...
http://www.google-melange.com/gci/task/view/google/gci2012/7998215 |
15:57.50 |
caen23_ |
oh, and i had already started committing the
changes, so i won't be able to include the gci link |
15:58.43 |
Notify |
03GCI: Sean: Create an artistic screenshot -
hat looks good, but... ... but the model is crap. :) You need to
find some geometry that is more impressive. Try the 'tire' tool
that Daniel mentioned or browse through grabcad.com and find
something you can import that is impressive. Remember that the
emphasis for this task is something...
http://www.google-melange.com/gci/task/view/google/gci2012/8025213 |
15:58.49 |
Notify |
03GCI: Sean: Create an artistic screenshot -
Task Needs More Work One of the mentors has sent this task back
for more work. Talk to the mentor(s) assigned to this task to
satisfy the requirements needed to complete this task, submit your
work again and mark the task as complete once you re-submit your
work.
http://www.google-melange.com/gci/task/view/google/gci2012/8025213 |
16:00.30 |
*** join/#brlcad Skriptkid
(~Skriptkid@117.202.99.196) |
16:01.37 |
brlcad |
caen23_: that's fine |
16:01.49 |
Notify |
03GCI: Sean: Create an artistic screenshot -
saw your video Petar, so I saw your video and the problems you
ran into. It looks like the importer failed for whatever reason. I
suggest either trying another importer or another model. Converting
geometry is a complicated hit-or-miss process, but you should be
able to find something that converts...
http://www.google-melange.com/gci/task/view/google/gci2012/8025213 |
16:01.52 |
brlcad |
caen23_: you could release the window task and
come back to it |
16:02.03 |
brlcad |
not likely anyone else is going to claim it
and complete it |
16:02.26 |
caen23_ |
ok, then |
16:04.02 |
caen23_ |
about that task, before leaving yesterday, you
said that it has always been an avoidable book-keeping problem, but
i don't think i understand what that means :D |
16:04.26 |
Notify |
03BRL-CAD:caen23 * 54002
(brlcad/trunk/doc/docbook/system/man1/en/anim_script.xml
brlcad/trunk/doc/docbook/system/man1/en/anim_sort.xml and 248
others): XML DocBook should now validate properly on both Windows
and Linux systems |
16:04.45 |
Notify |
03GCI: Cezar: Close MGED when both windows are
closed - Claim Removed The claim on this task has been removed,
someone else can claim it now.
http://www.google-melange.com/gci/task/view/google/gci2012/7945212 |
16:05.50 |
Notify |
03GCI: Sean: Upgrade Drupal website - looks
better That looks better, what was the problem? If you provide
your full name, we'll credit you accordingly in our authorship
documentation.
http://www.google-melange.com/gci/task/view/google/gci2012/7958216 |
16:05.55 |
Notify |
03GCI: Sean: Upgrade Mediawiki website - Task
Assigned This task has been assigned to Jacob B. You have 72 hours
to complete this task, good luck!
http://www.google-melange.com/gci/task/view/google/gci2012/7974236 |
16:07.00 |
Notify |
03GCI: Cezar: Fix <author> tags in our
Docbook documentation - Task Claimed I would like to work on this
task.
http://www.google-melange.com/gci/task/view/google/gci2012/7964207 |
16:07.55 |
Notify |
03GCI: Sean: Write a BRL-CAD showcase article
- responded on IRC In addition to the suggestions given to you on
IRC, you should read over these two tasks to get an idea of what
others have done and what is expected:
http://www.google-melange.com/gci/task/view/google/gci2012/7966232
...
http://www.google-melange.com/gci/task/view/google/gci2012/8022213 |
16:08.24 |
*** join/#brlcad Skriptkid
(~Skriptkid@117.202.99.196) |
16:08.55 |
Notify |
03GCI: Sean: Fix <author> tags in our
Docbook documentation - Task Assigned This task has been assigned
to Cezar. You have 48 hours to complete this task, good luck!
http://www.google-melange.com/gci/task/view/google/gci2012/7964207 |
16:09.40 |
Notify |
03GCI: Cezar: Fix <author> tags in our
Docbook documentation - Commit r54002 Commit r54002
http://www.google-melange.com/gci/task/view/google/gci2012/7964207 |
16:11.21 |
Notify |
03GCI: Cezar: Fix <author> tags in our
Docbook documentation - Ready for review The work on this task is
ready to be reviewed.
http://www.google-melange.com/gci/task/view/google/gci2012/7964207 |
16:12.22 |
Notify |
03GCI: Jacob B: Upgrade Drupal website - Looks
better I forgot to enable the management block when I disabled
the managemnet toolbar, so I manually had to acess the admin
interface. Jacob Burroughs
http://www.google-melange.com/gci/task/view/google/gci2012/7958216 |
16:23.36 |
*** join/#brlcad Al_DC_Best
(Al_Da_Best@cpc2-shep12-2-0-cust21.8-3.cable.virginmedia.com) |
16:29.30 |
Notify |
03GCI: Shomiron Ghose: Reduce duplicate code
in htonf.c - now? Used vim, when i opened it i typed :set
modeline in the command area. then i did it. Counted indents.
They're via the levels you said above. the convention of
<function type> <function name + declaration> was
used in the other files in libbu so what about now? >_<
http://www.google-melange.com/gci/task/view/google/gci2012/7966230 |
16:30.50 |
Notify |
03GCI: Shomiron Ghose: Reduce duplicate code
in htonf.c - Ready for review The work on this task is ready to be
reviewed.
http://www.google-melange.com/gci/task/view/google/gci2012/7966230 |
16:32.25 |
Notify |
03GCI: John: Write a BRL-CAD showcase article
- That's my own work I'm the one working on those articles. I'm
going to interview Wu.
http://www.google-melange.com/gci/task/view/google/gci2012/8022213 |
16:38.47 |
Notify |
03GCI: Mitsuhide: Create an RTWizard
screenshot - Ready for review The work on this task is ready to be
reviewed.
http://www.google-melange.com/gci/task/view/google/gci2012/8034204 |
16:40.23 |
Skriptkid |
brlcad: Need help with buildbot |
16:42.56 |
*** join/#brlcad Skriptkid_
(~Skriptkid@117.202.99.196) |
16:44.28 |
Skriptkid_ |
nick Skriptkid |
16:45.23 |
Notify |
03GCI: Petar Stanev: Create an artistic
screenshot - Ready for review The work on this task is ready to be
reviewed.
http://www.google-melange.com/gci/task/view/google/gci2012/8025213 |
17:03.17 |
Notify |
03BRL-CAD:carlmoore * 54003
(brlcad/trunk/doc/docbook/lessons/es/mged09_esfera_en_caja_exhibidora.xml
brlcad/trunk/include/bn.h and 14 others): fix spellings (including
Sproull and personalizados [latter in Spanish]) |
17:06.07 |
*** join/#brlcad archivist
(~archivist@host81-149-189-98.in-addr.btopenworld.com) |
17:06.36 |
*** join/#brlcad merzo
(~merzo@147-59-132-95.pool.ukrtel.net) |
17:15.48 |
*** join/#brlcad Skriptkid
(~Skriptkid@117.202.99.196) |
17:23.10 |
Notify |
03BRL-CAD:carlmoore * 54004
brlcad/trunk/src/libbu/sscanf.c: fix spelling and remove trailing
blanks/tabs |
17:23.19 |
Notify |
03GCI: Skriptkid: Set up BuildBot continuous
integration for BRL-CAD - Unable to run Buildbot I installed and
ran buildbot as per intructions given here :
http://buildbot.net/buildbot/docs/current/tutorial/firstrun.html.
But it shows a lot of errors about missing dependancies and missing
files. Buildbot isn't able to run. The two required...
http://www.google-melange.com/gci/task/view/google/gci2012/8006217 |
17:25.37 |
*** join/#brlcad Skriptki_
(~Skriptkid@117.202.99.196) |
17:27.12 |
*** join/#brlcad Skriptkid_
(~Skriptkid@117.202.99.196) |
17:28.24 |
Skriptkid |
brlcad ??? |
17:43.23 |
Notify |
03GCI: Lohit: Crash Archer reliably (#3) -
Claim Removed The claim on this task has been removed, someone
else can claim it now.
http://www.google-melange.com/gci/task/view/google/gci2012/7994230 |
18:04.52 |
*** join/#brlcad Skriptkid_
(~Skriptkid@117.202.99.196) |
18:12.19 |
Notify |
03GCI: fernozzle: Implement a primitive volume
function ... for gridded volumes (VOL) - Ready for review The work
on this task is ready to be reviewed.
http://www.google-melange.com/gci/task/view/google/gci2012/7998215 |
18:12.24 |
Notify |
03GCI: Shayantan: Layout "MGED Interface"
Reference Document - Ready for review The work on this task is
ready to be reviewed.
http://www.google-melange.com/gci/task/view/google/gci2012/7953233 |
18:16.34 |
Notify |
03GCI: fernozzle: Implement a primitive volume
function ... for gridded volumes (VOL) - I have tested it Sorry
about that. This is embarrassing. I've submitted a corrected
vesion. I did manage to test the function, but I later copy/pasted
the "boilerplate" vip/CHK_MAGIC lines afterward to better match
that of the ellipse volume function, and...
http://www.google-melange.com/gci/task/view/google/gci2012/7998215 |
18:19.00 |
Notify |
03BRL-CAD Wiki:62.28.72.245 * 4733
/wiki/Community_Publication_Portal: /* Final Editorial Review
*/ |
18:26.05 |
*** join/#brlcad maths22
(ada798d1@gateway/web/freenode/ip.173.167.152.209) |
18:46.33 |
caen23 |
brlcad: regarding the "close mged" task, if i
go to "Modes -> Display Managr" and choose X instead of OpenGL
on the mac, the previous problem goes away. is there a particular
reason for why X is not the default on the mac, or could i just
switch that and call it a day? |
19:40.45 |
starseeker |
caen23: opengl is preferable to X, when we can
use opengl |
19:41.40 |
starseeker |
as you're discovering, X opengl on the Mac is
a tricky prospect. Unfortunately, we don't currently have a
display manager for Apple's native opengl |
19:42.53 |
starseeker |
Whether we can mix native apple OpenGL with an
X11 mged or Archer is another question. Tcl/Tk does have an Aqua
version, but it's got rough edges thus far |
19:44.32 |
starseeker |
suspects mixing Aqua opengl
with X would be... problematic |
19:45.20 |
caen23 |
starseeker: but on os x at least, where we
don't have a native opengl dm, wouldn't x work better? :-? also,
thoughts on the docbook messages i left earlier? :D |
19:45.42 |
starseeker |
caen23: docbook looks good - nice
job! |
19:46.02 |
caen23 |
have you had a chance to run it on windows? is
it ok? |
19:46.22 |
starseeker |
running the validation on X is triggering
other issues for me here |
19:47.18 |
starseeker |
on Windows rather |
19:47.35 |
caen23 |
hmm… what kind of issues? |
20:01.36 |
*** join/#brlcad caen23_
(~caen23@92.81.175.122) |
20:06.43 |
*** join/#brlcad M0J0E
(~johannes@p4FDFB03A.dip.t-dialin.net) |
20:16.04 |
Notify |
03GCI: Andrei Tudorica: Create prototype 2D
CAD drawing(s) - pfff can I have please one more day?:DI finally
understood what I have to do :D
http://www.google-melange.com/gci/task/view/google/gci2012/7985229 |
20:16.11 |
starseeker |
caen23: not entirely sure - may just be
generating too many targets |
20:16.38 |
starseeker |
caen23: but the xmllint results I think were
the same all around - I was able to reproduce the failures from the
Windows build on Linux |
20:17.12 |
starseeker |
I don't expect there to be be any failures on
Windows, if Linux succeeds |
20:18.04 |
caen23 |
how did you reproduce the failures? cmake
flag? |
20:42.55 |
brlcad |
caen23: if we make X the default, then some
capabilities (like the ability to run archer) go away |
20:44.05 |
brlcad |
it's possible to make archer work without
opengl, but that's a bit involved |
20:44.23 |
brlcad |
moving forward, we're going to require opengl
e ventually, so it's not been a huge issue |
20:44.37 |
caen23 |
brlcad: but isn't archer separate from
mged? |
20:44.43 |
brlcad |
yep |
20:45.10 |
caen23 |
then perhaps enable x only for mged on os
x? |
20:45.20 |
brlcad |
the default manager is set when libfb and
libdm are compiled |
20:45.36 |
caen23 |
ah, didn't know that |
20:45.53 |
brlcad |
those settings just propagate up through to
the application automatically |
20:46.20 |
brlcad |
we could add some priority, but the real
problem is that there is some bug in our opengl code |
20:46.38 |
brlcad |
or our management of opengl contexts, as is
more likely the case |
20:47.48 |
caen23 |
i tried something this morning, i thought
maybe it crashed because of viewring. but i did some testing and
that's not the case. but yeah, openw.tcl does look like it could be
improved a lot |
20:48.45 |
brlcad |
I wouldn't worry about it too much given
archer is the eventual replacement -- but getting it working is
needed |
20:49.12 |
brlcad |
scheduled to push out archer for alpha testing
as soon as a few significant bugs are fixed |
20:49.20 |
brlcad |
needs to add the gci
tasks |
20:50.09 |
caen23 |
ok, then. any pointers as to where to look to
modify the opengl code? |
20:51.21 |
brlcad |
if I recall right, didn't you have the context
deleted when the window was hidden? |
20:51.36 |
brlcad |
try not deleting it ;) |
20:52.16 |
brlcad |
note that my recollection is very fuzzy ..
I've looked at many many patches over the past few days |
20:52.40 |
starseeker |
caen23: -DBRLCAD_EXTRADOCS_VALIDATE=ON was/is
how you enable the strict xmllint checking. |
20:53.22 |
caen23 |
that was originally the code :D but what i did
was, i simply hid the window, set a var to 0, and then called the
destroyer, which checked if both the cmd and the graphics windows
were closed. if both vars were 0, i would run the destroy
code |
20:53.51 |
caen23 |
starseeker: hmm… i thought i did that. looks
like i should do a clean install some time soon |
20:54.22 |
starseeker |
wanted to enable it by default, backed off
while lots of docbook conversions were happening, want to re-enable
it by default now. Re-thinking the DocBook build logic some
(again... sigh) to try and cut down on the absurd number of build
targets we're currently generating |
20:55.15 |
starseeker |
caen23: at this point, I think you're good on
DocBook (at least, until we get an active report that something's
still wrong.) |
20:55.27 |
caen23 |
starseeker: but if this error didn't occur in
the past, what is causing it now? |
20:55.47 |
starseeker |
which error? |
20:56.46 |
caen23 |
starseeker: the one related to the many build
targets |
20:56.56 |
brlcad |
caen23: the windows error is some unknown
failure that hangs MSVC, the cause isn't known |
20:57.09 |
brlcad |
it's just provoked when that option is
on |
20:57.33 |
brlcad |
good task to figure out what the real
underlying cause is, whatever it is |
20:57.41 |
caen23 |
brlcad: ooh, ok. sorry, got it all wrong. i
thought it failed on linux, too |
20:58.12 |
starseeker |
nope :-) |
20:59.00 |
starseeker |
caen23: working like a charm on
Linux |
20:59.12 |
brlcad |
like a boss |
20:59.44 |
caen23 |
starseeker: good to hear :D |
21:00.20 |
starseeker |
I'm not sure where a good starting point would
be for OpenGL+X on Mac... |
21:00.46 |
starseeker |
brlcad: are there any "good" example apps
where someone is handling that correctly? |
21:00.49 |
brlcad |
that should be catchable in a duebugger,can
trace backwards from there |
21:01.03 |
brlcad |
or run an opengl profiler on it to see the
opengl state leading up to that error |
21:01.30 |
starseeker |
ah - hadn't thought of the latter in a long
time - does the Mac dev package have one? |
21:02.00 |
brlcad |
there's a hundred ways to use opengl, our
particular approach isn't likely going to compare to other
approaches |
21:02.15 |
brlcad |
just needs some eyeballs either knowledgable
in debugging or in opengl to diagnose |
21:02.34 |
brlcad |
mac does provide a very nice
profiler |
21:02.50 |
brlcad |
but it's not just something you fire up, the
tool would have to be learned to be effective |
21:02.58 |
starseeker |
nods |
21:03.31 |
caen23 |
brlcad: i tried gdb like you said yesterday,
and that's how i got found what the error was. but i couldn't get a
stack trace, it said "no stack" when i ran bt. i'm gonna give the
opengl profiler a try |
21:04.54 |
brlcad |
caen23: you have to set breakpoints before the
error happens and walk forward |
21:05.32 |
brlcad |
like set one on your destructor function, see
if/when it gets called |
21:05.54 |
brlcad |
set breakpoints on the libdm functions that
actually created/manage the opengl contxt |
21:06.06 |
brlcad |
set a breakpoint on _exit |
21:06.26 |
brlcad |
somwehere in there, you'll be able to stop the
program and find the call that causes that abort |
21:06.49 |
brlcad |
given it's a glx error, a breakpoint on exit
and/or _exit should actually work |
21:06.53 |
brlcad |
that's a graceful termination |
21:06.59 |
caen23 |
i don't think openw.tcl is broken. i will try
what you suggested, thanks |
21:08.14 |
Notify |
03GCI: Melange: Create prototype 2D CAD
drawing(s) - Task Reopened Melange has detected that the final
deadline has passed and it has reopened the task.
http://www.google-melange.com/gci/task/view/google/gci2012/7985229 |
21:08.19 |
Notify |
03GCI: Andrei Tudorica: Create prototype 2D
CAD drawing(s) - Task Claimed I would like to work on this task.
http://www.google-melange.com/gci/task/view/google/gci2012/7985229 |
21:09.34 |
Notify |
03GCI: Sean: Create prototype 2D CAD
drawing(s) - Task Assigned This task has been assigned to Andrei
Tudorica. You have 48 hours to complete this task, good luck!
http://www.google-melange.com/gci/task/view/google/gci2012/7985229 |
21:13.09 |
Notify |
03GCI: Sean: Create prototype 2D CAD
drawing(s) - more on track so you're more on track with the
latest scheme, but I'd already have some critiques. You should not
have *any* wasted space. For example, the areas to the right and
left of the "title" are wasted in that example. That space should
be used by something else or the title should be...
http://www.google-melange.com/gci/task/view/google/gci2012/7985229 |
21:14.29 |
Notify |
03GCI: Andrei Tudorica: Create prototype 2D
CAD drawing(s) - . Understood. Thank you.
http://www.google-melange.com/gci/task/view/google/gci2012/7985229 |
21:20.06 |
Notify |
03GCI: John: Write a BRL-CAD showcase article
- Ready for review The work on this task is ready to be reviewed.
http://www.google-melange.com/gci/task/view/google/gci2012/8022213 |
21:42.35 |
Notify |
03GCI: An: Find and fix at least 5 spelling
mistakes in at least 40 different files - My full name Hi, my
full name is An Ha. Thanks.
http://www.google-melange.com/gci/task/view/google/gci2012/7999212 |
21:52.11 |
*** join/#brlcad caen23
(~caen23@92.81.217.125) |
21:54.13 |
*** join/#brlcad zero57
(4800d165@gateway/web/freenode/ip.72.0.209.101) |
21:56.17 |
zero57 |
brlcad: Hi, thanks for accepting my work for
the spell checking task! I've changed my public name to An Ha
instead of An. And I'd appreciate you crediting me in your
authorship documentation :) If you want, you can also use my middle
name which is Tuan. So it's An Tuan Ha. Thanks again |
22:21.25 |
*** join/#brlcad merzo
(~merzo@207-12-132-95.pool.ukrtel.net) |
22:31.56 |
Notify |
03BRL-CAD:brlcad * 54005 brlcad/trunk/AUTHORS:
full name is 'an tuan ha', thanks |
22:38.57 |
*** join/#brlcad titi
(4f640cda@gateway/web/freenode/ip.79.100.12.218) |
22:45.44 |
Notify |
03BRL-CAD:carlmoore * 54006
brlcad/trunk/doc/docbook/articles/it/about_it.xml: fix a spelling
in Italian |
22:53.29 |
Notify |
03GCI: Titi: Compile and run BRL-CAD on a
Raspberry Pi - IRC I emailed you but you don't reply me. What is
your nick in IRC?
http://www.google-melange.com/gci/task/view/google/gci2012/8003218 |
23:11.09 |
*** join/#brlcad maths22
(~maths22@c-50-141-159-74.hsd1.il.comcast.net) |
23:17.26 |
*** join/#brlcad maths22
(~maths22@c-50-141-159-74.hsd1.il.comcast.net) |
23:18.54 |
Notify |
03GCI: Aaron Keesing: Implement a primitive
centroid function ... for hyperboloids of one sheet (HYP) - hyp_Vi
object already there I see that there is a point_t object in the
rt_hyp_internal structure whose description is "hyp vertex". Does
this mean that all I have to do is make the centroid function
replace *cent with hyp_Vi, like for...
http://www.google-melange.com/gci/task/view/google/gci2012/8030210 |
23:32.22 |
Notify |
03GCI: abhishekcrzy: Fix closedb - Task
Claimed I would like to work on this task.
http://www.google-melange.com/gci/task/view/google/gci2012/7958214 |
23:33.44 |
Notify |
03BRL-CAD Wiki:Jacksixb * 4734
/wiki/User:Jacksixb/Independent_Study_2012-13_Log: |
23:38.50 |
*** join/#brlcad bhlegm
(~bhlegm@d108-180-27-19.bchsia.telus.net) |
23:50.25 |
*** join/#brlcad maths22
(~maths22@c-50-141-159-74.hsd1.il.comcast.net) |