Ticket #1633: org.laptop.TurtleArtActivity-4.log

File org.laptop.TurtleArtActivity-4.log, 7.5 KB (added by roberto, 14 years ago)

TA log using tawindow.py provided

Line 
11262431115.445671 WARNING root: No gtk.AccelGroup in the top level window.
21262431115.541907 WARNING root: No gtk.AccelGroup in the top level window.
3/usr/lib/python2.5/site-packages/sugar/graphics/window.py:116: GtkWarning: gtk_container_remove: assertion `GTK_IS_TOOLBAR (container) || widget->parent == GTK_WIDGET (container)' failed
4  self._vbox.remove(self.toolbox)
51262431115.549043 WARNING root: No gtk.AccelGroup in the top level window.
61262431115.552190 WARNING root: No gtk.AccelGroup in the top level window.
71262431115.555663 WARNING root: No gtk.AccelGroup in the top level window.
81262431115.558719 WARNING root: No gtk.AccelGroup in the top level window.
91262431115.561611 WARNING root: No gtk.AccelGroup in the top level window.
101262431115.564532 WARNING root: No gtk.AccelGroup in the top level window.
111262431115.567766 WARNING root: No gtk.AccelGroup in the top level window.
121262431115.571445 WARNING root: No gtk.AccelGroup in the top level window.
131262431115.574588 WARNING root: No gtk.AccelGroup in the top level window.
141262431115.580040 WARNING root: No gtk.AccelGroup in the top level window.
15/usr/lib/python2.5/site-packages/sugar/graphics/toolbutton.py:43: GtkWarning: gtk_accel_group_connect: assertion `accel_key > 0' failed
16  gtk.ACCEL_LOCKED | gtk.ACCEL_VISIBLE)
171262431115.627006 WARNING root: No gtk.AccelGroup in the top level window.
181262431115.630131 WARNING root: No gtk.AccelGroup in the top level window.
19** (sugar-activity:6475): DEBUG: Got client ID "109ebebc45fab7cbe126243111666406800000061340004"
20** (sugar-activity:6475): DEBUG: Setting initial properties
21** (sugar-activity:6475): DEBUG: Received SaveYourself(SmSaveLocal, !Shutdown, SmInteractStyleNone, !Fast) in state idle
22** (sugar-activity:6475): DEBUG: Sending SaveYourselfDone(True) for initial SaveYourself
23** (sugar-activity:6475): DEBUG: Received SaveComplete message in state save-yourself-done
241262431141.386419 WARNING root: No gtk.AccelGroup in the top level window.
251262431141.396174 WARNING root: No gtk.AccelGroup in the top level window.
261262431141.402406 WARNING root: No gtk.AccelGroup in the top level window.
271262431141.403540 WARNING root: No gtk.AccelGroup in the top level window.
281262431141.404956 WARNING root: No gtk.AccelGroup in the top level window.
291262431141.406122 WARNING root: No gtk.AccelGroup in the top level window.
301262431141.408119 WARNING root: No gtk.AccelGroup in the top level window.
311262431141.410316 WARNING root: No gtk.AccelGroup in the top level window.
321262431141.411934 WARNING root: No gtk.AccelGroup in the top level window.
331262431141.413209 WARNING root: No gtk.AccelGroup in the top level window.
341262431141.414529 WARNING root: No gtk.AccelGroup in the top level window.
351262431141.416499 WARNING root: No gtk.AccelGroup in the top level window.
361262431141.418306 WARNING root: No gtk.AccelGroup in the top level window.
371262431141.419498 WARNING root: No gtk.AccelGroup in the top level window.
38trying to open a .ta file:/home/roberto/.sugar/default/data/1b397743-ece9-468d-9228-4e3a34c0a1c2
39[[0, u'show', 0, 309, [None, 1, None]], [1, [u'string', u'text'], 74, 319, [0, None]], [2, u'forward', 55, 526, [None, 12, 3]], [3, u'left', 55, 565, [2, 4, 5]], [4, [u'number', u'90'], 129, 574, [3, None]], [5, u'show', 55, 604, [3, 6, None]], [6, [u'string', u'text'], 129, 614, [5, None]], [7, u'start', 229, 151, [None, 8]], [8, u'forever', 241, 201, [7, 9, None]], [9, u'kbinput', 322, 215, [8, 10]], [10, u'print', 322, 269, [9, 11, None]], [11, u'keyboard', 396, 278, [10, None]], [12, [u'number', u'100'], 129, 535, [2, None]], [-1, u'turtle', 1.4210854715202004e-14, 199.99999999999997, 270.0, 0, 50, 5]]
40you better run, turtle, run!!
41['start', 'forever', '[', 'kbinput', 'print', 'keyboard', ']']
42block_pressed
43block_pressed
44you better run, turtle, run!!
45['start', 'forever', '[', 'kbinput', 'print', 'keyboard', ']']
46processing key press: d
47processing key press: f
48processing key press: g
49processing key press: t
50processing key press: g
51processing key press: f
52processing key press: d
53processing key press: d
54processing key press: q
55processing key press: w
56processing key press: e
57processing key press: d
58[[0, "show", 0, 309, [null, 1, null]], [1, ["string", "text"], 74, 319, [0, null]], [2, "start", 229, 151, [null, 3]], [3, "forever", 241, 201, [2, 4, null]], [4, "kbinput", 322, 215, [3, 5]], [5, "print", 322, 269, [4, 6, null]], [6, "keyboard", 396, 278, [5, null]], [-1, "turtle", 1.4210854715202004e-14, 199.99999999999997, 270.0, 0, 50, 5]]
59---------------------------------------------------------------------------
60AttributeError                            Traceback (most recent call last)
61
62/usr/lib/python2.5/site-packages/sugar/graphics/animator.pyc in _next_frame_cb(self=<Animator object at 0x96ef20c (sugar+graphics+animator+Animator at 0x9800d20)>)
63     64
64     65         for animation in self._animations:
65---> 66             animation.do_frame(current_time, self._duration, self._easing)
66     67
67     68         if current_time == self._duration:
68
69/usr/lib/python2.5/site-packages/sugar/graphics/animator.pyc in do_frame(self=<sugar.graphics.palette._PopdownAnimation object at 0x974d80c>, t=0.59999999999999998, duration=0.59999999999999998, easing=0)
70     90                 frame = change * pow(2, 10 * (t / duration - 1)) + start
71     91
72---> 92         self.next_frame(frame)
73     93
74     94     def next_frame(self, frame):
75
76/usr/lib/python2.5/site-packages/sugar/graphics/palette.pyc in next_frame(self=<sugar.graphics.palette._PopdownAnimation object at 0x974d80c>, current=1.0)
77    721     def next_frame(self, current):
78    722         if current == 1.0:
79--> 723             self._palette._hide()
80    724
81    725 class Invoker(gobject.GObject):
82
83/usr/lib/python2.5/site-packages/sugar/graphics/palette.pyc in _hide(self=<Palette object at 0x974eedc (SugarPalette at 0x975c458)>)
84    557             self._palette_popup_sid = None
85    558
86--> 559         self.menu.set_active(False)
87    560         self.hide()
88    561
89
90AttributeError: 'NoneType' object has no attribute 'set_active'
91---------------------------------------------------------------------------
92AttributeError                            Traceback (most recent call last)
93
94/usr/lib/python2.5/site-packages/sugar/graphics/animator.pyc in _next_frame_cb(self=<Animator object at 0x96ef8ec (sugar+graphics+animator+Animator at 0x9803550)>)
95     64
96     65         for animation in self._animations:
97---> 66             animation.do_frame(current_time, self._duration, self._easing)
98     67
99     68         if current_time == self._duration:
100
101/usr/lib/python2.5/site-packages/sugar/graphics/animator.pyc in do_frame(self=<sugar.graphics.palette._PopdownAnimation object at 0x974de4c>, t=0.59999999999999998, duration=0.59999999999999998, easing=0)
102     90                 frame = change * pow(2, 10 * (t / duration - 1)) + start
103     91
104---> 92         self.next_frame(frame)
105     93
106     94     def next_frame(self, frame):
107
108/usr/lib/python2.5/site-packages/sugar/graphics/palette.pyc in next_frame(self=<sugar.graphics.palette._PopdownAnimation object at 0x974de4c>, current=1.0)
109    721     def next_frame(self, current):
110    722         if current == 1.0:
111--> 723             self._palette._hide()
112    724
113    725 class Invoker(gobject.GObject):
114
115/usr/lib/python2.5/site-packages/sugar/graphics/palette.pyc in _hide(self=<Palette object at 0x96ef6e4 (SugarPalette at 0x975c5b8)>)
116    557             self._palette_popup_sid = None
117    558
118--> 559         self.menu.set_active(False)
119    560         self.hide()
120    561
121
122AttributeError: 'NoneType' object has no attribute 'set_active'