Activity log for bug #893688

Date Who What changed Old value New value Message
2011-11-22 17:18:19 Mark Tully bug added bug
2011-11-24 00:15:04 Bilal Akhtar bug task added gobject-introspection (Ubuntu)
2011-11-24 00:15:27 Bilal Akhtar unity: status New Incomplete
2011-11-24 00:15:31 Bilal Akhtar bug task added unity (Ubuntu)
2011-11-24 00:15:39 Bilal Akhtar unity (Ubuntu): status New Incomplete
2011-11-24 12:30:53 Omer Akram bug added subscriber Mikkel Kamstrup Erlandsen
2011-11-24 12:31:27 Omer Akram bug added subscriber David Callé
2011-11-28 20:45:47 Launchpad Janitor gobject-introspection (Ubuntu): status New Confirmed
2012-05-30 10:06:35 Michal Hruby bug task added libunity
2012-05-30 10:06:46 Michal Hruby libunity: status New Confirmed
2012-05-30 10:06:50 Michal Hruby libunity: importance Undecided Medium
2012-05-30 10:06:54 Michal Hruby libunity: importance Medium Low
2012-06-10 15:18:03 Florian Diesch attachment added replacement for /usr/share/pyshared/gi/overrides/Unity.py https://bugs.launchpad.net/libunity/+bug/893688/+attachment/3183433/+files/Unity.py
2012-06-12 12:44:32 Michal Hruby description When attempting to use a custom activation of a lens result in a scope written in python, Unity.ActivationResponse does not work as advertised at https://wiki.ubuntu.com/Unity/Lenses#Handling_Activation, which suggests that the line Unity.ActivationResponse.new(Unity.HandledType.SHOW_DASH) should pass a response to keep the dash open. Instead, an error in generated suggesting that a second argument needs to be passed to the function. On adding a second argument, the error further suggests that it needs to be a string. On using a string, the following error is generated: TypeError: can't convert return value to desired type ../pathtolens/lens.py:100: Warning: g_object_get_qdata: assertion G_IS_OBJECT (object)' failed GObject.MainLoop().run() ../pathtolens/lens.py:100: Warning: g_object_set_qdata_full: assertionG_IS_OBJECT (object)' failed GObject.MainLoop().run() ../pathtolens/lens.py:100: Warning: g_object_unref: assertion `G_IS_OBJECT (object)' failed GObject.MainLoop().run() Similar errors are generated when using other "Unity.Handletype"s (although using NOT_HANDLED only produces the TypeError part, not any of the warnings.) This issue is also described at http://askubuntu.com/questions/78826/cant-get-activate-uri-signal-working-when-making-a-lens SRU test case: 1) Run `python -c "from gi.repository import Unity; print Unity.ActivationResponse.new(Unity.HandledType.SHOW_DASH, '')"` 2) The command shouldn't cause a segmentation fault ====Original Report==== When attempting to use a custom activation of a lens result in a scope written in python, Unity.ActivationResponse does not work as advertised at https://wiki.ubuntu.com/Unity/Lenses#Handling_Activation, which suggests that the line Unity.ActivationResponse.new(Unity.HandledType.SHOW_DASH) should pass a response to keep the dash open. Instead, an error in generated suggesting that a second argument needs to be passed to the function. On adding a second argument, the error further suggests that it needs to be a string. On using a string, the following error is generated: TypeError: can't convert return value to desired type  ../pathtolens/lens.py:100: Warning: g_object_get_qdata: assertion G_IS_OBJECT (object)' failed GObject.MainLoop().run()  ../pathtolens/lens.py:100: Warning: g_object_set_qdata_full: assertionG_IS_OBJECT (object)' failed GObject.MainLoop().run()  ../pathtolens/lens.py:100: Warning: g_object_unref: assertion `G_IS_OBJECT (object)' failed GObject.MainLoop().run() Similar errors are generated when using other "Unity.Handletype"s (although using NOT_HANDLED only produces the TypeError part, not any of the warnings.) This issue is also described at http://askubuntu.com/questions/78826/cant-get-activate-uri-signal-working-when-making-a-lens
2012-06-12 12:47:23 Michal Hruby attachment added libunity-5-12-gir.patch https://bugs.launchpad.net/libunity/+bug/893688/+attachment/3186356/+files/libunity-5-12-gir.patch
2012-06-12 16:26:57 Ubuntu Foundations Team Bug Bot tags patch
2012-06-12 16:27:07 Ubuntu Foundations Team Bug Bot bug added subscriber Ubuntu Review Team
2012-06-20 10:53:30 Launchpad Janitor branch linked lp:~sil2100/libunity/precise_SRU
2012-06-20 11:07:40 Łukasz Zemczak libunity: status Confirmed Fix Committed
2012-06-20 11:08:13 Łukasz Zemczak bug task added libunity (Ubuntu)
2012-06-20 11:09:16 Łukasz Zemczak bug added subscriber Ubuntu Stable Release Updates Team
2012-06-20 11:13:56 Łukasz Zemczak description SRU test case: 1) Run `python -c "from gi.repository import Unity; print Unity.ActivationResponse.new(Unity.HandledType.SHOW_DASH, '')"` 2) The command shouldn't cause a segmentation fault ====Original Report==== When attempting to use a custom activation of a lens result in a scope written in python, Unity.ActivationResponse does not work as advertised at https://wiki.ubuntu.com/Unity/Lenses#Handling_Activation, which suggests that the line Unity.ActivationResponse.new(Unity.HandledType.SHOW_DASH) should pass a response to keep the dash open. Instead, an error in generated suggesting that a second argument needs to be passed to the function. On adding a second argument, the error further suggests that it needs to be a string. On using a string, the following error is generated: TypeError: can't convert return value to desired type  ../pathtolens/lens.py:100: Warning: g_object_get_qdata: assertion G_IS_OBJECT (object)' failed GObject.MainLoop().run()  ../pathtolens/lens.py:100: Warning: g_object_set_qdata_full: assertionG_IS_OBJECT (object)' failed GObject.MainLoop().run()  ../pathtolens/lens.py:100: Warning: g_object_unref: assertion `G_IS_OBJECT (object)' failed GObject.MainLoop().run() Similar errors are generated when using other "Unity.Handletype"s (although using NOT_HANDLED only produces the TypeError part, not any of the warnings.) This issue is also described at http://askubuntu.com/questions/78826/cant-get-activate-uri-signal-working-when-making-a-lens [Test Case] 1) Run `python -c "from gi.repository import Unity; print Unity.ActivationResponse.new(Unity.HandledType.SHOW_DASH, '')"` 2) The command shouldn't cause a segmentation fault [Regression Potential] Besides gir not working, nothing else comes to mind. ====Original Report==== When attempting to use a custom activation of a lens result in a scope written in python, Unity.ActivationResponse does not work as advertised at https://wiki.ubuntu.com/Unity/Lenses#Handling_Activation, which suggests that the line Unity.ActivationResponse.new(Unity.HandledType.SHOW_DASH) should pass a response to keep the dash open. Instead, an error in generated suggesting that a second argument needs to be passed to the function. On adding a second argument, the error further suggests that it needs to be a string. On using a string, the following error is generated: TypeError: can't convert return value to desired type  ../pathtolens/lens.py:100: Warning: g_object_get_qdata: assertion G_IS_OBJECT (object)' failed GObject.MainLoop().run()  ../pathtolens/lens.py:100: Warning: g_object_set_qdata_full: assertionG_IS_OBJECT (object)' failed GObject.MainLoop().run()  ../pathtolens/lens.py:100: Warning: g_object_unref: assertion `G_IS_OBJECT (object)' failed GObject.MainLoop().run() Similar errors are generated when using other "Unity.Handletype"s (although using NOT_HANDLED only produces the TypeError part, not any of the warnings.) This issue is also described at http://askubuntu.com/questions/78826/cant-get-activate-uri-signal-working-when-making-a-lens
2012-06-20 11:14:53 Łukasz Zemczak libunity (Ubuntu): status New Fix Committed
2012-06-20 11:16:38 Alan Pope 🍺🐧🐱 🦄 nominated for series Ubuntu Precise
2012-06-20 11:26:10 Didier Roche-Tolomelli bug task deleted unity (Ubuntu)
2012-06-20 11:26:31 Didier Roche-Tolomelli bug task added gobject-introspection (Ubuntu Precise)
2012-06-20 11:26:31 Didier Roche-Tolomelli bug task added libunity (Ubuntu Precise)
2012-06-20 11:26:41 Didier Roche-Tolomelli gobject-introspection (Ubuntu Precise): status New Invalid
2012-06-20 11:27:00 Didier Roche-Tolomelli bug task deleted gobject-introspection (Ubuntu Precise)
2012-06-20 11:27:28 Didier Roche-Tolomelli unity: status Incomplete Fix Released
2012-06-20 11:27:42 Didier Roche-Tolomelli libunity (Ubuntu): status Fix Committed Invalid
2012-06-20 11:27:48 Didier Roche-Tolomelli libunity (Ubuntu Precise): status New Triaged
2012-06-20 11:28:08 Didier Roche-Tolomelli bug task added vala (Ubuntu)
2012-06-20 11:28:19 Didier Roche-Tolomelli bug task deleted vala (Ubuntu Precise)
2012-06-20 11:28:56 Didier Roche-Tolomelli vala (Ubuntu): status New Triaged
2012-06-25 08:18:10 Didier Roche-Tolomelli gobject-introspection (Ubuntu): status Confirmed Fix Released
2012-06-25 08:18:15 Didier Roche-Tolomelli vala (Ubuntu): status Triaged Fix Released
2012-06-25 08:18:51 Didier Roche-Tolomelli libunity (Ubuntu): status Invalid Triaged
2012-06-25 09:18:12 Launchpad Janitor branch linked lp:~sil2100/libunity/precise_SRU_quilt
2012-06-25 09:52:25 Łukasz Zemczak branch unlinked lp:~sil2100/libunity/precise_SRU
2012-06-25 11:40:38 Launchpad Janitor libunity (Ubuntu): status Triaged Fix Released
2012-06-25 14:21:01 Łukasz Zemczak libunity (Ubuntu Precise): status Triaged Fix Committed
2012-06-25 14:21:22 Łukasz Zemczak libunity (Ubuntu Precise): status Fix Committed Fix Released
2012-06-28 15:47:15 Brian Murray libunity (Ubuntu Precise): status Fix Released In Progress
2012-06-28 15:50:03 Brian Murray libunity (Ubuntu Precise): status In Progress Fix Committed
2012-06-28 15:50:06 Brian Murray bug added subscriber SRU Verification
2012-06-28 15:50:12 Brian Murray tags patch patch verification-needed
2012-07-02 10:09:29 Sebastien Bacher tags patch verification-needed patch verification-done
2012-07-09 20:26:46 Launchpad Janitor libunity (Ubuntu Precise): status Fix Committed Fix Released
2012-10-03 14:01:09 Michal Hruby libunity: status Fix Committed Fix Released
2014-05-04 12:02:12 Adolfo Jayme Barrientos bug task deleted libunity (Ubuntu Quantal)
2014-07-24 21:15:53 Marco Trevisan (Treviño) unity (Ubuntu): status New Fix Released
2015-10-13 17:55:01 Jaime Pérez unity (Ubuntu Precise): status New Fix Released