<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Gonzalo Silverio's Weblog &#187; Uncategorized</title>
	<atom:link href="http://gonzalosilverio.wordpress.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://gonzalosilverio.wordpress.com</link>
	<description>Web presentation technologies, flyfishing, Nahuatl Court Poetry, pest control</description>
	<lastBuildDate>Wed, 20 May 2009 13:08:44 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='gonzalosilverio.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/1ab63a470b01e0b22db39181eeabdc88?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Gonzalo Silverio's Weblog &#187; Uncategorized</title>
		<link>http://gonzalosilverio.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://gonzalosilverio.wordpress.com/osd.xml" title="Gonzalo Silverio&#8217;s Weblog" />
		<item>
		<title>The Sakai PDA portal</title>
		<link>http://gonzalosilverio.wordpress.com/2008/11/20/the-sakai-pda-portal/</link>
		<comments>http://gonzalosilverio.wordpress.com/2008/11/20/the-sakai-pda-portal/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 03:19:05 +0000</pubDate>
		<dc:creator>gonzalosilverio</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[markup]]></category>
		<category><![CDATA[sakai]]></category>

		<guid isPermaLink="false">http://gonzalosilverio.wordpress.com/?p=32</guid>
		<description><![CDATA[Sakai has a portal for small devices since 2.4. It is pretty bare bones but it does several neat things:

it flattens the tool/site hierarchy so that they can coexist in the same breadcrumb
it serves up an iframeless experience
it elides many elements from the portal that would be noise in a small screen

Am working on several [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gonzalosilverio.wordpress.com&blog=3110789&post=32&subd=gonzalosilverio&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Sakai has a portal for small devices since 2.4. It is pretty bare bones but it does several neat things:</p>
<ol>
<li>it flattens the tool/site hierarchy so that they can coexist in the same breadcrumb</li>
<li>it serves up an iframeless experience</li>
<li>it elides many elements from the portal that would be noise in a small screen</li>
</ol>
<p>Am working on several improvements to it for Sakai 2.7  under <a href="http://bugs.sakaiproject.org/jira/browse/SAK-14827">SAK-14827</a> and we are testing it at Michigan. It has been a very instructive experience constraining things to the small screen. What follows is a description of the changes, some tools and techniques that were useful, and some  observations from the preliminary testing.</p>
<p>The main tool turned out to be an iTouch that Chuck Severance donated to the lab. I tried several emulators such as <a href="http://marketcircle.com/iphoney/">iPhoney</a>, Apple&#8217;s iPhone Simulator that comes with the <a href="http://developer.apple.com/iphone/program/download.html">iPhone SDK</a> but there was no substitute for the actual thing.</p>
<p>Initially all I had in mind was polishing the portal, taking into account the screen size and the input device (your finger!). The PDA portal is served via a single Velocity template file present at a specific URL, so there was no need to do device detection &#8211; if you are there, you are using  a PDA (or, if you want to use a PDA you should use that URL). In the future it would be nice to route that  user agent to that URL automatically.</p>
<pre>http://localhost:8080/portal/pda</pre>
<p>The main complication was setting the viewport via the &lt;meta /&gt; tag. The <a href="http://developer.apple.com/iphone/designingcontent.html">official documentation</a> is very telegraphic, but there is <a href="http://groups.google.com/group/iphonewebdev/browse_thread/thread/f43493a828dffdb3">discussion</a> about it. Eventually I settled on the following:</p>
<pre>&lt;meta name="viewport" content="width=device-width,
     user-scalable=yes,  initial-scale=1.0, maximum-scale=2.0"/&gt;</pre>
<p>The main issue here is font sizing after an portrait/landscape orientation change or after the user input zoom function takes place. Amazing to think that some people are using <a href="http://www.joehewitt.com/files/liquid1.html">Javascript to detect the first</a>.</p>
<p>The second task was to take all the styling references out of the template and out of the experimental portalstyles.css and create a CSS framework for the PDA. This entailed adding a pda.css + 3 images to each skin in the system, and querying in the template what was the skin in use per site.</p>
<p>Note: I have only checked into trunk the style sheets and images. The changes to the velocity template (pda.vm) and loginTool.java are being reviewed.</p>
<p>Now that the PDA portal was skinnable, it&#8217;s styles could be addressed via the CSS. The main preoccupations here were the following:</p>
<ol>
<li>font sizing</li>
<li>adjusting padding/margins on links so that fingers of a moderate fatness could poke in the right place&#8230;</li>
<li>curtailing horizontal spread</li>
</ol>
<p>The results for the gateway pages and the site/tool pages are pretty good. Below with the University of Michigan skin, site navigation.</p>
<p><a href="http://gonzalosilverio.files.wordpress.com/2008/11/picture-3.png"></a><a href="http://gonzalosilverio.files.wordpress.com/2008/11/picture-3.png"><img class="alignnone size-full wp-image-189" title="picture-3" src="http://gonzalosilverio.files.wordpress.com/2008/11/picture-3.png?w=450&#038;h=241" alt="picture-3" width="450" height="241" /></a></p>
<p>The tool navigation:</p>
<p><a href="http://gonzalosilverio.files.wordpress.com/2008/11/picture-41.png"><img class="alignnone size-full wp-image-191" title="picture-41" src="http://gonzalosilverio.files.wordpress.com/2008/11/picture-41.png?w=450&#038;h=241" alt="picture-41" width="450" height="241" /></a></p>
<p>And an actual tool:</p>
<p><a href="http://gonzalosilverio.files.wordpress.com/2008/11/picture-1.png"><img class="alignnone size-full wp-image-192" title="picture-1" src="http://gonzalosilverio.files.wordpress.com/2008/11/picture-1.png?w=450&#038;h=241" alt="picture-1" width="450" height="241" /></a></p>
<p>I have craftily selected a tool for the screen-shot that works very well in this medium: the calendar summary from the excellent folks at Universidade Fernando Pessoa. Other tools are less fortunate.</p>
<p>A fun thing was adding icons for bookmarks. Following this <a href="http://www.ianhoar.com/2008/08/30/create-a-custom-iphone-icon-for-your-website/">tutorial</a> I created a handful in no time. The iPhone actually takes care of all the glitz effects (corners, glassy look).</p>
<p><a href="http://gonzalosilverio.files.wordpress.com/2008/11/picture-5.png"><img class="alignnone size-full wp-image-194" title="picture-5" src="http://gonzalosilverio.files.wordpress.com/2008/11/picture-5.png?w=450&#038;h=241" alt="picture-5" width="450" height="241" /></a></p>
<p>And this is what the icon looks like in the &#8220;desktop&#8221;</p>
<p><a href="http://gonzalosilverio.files.wordpress.com/2008/11/picture-7.png"><img class="alignnone size-medium wp-image-196" title="picture-7" src="http://gonzalosilverio.files.wordpress.com/2008/11/picture-7.png?w=161&#038;h=300" alt="picture-7" width="161" height="300" /></a></p>
<p>And what the Sakai skin looks like:</p>
<p><a href="http://gonzalosilverio.files.wordpress.com/2008/11/picture-8.png"><img class="alignnone size-full wp-image-197" title="picture-8" src="http://gonzalosilverio.files.wordpress.com/2008/11/picture-8.png?w=450&#038;h=241" alt="picture-8" width="450" height="241" /></a></p>
<p>Preliminary testing with the iTouch indicates some problem areas.</p>
<ol>
<li> Any tool that uses internal iframes is hosed.</li>
<li>The browser detection identifies the iTouch as Safari, and serves it the default rich text editor, with it is unable to use &#8211; it should instead serve a plain text area.</li>
<li>Cannot do attachments because the &lt;input type=&#8221;file&#8221; /&gt; is disabled in the iTouch.</li>
<li>Not all tools render nicely, lots more to be done in this area.</li>
</ol>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gonzalosilverio.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gonzalosilverio.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gonzalosilverio.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gonzalosilverio.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gonzalosilverio.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gonzalosilverio.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gonzalosilverio.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gonzalosilverio.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gonzalosilverio.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gonzalosilverio.wordpress.com/32/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gonzalosilverio.wordpress.com&blog=3110789&post=32&subd=gonzalosilverio&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://gonzalosilverio.wordpress.com/2008/11/20/the-sakai-pda-portal/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/53c44f824ee4db9d068fdd4f8c6de656?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gonzalosilverio</media:title>
		</media:content>

		<media:content url="http://gonzalosilverio.files.wordpress.com/2008/11/picture-3.png" medium="image">
			<media:title type="html">picture-3</media:title>
		</media:content>

		<media:content url="http://gonzalosilverio.files.wordpress.com/2008/11/picture-41.png" medium="image">
			<media:title type="html">picture-41</media:title>
		</media:content>

		<media:content url="http://gonzalosilverio.files.wordpress.com/2008/11/picture-1.png" medium="image">
			<media:title type="html">picture-1</media:title>
		</media:content>

		<media:content url="http://gonzalosilverio.files.wordpress.com/2008/11/picture-5.png" medium="image">
			<media:title type="html">picture-5</media:title>
		</media:content>

		<media:content url="http://gonzalosilverio.files.wordpress.com/2008/11/picture-7.png?w=161" medium="image">
			<media:title type="html">picture-7</media:title>
		</media:content>

		<media:content url="http://gonzalosilverio.files.wordpress.com/2008/11/picture-8.png" medium="image">
			<media:title type="html">picture-8</media:title>
		</media:content>
	</item>
		<item>
		<title>RTL&#8217;g Sakai Tools</title>
		<link>http://gonzalosilverio.wordpress.com/2008/10/22/rtlg-sakai-tools/</link>
		<comments>http://gonzalosilverio.wordpress.com/2008/10/22/rtlg-sakai-tools/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 00:10:36 +0000</pubDate>
		<dc:creator>gonzalosilverio</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[markup]]></category>
		<category><![CDATA[sakai]]></category>

		<guid isPermaLink="false">http://gonzalosilverio.wordpress.com/?p=143</guid>
		<description><![CDATA[In order to create a skin for a RTL context we will be working in a the tool.css (so that we can override tool_base.css) of a new skin, named RTL. We will identify changes that need to be made, workarounds, failures to account for an RTL context in the tool design, etc.
If you are not [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gonzalosilverio.wordpress.com&blog=3110789&post=143&subd=gonzalosilverio&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>In order to create a skin for a RTL context we will be working in a the <code>tool.css </code>(so that we can override <code>tool_base.css</code>) of a new skin, named RTL. We will identify changes that need to be made, workarounds, failures to account for an RTL context in the tool design, etc.</p>
<p>If you are not very interested in the details  - the uncombed and disreputable skin is availiable <a title="Right To Left Skin" href="http://www.umich.edu/~gsilver/rtl/rtl.zip" target="_blank">here</a></p>
<p>If you want to know how we got to this and the shortcomings of this approach, read on.</p>
<p>We will begin with a simple tool view  - the Announcements list. What it looks like in a LTR context:</p>
<p><span style="text-decoration:underline;"><a href="http://gonzalosilverio.files.wordpress.com/2008/10/tool2.png"></a><a href="http://gonzalosilverio.files.wordpress.com/2008/10/tool2.png"><img class="alignnone size-large wp-image-159" title="tool2" src="http://gonzalosilverio.files.wordpress.com/2008/10/tool2.png?w=450&#038;h=215" alt="" width="450" height="215" /></a></span></p>
<p>What the <code>direction:rtl</code> applied to <code>.portletBody</code> gets us. Am keeping the language as English.</p>
<p><a href="http://gonzalosilverio.files.wordpress.com/2008/10/tool3.png"><img class="alignnone size-large wp-image-160" title="tool3" src="http://gonzalosilverio.files.wordpress.com/2008/10/tool3.png?w=450&#038;h=205" alt="" width="450" height="205" /></a></p>
<p>Some nice things: the toolbar has been rearranged. The columns of the announcement table have been flipped correctly. Block elements are now flush right, such as the <code>&lt;h3&gt;Announcements&lt;/h3&gt;</code>. The label of the view navigator select is not to the right of the select. The select itself is reoriented. The list paged lists, from right to left: &#8220;first page, previous page, next page, last page&#8221; correctly as the entire block has been flipped.</p>
<p>Some things that will need to be addressed: a) the pipes between the toolbar items look wacky and need to be aligned right; 2) the navigation panels need to be flipped ( a sad irony: if the layout of these and the toolbar  had been a table our work would be done); 3) the text direction of the cells inside the table needs to be adjusted.</p>
<p><strong>The toolbar</strong></p>
<p>Align the toolbar right. We will be working in the new rtl/tool.css):</p>
<pre><span>.navIntraTool {
<span>	</span><span style="color:#ff0000;">text-align: right;</span>
}</span></pre>
<p>Add a border to the span child of the first list element:</p>
<pre>}
/*special style for the first item, namely no border-left*/
.navIntraTool li.firstToolBarItem span{
	<span style="color:#ff0000;">/*border:none;*/border-left:1px solid #ccc;</span>
}</pre>
<p>and take the border away from the last:</p>
<pre>.navIntraTool li:last-child span{
	<span style="color:#ff0000;">border:none</span>
}</pre>
<p>Since the design of the toolbar did not take into account a RTL possibility we had to resort to a pseudo class to identify the last element. We will see this problem elsewhere.</p>
<p><strong>The navigation panels</strong></p>
<p>The layout of these is set in tool_base.css. We will override in rtl/tool.css:</p>
<pre>.viewNav{
	<span style="color:#ff0000;">float: right;</span>
}
.listNav{
	<span style="color:#ff0000;">float: left;</span>
}</pre>
<p><strong>The table list</strong></p>
<pre>/*skinned header of standard tab. data table*/
.listHier th, .listHier td{
	<span style="color:#ff0000;">text-align: right !important;
<span style="color:#000000;">}</span></span></pre>
<p>The <span style="color:#ff0000;">!important</span> is needed to override the <span style="color:#ff0000;">!important</span> in <code>tool_base.css </code>- a bad decision that now needs to be dealt with.</p>
<p>The end result:</p>
<p><a href="http://gonzalosilverio.files.wordpress.com/2008/10/tool4.png"><img class="alignnone size-large wp-image-162" title="tool4" src="http://gonzalosilverio.files.wordpress.com/2008/10/tool4.png?w=450&#038;h=221" alt="" width="450" height="221" /></a></p>
<p>And in the target language:</p>
<p><a href="http://gonzalosilverio.files.wordpress.com/2008/10/tool5.png"><img class="alignnone size-large wp-image-163" title="tool5" src="http://gonzalosilverio.files.wordpress.com/2008/10/tool5.png?w=450&#038;h=219" alt="" width="450" height="219" /></a></p>
<p>Some issues remain with the navigation panels &#8211; reversing the floats did not exactly reverse the position, resulting in some inexplicable whitespace.  Someone help, please.</p>
<p>To recapitulate before we take on a more complex view of this tool: a) any series that identifies a first item also needs to identify the last; b) floats are not always totally reversible.</p>
<p><strong>Forms and inputs</strong></p>
<p>Some problems regarding the layout of the <code>input</code>, <code>label</code> and <code>required marker </code>troika. The orientation of the three is just not working due to floats. An example from create a new announcement.</p>
<p><a href="http://gonzalosilverio.files.wordpress.com/2008/10/tool6.png"><img class="alignnone size-large wp-image-165" title="tool6" src="http://gonzalosilverio.files.wordpress.com/2008/10/tool6.png?w=450&#038;h=237" alt="" width="450" height="237" /></a></p>
<p>So we rearrange the floats and display attributes, paddings, margins (if you are redoing an existing skin, look for some of these definitions elsewhere in the sheets if your results do not match):</p>
<pre>.shorttext label{
<span style="color:#ff0000;">	float:none;
	display:block;
	padding:0;
	margin:0;
</span>}
.shorttext .reqStar{
<span style="color:#ff0000;">	float:right;
	margin-right:-7px;
</span>}
.longtext label{
<span style="color:#ff0000;">	float:none;
	display:block
</span>}
.longtext label .reqStar{
<span style="color:#ff0000;">	float:right;
	margin-right:-7px;
</span>}</pre>
<p>So:</p>
<p><a href="http://gonzalosilverio.files.wordpress.com/2008/10/tool71.png"><img class="alignnone size-large wp-image-167" title="tool71" src="http://gonzalosilverio.files.wordpress.com/2008/10/tool71.png?w=450&#038;h=194" alt="" width="450" height="194" /></a></p>
<p>And in Arabic:</p>
<p><span style="text-decoration:underline;"><a href="http://gonzalosilverio.files.wordpress.com/2008/10/tool8.png"></a><a href="http://gonzalosilverio.files.wordpress.com/2008/10/tool8.png"><img class="alignnone size-large wp-image-168" title="tool8" src="http://gonzalosilverio.files.wordpress.com/2008/10/tool8.png?w=450&#038;h=204" alt="" width="450" height="204" /></a></span></p>
<p>The other input types render correctly without any tweaking (this is also from create a new announcement):</p>
<p><a href="http://gonzalosilverio.files.wordpress.com/2008/10/tool9.png"><img class="alignnone size-full wp-image-171" title="tool9" src="http://gonzalosilverio.files.wordpress.com/2008/10/tool9.png?w=393&#038;h=430" alt="" width="393" height="430" /></a></p>
<p>While on the subject of inputs, the following is also needed if there is to be mixed RTL and LTR content:</p>
<pre>input, textarea{
	<span style="color:#ff0000;">unicode-bidi: override;</span>
}</pre>
<div><span>This opens an  additional level of embedding and overrides the Unicode character ordering, reordering the sequence to the value of the direction property. </span></div>
<div><span style="text-decoration:underline;"><a href="http://gonzalosilverio.files.wordpress.com/2008/10/tool101.png"><img class="alignnone size-full wp-image-174" title="tool101" src="http://gonzalosilverio.files.wordpress.com/2008/10/tool101.png?w=419&#038;h=181" alt="" width="419" height="181" /></a></span></div>
<p>A quick glance over the core tools and it seems most rendering now is OK. There will be exceptions where the developer has been forced to apply sui generis layout or styles because of the paucity of the default styles. There will also need to be addressed &#8211; please leave some comments where that is the case, thanks!</p>
<p>Off hand &#8211; here are some locales that need more work because of these and other reasons:</p>
<ol>
<li>Filtering controls in Schedule list view.</li>
<li>&#8220;Add&#8221; menu in Resources &#8211; text is misaligned.</li>
<li>Certain icons are facing in the wrong direction &#8211; such as disclosure triangles. These will need to be replaced in the file system when they are inline images, or in the skin when pulled as background images.</li>
<li>The FCK Editor &#8211; needs configuration &#8211; information on configuring the FCK Editor for RTL is <a href="http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/Configuration/Configuration_Options/ContentLangDirection" target="_blank">here</a>. There are language files for Arabic and Hebrew, Persian as well. Probably a lot of other stuff that a native speaker could figure out needs to be tweaked.</li>
<li>Placement of icons inside certain blocks needs to be tweaked &#8211; see alertMessage etc. </li>
</ol>
<p>The uncombed and disreputable skin is avaliable <a title="Right To Left Skin" href="http://www.umich.edu/~gsilver/rtl/rtl.zip" target="_blank">here</a>.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gonzalosilverio.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gonzalosilverio.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gonzalosilverio.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gonzalosilverio.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gonzalosilverio.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gonzalosilverio.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gonzalosilverio.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gonzalosilverio.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gonzalosilverio.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gonzalosilverio.wordpress.com/143/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gonzalosilverio.wordpress.com&blog=3110789&post=143&subd=gonzalosilverio&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://gonzalosilverio.wordpress.com/2008/10/22/rtlg-sakai-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/53c44f824ee4db9d068fdd4f8c6de656?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gonzalosilverio</media:title>
		</media:content>

		<media:content url="http://gonzalosilverio.files.wordpress.com/2008/10/tool2.png?w=450" medium="image">
			<media:title type="html">tool2</media:title>
		</media:content>

		<media:content url="http://gonzalosilverio.files.wordpress.com/2008/10/tool3.png?w=450" medium="image">
			<media:title type="html">tool3</media:title>
		</media:content>

		<media:content url="http://gonzalosilverio.files.wordpress.com/2008/10/tool4.png?w=450" medium="image">
			<media:title type="html">tool4</media:title>
		</media:content>

		<media:content url="http://gonzalosilverio.files.wordpress.com/2008/10/tool5.png?w=450" medium="image">
			<media:title type="html">tool5</media:title>
		</media:content>

		<media:content url="http://gonzalosilverio.files.wordpress.com/2008/10/tool6.png?w=450" medium="image">
			<media:title type="html">tool6</media:title>
		</media:content>

		<media:content url="http://gonzalosilverio.files.wordpress.com/2008/10/tool71.png?w=450" medium="image">
			<media:title type="html">tool71</media:title>
		</media:content>

		<media:content url="http://gonzalosilverio.files.wordpress.com/2008/10/tool8.png?w=450" medium="image">
			<media:title type="html">tool8</media:title>
		</media:content>

		<media:content url="http://gonzalosilverio.files.wordpress.com/2008/10/tool9.png" medium="image">
			<media:title type="html">tool9</media:title>
		</media:content>

		<media:content url="http://gonzalosilverio.files.wordpress.com/2008/10/tool101.png" medium="image">
			<media:title type="html">tool101</media:title>
		</media:content>
	</item>
	</channel>
</rss>