*** pcardune has joined #schooltool | 00:02 | |
AVN` | pcardune, ping | 00:07 |
---|---|---|
pcardune | hi AVN` | 00:07 |
AVN` | pcardune, we have run into a weird problem with the testbrowser | 00:07 |
pcardune | so I heard | 00:07 |
tdoggette | Any thoughts? | 00:07 |
AVN` | it only finds the schooltool homepage | 00:07 |
AVN` | no matter where we point it too | 00:07 |
pcardune | AVN`: what do you point it to? | 00:08 |
AVN` | We tried pointing it to google, but it just printed out the schooltool calander | 00:08 |
AVN` | with www.google.com in the links instead of localhost | 00:08 |
tdoggette | Same with just a nonsense url | 00:08 |
pcardune | give me exactly what you put in the browser.open(...) command | 00:09 |
AVN` | >>> browser.open('http://Arandomwebsitethatisnotschooltoolnoreverhasbeen/') | 00:09 |
tdoggette | >>> browser.open('http://localhost/'), if we're not testsing for nonsense | 00:10 |
pcardune | oh, i was looking got the not nonsense version :) | 00:10 |
pcardune | so, to enable the new skin you know you have to include ++skin++NewCanDo in the URL right? | 00:10 |
tdoggette | yeah | 00:10 |
tdoggette | That's how we ran into this in the first place | 00:10 |
tdoggette | localhost/++skin++NewCanDo/go.html wasn't found | 00:11 |
pcardune | and did you include cando.newskin in ftesting.zcml? | 00:11 |
tdoggette | Though we could see it fine in our running instance | 00:11 |
AVN` | but we are now concerned at why it's not doing open(...) correctily | 00:11 |
wjohnsto | pcardune: if you make a change to files in the eggs directory and subdirectories, do they take action immidiately or is there something you need to do to get them to work? | 00:12 |
tdoggette | Instead of opening what we point it at, it sees only a schooltool page | 00:12 |
wjohnsto | **immediately | 00:12 |
pcardune | tdoggette: yes, my question was "did you include cando.newskin in ftesting.zcml" | 00:12 |
tdoggette | Yes. | 00:12 |
pcardune | wjohnsto: well you'd have to restart the server, and make sure it is actually using the egg and not some package installed system wide | 00:13 |
wjohnsto | well | 00:14 |
wjohnsto | I was getting this error | 00:14 |
pcardune | tdoggette: did you try using the 4 lines of debugger code for ftests that I showed you a while back? | 00:14 |
tdoggette | Er, no. | 00:14 |
tdoggette | Hang on, I'll dig them up. | 00:14 |
pcardune | that might help | 00:14 |
wjohnsto | the error was " 'module' object has no attribute 'IBeforeObjectAssignedEvent'" | 00:15 |
wjohnsto | whenever I tried to start a server from the newskin | 00:15 |
pcardune | wjohnsto: can you lisp paste the whole traceback? | 00:16 |
wjohnsto | sure | 00:16 |
wjohnsto | it is somewhere ^ I'll just find it | 00:16 |
wjohnsto | http://paste.lisp.org/display/45406 | 00:17 |
* pcardune looks | 00:17 | |
wjohnsto | so the next thing I did was I went to zope.schema.interfaces | 00:17 |
AVN` | its going to google.com | 00:17 |
wjohnsto | realized that interfaces.py had no 'IBeforeObjectAssignedEvent' | 00:17 |
pcardune | wjohnsto: good, that is the first thing I was going to ask. | 00:17 |
wjohnsto | so I go that class from someone else | 00:18 |
wjohnsto | and in the _field.py | 00:18 |
wjohnsto | there was no 'BeforeObjectAssignedEvent' class | 00:18 |
wjohnsto | so I got that from someone else too | 00:18 |
wjohnsto | I figured that would solve the problem | 00:18 |
wjohnsto | but for some reason the problem still happened | 00:19 |
wjohnsto | so I was fed up with searching then | 00:19 |
fsufitch | eldar, i'm SO close to getting it to work | 00:19 |
fsufitch | but i don't know how i can check if @@go.html exists for a specific context | 00:19 |
tdoggette | pcardune: We pointed it at google.com, and it opened a tab that says it's connecting to google, but not actually loading | 00:19 |
pcardune | wjohnsto: let me look real quick at something | 00:19 |
wjohnsto | and I borrowed someone's entire eggs directory and just overwrote mine | 00:19 |
wjohnsto | ok | 00:19 |
fsufitch | oh, when did pcardune come online? | 00:19 |
wjohnsto | and it still doesn't work | 00:19 |
pcardune | tdoggette: don't point it at google.com... point it at browser.url | 00:20 |
tdoggette | no, no | 00:20 |
tdoggette | We opened google.com | 00:20 |
fsufitch | pcardune, remember how i asked about checking if @@go.html exists? | 00:20 |
AVN` | we pointed brower.open to google | 00:20 |
tdoggette | with the testbrowser | 00:20 |
pcardune | tdoggette: well don't do that either | 00:20 |
tdoggette | What should we do? | 00:21 |
fsufitch | the way you gave me only works for the current view | 00:21 |
fsufitch | aaaah, i'll shut up | 00:21 |
fsufitch | or go onto PM | 00:21 |
pcardune | wjohnsto: I see IBeforeObjectAssignedEvent in zope.schema.interfaces | 00:21 |
tdoggette | pcardune: browser.opening localhost opens the SchoolTool homepage | 00:22 |
pcardune | wjohnsto: and that is with zope.schema-2.4.0b1dev_r77624... what version do you have? | 00:22 |
pcardune | tdoggette: yeah, that's fine | 00:22 |
tdoggette | as it should | 00:22 |
pcardune | then open that using the little debugger thing | 00:22 |
wjohnsto | which version... | 00:22 |
wjohnsto | 73183 | 00:22 |
wjohnsto | pcardune | 00:22 |
pcardune | wjohnsto: the whole thing | 00:22 |
pcardune | wjohnsto: I would just make sure all your eggs are updated... the best way to do that is rm -rf eggs, make update | 00:23 |
Preetam | pcardune: how do i install the versoimport egg because after I ran add_plugin.py on it and ran cando there was an error that said: IOError: [Errno 2] No such file or directory: '/home/cando/cando/eggs/cando.versoimport-0.1.0-py2.4.egg/cando/configure.zcml' | 00:24 |
pcardune | Preetam: hmm, looks like the egg decided not to include that data files, and only the *.py files | 00:25 |
tdoggette | pcardune: Something new just happened. | 00:25 |
pcardune | tdoggette: that's a good sign | 00:26 |
tdoggette | Opening 'http://localhost/++skin++NewCanDo/go.html' gave us an error page of some sort | 00:26 |
AVN` | it gave us a schooltool page not found error page | 00:26 |
AVN` | unformated | 00:26 |
tdoggette | With no style | 00:26 |
*** aelkner has quit IRC | 00:28 | |
Preetam | pcardune: I checked inside the egg directory and all the files are included including the *.pt and *.zcml, for some reason its looking for configure.zcml right in the cando directory, not in the versoimport directory | 00:28 |
tdoggette | Opening it without your thingy just gives us an HTTP Error 404 | 00:29 |
wjohnsto | pcardune: I updated and have all the new little eggs, so nice, but I still get the same error.... not so nice | 00:30 |
pcardune | Preetam: hmm, that seems odd | 00:30 |
Preetam | pcardune: Yeah, I was trying to install that egg just to make sure it works because I based my egg on the versoimport egg and it gives me the same exact error | 00:31 |
wjohnsto | once I get this fixed I think I'm going to write a tutorial on how to fix it | 00:31 |
wjohnsto | because I personally have seen it happen to two other people | 00:32 |
pcardune | wjohnsto: that would be fantastic | 00:33 |
fsufitch | pcardune, answer my pm pl0x? | 00:34 |
wjohnsto | however, that would require fixing it | 00:34 |
wjohnsto | that's something I just don't know if I can do *tear* | 00:35 |
pcardune | wjohnsto: try starting system python and then try doing import zope.schema... if that works then zope.schema is installed on system python, and that might be causing the problem | 00:36 |
pcardune | tdoggette: I think there is a problem with your ftesting.zcml, that is the only thing I can think of | 00:37 |
pcardune | tdoggette: maybe you are forgetting to include an overrides statement or something | 00:37 |
tdoggette | My ftesting.zcml is one of yours that eldar pointed me to. | 00:38 |
pcardune | But I couldn't tell you exactly what the problem is | 00:38 |
AVN` | zope.schema is not installed systemwide | 00:38 |
wjohnsto | no | 00:39 |
wjohnsto | you can't import pcardune | 00:39 |
pcardune | you might just want to include cando.cando2007 or whatever that package is called in ftesting.zcml... that should give you all the proper configuration for all of cando to function | 00:39 |
wjohnsto | so that's "good" I guess | 00:39 |
pcardune | wjohnsto: yeah, that is good. did you find IBeforeObjectAssignedEvent in the new egg? | 00:39 |
wjohnsto | yes | 00:40 |
tdoggette | pcardune: /is/ it called cando.cando2007? | 00:42 |
pcardune | tdoggette: i think so, best to spend the one second it takes to check | 00:42 |
pcardune | yep | 00:42 |
pcardune | (i just spent that 1 second to check myself) | 00:42 |
*** trekkiemage has quit IRC | 00:43 | |
Preetam | pcardune: Do you have any idea why I am getting that error? | 00:43 |
pcardune | Preetam: hmm, I don't have any idea without looking at it on your file system | 00:44 |
pcardune | Preetam: maybe if the egg did not get unzipped? | 00:45 |
Preetam | pcardune: I checkced in the eggs directory and it did | 00:45 |
*** jelkner has quit IRC | 00:46 | |
pcardune | Preetam: I guess at this point I would start using pdb to figure some more things out | 00:46 |
pcardune | to step through the actual part where it tried to open the file | 00:47 |
pcardune | and see if maybe there is some different kind of error | 00:47 |
pcardune | that gets hidden somehow (rare, but does happen) | 00:47 |
pcardune | maybe permission issues? | 00:47 |
tdoggette | pcardune: we have to go | 00:47 |
tdoggette | thanks | 00:47 |
pcardune | tdoggette: ok | 00:47 |
wjohnsto | I'm so done with this error | 00:49 |
wjohnsto | all I want to see is the new skin | 00:49 |
Preetam | pcardune: I don't know, maybe, I'll try to look at it. Did the egg install correctly for you though? | 00:49 |
*** eldar has quit IRC | 00:50 | |
pcardune | Preetam: yeah, it worked for me | 00:50 |
Preetam | pcardune: Using the add_plugin? | 00:51 |
fsufitch | IT'S ALIIIIIVE! | 00:51 |
fsufitch | pcardune, the links in breadcrumbs are fixed | 00:52 |
fsufitch | i'll commit | 00:52 |
fsufitch | this is in newskin | 00:52 |
pcardune | Preetam: yep | 00:53 |
Preetam | pcardune: Alright, thanks. | 00:53 |
*** Preetam has quit IRC | 00:54 | |
*** fsufitch has quit IRC | 00:54 | |
*** whaddon has quit IRC | 00:54 | |
*** AVN` has quit IRC | 01:04 | |
wjohnsto | pcardune: I am still here if you could help | 01:06 |
wjohnsto | I have been trying and I have no idea what's going on | 01:06 |
*** pcardune has quit IRC | 01:13 | |
Fujitsu | Does anybody here know why there are no .orig.tar.gzs in the SchoolTool apt repo? | 01:24 |
*** didymo has joined #schooltool | 02:14 | |
*** bnguyen has quit IRC | 02:36 | |
*** jinty_ has quit IRC | 03:00 | |
*** AVN` has joined #schooltool | 04:28 | |
*** pcardune has joined #schooltool | 08:49 | |
*** jfroche has quit IRC | 09:51 | |
*** didymo has quit IRC | 10:31 | |
*** jfroche has joined #schooltool | 11:24 | |
*** jinty has joined #schooltool | 11:44 | |
*** ignas has joined #schooltool | 12:56 | |
*** ignas has quit IRC | 13:10 | |
*** ignas has joined #schooltool | 13:16 | |
*** Aiste_ has joined #schooltool | 14:42 | |
*** mgedmin has joined #schooltool | 15:16 | |
*** mgedmin has quit IRC | 15:29 | |
*** mgedmin has joined #schooltool | 15:30 | |
*** mgedmin has quit IRC | 16:09 | |
*** Aiste_ has quit IRC | 16:20 | |
*** tdoggette has quit IRC | 17:16 | |
*** tdoggette has joined #schooltool | 17:17 | |
*** lameiro has joined #schooltool | 17:35 | |
*** lameiro_ has joined #schooltool | 18:05 | |
*** mgedmin has joined #schooltool | 18:10 | |
*** alga has joined #SchoolTool | 18:20 | |
alga | hey, th1a, I've got Number Two! | 18:21 |
alga | http://nariai.akl.lt/alga/photos/Family/maja | 18:21 |
*** lameiro has quit IRC | 18:22 | |
*** ignas has quit IRC | 18:27 | |
*** ignas has joined #schooltool | 18:28 | |
*** Aiste_ has joined #schooltool | 18:30 | |
*** Aiste_ has quit IRC | 18:35 | |
*** Aiste_ has joined #schooltool | 18:36 | |
mgedmin | th1a: did you get my email? | 18:45 |
*** alga has quit IRC | 18:49 | |
th1a | mgedmin: Yes. Thanks. | 18:51 |
th1a | I'll place the order today. | 18:51 |
AVN` | hey pcardune since we have that bug with the testbrowser, could we have another project to work on to make sure that we can get enough hours? | 18:59 |
mgedmin | thanks | 19:01 |
AVN` | pcardune, ping | 19:23 |
*** bnguyen has joined #schooltool | 19:38 | |
*** jhancock_ has joined #schooltool | 19:46 | |
*** jhancock has quit IRC | 19:48 | |
*** Aiste_ has quit IRC | 20:06 | |
wjohnsto | AVN` ping | 20:18 |
*** jfroche has quit IRC | 20:18 | |
AVN` | hey | 20:21 |
AVN` | I'm gere | 20:21 |
wjohnsto | did you ever get the 'IBeforeObjectAssignedEvent' error fixed? | 20:22 |
AVN` | no | 20:23 |
AVN` | i didn't | 20:23 |
wjohnsto | shoot | 20:23 |
wjohnsto | I tried everything | 20:23 |
ignas | it's official i will be in the Saturday 04, August 19:34, Dulles Airport | 20:23 |
wjohnsto | very nice | 20:23 |
ignas | in washington not in the ;) | 20:23 |
wjohnsto | of course | 20:23 |
Lumiere | ok | 20:26 |
*** mgedmin has quit IRC | 20:26 | |
Lumiere | ignas: I will work out something | 20:26 |
*** pcardune has quit IRC | 20:35 | |
*** jhancock_ has quit IRC | 20:36 | |
*** jhancock_ has joined #schooltool | 20:36 | |
*** fsufitch has joined #schooltool | 20:41 | |
*** jhancock_ has quit IRC | 20:51 | |
*** fsufitch has quit IRC | 20:59 | |
*** pcardune has joined #schooltool | 21:04 | |
AVN` | pcardune, ping | 21:06 |
pcardune | hi AVN` | 21:08 |
Lumiere | hi pcardune | 21:09 |
pcardune | hi Lumiere | 21:09 |
Lumiere | pcardune: did you find a flight? | 21:10 |
pcardune | Lumiere: yeah | 21:10 |
pcardune | Lumiere: and I fixed formjs | 21:10 |
Lumiere | cool | 21:10 |
pcardune | so you don't need the funny patch anymore | 21:10 |
Lumiere | what was it? | 21:10 |
*** jfroche has joined #schooltool | 21:10 | |
pcardune | Lumiere: well, I just added provides statements to all those registrations... Stephan agreed with me though that it was an incredibly strange problem | 21:14 |
Lumiere | ah | 21:15 |
Lumiere | pcardune: where/when are you getting in | 21:15 |
pcardune | Lumiere: I'll send you the details in an email | 21:15 |
AVN` | pcardune, can you give me a backup job | 21:15 |
Lumiere | k | 21:16 |
pcardune | AVN`: you know what, I'm going to take a look at your problem and see if I can't get it to work on my system | 21:18 |
pcardune | AVN`: what do I need to do on my side to get the tests running? where should I get the tests from? | 21:19 |
AVN` | I'll share them with you, do you have a gmail account? | 21:19 |
pcardune | AVN`: yes | 21:22 |
AVN` | what is it? | 21:22 |
pcardune | AVN`: paulcarduner _at_ gmail dot com | 21:25 |
AVN` | ok, i sent it to you | 21:31 |
*** jinty has quit IRC | 21:33 | |
*** jinty has joined #schooltool | 21:34 | |
Lumiere | pcardune: so you almost don't need transportation at all | 21:37 |
pcardune | Lumiere: correct, Jeff is picking me up | 21:37 |
Lumiere | k | 21:37 |
Lumiere | I'm going to work with dwelsh and jelkner tomorrow | 21:37 |
Lumiere | to find a place for ignas to stay | 21:37 |
Lumiere | the couple extra nights he has in dc | 21:37 |
pcardune | AVN`: ok, I'm going to take a look | 21:41 |
pcardune | AVN`: and this is meant to work with which branch? trunk? newskin? something else? | 21:45 |
AVN` | Newskin | 21:45 |
Lumiere | we had to push them to newskin | 21:48 |
Lumiere | to test the stuff on the newskin | 21:48 |
pcardune | Lumiere: there should be separate tests in newskin itself | 21:50 |
AVN` | there is, this is testing only the newskin stuff | 21:50 |
pcardune | oh ok | 21:51 |
pcardune | AVN`: in that case, you two should have commit access to the newskin branch and just put everything right there | 21:51 |
Lumiere | pcardune: can we give access to just a branch? | 21:52 |
pcardune | Lumiere: I'm not sure, you'd have to talk to Jinty about that. But they can have access to the whole thing... but they should just commit to that one branch | 21:52 |
Lumiere | k | 21:53 |
pcardune | AVN`: it runs fine for me... I get a pdb trace | 21:53 |
AVN` | oh, is that still in there? | 21:53 |
jinty | Lumiere, pcardune: not without a lot of setup | 21:54 |
*** AVN` has quit IRC | 21:54 | |
pcardune | jinty: that's what I figured | 21:54 |
pcardune | I don't think it is really necessary | 21:55 |
Lumiere | boom XD | 21:55 |
Lumiere | anyways | 21:55 |
Lumiere | I am not either | 21:55 |
Lumiere | just make sure | 21:55 |
*** AVN` has joined #schooltool | 21:56 | |
Lumiere | anyone who goes into commits | 21:56 |
Lumiere | gets on the email list | 21:56 |
Lumiere | to get commit messages | 21:56 |
Lumiere | (I want people to see buildbot failures) | 21:56 |
Lumiere | jinty: can you add http://www.careercenter.arlington.k12.va.us/cando-coverage/ to the source.schooltool.org page | 21:57 |
jinty | Lumiere: done | 22:00 |
AVN` | so pcardune when you ran that, what line did it stop at? | 22:00 |
pcardune | AVN`: don't know, I already closed the window sorry | 22:02 |
pcardune | I suppose I could run it again | 22:02 |
AVN` | oh, because if it ran for you fine, maybe it | 22:02 |
AVN` | *it's a weird problem on the machine we were running it on | 22:02 |
AVN` | I couldn't get the test to run because of the 'IBeforeObjectAssignedEvent' error | 22:03 |
pcardune | I have it on line 124 of the doctest | 22:03 |
AVN` | ah, we left a pdb trace in there, try deleting that and running it again | 22:07 |
AVN` | just that one line | 22:07 |
AVN` | well, i think that we can say that the problem is on that machine | 22:21 |
Lumiere | they're running on a dapper box | 22:21 |
AVN` | Maybe that's it? | 22:22 |
*** jfroche_ has joined #schooltool | 22:27 | |
*** jfroche has quit IRC | 22:40 | |
*** ignas has quit IRC | 22:46 | |
*** wjohnsto has quit IRC | 23:19 |
Generated by irclog2html.py 2.15.1 by Marius Gedminas - find it at mg.pov.lt!