<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.sugarlabs.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Anurag-seeta</id>
	<title>Sugar Labs - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.sugarlabs.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Anurag-seeta"/>
	<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/go/Special:Contributions/Anurag-seeta"/>
	<updated>2026-06-10T03:11:09Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=Pulsing_icon_delayed_by_5_seconds&amp;diff=58885</id>
		<title>Pulsing icon delayed by 5 seconds</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=Pulsing_icon_delayed_by_5_seconds&amp;diff=58885"/>
		<updated>2010-11-05T12:25:23Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: /* Description */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Pulsing icon delayed by 5 seconds==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
SugarLabs bug [http://bugs.sugarlabs.org/ticket/2080 #2080] was raised because whenever an activity is started in sugar OS , we get to see a few seconds delay after clicking on the activity icon on the home screen and before the appearance of the pulsing icon animation. The delay also seems to be directly proportional to the complexity of the icon of the activity.&lt;br /&gt;
&lt;br /&gt;
===Proposed solutions and their End Results===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FIX # 1 ===&lt;br /&gt;
Tried to reduce the time laag by increasing the duration between the occurrence of two consecutive frames of the pulsing icon animation.&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Result:&#039;&#039;&#039; This approach can be used to fix the case of an animation which has more than required FPS and hence couldbe smoothed out using this measure, but it did nothing to solve the main problem of reducing the preanimation delay.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FIX # 2 === &lt;br /&gt;
Tried to use the concept of “Frame Skipping” ( a concept commonly used in video games to improve the performance of the game).&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Result:&#039;&#039;&#039; This approach couldbe used to fix the case of a laggy animation which runs on low FPS , but it can be used only after the animation starts so it doesnt help in improving the launch time of the pulsing icon animation.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FIX # 3 ===&lt;br /&gt;
Tried to tweak the nature of animation by changing the animation to a ZOOM IN animation only from a ZOOM IN and ZOOM OUT animation. i.e. Tried to alter the pulsing nature by restricting  the animation by both ZOOMING OUT and ZOOMING IN to only ZOOMING IN.&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Result:&#039;&#039;&#039; This approached completely changed the appearance of the pulsing icon but still didnt provide good enough delay reduction.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FIX # 4 ===&lt;br /&gt;
Tried to stop the first frame of the animation from being  filled with colors , so that upon starting the animation we would get to see a raw grayscale svg icon of the activity for the first frame only and then it would be seamlessly continued with the pulsing icon animation. The patch could be found [http://patchwork.sugarlabs.org/patch/314/ here]. &amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Result :&#039;&#039;&#039; The idea was to reduce the rendering time of the first frame so as to speed up the appearance of the first frame of the animation and hence reduce the delay. This fix seems to work as per expectations and has reduced the delay time by more than  50% as noted in the logs and reported by the community.We can see the below attached screenshots showing the visual effects,  after the application of the patch on an XO-1.5 &lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:Patch_v5_result_1.jpg|200px]]&lt;br /&gt;
[[File:Patch_v5_result_2.jpg|200px]]&lt;br /&gt;
[[File:Patch_v5_result_3.jpg|200px]]&lt;br /&gt;
[[File:Patch_v5_result_4.jpg|200px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;The screenshots sequentially show the frames of the pulsing icon animation after the application of the above fix&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===FIX # 5 ===&lt;br /&gt;
Here the idea was suggested and implemented by Martin dengler &amp;lt;martin@martindengler.com&amp;gt;. We can find his patch  [http://www.martindengler.com/tmp/sl.o-2080/pulsingicon.py-set-new-colors-in-one-go-to-avoid-multiple-calls-to-SVG-rendering.patch here]. &amp;lt;br&amp;gt;&lt;br /&gt;
Here the idea was to replace the calls to set_stroke_color() and set_fill_color() with set_xo_color(), which does both and then calls _emit_paint_needed_icon_area() which effectively halves the no. of render_cairo() calls hence reducing the workload for the pulsing icon operation by nearly 50%.&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Result :&#039;&#039;&#039; The applied patch reduces the delay by more then 60%, as confirmed by the community, but it&#039;s worth a note that the zoom in effect is still lost for most svg icons, only for the very simple icons effect is visible (Log icon is simple enough to show it, Distance icon is not quick enough).We can see the below attached screenshots showing the visual effects,  after the application of the patch on an XO-1.5 &lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:Patch_MD_result_1.jpg|200px]]&lt;br /&gt;
[[File:Patch_MD_result_2.jpg|200px]]&lt;br /&gt;
[[File:Patch_MD_result_3.jpg|200px]]&lt;br /&gt;
[[File:Patch_MD_result_4.jpg|200px]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;The screenshots sequentially show the frames of the pulsing icon animation after the application of the above fix.&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Contact===&lt;br /&gt;
&lt;br /&gt;
Anurag Chowdhury&lt;br /&gt;
&lt;br /&gt;
anurag&amp;lt;at&amp;gt;seeta&amp;lt;dot&amp;gt;in&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=Pulsing_icon_delayed_by_5_seconds&amp;diff=58859</id>
		<title>Pulsing icon delayed by 5 seconds</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=Pulsing_icon_delayed_by_5_seconds&amp;diff=58859"/>
		<updated>2010-11-04T14:15:35Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Pulsing icon delayed by 5 seconds==&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
Whenever an activity is started in sugar OS , we get to see a few seconds delay after clicking on the activity icon on the home screen and before the appearance of the pulsing icon animation. The delay also seems to be directly proportional to the complexity of the icon of the activity.&lt;br /&gt;
&lt;br /&gt;
===Proposed solutions and their End Results===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FIX # 1 ===&lt;br /&gt;
Tried to reduce the time laag by increasing the duration between the occurrence of two consecutive frames of the pulsing icon animation.&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Result:&#039;&#039;&#039; This approach can be used to fix the case of an animation which has more than required FPS and hence couldbe smoothed out using this measure, but it did nothing to solve the main problem of reducing the preanimation delay.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FIX # 2 === &lt;br /&gt;
Tried to use the concept of “Frame Skipping” ( a concept commonly used in video games to improve the performance of the game).&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Result:&#039;&#039;&#039; This approach couldbe used to fix the case of a laggy animation which runs on low FPS , but it can be used only after the animation starts so it doesnt help in improving the launch time of the pulsing icon animation.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FIX # 3 ===&lt;br /&gt;
Tried to tweak the nature of animation by changing the animation to a ZOOM IN animation only from a ZOOM IN and ZOOM OUT animation. i.e. Tried to alter the pulsing nature by restricting  the animation by both ZOOMING OUT and ZOOMING IN to only ZOOMING IN.&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Result:&#039;&#039;&#039; This approached completely changed the appearance of the pulsing icon but still didnt provide good enough delay reduction.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FIX # 4 ===&lt;br /&gt;
Tried to stop the first frame of the animation from being  filled with colors , so that upon starting the animation we would get to see a raw grayscale svg icon of the activity for the first frame only and then it would be seamlessly continued with the pulsing icon animation. The patch could be found [http://patchwork.sugarlabs.org/patch/314/ here]. &amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Result :&#039;&#039;&#039; The idea was to reduce the rendering time of the first frame so as to speed up the appearance of the first frame of the animation and hence reduce the delay. This fix seems to work as per expectations and has reduced the delay time by more than  50% as noted in the logs and reported by the community.We can see the below attached screenshots showing the visual effects,  after the application of the patch on an XO-1.5 &lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:Patch_v5_result_1.jpg|200px]]&lt;br /&gt;
[[File:Patch_v5_result_2.jpg|200px]]&lt;br /&gt;
[[File:Patch_v5_result_3.jpg|200px]]&lt;br /&gt;
[[File:Patch_v5_result_4.jpg|200px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;The screenshots sequentially show the frames of the pulsing icon animation after the application of the above fix&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===FIX # 5 ===&lt;br /&gt;
Here the idea was suggested and implemented by Martin dengler &amp;lt;martin@martindengler.com&amp;gt;. We can find his patch  [http://www.martindengler.com/tmp/sl.o-2080/pulsingicon.py-set-new-colors-in-one-go-to-avoid-multiple-calls-to-SVG-rendering.patch here]. &amp;lt;br&amp;gt;&lt;br /&gt;
Here the idea was to replace the calls to set_stroke_color() and set_fill_color() with set_xo_color(), which does both and then calls _emit_paint_needed_icon_area() which effectively halves the no. of render_cairo() calls hence reducing the workload for the pulsing icon operation by nearly 50%.&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Result :&#039;&#039;&#039; The applied patch reduces the delay by more then 60%, as confirmed by the community, but it&#039;s worth a note that the zoom in effect is still lost for most svg icons, only for the very simple icons effect is visible (Log icon is simple enough to show it, Distance icon is not quick enough).We can see the below attached screenshots showing the visual effects,  after the application of the patch on an XO-1.5 &lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:Patch_MD_result_1.jpg|200px]]&lt;br /&gt;
[[File:Patch_MD_result_2.jpg|200px]]&lt;br /&gt;
[[File:Patch_MD_result_3.jpg|200px]]&lt;br /&gt;
[[File:Patch_MD_result_4.jpg|200px]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;The screenshots sequentially show the frames of the pulsing icon animation after the application of the above fix.&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Contact===&lt;br /&gt;
&lt;br /&gt;
Anurag Chowdhury&lt;br /&gt;
&lt;br /&gt;
anurag&amp;lt;at&amp;gt;seeta&amp;lt;dot&amp;gt;in&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=Pulsing_icon_delayed_by_5_seconds&amp;diff=58858</id>
		<title>Pulsing icon delayed by 5 seconds</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=Pulsing_icon_delayed_by_5_seconds&amp;diff=58858"/>
		<updated>2010-11-04T14:12:49Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: /* FIX # 5 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Pulsing icon delayed by 5 seconds==&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
Whenever an activity is started in sugar OS , we get to see a few seconds delay after clicking on the activity icon on the home screen and before the appearance of the pulsing icon animation. The delay also seems to be directly proportional to the complexity of the icon of the activity.&lt;br /&gt;
&lt;br /&gt;
===Solutions and their End Results===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FIX # 1 ===&lt;br /&gt;
Tried to reduce the time laag by increasing the duration between the occurrence of two consecutive frames of the pulsing icon animation.&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Result:&#039;&#039;&#039; This approach can be used to fix the case of an animation which has more than required FPS and hence couldbe smoothed out using this measure, but it did nothing to solve the main problem of reducing the preanimation delay.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FIX # 2 === &lt;br /&gt;
Tried to use the concept of “Frame Skipping” ( a concept commonly used in video games to improve the performance of the game).&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Result:&#039;&#039;&#039; This approach couldbe used to fix the case of a laggy animation which runs on low FPS , but it can be used only after the animation starts so it doesnt help in improving the launch time of the pulsing icon animation.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FIX # 3 ===&lt;br /&gt;
Tried to tweak the nature of animation by changing the animation to a ZOOM IN animation only from a ZOOM IN and ZOOM OUT animation. i.e. Tried to alter the pulsing nature by restricting  the animation by both ZOOMING OUT and ZOOMING IN to only ZOOMING IN.&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Result:&#039;&#039;&#039; This approached completely changed the appearance of the pulsing icon but still didnt provide good enough delay reduction.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FIX # 4 ===&lt;br /&gt;
Tried to stop the first frame of the animation from being  filled with colors , so that upon starting the animation we would get to see a raw grayscale svg icon of the activity for the first frame only and then it would be seamlessly continued with the pulsing icon animation. The patch could be found [http://patchwork.sugarlabs.org/patch/314/ here]. &amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Result :&#039;&#039;&#039; The idea was to reduce the rendering time of the first frame so as to speed up the appearance of the first frame of the animation and hence reduce the delay. This fix seems to work as per expectations and has reduced the delay time by more than  50% as noted in the logs and reported by the community.We can see the below attached screenshots showing the visual effects,  after the application of the patch on an XO-1.5 &lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:Patch_v5_result_1.jpg|200px]]&lt;br /&gt;
[[File:Patch_v5_result_2.jpg|200px]]&lt;br /&gt;
[[File:Patch_v5_result_3.jpg|200px]]&lt;br /&gt;
[[File:Patch_v5_result_4.jpg|200px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;The screenshots sequentially show the frames of the pulsing icon animation after the application of the above fix&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===FIX # 5 ===&lt;br /&gt;
Here the idea was suggested and implemented by Martin dengler &amp;lt;martin@martindengler.com&amp;gt;. We can find his patch  [http://www.martindengler.com/tmp/sl.o-2080/pulsingicon.py-set-new-colors-in-one-go-to-avoid-multiple-calls-to-SVG-rendering.patch here]. &amp;lt;br&amp;gt;&lt;br /&gt;
Here the idea was to replace the calls to set_stroke_color() and set_fill_color() with set_xo_color(), which does both and then calls _emit_paint_needed_icon_area() which effectively halves the no. of render_cairo() calls hence reducing the workload for the pulsing icon operation by nearly 50%.&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Result :&#039;&#039;&#039; The applied patch reduces the delay by more then 60%, as confirmed by the community, but it&#039;s worth a note that the zoom in effect is still lost for most svg icons, only for the very simple icons effect is visible (Log icon is simple enough to show it, Distance icon is not quick enough).We can see the below attached screenshots showing the visual effects,  after the application of the patch on an XO-1.5 &lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:Patch_MD_result_1.jpg|200px]]&lt;br /&gt;
[[File:Patch_MD_result_2.jpg|200px]]&lt;br /&gt;
[[File:Patch_MD_result_3.jpg|200px]]&lt;br /&gt;
[[File:Patch_MD_result_4.jpg|200px]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;The screenshots sequentially show the frames of the pulsing icon animation after the application of the above fix.&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Contact===&lt;br /&gt;
&lt;br /&gt;
Anurag Chowdhury&lt;br /&gt;
&lt;br /&gt;
anurag&amp;lt;at&amp;gt;seeta&amp;lt;dot&amp;gt;in&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=Pulsing_icon_delayed_by_5_seconds&amp;diff=58857</id>
		<title>Pulsing icon delayed by 5 seconds</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=Pulsing_icon_delayed_by_5_seconds&amp;diff=58857"/>
		<updated>2010-11-04T14:10:57Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: /* FIX # 4 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Pulsing icon delayed by 5 seconds==&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
Whenever an activity is started in sugar OS , we get to see a few seconds delay after clicking on the activity icon on the home screen and before the appearance of the pulsing icon animation. The delay also seems to be directly proportional to the complexity of the icon of the activity.&lt;br /&gt;
&lt;br /&gt;
===Solutions and their End Results===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FIX # 1 ===&lt;br /&gt;
Tried to reduce the time laag by increasing the duration between the occurrence of two consecutive frames of the pulsing icon animation.&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Result:&#039;&#039;&#039; This approach can be used to fix the case of an animation which has more than required FPS and hence couldbe smoothed out using this measure, but it did nothing to solve the main problem of reducing the preanimation delay.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FIX # 2 === &lt;br /&gt;
Tried to use the concept of “Frame Skipping” ( a concept commonly used in video games to improve the performance of the game).&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Result:&#039;&#039;&#039; This approach couldbe used to fix the case of a laggy animation which runs on low FPS , but it can be used only after the animation starts so it doesnt help in improving the launch time of the pulsing icon animation.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FIX # 3 ===&lt;br /&gt;
Tried to tweak the nature of animation by changing the animation to a ZOOM IN animation only from a ZOOM IN and ZOOM OUT animation. i.e. Tried to alter the pulsing nature by restricting  the animation by both ZOOMING OUT and ZOOMING IN to only ZOOMING IN.&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Result:&#039;&#039;&#039; This approached completely changed the appearance of the pulsing icon but still didnt provide good enough delay reduction.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FIX # 4 ===&lt;br /&gt;
Tried to stop the first frame of the animation from being  filled with colors , so that upon starting the animation we would get to see a raw grayscale svg icon of the activity for the first frame only and then it would be seamlessly continued with the pulsing icon animation. The patch could be found [http://patchwork.sugarlabs.org/patch/314/ here]. &amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Result :&#039;&#039;&#039; The idea was to reduce the rendering time of the first frame so as to speed up the appearance of the first frame of the animation and hence reduce the delay. This fix seems to work as per expectations and has reduced the delay time by more than  50% as noted in the logs and reported by the community.We can see the below attached screenshots showing the visual effects,  after the application of the patch on an XO-1.5 &lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:Patch_v5_result_1.jpg|200px]]&lt;br /&gt;
[[File:Patch_v5_result_2.jpg|200px]]&lt;br /&gt;
[[File:Patch_v5_result_3.jpg|200px]]&lt;br /&gt;
[[File:Patch_v5_result_4.jpg|200px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;The screenshots sequentially show the frames of the pulsing icon animation after the application of the above fix&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===FIX # 5 ===&lt;br /&gt;
Here the idea was suggested and implemented by Martin dengler &amp;lt;martin@martindengler.com&amp;gt;. We can find his patch  [http://www.martindengler.com/tmp/sl.o-2080/pulsingicon.py-set-new-colors-in-one-go-to-avoid-multiple-calls-to-SVG-rendering.patch here]. &amp;lt;br&amp;gt;&lt;br /&gt;
Here the idea was to replace the calls to set_stroke_color() and set_fill_color() with set_xo_color(), which does both and then calls _emit_paint_needed_icon_area() which effectively halves the no. of render_cairo() calls hence reducing the workload for the pulsing icon operation by nearly 50%.&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Result :&#039;&#039;&#039; The applied patch reduces the delay by more then 60%, as confirmed by the community, but it&#039;s worth a note that the zoom in effect is still lost for most svg icons, only for the very simple icons effect is visible (Log icon is simple enough to show it, Distance icon is not quick enough).We can see the below attached screenshots showing the visual effects,  after the application of the patch on an XO-1.5 &lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:Patch_MD_result_1.jpg|600px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Screenshot at t =t0 &#039;&#039;&#039;&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:Patch_MD_result_2.jpg|600px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Screenshot at t =t1 &#039;&#039;&#039;&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:Patch_MD_result_3.jpg|600px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Screenshot at t =t2 &#039;&#039;&#039;&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:Patch_MD_result_4.jpg|600px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Screenshot at t =t3 &#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;t3 &amp;gt; t2 &amp;gt; t1 &amp;gt; t0&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Contact===&lt;br /&gt;
&lt;br /&gt;
Anurag Chowdhury&lt;br /&gt;
&lt;br /&gt;
anurag&amp;lt;at&amp;gt;seeta&amp;lt;dot&amp;gt;in&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=Pulsing_icon_delayed_by_5_seconds&amp;diff=58838</id>
		<title>Pulsing icon delayed by 5 seconds</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=Pulsing_icon_delayed_by_5_seconds&amp;diff=58838"/>
		<updated>2010-11-03T16:32:44Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Pulsing icon delayed by 5 seconds==&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
Whenever an activity is started in sugar OS , we get to see a few seconds delay after clicking on the activity icon on the home screen and before the appearance of the pulsing icon animation. The delay also seems to be directly proportional to the complexity of the icon of the activity.&lt;br /&gt;
&lt;br /&gt;
===Solutions and their End Results===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FIX # 1 ===&lt;br /&gt;
Tried to reduce the time laag by increasing the duration between the occurrence of two consecutive frames of the pulsing icon animation.&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Result:&#039;&#039;&#039; This approach can be used to fix the case of an animation which has more than required FPS and hence couldbe smoothed out using this measure, but it did nothing to solve the main problem of reducing the preanimation delay.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FIX # 2 === &lt;br /&gt;
Tried to use the concept of “Frame Skipping” ( a concept commonly used in video games to improve the performance of the game).&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Result:&#039;&#039;&#039; This approach couldbe used to fix the case of a laggy animation which runs on low FPS , but it can be used only after the animation starts so it doesnt help in improving the launch time of the pulsing icon animation.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FIX # 3 ===&lt;br /&gt;
Tried to tweak the nature of animation by changing the animation to a ZOOM IN animation only from a ZOOM IN and ZOOM OUT animation. i.e. Tried to alter the pulsing nature by restricting  the animation by both ZOOMING OUT and ZOOMING IN to only ZOOMING IN.&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Result:&#039;&#039;&#039; This approached completely changed the appearance of the pulsing icon but still didnt provide good enough delay reduction.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FIX # 4 ===&lt;br /&gt;
Tried to stop the first frame of the animation from being  filled with colors , so that upon starting the animation we would get to see a raw grayscale svg icon of the activity for the first frame only and then it would be seamlessly continued with the pulsing icon animation. The patch could be found [http://patchwork.sugarlabs.org/patch/314/ here]. &amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Result :&#039;&#039;&#039; The idea was to reduce the rendering time of the first frame so as to speed up the appearance of the first frame of the animation and hence reduce the delay. This fix seems to work as per expectations and has reduced the delay time by more than  50% as noted in the logs and reported by the community.We can see the below attached screenshots showing the visual effects,  after the application of the patch on an XO-1.5 &lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:Patch_v5_result_1.jpg|600px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Screenshot at t =t0 &#039;&#039;&#039;&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:Patch_v5_result_2.jpg|600px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Screenshot at t =t1 &#039;&#039;&#039;&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:Patch_v5_result_3.jpg|600px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Screenshot at t =t2 &#039;&#039;&#039;&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:Patch_v5_result_4.jpg|600px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Screenshot at t =t3 &#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;t3 &amp;gt; t2 &amp;gt; t1 &amp;gt; t0&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;.&lt;br /&gt;
===FIX # 5 ===&lt;br /&gt;
Here the idea was suggested and implemented by Martin dengler &amp;lt;martin@martindengler.com&amp;gt;. We can find his patch  [http://www.martindengler.com/tmp/sl.o-2080/pulsingicon.py-set-new-colors-in-one-go-to-avoid-multiple-calls-to-SVG-rendering.patch here]. &amp;lt;br&amp;gt;&lt;br /&gt;
Here the idea was to replace the calls to set_stroke_color() and set_fill_color() with set_xo_color(), which does both and then calls _emit_paint_needed_icon_area() which effectively halves the no. of render_cairo() calls hence reducing the workload for the pulsing icon operation by nearly 50%.&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Result :&#039;&#039;&#039; The applied patch reduces the delay by more then 60%, as confirmed by the community, but it&#039;s worth a note that the zoom in effect is still lost for most svg icons, only for the very simple icons effect is visible (Log icon is simple enough to show it, Distance icon is not quick enough).We can see the below attached screenshots showing the visual effects,  after the application of the patch on an XO-1.5 &lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:Patch_MD_result_1.jpg|600px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Screenshot at t =t0 &#039;&#039;&#039;&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:Patch_MD_result_2.jpg|600px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Screenshot at t =t1 &#039;&#039;&#039;&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:Patch_MD_result_3.jpg|600px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Screenshot at t =t2 &#039;&#039;&#039;&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:Patch_MD_result_4.jpg|600px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Screenshot at t =t3 &#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;t3 &amp;gt; t2 &amp;gt; t1 &amp;gt; t0&#039;&#039;&lt;br /&gt;
&amp;lt;br&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Contact===&lt;br /&gt;
&lt;br /&gt;
Anurag Chowdhury&lt;br /&gt;
&lt;br /&gt;
anurag&amp;lt;at&amp;gt;seeta&amp;lt;dot&amp;gt;in&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=File:Patch_MD_result_4.jpg&amp;diff=58837</id>
		<title>File:Patch MD result 4.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=File:Patch_MD_result_4.jpg&amp;diff=58837"/>
		<updated>2010-11-03T16:22:33Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=File:Patch_MD_result_3.jpg&amp;diff=58836</id>
		<title>File:Patch MD result 3.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=File:Patch_MD_result_3.jpg&amp;diff=58836"/>
		<updated>2010-11-03T16:22:30Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=File:Patch_MD_result_2.jpg&amp;diff=58835</id>
		<title>File:Patch MD result 2.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=File:Patch_MD_result_2.jpg&amp;diff=58835"/>
		<updated>2010-11-03T16:22:28Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=File:Patch_MD_result_1.jpg&amp;diff=58834</id>
		<title>File:Patch MD result 1.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=File:Patch_MD_result_1.jpg&amp;diff=58834"/>
		<updated>2010-11-03T16:22:03Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=File:Patch_v5_result_4.jpg&amp;diff=58828</id>
		<title>File:Patch v5 result 4.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=File:Patch_v5_result_4.jpg&amp;diff=58828"/>
		<updated>2010-11-03T16:07:33Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=File:Patch_v5_result_3.jpg&amp;diff=58827</id>
		<title>File:Patch v5 result 3.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=File:Patch_v5_result_3.jpg&amp;diff=58827"/>
		<updated>2010-11-03T16:06:54Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=File:Patch_v5_result_2.jpg&amp;diff=58826</id>
		<title>File:Patch v5 result 2.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=File:Patch_v5_result_2.jpg&amp;diff=58826"/>
		<updated>2010-11-03T16:06:47Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=File:Patch_v5_result_1.jpg&amp;diff=58824</id>
		<title>File:Patch v5 result 1.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=File:Patch_v5_result_1.jpg&amp;diff=58824"/>
		<updated>2010-11-03T16:06:30Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=Pulsing_icon_delayed_by_5_seconds&amp;diff=58814</id>
		<title>Pulsing icon delayed by 5 seconds</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=Pulsing_icon_delayed_by_5_seconds&amp;diff=58814"/>
		<updated>2010-11-03T14:03:39Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Pulsing icon delayed by 5 seconds==&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
Whenever an activity is started in sugar OS , we get to see a few seconds delay after clicking on the activity icon on the home screen and before the appearance of the pulsing icon animation. The delay also seems to be directly proportional to the complexity of the icon of the activity.&lt;br /&gt;
&lt;br /&gt;
===Solutions and their End Results===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FIX # 1 ===&lt;br /&gt;
Tried to reduce the time laag by increasing the duration between the occurrence of two consecutive frames of the pulsing icon animation.&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Result:&#039;&#039;&#039; This approach can be used to fix the case of an animation which has more than required FPS and hence couldbe smoothed out using this measure, but it did nothing to solve the main problem of reducing the preanimation delay.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FIX # 2 === &lt;br /&gt;
Tried to use the concept of “Frame Skipping” ( a concept commonly used in video games to improve the performance of the game).&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Result:&#039;&#039;&#039; This approach couldbe used to fix the case of a laggy animation which runs on low FPS , but it can be used only after the animation starts so it doesnt help in improving the launch time of the pulsing icon animation.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FIX # 3 ===&lt;br /&gt;
Tried to tweak the nature of animation by changing the animation to a ZOOM IN animation only from a ZOOM IN and ZOOM OUT animation. i.e. Tried to alter the pulsing nature by restricting  the animation by both ZOOMING OUT and ZOOMING IN to only ZOOMING IN.&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Result:&#039;&#039;&#039; This approached completely changed the appearance of the pulsing icon but still didnt provide good enough delay reduction.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FIX # 4 ===&lt;br /&gt;
Tried to stop the first frame of the animation from being  filled with colors , so that upon starting the animation we would get to see a raw grayscale svg icon of the activity for the first frame only and then it would be seamlessly continued with the pulsing icon animation.&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Result :&#039;&#039;&#039; The idea was to reduce the rendering time of the first frame so as to speed up the appearance of the first frame of the animation and hence reduce the delay. This fix 	 seems to work the best till date and has reduced the delay time by more than  50% as noted in the logs and reported by the community.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Contact===&lt;br /&gt;
&lt;br /&gt;
Anurag Chowdhury&lt;br /&gt;
&lt;br /&gt;
anurag&amp;lt;at&amp;gt;seeta&amp;lt;dot&amp;gt;in&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=Pulsing_icon_delayed_by_5_seconds&amp;diff=58813</id>
		<title>Pulsing icon delayed by 5 seconds</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=Pulsing_icon_delayed_by_5_seconds&amp;diff=58813"/>
		<updated>2010-11-03T14:00:35Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Pulsing icon delayed by 5 seconds==&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
Whenever an activity is started in sugar OS , we get to see a few seconds delay after clicking on the activity icon on the home screen and before the appearance of the pulsing icon animation. The delay also seems to be directly proportional to the complexity of the icon of the activity.&lt;br /&gt;
&lt;br /&gt;
===Solutions and their End Results===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FIX # 1 ===&lt;br /&gt;
Tried to reduce the time laag by increasing the duration between the occurrence of two consecutive frames of the pulsing icon animation.Result: This approach can be used to fix the case of an animation which has more than required FPS and hence couldbe smoothed out using this measure, but it did nothing to solve the main problem of reducing the preanimation delay.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FIX # 2 === &lt;br /&gt;
Tried to use the concept of “Frame Skipping” ( a concept commonly used in video games to improve the performance of the game)  .&lt;br /&gt;
Result: This approach couldbe used to fix the case of a laggy animation which runs on low FPS , but it can be used only after the animation starts so it doesnt help in improving the launch time of the pulsing icon animation.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FIX # 3 ===&lt;br /&gt;
Tried to tweak the nature of animation by changing the animation to a ZOOM IN animation only from a ZOOM IN and ZOOM OUT animation. i.e. Tried to alter the pulsing nature by restricting  the animation by both ZOOMING OUT and ZOOMING IN to only ZOOMING IN.&lt;br /&gt;
Result: This approached completely changed the appearance of the pulsing icon but still 	  didnt provide good enough delay reduction.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FIX # 4 ===&lt;br /&gt;
Tried to stop the first frame of the animation from being  filled with colors , so that upon starting the animation we would get to see a raw grayscale svg icon of the activity for the first frame only and then it would be seamlessly continued with the pulsing icon animation.&lt;br /&gt;
Result : The idea was to reduce the rendering time of the first frame so as to speed up the appearance of the first frame of the animation and hence reduce the delay. This fix 	 seems to work the best till date and has reduced the delay time by more than  50% as noted in the logs and reported by the community.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Contact===&lt;br /&gt;
&lt;br /&gt;
Anurag Chowdhury&lt;br /&gt;
&lt;br /&gt;
anurag&amp;lt;at&amp;gt;seeta&amp;lt;dot&amp;gt;in&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=Pulsing_icon_delayed_by_5_seconds&amp;diff=58812</id>
		<title>Pulsing icon delayed by 5 seconds</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=Pulsing_icon_delayed_by_5_seconds&amp;diff=58812"/>
		<updated>2010-11-03T14:00:06Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Pulsing icon delayed by 5 seconds==&lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
Whenever an activity is started in sugar OS , we get to see a few seconds delay after clicking on the activity icon on the home screen and before the appearance of the pulsing icon animation. The delay also seems to be directly proportional to the complexity of the icon of the activity.&lt;br /&gt;
&lt;br /&gt;
===Solutions and their End Results===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FIX # 1 ===&lt;br /&gt;
Tried to reduce the time laag by increasing the duration between the occurrence of two consecutive frames of the pulsing icon animation.&lt;br /&gt;
*Result&lt;br /&gt;
This approach can be used to fix the case of an animation which has more than required FPS and hence couldbe smoothed out using this measure, but it did nothing to solve the main problem of reducing the preanimation delay.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FIX # 2 === &lt;br /&gt;
Tried to use the concept of “Frame Skipping” ( a concept commonly used in video games to improve the performance of the game)  .&lt;br /&gt;
Result: This approach couldbe used to fix the case of a laggy animation which runs on low FPS , but it can be used only after the animation starts so it doesnt help in improving the launch time of the pulsing icon animation.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FIX # 3 ===&lt;br /&gt;
Tried to tweak the nature of animation by changing the animation to a ZOOM IN animation only from a ZOOM IN and ZOOM OUT animation. i.e. Tried to alter the pulsing nature by restricting  the animation by both ZOOMING OUT and ZOOMING IN to only ZOOMING IN.&lt;br /&gt;
Result: This approached completely changed the appearance of the pulsing icon but still 	  didnt provide good enough delay reduction.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FIX # 4 ===&lt;br /&gt;
Tried to stop the first frame of the animation from being  filled with colors , so that upon starting the animation we would get to see a raw grayscale svg icon of the activity for the first frame only and then it would be seamlessly continued with the pulsing icon animation.&lt;br /&gt;
Result : The idea was to reduce the rendering time of the first frame so as to speed up the appearance of the first frame of the animation and hence reduce the delay. This fix 	 seems to work the best till date and has reduced the delay time by more than  50% as noted in the logs and reported by the community.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Contact===&lt;br /&gt;
&lt;br /&gt;
Anurag Chowdhury&lt;br /&gt;
&lt;br /&gt;
anurag&amp;lt;at&amp;gt;seeta&amp;lt;dot&amp;gt;in&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=Dextrose/BugBashing&amp;diff=58346</id>
		<title>Dextrose/BugBashing</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=Dextrose/BugBashing&amp;diff=58346"/>
		<updated>2010-10-22T16:34:45Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Module &lt;br /&gt;
! Bug # &lt;br /&gt;
! Bug Description &lt;br /&gt;
! Patches&lt;br /&gt;
! Assigned to &lt;br /&gt;
! Reviewed-By &lt;br /&gt;
! Status(r+/r-/r?) &lt;br /&gt;
|-&lt;br /&gt;
| Abacus&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2324 SL#2324]&lt;br /&gt;
| add copy toolbar to abacus&lt;br /&gt;
| [http://git.sugarlabs.org/projects/abacus/repos/mainline/commits/fd911751574e06f9f013eb80fbecdcda1b58afa5 Submitted]&lt;br /&gt;
|   Shanjit Singh Jajmann&lt;br /&gt;
|   Walter Bender&lt;br /&gt;
| r+&lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2151 SL#2151]&lt;br /&gt;
| Shutdown and Logout menu items should activate the busy cursor (or provide some other visual feedback) &lt;br /&gt;
| [http://patchwork.sugarlabs.org/patch/412/ Submitted]&lt;br /&gt;
|   Anurag&lt;br /&gt;
|   James Cameron&lt;br /&gt;
| r+&lt;br /&gt;
|-&lt;br /&gt;
| Paint Activity&lt;br /&gt;
| [http://dev.laptop.org/ticket/4170 OLPC#4170]&lt;br /&gt;
| New suggestion for arrow drawing in Paint activity&lt;br /&gt;
| [http://patchwork.sugarlabs.org/patch/430/ Submitted]&lt;br /&gt;
|   Anurag&lt;br /&gt;
|   Gonzalo Odiard&lt;br /&gt;
| r+&lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2080 SL#2080]&lt;br /&gt;
| Pulsing icon delayed by 5 seconds or so&lt;br /&gt;
| [http://patchwork.sugarlabs.org/patch/314/ Submitted]&lt;br /&gt;
|   Anurag&lt;br /&gt;
| &lt;br /&gt;
| r!&lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2371 SL#2371]&lt;br /&gt;
| need documentation, both in-activity and on the wiki&lt;br /&gt;
| [http://seeta.in/dextrose/docs/Journal%20backup.doc Submitted]&lt;br /&gt;
|   Anurag&lt;br /&gt;
| &lt;br /&gt;
| r!&lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2372 SL#2372]&lt;br /&gt;
| need documentation, both in-activity and on the wiki&lt;br /&gt;
| [http://seeta.in/dextrose/docs/Journal%20restore.doc Submitted]&lt;br /&gt;
|   Anurag&lt;br /&gt;
| &lt;br /&gt;
| r!&lt;br /&gt;
|-&lt;br /&gt;
| Paint&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2338 SL#2338]&lt;br /&gt;
| Added Custom Icons for Line,Polygon and Free-form Shape tools&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2338 Submitted]&lt;br /&gt;
|   Ayush&lt;br /&gt;
| James Cameron&lt;br /&gt;
| r+&lt;br /&gt;
|-&lt;br /&gt;
| Paint&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2266 SL#2266]&lt;br /&gt;
| Title for &#039;Rectangular Marquee&#039; tool changed to &#039;Select Area&#039;&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2266 Submitted]&lt;br /&gt;
|   Ayush&lt;br /&gt;
| Gonzalo Odiard&lt;br /&gt;
| r+&lt;br /&gt;
|-&lt;br /&gt;
| Paint&lt;br /&gt;
| [http://dev.laptop.org/ticket/2495 OLPC#2495]&lt;br /&gt;
| &#039;Invert Color Effect&#039; added to Paint Activity&lt;br /&gt;
| [http://patchwork.sugarlabs.org/patch/379/ Submitted]&lt;br /&gt;
|   Ayush&lt;br /&gt;
|&lt;br /&gt;
| r?&lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/328 SL#328]&lt;br /&gt;
| no feedback when you Start a journal entry that no activity can open&lt;br /&gt;
| [http://patchwork.sugarlabs.org/patch/406/ Submitted]&lt;br /&gt;
|   Mukul Gupta&lt;br /&gt;
|&lt;br /&gt;
| r+&lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2285 SL#2285]&lt;br /&gt;
| Display sugar instead of xephyr on sugar emulator title bar&lt;br /&gt;
| [http://patchwork.sugarlabs.org/patch/231/ Submitted]&lt;br /&gt;
|   Ishan Bansal&lt;br /&gt;
|   Tomeu Vizoso&lt;br /&gt;
| r+&lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/245 SL#245]&lt;br /&gt;
| Display busy cursor when we open any section in control pannel&lt;br /&gt;
| [http://patchwork.sugarlabs.org/patch/265/ Submitted]&lt;br /&gt;
|   Ishan Bansal&lt;br /&gt;
|   Tomeu Vizoso&lt;br /&gt;
| r+&lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/305 SL#305]&lt;br /&gt;
| Checkbox outline changed when activated&lt;br /&gt;
| [http://patchwork.sugarlabs.org/patch/236/ Submitted]&lt;br /&gt;
|   Ishan Bansal&lt;br /&gt;
|&lt;br /&gt;
| r?&lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2170 SL#2170]&lt;br /&gt;
| Specified bundle id for read activity&lt;br /&gt;
| [http://patchwork.sugarlabs.org/patch/249/ Submitted]&lt;br /&gt;
|   Ishan Bansal&lt;br /&gt;
|   Lucian Branescu Mihaila&lt;br /&gt;
| r+&lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/1858 SL#1858]&lt;br /&gt;
| Scale TA font proportional to Sugar font-settings&lt;br /&gt;
| [http://patchwork.sugarlabs.org/patch/277/ Submitted]&lt;br /&gt;
|   Ishan Bansal&lt;br /&gt;
|&lt;br /&gt;
| r?&lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2318 SL#2318]&lt;br /&gt;
| Display Journal free space in volume toolbar&lt;br /&gt;
| [http://patchwork.sugarlabs.org/patch/408/ Submitted]&lt;br /&gt;
|   Ishan Bansal&lt;br /&gt;
|&lt;br /&gt;
| r?&lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2161 SL#2161]&lt;br /&gt;
| Symbols displayed on button in calculate activity changed&lt;br /&gt;
| [http://patchwork.sugarlabs.org/patch/286/ Submitted]&lt;br /&gt;
|   Ishan Bansal&lt;br /&gt;
|&lt;br /&gt;
| r?&lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2210 SL#2210]&lt;br /&gt;
| Translated text not updated simultaneously when language to translate is changed&lt;br /&gt;
| [http://patchwork.sugarlabs.org/patch/311/ Submitted]&lt;br /&gt;
|   Ishan Bansal, Anubhav Aggarwal&lt;br /&gt;
|&lt;br /&gt;
| r?&lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://dev.laptop.org/ticket/5917 OLPC #5917]&lt;br /&gt;
| Paint loses text if text is last item added before activity is stopped&lt;br /&gt;
| [http://patchwork.sugarlabs.org/patch/401/ Submitted]&lt;br /&gt;
|   Ishan Bansal, Anubhav Aggarwal&lt;br /&gt;
|&lt;br /&gt;
| r?&lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2230 SL#2230]&lt;br /&gt;
| Fototoon 3 does not show controls when speech bubble first selected&lt;br /&gt;
| [http://lists.sugarlabs.org/archive/sugar-devel/2010-October/027672.html Submitted]&lt;br /&gt;
|   Shachi Paul, Sarvagya Mukhi&lt;br /&gt;
|   Gonzalo Odiard&lt;br /&gt;
| r+&lt;br /&gt;
|-&lt;br /&gt;
| Paint&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2321 SL#2321]&lt;br /&gt;
| &amp;quot;Keep aspect&amp;quot; is not i18n&lt;br /&gt;
| [http://lists.sugarlabs.org/archive/sugar-devel/2010-October/027735.html Submitted]&lt;br /&gt;
|   Shachi Paul&lt;br /&gt;
|   Gonzalo Odiard&lt;br /&gt;
| Incorrect Report&lt;br /&gt;
|-&lt;br /&gt;
| Words&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2212 SL#2212]&lt;br /&gt;
| Words displays incorrect translation for words that are not in the dictionary&lt;br /&gt;
| [http://lists.sugarlabs.org/archive/sugar-devel/2010-October/027826.html Submitted]&lt;br /&gt;
|   Shachi Paul, Sarvagya Mukhi&lt;br /&gt;
|&lt;br /&gt;
| r?&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=Dextrose/Resources/Journal-backup&amp;diff=58287</id>
		<title>Dextrose/Resources/Journal-backup</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=Dextrose/Resources/Journal-backup&amp;diff=58287"/>
		<updated>2010-10-19T14:38:16Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==JOURNAL BACKUP==&lt;br /&gt;
&lt;br /&gt;
===(Documented on)===&lt;br /&gt;
*Hardware    :    Sugar XO-1.5&lt;br /&gt;
*Build       :    373pyg Paraguay&lt;br /&gt;
*Sugar       :    0.88.1&lt;br /&gt;
*Firmware    :    Q3A50&lt;br /&gt;
&lt;br /&gt;
NOTE:   This document has been prepared to provide the reader an idea of the working and&lt;br /&gt;
use of the Journal Backup feature added in the recent builds of Sugar Dextrose.&lt;br /&gt;
&lt;br /&gt;
To use the Journal Backup feature You would require:&lt;br /&gt;
1) A Sugar XO-1 or XO-1.5 or Sugar emulator running the latest build of Sugar Dextrose.&lt;br /&gt;
2) A USB-2.0 flash drive (preferably atleast 1gb in size)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===To Begin===&lt;br /&gt;
&lt;br /&gt;
# Start the system running the latest build of Sugar Dextrose .&lt;br /&gt;
# Plugin a usb-2.0 flash drive device into the usb port .&amp;lt;br&amp;gt;[[File:Backup screenshot 1.jpg|800px]]&amp;lt;br&amp;gt;&#039;&#039;&#039;Screenshot of Journal before Back-up&#039;&#039;&#039;&lt;br /&gt;
# Open the journal and right click on the usb drive symbol in the journal.&amp;lt;br&amp;gt;[[File:Backup screenshot 2.jpg|800px]]&amp;lt;br&amp;gt;&#039;&#039;&#039; Screenshot of the right click action on the usb drive icon in journal&#039;&#039;&#039;&lt;br /&gt;
# Now to Backup the Journal contents click on the Backup journal option&amp;lt;br&amp;gt;[[File:Backup screenshot 3.jpg|800px]]&amp;lt;br&amp;gt;&#039;&#039;&#039;Screenshot  of the pre-Backup Stage of the Backup Journal Feature GUI.&#039;&#039;&#039;&lt;br /&gt;
# Now click on the Start button to backup the journal contents into the usb flashdrive.&amp;lt;br&amp;gt;[[File:Backup screenshot 4.jpg|800px]]&amp;lt;br&amp;gt;&#039;&#039;&#039; Screenshot of the post-Backup Stage of the Backup Journal Feature GUI &#039;&#039;&#039;&lt;br /&gt;
# Now click on the close button at the completion of the backup process . You can see the backup directory created in your usb flash drive containing the backup data of the journal which would be used in Journal Restore process to restore the data in the journal.&amp;lt;br&amp;gt;[[File:Backup screenshot 5.jpg|800px]]&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=Dextrose/Resources/Journal-restore&amp;diff=58286</id>
		<title>Dextrose/Resources/Journal-restore</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=Dextrose/Resources/Journal-restore&amp;diff=58286"/>
		<updated>2010-10-19T14:37:49Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: Created page with &amp;quot;==JOURNAL RESTORE==  ===(Documented on)=== *Hardware    :    Sugar XO-1.5 *Build       :    373pyg Paraguay *Sugar       :    0.88.1 *Firmware    :    Q3A50  NOTE:   This documen...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==JOURNAL RESTORE==&lt;br /&gt;
&lt;br /&gt;
===(Documented on)===&lt;br /&gt;
*Hardware    :    Sugar XO-1.5&lt;br /&gt;
*Build       :    373pyg Paraguay&lt;br /&gt;
*Sugar       :    0.88.1&lt;br /&gt;
*Firmware    :    Q3A50&lt;br /&gt;
&lt;br /&gt;
NOTE:   This document has been prepared to provide the reader an idea of the working and&lt;br /&gt;
use of the Journal Restore feature added in the recent builds of Sugar Dextrose.&lt;br /&gt;
&lt;br /&gt;
To use the Journal Restore feature You would require:&lt;br /&gt;
1) A Sugar XO-1 or XO-1.5 or Sugar emulator running the latest build of Sugar Dextrose.&lt;br /&gt;
2) A USB-2.0 flash drive (preferably atleast 1gb in size)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===To Begin===&lt;br /&gt;
&lt;br /&gt;
# Start the system running the latest build of Sugar Dextrose .&lt;br /&gt;
# Plugin a usb-2.0 flash drive device into the usb port .&amp;lt;br&amp;gt;[[File:Restore screenshot 1.jpg|800px]]&amp;lt;br&amp;gt;&#039;&#039;&#039;Screenshot of Journal before Restore&#039;&#039;&#039;&lt;br /&gt;
# Open the journal and right click on the usb drive symbol in the journal.&amp;lt;br&amp;gt;[[File:Backup screenshot 2.jpg|800px]]&amp;lt;br&amp;gt;&#039;&#039;&#039; Screenshot of the right click action on the usb drive icon in journal&#039;&#039;&#039;&lt;br /&gt;
# Now to Restore the Journal contents click on the Restore journal option&amp;lt;br&amp;gt;[[File:Restore screenshot 3.jpg|800px]]&amp;lt;br&amp;gt;&#039;&#039;&#039;Screenshot  of the pre-Restore Stage of the Restore Journal Feature GUI.&#039;&#039;&#039;&lt;br /&gt;
# Now click on the Start button to Restore the journal contents from the usb flashdrive.&amp;lt;br&amp;gt;[[File:Restore screenshot 4.jpg|800px]]&amp;lt;br&amp;gt;&#039;&#039;&#039; Screenshot of the post-Restore Stage of the Restore Journal Feature GUI &#039;&#039;&#039;&lt;br /&gt;
# Now click on the restart button at the completion of the Restore process . After restart you can see the  journal contents has been restored back to that of the time of the backup.&amp;lt;br&amp;gt;[[File:Backup screenshot 1.jpg|800px]]&amp;lt;br&amp;gt;&#039;&#039;&#039;Screenshot of the journal after the restore process&#039;&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=File:Restore_screenshot_4.jpg&amp;diff=58285</id>
		<title>File:Restore screenshot 4.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=File:Restore_screenshot_4.jpg&amp;diff=58285"/>
		<updated>2010-10-19T14:28:03Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=File:Restore_screenshot_3.jpg&amp;diff=58284</id>
		<title>File:Restore screenshot 3.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=File:Restore_screenshot_3.jpg&amp;diff=58284"/>
		<updated>2010-10-19T14:27:38Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=File:Restore_screenshot_1.jpg&amp;diff=58283</id>
		<title>File:Restore screenshot 1.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=File:Restore_screenshot_1.jpg&amp;diff=58283"/>
		<updated>2010-10-19T14:25:46Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=Dextrose/Resources/Journal-backup&amp;diff=58282</id>
		<title>Dextrose/Resources/Journal-backup</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=Dextrose/Resources/Journal-backup&amp;diff=58282"/>
		<updated>2010-10-19T14:04:08Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: /* JOURNAL BACKUP */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==JOURNAL BACKUP==&lt;br /&gt;
&lt;br /&gt;
===(Documented on)===&lt;br /&gt;
*Hardware    :    Sugar XO-1.5&lt;br /&gt;
*Build       :    373pyg Paraguay&lt;br /&gt;
*Sugar       :    0.88.1&lt;br /&gt;
*Firmware    :    Q3A50&lt;br /&gt;
&lt;br /&gt;
NOTE:   This document has been prepared to provide the reader an idea of the working and&lt;br /&gt;
use of the Journal Backup feature added in the recent builds of Sugar Dextrose.&lt;br /&gt;
&lt;br /&gt;
To use the Journal Backup feature You would require:&lt;br /&gt;
1) A Sugar XO-1 or XO-1.5 or Sugar emulator running the latest build of Sugar Dextrose.&lt;br /&gt;
2) A USB-2.0 flash drive (preferably atleast 1gb in size)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===To Begin===&lt;br /&gt;
&lt;br /&gt;
# Start the system running the latest build of Sugar Dextrose .&lt;br /&gt;
# Plugin a usb-2.0 flash drive device into the usb port .&amp;lt;br&amp;gt;[[File:Backup screenshot 1.jpg]]&amp;lt;br&amp;gt;&#039;&#039;&#039;Screenshot of Journal before Back-up&#039;&#039;&#039;&lt;br /&gt;
# Open the journal and right click on the usb drive symbol in the journal.&amp;lt;br&amp;gt;[[File:Backup screenshot 2.jpg]]&amp;lt;br&amp;gt;&#039;&#039;&#039; Screenshot of the right click action on the usb drive icon in journal&#039;&#039;&#039;&lt;br /&gt;
# Now to Backup the Journal contents click on the Backup journal option&amp;lt;br&amp;gt;[[File:Backup screenshot 3.jpg]]&amp;lt;br&amp;gt;&#039;&#039;&#039;Screenshot  of the pre-Backup Stage of the Backup Journal Feature GUI.&#039;&#039;&#039;&lt;br /&gt;
# Now click on the Start button to backup the journal contents into the usb flashdrive.&amp;lt;br&amp;gt;[[File:Backup screenshot 4.jpg]]&amp;lt;br&amp;gt;&#039;&#039;&#039; Screenshot of the post-Backup Stage of the Backup Journal Feature GUI &#039;&#039;&#039;&lt;br /&gt;
# Now click on the close button at the completion of the backup process . You can see the backup directory created in your usb flash drive containing the backup data of the journal which would be used in Journal Restore process to restore the data in the journal.&amp;lt;br&amp;gt;[[File:Backup screenshot 5.jpg]]&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=Dextrose/Resources/Journal-backup&amp;diff=58281</id>
		<title>Dextrose/Resources/Journal-backup</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=Dextrose/Resources/Journal-backup&amp;diff=58281"/>
		<updated>2010-10-19T14:02:40Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: Created page with &amp;quot;==JOURNAL BACKUP==  ===(Documented on)=== *Hardware    :    Sugar XO-1.5 *Build       :    373pyg Paraguay *Sugar       :    0.88.1 *Firmware   :    Q3A50  NOTE:   This document ...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==JOURNAL BACKUP==&lt;br /&gt;
&lt;br /&gt;
===(Documented on)===&lt;br /&gt;
*Hardware    :    Sugar XO-1.5&lt;br /&gt;
*Build       :    373pyg Paraguay&lt;br /&gt;
*Sugar       :    0.88.1&lt;br /&gt;
*Firmware   :    Q3A50&lt;br /&gt;
&lt;br /&gt;
NOTE:   This document has been prepared to provide the reader an idea of the working and&lt;br /&gt;
use of the Journal Backup feature added in the recent builds of Sugar Dextrose.&lt;br /&gt;
&lt;br /&gt;
To use the Journal Backup feature You would require:&lt;br /&gt;
1) A Sugar XO-1 or XO-1.5 or Sugar emulator running the latest build of Sugar Dextrose.&lt;br /&gt;
2) A USB-2.0 flash drive (preferably atleast 1gb in size)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===To Begin===&lt;br /&gt;
&lt;br /&gt;
# Start the system running the latest build of Sugar Dextrose .&lt;br /&gt;
# Plugin a usb-2.0 flash drive device into the usb port .&amp;lt;br&amp;gt;[[File:Backup screenshot 1.jpg]]&amp;lt;br&amp;gt;&#039;&#039;&#039;Screenshot of Journal before Back-up&#039;&#039;&#039;&lt;br /&gt;
# Open the journal and right click on the usb drive symbol in the journal.&amp;lt;br&amp;gt;[[File:Backup screenshot 2.jpg]]&amp;lt;br&amp;gt;&#039;&#039;&#039; Screenshot of the right click action on the usb drive icon in journal&#039;&#039;&#039;&lt;br /&gt;
# Now to Backup the Journal contents click on the Backup journal option&amp;lt;br&amp;gt;[[File:Backup screenshot 3.jpg]]&amp;lt;br&amp;gt;&#039;&#039;&#039;Screenshot  of the pre-Backup Stage of the Backup Journal Feature GUI.&#039;&#039;&#039;&lt;br /&gt;
# Now click on the Start button to backup the journal contents into the usb flashdrive.&amp;lt;br&amp;gt;[[File:Backup screenshot 4.jpg]]&amp;lt;br&amp;gt;&#039;&#039;&#039; Screenshot of the post-Backup Stage of the Backup Journal Feature GUI &#039;&#039;&#039;&lt;br /&gt;
# Now click on the close button at the completion of the backup process . You can see the backup directory created in your usb flash drive containing the backup data of the journal which would be used in Journal Restore process to restore the data in the journal.&amp;lt;br&amp;gt;[[File:Backup screenshot 5.jpg]]&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=File:Backup_screenshot_5.jpg&amp;diff=58280</id>
		<title>File:Backup screenshot 5.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=File:Backup_screenshot_5.jpg&amp;diff=58280"/>
		<updated>2010-10-19T14:00:38Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=File:Backup_screenshot_4.jpg&amp;diff=58279</id>
		<title>File:Backup screenshot 4.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=File:Backup_screenshot_4.jpg&amp;diff=58279"/>
		<updated>2010-10-19T14:00:30Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=File:Backup_screenshot_3.jpg&amp;diff=58278</id>
		<title>File:Backup screenshot 3.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=File:Backup_screenshot_3.jpg&amp;diff=58278"/>
		<updated>2010-10-19T14:00:24Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=File:Backup_screenshot_2.jpg&amp;diff=58277</id>
		<title>File:Backup screenshot 2.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=File:Backup_screenshot_2.jpg&amp;diff=58277"/>
		<updated>2010-10-19T13:53:07Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=File:Backup_screenshot_1.jpg&amp;diff=58276</id>
		<title>File:Backup screenshot 1.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=File:Backup_screenshot_1.jpg&amp;diff=58276"/>
		<updated>2010-10-19T13:37:07Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: Screenshot of journal before backup&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Screenshot of journal before backup&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=Dextrose/BugBashing&amp;diff=58275</id>
		<title>Dextrose/BugBashing</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=Dextrose/BugBashing&amp;diff=58275"/>
		<updated>2010-10-19T13:06:59Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Module &lt;br /&gt;
! Bug # &lt;br /&gt;
! Bug Description &lt;br /&gt;
! Patches&lt;br /&gt;
! Assigned to &lt;br /&gt;
! Reviewed-By &lt;br /&gt;
! Status(r+/r-/r?) &lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2151 SL#2151]&lt;br /&gt;
| Shutdown and Logout menu items should activate the busy cursor (or provide some other visual feedback) &lt;br /&gt;
| [http://patchwork.sugarlabs.org/patch/412/ Submitted]&lt;br /&gt;
|   Anurag&lt;br /&gt;
|   James Cameron&lt;br /&gt;
| r+&lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2080 SL#2080]&lt;br /&gt;
| Pulsing icon delayed by 5 seconds or so&lt;br /&gt;
| [http://patchwork.sugarlabs.org/patch/314/ Submitted]&lt;br /&gt;
|   Anurag&lt;br /&gt;
| &lt;br /&gt;
| r?&lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2371 SL#2371]&lt;br /&gt;
| need documentation, both in-activity and on the wiki&lt;br /&gt;
| [http://seeta.in/dextrose/docs/Journal%20backup.doc Submitted]&lt;br /&gt;
|   Anurag&lt;br /&gt;
| &lt;br /&gt;
| r?&lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2372 SL#2372]&lt;br /&gt;
| need documentation, both in-activity and on the wiki&lt;br /&gt;
| [http://seeta.in/dextrose/docs/Journal%20restore.doc Submitted]&lt;br /&gt;
|   Anurag&lt;br /&gt;
| &lt;br /&gt;
| r?&lt;br /&gt;
|-&lt;br /&gt;
| Paint&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2338 SL#2338]&lt;br /&gt;
| Added Custom Icons for Line,Polygon and Free-form Shape tools&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2338 Submitted]&lt;br /&gt;
|   Ayush&lt;br /&gt;
| James Cameron&lt;br /&gt;
| r+&lt;br /&gt;
|-&lt;br /&gt;
| Paint&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2266 SL#2266]&lt;br /&gt;
| Title for &#039;Rectangular Marquee&#039; tool changed to &#039;Select Area&#039;&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2266 Submitted]&lt;br /&gt;
|   Ayush&lt;br /&gt;
| Gonzalo Odiard&lt;br /&gt;
| r+&lt;br /&gt;
|-&lt;br /&gt;
| Paint&lt;br /&gt;
| [http://dev.laptop.org/ticket/2495 OLPC#2495]&lt;br /&gt;
| &#039;Invert Color Effect&#039; added to Paint Activity&lt;br /&gt;
| [http://patchwork.sugarlabs.org/patch/379/ Submitted]&lt;br /&gt;
|   Ayush&lt;br /&gt;
|&lt;br /&gt;
| r?&lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/328 SL#328]&lt;br /&gt;
| no feedback when you Start a journal entry that no activity can open&lt;br /&gt;
| [http://patchwork.sugarlabs.org/patch/406/ Submitted]&lt;br /&gt;
|   Mukul Gupta&lt;br /&gt;
|&lt;br /&gt;
| r+&lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2285 SL#2285]&lt;br /&gt;
| Display sugar instead of xephyr on sugar emulator title bar&lt;br /&gt;
| [http://patchwork.sugarlabs.org/patch/231/ Submitted]&lt;br /&gt;
|   Ishan Bansal&lt;br /&gt;
|   Tomeu Vizoso&lt;br /&gt;
| r+&lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/245 SL#245]&lt;br /&gt;
| Display busy cursor when we open any section in control pannel&lt;br /&gt;
| [http://patchwork.sugarlabs.org/patch/265/ Submitted]&lt;br /&gt;
|   Ishan Bansal&lt;br /&gt;
|   Tomeu Vizoso&lt;br /&gt;
| r+&lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/305 SL#305]&lt;br /&gt;
| Checkbox outline changed when activated&lt;br /&gt;
| [http://patchwork.sugarlabs.org/patch/236/ Submitted]&lt;br /&gt;
|   Ishan Bansal&lt;br /&gt;
|&lt;br /&gt;
| r?&lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2170 SL#2170]&lt;br /&gt;
| Specified bundle id for read activity&lt;br /&gt;
| [http://patchwork.sugarlabs.org/patch/249/ Submitted]&lt;br /&gt;
|   Ishan Bansal&lt;br /&gt;
|   Lucian Branescu Mihaila&lt;br /&gt;
| r+&lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/1858 SL#1858]&lt;br /&gt;
| Scale TA font proportional to Sugar font-settings&lt;br /&gt;
| [http://patchwork.sugarlabs.org/patch/277/ Submitted]&lt;br /&gt;
|   Ishan Bansal&lt;br /&gt;
|&lt;br /&gt;
| r?&lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2318 SL#2318]&lt;br /&gt;
| Display Journal free space in volume toolbar&lt;br /&gt;
| [http://patchwork.sugarlabs.org/patch/408/ Submitted]&lt;br /&gt;
|   Ishan Bansal&lt;br /&gt;
|&lt;br /&gt;
| r?&lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2161 SL#2161]&lt;br /&gt;
| Symbols displayed on button in calculate activity changed&lt;br /&gt;
| [http://patchwork.sugarlabs.org/patch/286/ Submitted]&lt;br /&gt;
|   Ishan Bansal&lt;br /&gt;
|&lt;br /&gt;
| r?&lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2210 SL#2210]&lt;br /&gt;
| Translated text not updated simultaneously when language to translate is changed&lt;br /&gt;
| [http://patchwork.sugarlabs.org/patch/311/ Submitted]&lt;br /&gt;
|   Ishan Bansal, Anubhav Aggarwal&lt;br /&gt;
|&lt;br /&gt;
| r?&lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://dev.laptop.org/ticket/5917 OLPC #5917]&lt;br /&gt;
| Paint loses text if text is last item added before activity is stopped&lt;br /&gt;
| [http://patchwork.sugarlabs.org/patch/401/ Submitted]&lt;br /&gt;
|   Ishan Bansal, Anubhav Aggarwal&lt;br /&gt;
|&lt;br /&gt;
| r?&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=Dextrose/BugBashing&amp;diff=58240</id>
		<title>Dextrose/BugBashing</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=Dextrose/BugBashing&amp;diff=58240"/>
		<updated>2010-10-15T14:15:03Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Module &lt;br /&gt;
! Bug SL # &lt;br /&gt;
! Bug Description &lt;br /&gt;
! Patches&lt;br /&gt;
! Assigned to &lt;br /&gt;
! Reviewed-By &lt;br /&gt;
! Status(r+/r-/r?) &lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2151 2151]&lt;br /&gt;
| Shutdown and Logout menu items should activate the busy cursor (or provide some other visual feedback) &lt;br /&gt;
| [http://patchwork.sugarlabs.org/patch/290/ Submitted]&lt;br /&gt;
|   Anurag&lt;br /&gt;
| &lt;br /&gt;
| r?&lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2080 2080]&lt;br /&gt;
| Pulsing icon delayed by 5 seconds or so&lt;br /&gt;
| [http://patchwork.sugarlabs.org/patch/314/ Submitted]&lt;br /&gt;
|   Anurag&lt;br /&gt;
| &lt;br /&gt;
| r?&lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2371 2371]&lt;br /&gt;
| need documentation, both in-activity and on the wiki&lt;br /&gt;
| [http://seeta.in/dextrose/docs/Journal%20backup.doc Submitted]&lt;br /&gt;
|   Anurag&lt;br /&gt;
| &lt;br /&gt;
| r?&lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2372 2372]&lt;br /&gt;
| need documentation, both in-activity and on the wiki&lt;br /&gt;
| [http://seeta.in/dextrose/docs/Journal%20restore.doc Submitted]&lt;br /&gt;
|   Anurag&lt;br /&gt;
| &lt;br /&gt;
| r?&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=Dextrose/BugBashing&amp;diff=58239</id>
		<title>Dextrose/BugBashing</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=Dextrose/BugBashing&amp;diff=58239"/>
		<updated>2010-10-15T14:06:17Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: Created page with &amp;quot;{| class=&amp;quot;wikitable&amp;quot; |- ! Module  ! Bug SL #  ! Bug Description  ! Assigned to  ! Reviewed-By  ! Status(r+/r-/r?)  |- | Dextrose | [http://bugs.sugarlabs.org/ticket/2151 2151] | ...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Module &lt;br /&gt;
! Bug SL # &lt;br /&gt;
! Bug Description &lt;br /&gt;
! Assigned to &lt;br /&gt;
! Reviewed-By &lt;br /&gt;
! Status(r+/r-/r?) &lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2151 2151]&lt;br /&gt;
| Shutdown and Logout menu items should activate the busy cursor (or provide some other visual feedback) &lt;br /&gt;
| Anurag&lt;br /&gt;
| &lt;br /&gt;
| r?&lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2080 2080]&lt;br /&gt;
| Pulsing icon delayed by 5 seconds or so&lt;br /&gt;
| Anurag&lt;br /&gt;
| &lt;br /&gt;
| r?&lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2371 2371]&lt;br /&gt;
| need documentation, both in-activity and on the wiki&lt;br /&gt;
| Anurag&lt;br /&gt;
| &lt;br /&gt;
| r?&lt;br /&gt;
|-&lt;br /&gt;
| Dextrose&lt;br /&gt;
| [http://bugs.sugarlabs.org/ticket/2372 2372]&lt;br /&gt;
| need documentation, both in-activity and on the wiki&lt;br /&gt;
| Anurag&lt;br /&gt;
| &lt;br /&gt;
| r?&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=Talk:Dextrose&amp;diff=56124</id>
		<title>Talk:Dextrose</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=Talk:Dextrose&amp;diff=56124"/>
		<updated>2010-08-23T19:37:51Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;                                                               &lt;br /&gt;
                                                             &#039;&#039;&#039;QA&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1) [http://seeta.in/dextrose/qa/ TEST PLANS]&lt;br /&gt;
&lt;br /&gt;
2) [http://seeta.in/dextrose/docs/  DOCS]&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=Talk:Dextrose&amp;diff=56123</id>
		<title>Talk:Dextrose</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=Talk:Dextrose&amp;diff=56123"/>
		<updated>2010-08-23T19:28:17Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;                                                               &lt;br /&gt;
                                                          == &#039;&#039;&#039;QA&#039;&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1) TEST PLANS:[http://seeta.in/dextrose/qa/ link TEST PLANS]&lt;br /&gt;
&lt;br /&gt;
2) DOCS:[http://seeta.in/dextrose/docs/ link DOCS]&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=File:Dextrose_Screenshots~v1.doc&amp;diff=56122</id>
		<title>File:Dextrose Screenshots~v1.doc</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=File:Dextrose_Screenshots~v1.doc&amp;diff=56122"/>
		<updated>2010-08-23T18:58:04Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: Screenshots of some new features included in the the dextrose build of SUGAR OS on an XO-1&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Screenshots of some new features included in the the dextrose build of SUGAR OS on an XO-1&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=Talk:Dextrose&amp;diff=56121</id>
		<title>Talk:Dextrose</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=Talk:Dextrose&amp;diff=56121"/>
		<updated>2010-08-23T18:30:27Z</updated>

		<summary type="html">&lt;p&gt;Anurag-seeta: Created page with &amp;#039;                                                                                                                          == &amp;#039;&amp;#039;&amp;#039;QA&amp;#039;&amp;#039;&amp;#039; ==   1) TEST PLANS  2) DOCS&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;                                                               &lt;br /&gt;
                                                          == &#039;&#039;&#039;QA&#039;&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1) TEST PLANS&lt;br /&gt;
&lt;br /&gt;
2) DOCS&lt;/div&gt;</summary>
		<author><name>Anurag-seeta</name></author>
	</entry>
</feed>