<?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=Jorge96</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=Jorge96"/>
	<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/go/Special:Contributions/Jorge96"/>
	<updated>2026-05-14T17:24:21Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=Sugar_iconify&amp;diff=91061</id>
		<title>Sugar iconify</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=Sugar_iconify&amp;diff=91061"/>
		<updated>2013-12-26T15:45:31Z</updated>

		<summary type="html">&lt;p&gt;Jorge96: /* Usage */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The sugariconify.py script converts SVGs into the format required for Sugar icons, adding the necessary stroke and fill entities. This is a Python script, and as such requires Python to run.&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;big&amp;gt;Usage&amp;lt;/big&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Download [https://github.com/GhostAlgorithm/sugariconify/blob/master/sugariconify.py here]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
    sugariconify.py [-ceghipv] [-s stroke_hex] [-f fill_hex] [-m | -o ] [-d directory] input.svg&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;big&amp;gt;Description&amp;lt;/big&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
This script will create Sugar-compatible SVG icons from input.svg by adding the appropriate stroke and fill entities. It has two primary modes of operation: single-icon and icon set. For additional information about creating an SVG suitable for passing as the input to this script, see the tutorial on Making Sugar Icons. &lt;br /&gt;
&lt;br /&gt;
Single-icon: The default operation creates a single sugar icon — for instance an activity icon — from the input SVG. By default, the Sugarized icon will be written to a new file named input.sugar.svg, optionally in the output directory specified with -d. By invoking the -o option, the input file will be overwritten in place. &lt;br /&gt;
&lt;br /&gt;
When run, the script attempts to determine the proper hex values for the stroke and fill entities, and asks for confirmation before proceeding. You can preemptively accept this guess with -g, but do so with caution as the proper values cannot be determined with 100% confidence; we strongly recommend against using this in conjunction with the -o option. Should the script be unable to determine the proper entities, you can specify the correct stroke and fill hex values to replace using the -s and -f flags, respectively. Finally, for activity icons, you may find it convenient to apply the recommended default stroke and fill colors (#666666, #FFFFFF) to the output SVG with -c, which will make your icon match the visual style of uninstantiated activities within the UI, as well as the others posted on the wiki. &lt;br /&gt;
&lt;br /&gt;
You may also generate an HTML preview containing a few variations on the icon rendering style, as it may later be seen in Sugar. When the -x flag is passed, a directory named input.preview containing several example SVGs and the HTML file will be created, adjacent your icon output. View this file in Safari or Firefox (other browsers not tested), and observe the tips listed in the preview for validating your icon. At present, HTML previews are only supported for single-icon conversions, and -x will be ignored when passed with the -m flag. &lt;br /&gt;
&lt;br /&gt;
Icon sets: Activity developers may require many icons for placement in toolbars and elsewhere in their activities. To make the process of creating and exporting large numbers of icons easier, this script provides a multiple-export feature. When the -m option is passed, the script will export an entire set of icons from a single input SVG — one for each top level group within it. The resulting files will each contain all of the appropriate stroke and fill entities, and assume the name of the id given to the group that defined it. &lt;br /&gt;
&lt;br /&gt;
In some cases, you may desire to update a single icon, or a subset of the icons defined within a given SVG. To do so, pass a pattern to the script with -p, and only those icons which match the pattern will be exported. &lt;br /&gt;
&lt;br /&gt;
Options &lt;br /&gt;
&lt;br /&gt;
    -c    Apply default color entities (#666666, #FFFFFF) to output &lt;br /&gt;
    -d    [directory] The preferred output directory &lt;br /&gt;
    -e    Do not insert entities for strokes and fills &lt;br /&gt;
    -f    [hex] Hex value to replace with fill entity &lt;br /&gt;
    -g    Automatically accept guesses for stroke and fill entities &lt;br /&gt;
    -h    Display this help message &lt;br /&gt;
    -i    Insert &amp;quot;isolated stroke&amp;quot; entities &lt;br /&gt;
    -m    Multiple export; export top level groups as separate icons &lt;br /&gt;
    -o    Modify input file in place, overwriting it; overridden by -m &lt;br /&gt;
    -p    [pattern] Only export icons whose name contains pattern &lt;br /&gt;
    -s    [hex] Hex value to replace with stroke entity &lt;br /&gt;
    -v    Verbose &lt;br /&gt;
    -x    Create HTML preview files, for icon validation &lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;&amp;lt;big&amp;gt;SugarIconify class&amp;lt;/big&amp;gt;&#039;&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
sugariconify.py it has a class too, so it can be used in any other script easily&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;big&amp;gt;Instantiating SugarIconify&amp;lt;/big&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
    from sugariconify import SugarIconify&lt;br /&gt;
    icon = SugarIconify()&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;big&amp;gt;SugarIconify methods&amp;lt;/big&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
SugarIconify class has enabled the same functionality of the command line utility, with the following methods to set the desired behavior:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;set_stroke_color():&#039;&#039;&#039; equivalent of -s on command line, it can be a hex value (e.g #FFFFFF) or a rgb percent value such as rgb(32%, 33%, 87%)&lt;br /&gt;
&lt;br /&gt;
    from sugariconify import SugarIconify&lt;br /&gt;
    icon = SugarIconify()&lt;br /&gt;
    icon.set_stroke_color(&#039;#FFFFFF&#039;)&lt;br /&gt;
    icon.set_stroke_color(&#039;rgb(55%, 12%, 55%)&#039;)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;set_fill_color():&#039;&#039;&#039; equivalent of -f on command line, it can be a hex value (e.g #FFFFFF) or a rgb percent value such as rgb(32%, 33%, 87%)&lt;br /&gt;
&lt;br /&gt;
    from sugariconify import SugarIconify&lt;br /&gt;
    icon = SugarIconify()&lt;br /&gt;
    icon.set_fill_color(&#039;#FFFFFF&#039;)&lt;br /&gt;
    icon.set_fill_color(&#039;rgb(55%, 12%, 55%)&#039;)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;set_confirm_guess():&#039;&#039;&#039; equivalent of -g on command line, so it can automatically accept guesses for stroke and fill entities, True or False are the only accepted values&lt;br /&gt;
&lt;br /&gt;
    from sugariconify import SugarIconify&lt;br /&gt;
    icon = SugarIconify()&lt;br /&gt;
    icon.set_confirm_guess(True)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;set_use_default_colors():&#039;&#039;&#039; equivalent of -c on command line, uses default stroke and fill entities (#666666, #FFFFFF) for sugar iconify, True or False are the only accepted values&lt;br /&gt;
&lt;br /&gt;
    from sugariconify import SugarIconify&lt;br /&gt;
    icon = SugarIconify()&lt;br /&gt;
    icon.set_use_default_colors(True)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;set_overwrite_input():&#039;&#039;&#039; equivalent of -o on command line, overrides input file in place, True or False are the only accepted values&lt;br /&gt;
&lt;br /&gt;
    from sugariconify import SugarIconify&lt;br /&gt;
    icon = SugarIconify()&lt;br /&gt;
    icon.set_overwrite_input(True)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;set_output_path():&#039;&#039;&#039; equivalent of -d on command line, sets the output path where the iconified file will be placed, string values are accepted&lt;br /&gt;
&lt;br /&gt;
    from sugariconify import SugarIconify&lt;br /&gt;
    icon = SugarIconify()&lt;br /&gt;
    icon.set_output_path(&#039;/home/user/Desktop&#039;)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;set_use_entity():&#039;&#039;&#039; equivalent of -e on command line, do not insert entities for strokes and fills, True or False are the only accepted values&lt;br /&gt;
&lt;br /&gt;
    from sugariconify import SugarIconify&lt;br /&gt;
    icon = SugarIconify()&lt;br /&gt;
    icon.set_use_entity(True)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;set_verbose():&#039;&#039;&#039; equivalent of -v on command line, outputs information messages on console, True or False are the only accepted values&lt;br /&gt;
&lt;br /&gt;
    from sugariconify import SugarIconify&lt;br /&gt;
    icon = SugarIconify()&lt;br /&gt;
    icon.set_verbose(True)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;set_pattern():&#039;&#039;&#039; equivalent of -p on command line, only export icons whose name contains pattern, string values are accepted.&lt;br /&gt;
&lt;br /&gt;
    from sugariconify import SugarIconify&lt;br /&gt;
    icon = SugarIconify()&lt;br /&gt;
    icon.set_pattern(&#039;pattern&#039;)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;set_multiple():&#039;&#039;&#039; equivalent of -m on command line, export top level groups as separate icons, True or False are the only accepted values&lt;br /&gt;
&lt;br /&gt;
    from sugariconify import SugarIconify&lt;br /&gt;
    icon = SugarIconify()&lt;br /&gt;
    icon.set_multiple(True)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;set_output_examples():&#039;&#039;&#039; equivalent of -x on command line, create HTML preview files, for icon validation, True or False are the only accepted values &lt;br /&gt;
&lt;br /&gt;
    from sugariconify import SugarIconify&lt;br /&gt;
    icon = SugarIconify()&lt;br /&gt;
    icon.set_output_examples(True)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;set_use_iso_strokes():&#039;&#039;&#039; equivalent of -i on command line,  insert &amp;quot;isolated stroke&amp;quot; entities, True or False are the only accepted values&lt;br /&gt;
&lt;br /&gt;
    from sugariconify import SugarIconify&lt;br /&gt;
    icon = SugarIconify()&lt;br /&gt;
    icon.set_use_iso_strokes(True)&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;big&amp;gt;SugarIconify example&amp;lt;/big&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
    from sugariconify import SugarIconify&lt;br /&gt;
    icon = SugarIconify()&lt;br /&gt;
    icon.set_use_default_colors(True)&lt;br /&gt;
    icon.iconify(&#039;/home/user/Desktop/image.svg&#039;)&lt;/div&gt;</summary>
		<author><name>Jorge96</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=Sugar_iconify&amp;diff=91060</id>
		<title>Sugar iconify</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=Sugar_iconify&amp;diff=91060"/>
		<updated>2013-12-26T15:42:59Z</updated>

		<summary type="html">&lt;p&gt;Jorge96: Created page with &amp;quot;The sugariconify.py script converts SVGs into the format required for Sugar icons, adding the necessary stroke and fill entities. This is a Python script, and as such requires...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The sugariconify.py script converts SVGs into the format required for Sugar icons, adding the necessary stroke and fill entities. This is a Python script, and as such requires Python to run.&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;big&amp;gt;Usage&amp;lt;/big&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
    sugariconify.py [-ceghipv] [-s stroke_hex] [-f fill_hex] [-m | -o ] [-d directory] input.svg &lt;br /&gt;
&lt;br /&gt;
==&amp;lt;big&amp;gt;Description&amp;lt;/big&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
This script will create Sugar-compatible SVG icons from input.svg by adding the appropriate stroke and fill entities. It has two primary modes of operation: single-icon and icon set. For additional information about creating an SVG suitable for passing as the input to this script, see the tutorial on Making Sugar Icons. &lt;br /&gt;
&lt;br /&gt;
Single-icon: The default operation creates a single sugar icon — for instance an activity icon — from the input SVG. By default, the Sugarized icon will be written to a new file named input.sugar.svg, optionally in the output directory specified with -d. By invoking the -o option, the input file will be overwritten in place. &lt;br /&gt;
&lt;br /&gt;
When run, the script attempts to determine the proper hex values for the stroke and fill entities, and asks for confirmation before proceeding. You can preemptively accept this guess with -g, but do so with caution as the proper values cannot be determined with 100% confidence; we strongly recommend against using this in conjunction with the -o option. Should the script be unable to determine the proper entities, you can specify the correct stroke and fill hex values to replace using the -s and -f flags, respectively. Finally, for activity icons, you may find it convenient to apply the recommended default stroke and fill colors (#666666, #FFFFFF) to the output SVG with -c, which will make your icon match the visual style of uninstantiated activities within the UI, as well as the others posted on the wiki. &lt;br /&gt;
&lt;br /&gt;
You may also generate an HTML preview containing a few variations on the icon rendering style, as it may later be seen in Sugar. When the -x flag is passed, a directory named input.preview containing several example SVGs and the HTML file will be created, adjacent your icon output. View this file in Safari or Firefox (other browsers not tested), and observe the tips listed in the preview for validating your icon. At present, HTML previews are only supported for single-icon conversions, and -x will be ignored when passed with the -m flag. &lt;br /&gt;
&lt;br /&gt;
Icon sets: Activity developers may require many icons for placement in toolbars and elsewhere in their activities. To make the process of creating and exporting large numbers of icons easier, this script provides a multiple-export feature. When the -m option is passed, the script will export an entire set of icons from a single input SVG — one for each top level group within it. The resulting files will each contain all of the appropriate stroke and fill entities, and assume the name of the id given to the group that defined it. &lt;br /&gt;
&lt;br /&gt;
In some cases, you may desire to update a single icon, or a subset of the icons defined within a given SVG. To do so, pass a pattern to the script with -p, and only those icons which match the pattern will be exported. &lt;br /&gt;
&lt;br /&gt;
Options &lt;br /&gt;
&lt;br /&gt;
    -c    Apply default color entities (#666666, #FFFFFF) to output &lt;br /&gt;
    -d    [directory] The preferred output directory &lt;br /&gt;
    -e    Do not insert entities for strokes and fills &lt;br /&gt;
    -f    [hex] Hex value to replace with fill entity &lt;br /&gt;
    -g    Automatically accept guesses for stroke and fill entities &lt;br /&gt;
    -h    Display this help message &lt;br /&gt;
    -i    Insert &amp;quot;isolated stroke&amp;quot; entities &lt;br /&gt;
    -m    Multiple export; export top level groups as separate icons &lt;br /&gt;
    -o    Modify input file in place, overwriting it; overridden by -m &lt;br /&gt;
    -p    [pattern] Only export icons whose name contains pattern &lt;br /&gt;
    -s    [hex] Hex value to replace with stroke entity &lt;br /&gt;
    -v    Verbose &lt;br /&gt;
    -x    Create HTML preview files, for icon validation &lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;&amp;lt;big&amp;gt;SugarIconify class&amp;lt;/big&amp;gt;&#039;&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
sugariconify.py it has a class too, so it can be used in any other script easily&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;big&amp;gt;Instantiating SugarIconify&amp;lt;/big&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
    from sugariconify import SugarIconify&lt;br /&gt;
    icon = SugarIconify()&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;big&amp;gt;SugarIconify methods&amp;lt;/big&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
SugarIconify class has enabled the same functionality of the command line utility, with the following methods to set the desired behavior:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;set_stroke_color():&#039;&#039;&#039; equivalent of -s on command line, it can be a hex value (e.g #FFFFFF) or a rgb percent value such as rgb(32%, 33%, 87%)&lt;br /&gt;
&lt;br /&gt;
    from sugariconify import SugarIconify&lt;br /&gt;
    icon = SugarIconify()&lt;br /&gt;
    icon.set_stroke_color(&#039;#FFFFFF&#039;)&lt;br /&gt;
    icon.set_stroke_color(&#039;rgb(55%, 12%, 55%)&#039;)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;set_fill_color():&#039;&#039;&#039; equivalent of -f on command line, it can be a hex value (e.g #FFFFFF) or a rgb percent value such as rgb(32%, 33%, 87%)&lt;br /&gt;
&lt;br /&gt;
    from sugariconify import SugarIconify&lt;br /&gt;
    icon = SugarIconify()&lt;br /&gt;
    icon.set_fill_color(&#039;#FFFFFF&#039;)&lt;br /&gt;
    icon.set_fill_color(&#039;rgb(55%, 12%, 55%)&#039;)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;set_confirm_guess():&#039;&#039;&#039; equivalent of -g on command line, so it can automatically accept guesses for stroke and fill entities, True or False are the only accepted values&lt;br /&gt;
&lt;br /&gt;
    from sugariconify import SugarIconify&lt;br /&gt;
    icon = SugarIconify()&lt;br /&gt;
    icon.set_confirm_guess(True)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;set_use_default_colors():&#039;&#039;&#039; equivalent of -c on command line, uses default stroke and fill entities (#666666, #FFFFFF) for sugar iconify, True or False are the only accepted values&lt;br /&gt;
&lt;br /&gt;
    from sugariconify import SugarIconify&lt;br /&gt;
    icon = SugarIconify()&lt;br /&gt;
    icon.set_use_default_colors(True)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;set_overwrite_input():&#039;&#039;&#039; equivalent of -o on command line, overrides input file in place, True or False are the only accepted values&lt;br /&gt;
&lt;br /&gt;
    from sugariconify import SugarIconify&lt;br /&gt;
    icon = SugarIconify()&lt;br /&gt;
    icon.set_overwrite_input(True)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;set_output_path():&#039;&#039;&#039; equivalent of -d on command line, sets the output path where the iconified file will be placed, string values are accepted&lt;br /&gt;
&lt;br /&gt;
    from sugariconify import SugarIconify&lt;br /&gt;
    icon = SugarIconify()&lt;br /&gt;
    icon.set_output_path(&#039;/home/user/Desktop&#039;)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;set_use_entity():&#039;&#039;&#039; equivalent of -e on command line, do not insert entities for strokes and fills, True or False are the only accepted values&lt;br /&gt;
&lt;br /&gt;
    from sugariconify import SugarIconify&lt;br /&gt;
    icon = SugarIconify()&lt;br /&gt;
    icon.set_use_entity(True)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;set_verbose():&#039;&#039;&#039; equivalent of -v on command line, outputs information messages on console, True or False are the only accepted values&lt;br /&gt;
&lt;br /&gt;
    from sugariconify import SugarIconify&lt;br /&gt;
    icon = SugarIconify()&lt;br /&gt;
    icon.set_verbose(True)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;set_pattern():&#039;&#039;&#039; equivalent of -p on command line, only export icons whose name contains pattern, string values are accepted.&lt;br /&gt;
&lt;br /&gt;
    from sugariconify import SugarIconify&lt;br /&gt;
    icon = SugarIconify()&lt;br /&gt;
    icon.set_pattern(&#039;pattern&#039;)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;set_multiple():&#039;&#039;&#039; equivalent of -m on command line, export top level groups as separate icons, True or False are the only accepted values&lt;br /&gt;
&lt;br /&gt;
    from sugariconify import SugarIconify&lt;br /&gt;
    icon = SugarIconify()&lt;br /&gt;
    icon.set_multiple(True)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;set_output_examples():&#039;&#039;&#039; equivalent of -x on command line, create HTML preview files, for icon validation, True or False are the only accepted values &lt;br /&gt;
&lt;br /&gt;
    from sugariconify import SugarIconify&lt;br /&gt;
    icon = SugarIconify()&lt;br /&gt;
    icon.set_output_examples(True)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;set_use_iso_strokes():&#039;&#039;&#039; equivalent of -i on command line,  insert &amp;quot;isolated stroke&amp;quot; entities, True or False are the only accepted values&lt;br /&gt;
&lt;br /&gt;
    from sugariconify import SugarIconify&lt;br /&gt;
    icon = SugarIconify()&lt;br /&gt;
    icon.set_use_iso_strokes(True)&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;big&amp;gt;SugarIconify example&amp;lt;/big&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
    from sugariconify import SugarIconify&lt;br /&gt;
    icon = SugarIconify()&lt;br /&gt;
    icon.set_use_default_colors(True)&lt;br /&gt;
    icon.iconify(&#039;/home/user/Desktop/image.svg&#039;)&lt;/div&gt;</summary>
		<author><name>Jorge96</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=Sugar_on_a_Stick/Installation_Process&amp;diff=90815</id>
		<title>Sugar on a Stick/Installation Process</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=Sugar_on_a_Stick/Installation_Process&amp;diff=90815"/>
		<updated>2013-12-11T03:23:25Z</updated>

		<summary type="html">&lt;p&gt;Jorge96: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==&amp;lt;big&amp;gt;&#039;&#039;&#039;Installing Sugar on a Stick&#039;&#039;&#039;&amp;lt;/big&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Warning: In order to install Sugar on a Stick using unetbootin, it&#039;s recommended that the USB is empty&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Required software==&lt;br /&gt;
&lt;br /&gt;
* Unetbootin - [http://unetbootin.sourceforge.net/ Unetbootin download]&lt;br /&gt;
* Sugar on a Stick - [[Sugar_on_a_Stick|SoaS download]]&lt;br /&gt;
&lt;br /&gt;
==Installation process==&lt;br /&gt;
&lt;br /&gt;
* 1. Execute Unetbootin and select the option &amp;quot;DiskImage&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:Step1_en.png|500px|center]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* 2. Search for the downloaled iso file of Sugar on a Stick.&lt;br /&gt;
&lt;br /&gt;
[[File:Step2_en.png|500px|center]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* 3. In type, be sure that you have selected USB Drive.&lt;br /&gt;
&lt;br /&gt;
[[File:Step3_en.png|500px|center]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* 4. Select the target USB device and click on &amp;quot;OK&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:Step4_en.png|500px|center]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* 5. Wait until Unetbootin copy the files.&lt;br /&gt;
&lt;br /&gt;
[[File:Step5_en.png|500px|center]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* 6. Then you&#039;re done!!, if you like to restart the computer in order to boot from USB, click on &amp;quot;Reboot now&amp;quot;, else click on Exit.&lt;br /&gt;
&lt;br /&gt;
[[File:Step6_en.png|500px|center]]&lt;/div&gt;</summary>
		<author><name>Jorge96</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=Sugar_on_a_Stick/Proceso_de_instalacion&amp;diff=90814</id>
		<title>Sugar on a Stick/Proceso de instalacion</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=Sugar_on_a_Stick/Proceso_de_instalacion&amp;diff=90814"/>
		<updated>2013-12-11T03:22:51Z</updated>

		<summary type="html">&lt;p&gt;Jorge96: Created page with &amp;quot;==&amp;lt;big&amp;gt;&amp;#039;&amp;#039;&amp;#039;Instalando Sugar on a Stick&amp;#039;&amp;#039;&amp;#039;&amp;lt;/big&amp;gt;==  &amp;lt;br /&amp;gt;  &amp;#039;&amp;#039;&amp;#039;Advertencia: Es recomendable para instalar Sugar on a Stick, la memoria USB se encuentre vacía para evitar cualqu...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==&amp;lt;big&amp;gt;&#039;&#039;&#039;Instalando Sugar on a Stick&#039;&#039;&#039;&amp;lt;/big&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Advertencia: Es recomendable para instalar Sugar on a Stick, la memoria USB se encuentre vacía para evitar cualquier pérdida de datos&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Software requerido==&lt;br /&gt;
&lt;br /&gt;
* Unetbootin - [http://unetbootin.sourceforge.net/ Unetbootin download]&lt;br /&gt;
* Sugar on a Stick - [[Sugar_on_a_Stick|SoaS download]]&lt;br /&gt;
&lt;br /&gt;
==Proceso de instalación==&lt;br /&gt;
&lt;br /&gt;
* 1. Ejecute Unetbootin y seleccione la opción &amp;quot;DiscoImagen&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:Step1.png|500px|center]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* 2. Busque el archivo iso de Sugar on a Stick descargado previamente.&lt;br /&gt;
&lt;br /&gt;
[[File:Step2.png|500px|center]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* 3. En &amp;quot;Tipo&amp;quot;, asegúrese que la opción &amp;quot;Unidad USB&amp;quot; se encuentre seleccionada.&lt;br /&gt;
&lt;br /&gt;
[[File:Snap3.png|500px|center]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* 4. Seleccione la memoria USB a usar, luego dar clic en &amp;quot;Aceptar&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:Step4.png|500px|center]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* 5. Espere mientras Unetbootin copia los archivos requeridos.&lt;br /&gt;
&lt;br /&gt;
[[File:Step5.png|500px|center]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* 6. La instalación de Sugar on a Stick ha sido completada, si quiere reiniciar inmediatamente el computador para realizar un boot desde USB, haga clic en Reiniciar ahora, en caso contrario, haga clic en Salir para terminar el proceso de instalación.&lt;br /&gt;
&lt;br /&gt;
[[File:Step6.png|500px|center]]&lt;/div&gt;</summary>
		<author><name>Jorge96</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=Sugar_on_a_Stick/Installation_Process&amp;diff=90813</id>
		<title>Sugar on a Stick/Installation Process</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=Sugar_on_a_Stick/Installation_Process&amp;diff=90813"/>
		<updated>2013-12-11T03:14:00Z</updated>

		<summary type="html">&lt;p&gt;Jorge96: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==&amp;lt;big&amp;gt;&#039;&#039;&#039;Installing Sugar on a Stick&#039;&#039;&#039;&amp;lt;/big&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Warning: In order to install Sugar on a Stick using unetbootin, it&#039;s recommended that the USB is empty&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Required software==&lt;br /&gt;
&lt;br /&gt;
* Unetbootin - [http://unetbootin.sourceforge.net/ Unetbootin download]&lt;br /&gt;
* Sugar on a Stick - [[Sugar_on_a_Stick|SoaS download]]&lt;br /&gt;
&lt;br /&gt;
==Installation process==&lt;br /&gt;
&lt;br /&gt;
* 1. Execute Unetbootin and select the option &amp;quot;DiskImage&amp;quot;&lt;br /&gt;
&lt;br /&gt;
[[File:Step1_en.png|500px|center]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* 2. Search for the downloaled iso file of Sugar on a Stick&lt;br /&gt;
&lt;br /&gt;
[[File:Step2_en.png|500px|center]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* 3. In type (Tipo), be sure that you have selected USB&lt;br /&gt;
&lt;br /&gt;
[[File:Step3_en.png|500px|center]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* 4. Select the target USB device and lick on &amp;quot;OK&amp;quot;&lt;br /&gt;
&lt;br /&gt;
[[File:Step4_en.png|500px|center]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* 5. Wait until Unetbootin copy the files&lt;br /&gt;
&lt;br /&gt;
[[File:Step5_en.png|500px|center]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* 6. Then you&#039;re done!!, if you like to restart the computer in order to boot from USB, click on &amp;quot;Reboot now&amp;quot;, else click on Exit.&lt;br /&gt;
&lt;br /&gt;
[[File:Step6_en.png|500px|center]]&lt;/div&gt;</summary>
		<author><name>Jorge96</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=File:Step6_en.png&amp;diff=90812</id>
		<title>File:Step6 en.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=File:Step6_en.png&amp;diff=90812"/>
		<updated>2013-12-11T03:12:46Z</updated>

		<summary type="html">&lt;p&gt;Jorge96: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jorge96</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=File:Step5_en.png&amp;diff=90811</id>
		<title>File:Step5 en.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=File:Step5_en.png&amp;diff=90811"/>
		<updated>2013-12-11T03:12:30Z</updated>

		<summary type="html">&lt;p&gt;Jorge96: Jorge96 uploaded a new version of &amp;amp;quot;File:Step5 en.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jorge96</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=File:Step5_en.png&amp;diff=90810</id>
		<title>File:Step5 en.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=File:Step5_en.png&amp;diff=90810"/>
		<updated>2013-12-11T03:12:14Z</updated>

		<summary type="html">&lt;p&gt;Jorge96: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jorge96</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=File:Step4_en.png&amp;diff=90809</id>
		<title>File:Step4 en.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=File:Step4_en.png&amp;diff=90809"/>
		<updated>2013-12-11T03:11:08Z</updated>

		<summary type="html">&lt;p&gt;Jorge96: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jorge96</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=File:Step3_en.png&amp;diff=90808</id>
		<title>File:Step3 en.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=File:Step3_en.png&amp;diff=90808"/>
		<updated>2013-12-11T03:10:32Z</updated>

		<summary type="html">&lt;p&gt;Jorge96: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jorge96</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=File:Step2_en.png&amp;diff=90807</id>
		<title>File:Step2 en.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=File:Step2_en.png&amp;diff=90807"/>
		<updated>2013-12-11T03:09:58Z</updated>

		<summary type="html">&lt;p&gt;Jorge96: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jorge96</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=File:Step1_en.png&amp;diff=90806</id>
		<title>File:Step1 en.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=File:Step1_en.png&amp;diff=90806"/>
		<updated>2013-12-11T03:09:20Z</updated>

		<summary type="html">&lt;p&gt;Jorge96: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jorge96</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=Sugar_on_a_Stick/Installation_Process&amp;diff=90805</id>
		<title>Sugar on a Stick/Installation Process</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=Sugar_on_a_Stick/Installation_Process&amp;diff=90805"/>
		<updated>2013-12-11T02:26:33Z</updated>

		<summary type="html">&lt;p&gt;Jorge96: /* Installation process */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==&amp;lt;big&amp;gt;&#039;&#039;&#039;Installing Sugar on a Stick&#039;&#039;&#039;&amp;lt;/big&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Warning: In order to install Sugar on a Stick using unetbootin, it&#039;s recommended that the USB is empty&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Required software==&lt;br /&gt;
&lt;br /&gt;
* Unetbootin - [http://unetbootin.sourceforge.net/ Unetbootin download]&lt;br /&gt;
* Sugar on a Stick - [[Sugar_on_a_Stick|SoaS download]]&lt;br /&gt;
&lt;br /&gt;
==Installation process==&lt;br /&gt;
&lt;br /&gt;
* 1. Execute Unetbootin and select the option &amp;quot;DiskImage (DiscoImagen)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
[[File:Step1.png|500px|center]]&lt;br /&gt;
&lt;br /&gt;
* 2. Search for the downloaled iso file of Sugar on a Stick&lt;br /&gt;
&lt;br /&gt;
[[File:Step2.png|500px|center]]&lt;br /&gt;
&lt;br /&gt;
* 3. In type (Tipo), be sure that you have selected USB&lt;br /&gt;
&lt;br /&gt;
[[File:Snap3.png|500px|center]]&lt;br /&gt;
&lt;br /&gt;
* 4. Select the target USB device and lick on &amp;quot;Accept (Aceptar)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
[[File:Step4.png|500px|center]]&lt;br /&gt;
&lt;br /&gt;
* 5. Wait until Unetbootin copy the files&lt;br /&gt;
&lt;br /&gt;
[[File:Step5.png|500px|center]]&lt;br /&gt;
&lt;br /&gt;
* 6. Then you&#039;re done!!, if you like to restart the computer in order to boot from USB, click on Restart now (Reiniciar Ahora), else click on Exit.&lt;br /&gt;
&lt;br /&gt;
[[File:Step6.png|500px|center]]&lt;/div&gt;</summary>
		<author><name>Jorge96</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=Sugar_on_a_Stick/Installation_Process&amp;diff=90804</id>
		<title>Sugar on a Stick/Installation Process</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=Sugar_on_a_Stick/Installation_Process&amp;diff=90804"/>
		<updated>2013-12-11T02:23:47Z</updated>

		<summary type="html">&lt;p&gt;Jorge96: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==&amp;lt;big&amp;gt;&#039;&#039;&#039;Installing Sugar on a Stick&#039;&#039;&#039;&amp;lt;/big&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Warning: In order to install Sugar on a Stick using unetbootin, it&#039;s recommended that the USB is empty&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Required software==&lt;br /&gt;
&lt;br /&gt;
* Unetbootin - [http://unetbootin.sourceforge.net/ Unetbootin download]&lt;br /&gt;
* Sugar on a Stick - [[Sugar_on_a_Stick|SoaS download]]&lt;br /&gt;
&lt;br /&gt;
==Installation process==&lt;br /&gt;
&lt;br /&gt;
1. Execute Unetbootin and select the option &amp;quot;DiskImage (DiscoImagen)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
[[File:Step1.png|500px|center]]&lt;br /&gt;
&lt;br /&gt;
2. Search for the downloaled iso file of Sugar on a Stick&lt;br /&gt;
&lt;br /&gt;
[[File:Step2.png|500px|center]]&lt;br /&gt;
&lt;br /&gt;
3. In type (Tipo), be sure that you have selected USB&lt;br /&gt;
&lt;br /&gt;
[[File:Snap3.png|500px|center]]&lt;br /&gt;
&lt;br /&gt;
4. Select the target USB device and lick on &amp;quot;Accept (Aceptar)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
[[File:Step4.png|500px|center]]&lt;br /&gt;
&lt;br /&gt;
5. Wait until Unetbootin copy the files&lt;br /&gt;
&lt;br /&gt;
[[File:Step5.png|500px|center]]&lt;br /&gt;
&lt;br /&gt;
6. Then you&#039;re done!!, if you like to restart the computer in order to boot from USB, click on Restart now (Reiniciar Ahora), else click on Exit.&lt;br /&gt;
&lt;br /&gt;
[[File:Step6.png|500px|center]]&lt;/div&gt;</summary>
		<author><name>Jorge96</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=Sugar_on_a_Stick/Installation_Process&amp;diff=90803</id>
		<title>Sugar on a Stick/Installation Process</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=Sugar_on_a_Stick/Installation_Process&amp;diff=90803"/>
		<updated>2013-12-11T02:20:40Z</updated>

		<summary type="html">&lt;p&gt;Jorge96: How to install Sugar on a Stick on USB&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==&amp;lt;big&amp;gt;&#039;&#039;&#039;Installing Sugar on a Stick&#039;&#039;&#039;&amp;lt;/big&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Warning: In order to install Sugar on a Stick using unetbootin, it&#039;s recommended that tyhe USB is empty&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Required software==&lt;br /&gt;
&lt;br /&gt;
* Unetbootin - [http://unetbootin.sourceforge.net/ Unetbootin download]&lt;br /&gt;
* Sugar on a Stick - [[Sugar_on_a_Stick|SoaS download]]&lt;br /&gt;
&lt;br /&gt;
==Installation process==&lt;br /&gt;
&lt;br /&gt;
1. Execute Unetbootin and select the option &amp;quot;DiskImage (DiscoImagen)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
[[File:Step1.png|500px|center]]&lt;br /&gt;
&lt;br /&gt;
2. Search for the downloaled iso file of Sugar on a Stick&lt;br /&gt;
&lt;br /&gt;
[[File:Step2.png|500px|center]]&lt;br /&gt;
&lt;br /&gt;
3. In type (Tipo), be sure that you have selected USB&lt;br /&gt;
&lt;br /&gt;
[[File:Snap3.png|500px|center]]&lt;br /&gt;
&lt;br /&gt;
4. Select the target USB device and lick on &amp;quot;Accept (Aceptar)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
[[File:Step4.png|500px|center]]&lt;br /&gt;
&lt;br /&gt;
5. Wait until Unetbootin copy the files&lt;br /&gt;
&lt;br /&gt;
[[File:Step5.png|500px|center]]&lt;br /&gt;
&lt;br /&gt;
6. Then you&#039;re done!!, if you like to restart the computer in order to boot from USB, click on Restart now (Reiniciar Ahora), else click on Exit.&lt;br /&gt;
&lt;br /&gt;
[[File:Step6.png|500px|center]]&lt;/div&gt;</summary>
		<author><name>Jorge96</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=File:Step6.png&amp;diff=90802</id>
		<title>File:Step6.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=File:Step6.png&amp;diff=90802"/>
		<updated>2013-12-11T02:19:24Z</updated>

		<summary type="html">&lt;p&gt;Jorge96: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jorge96</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=File:Step5.png&amp;diff=90801</id>
		<title>File:Step5.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=File:Step5.png&amp;diff=90801"/>
		<updated>2013-12-11T02:17:02Z</updated>

		<summary type="html">&lt;p&gt;Jorge96: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jorge96</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=File:Step4.png&amp;diff=90800</id>
		<title>File:Step4.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=File:Step4.png&amp;diff=90800"/>
		<updated>2013-12-11T02:14:36Z</updated>

		<summary type="html">&lt;p&gt;Jorge96: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jorge96</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=File:Snap3.png&amp;diff=90799</id>
		<title>File:Snap3.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=File:Snap3.png&amp;diff=90799"/>
		<updated>2013-12-11T02:10:55Z</updated>

		<summary type="html">&lt;p&gt;Jorge96: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jorge96</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=File:Step2.png&amp;diff=90798</id>
		<title>File:Step2.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=File:Step2.png&amp;diff=90798"/>
		<updated>2013-12-11T02:06:10Z</updated>

		<summary type="html">&lt;p&gt;Jorge96: Jorge96 uploaded a new version of &amp;amp;quot;File:Step2.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jorge96</name></author>
	</entry>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=File:Step1.png&amp;diff=90797</id>
		<title>File:Step1.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=File:Step1.png&amp;diff=90797"/>
		<updated>2013-12-11T02:02:24Z</updated>

		<summary type="html">&lt;p&gt;Jorge96: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jorge96</name></author>
	</entry>
</feed>