<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>gtk &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://wordpress.com/tag/gtk/</link>
	<description>Feed of posts on WordPress.com tagged "gtk"</description>
	<pubDate>Sat, 30 Aug 2008 15:58:44 +0000</pubDate>

	<generator>http://wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Change the menu background colour in Gnome]]></title>
<link>http://thecrane.wordpress.com/?p=45</link>
<pubDate>Sun, 24 Aug 2008 04:31:59 +0000</pubDate>
<dc:creator>thecrane</dc:creator>
<guid>http://thecrane.wordpress.com/?p=45</guid>
<description><![CDATA[Long have I wondered this and, as usual, the answer is pretty simple.
To gain finer control over the]]></description>
<content:encoded><![CDATA[<p>Long have I wondered this and, as usual, the answer is pretty simple.</p>
<p>To gain finer control over the colours used by Gnome for the menu and panels etc:</p>
<ol>
<li>Create a file in /home/username/.gnome2 called .gtkrc-2.0</li>
<li>Define the "style" block that you'd like to apply to a GTK element - e.g.:<br />
<code><br />
style "menu_color"<br />
{<br />
fg[NORMAL] = "#000000"<br />
fg[SELECTED] = "#CCCCCC"<br />
fg[ACTIVE] = "#CCCCCC"<br />
fg[PRELIGHT] = "#CCCCCC"<br />
fg[INSENSITIVE] = "#7099CC"<br />
bg[NORMAL] = "#7099CC"<br />
bg[SELECTED] = "#7099CC"<br />
bg[ACTIVE] = "#7099CC"<br />
bg[PRELIGHT] = "#7099CC"<br />
} </code></li>
<li>Then apply it to the element in question using one of the following statements:<br />
<code><br />
widget "*PanelWidget*" style "my_color"<br />
widget "*PanelApplet*" style "my_color"<br />
widget_class "*MenuItem*" style "my_color"<br />
widget_class "*ToolItem*" style "my_color"<br />
widget_class "*SeparatorMenuitem*" style "my_color"<br />
widget_class "*SeparatorToolitem*" style "my_color"<br />
widget_class "*ImageMenuitem*" style "my_color"<br />
widget_class "*RadioMenuitem*" style "my_color"<br />
widget_class "*CheckMenuitem*" style "my_color"<br />
widget_class "*TearoffMenuitem*" style "my_color"<br />
widget_class "*Menu*" style "menu_color" </code></li>
<li>Type <code>killall gnome-panel</code> in a terminal and you're good to go.</li>
</ol>
<p><a href="http://ubuntuforums.org/showthread.php?t=637862">This link</a> has more discussion and detail.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Stealing usability from Apple]]></title>
<link>http://philsramblings.wordpress.com/?p=59</link>
<pubDate>Sat, 23 Aug 2008 19:37:56 +0000</pubDate>
<dc:creator>Phil Willoughby</dc:creator>
<guid>http://philsramblings.wordpress.com/?p=59</guid>
<description><![CDATA[Apple&#8217;s OS X, which I use for most things at home, has a cool feature on its &#8216;dashboard]]></description>
<content:encoded><![CDATA[<p>Apple's OS X, which I use for most things at home, has a cool feature on its 'dashboard' which allows a webpage or fragment thereof to be displayed as a 'widget'.  Ubuntu comes with a similar 'dashboard' thing; Compiz fusion knows it as 'Widget Later'.  I was unable to find a web-viewing widget installed with Ubuntu, so I wrote my own.</p>
<p><!--more--></p>
<p>It mimics Apple's to the following extent: it can display any web page, and it updates each time it is displayed.  It's deficient compared to Apple's in that it can only view complete web pages and it isn't integrated into a convenient browser button.  It's also difficult to resize unless you know the mouse shortcuts for that - Super Key + Middle Button on my system.</p>
<p>To build it you will need to install the libwebkitgtk-dev package and a standard GTK+ development environment.  To use it you will need Compiz Fusion with the Widget Layer plugin enabled and set so that it treats any window with a 'role' of 'widget' as a widget.</p>
<p>Build command is:</p>
<p><code>gcc -Wall -W -std=gnu99 `pkg-config --cflags WebKitGtk gtk+-2.0` `pkg-config --libs WebKitGtk gtk+-2.0` -o webwidget webwidget.c</code></p>
<p>The code for webwidget.c is:</p>
<pre>
#include &#60;gtk/gtk.h&#62;
#include &#60;glib.h&#62;
#include &#60;WebKit/webkit.h&#62;

static gboolean visibility_event( GtkWidget *, GdkEvent  *, gpointer);

int
main (int argc, char **argv)
{
  GtkWidget *window;
  GtkWidget *webview;

  gtk_init(&#38;argc, &#38;argv);

  webview = webkit_web_view_new();

  window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
  g_signal_connect (G_OBJECT (window), "destroy", G_CALLBACK (gtk_main_quit), NULL);
  gtk_window_set_decorated(GTK_WINDOW (window), FALSE);
  gtk_window_set_default_size(GTK_WINDOW (window), 320, 480);
  gtk_container_add (GTK_CONTAINER (window), webview);
  gtk_window_set_role(GTK_WINDOW(window), "widget");

  g_signal_connect (G_OBJECT (webview), "visibility-notify-event", G_CALLBACK (visibility_event), (argc &#62; 1) ? argv[1] : "http://m.google.com/");

  gtk_widget_show_all(window);
  gtk_main();

  return 0;
}

static gboolean
visibility_event( GtkWidget *widget
                , GdkEvent  *event
		, gpointer data
                )
{
  if (((GdkEventVisibility*)event)-&#62;state != GDK_VISIBILITY_FULLY_OBSCURED)
    webkit_web_view_open(WEBKIT_WEB_VIEW(widget), (gchar *)data);
  return TRUE;
}
</pre>
]]></content:encoded>
</item>
<item>
<title><![CDATA[PyBakup 0.5 - pyGTK Gui]]></title>
<link>http://slashcode.wordpress.com/?p=60</link>
<pubDate>Mon, 18 Aug 2008 07:10:54 +0000</pubDate>
<dc:creator>thek3nger</dc:creator>
<guid>http://slashcode.wordpress.com/?p=60</guid>
<description><![CDATA[L&#39;interfaccia di pyBackup-gtk
Eccovi la gui che ho progettato per lo script pybackup. E&#8217; s]]></description>
<content:encoded><![CDATA[[caption id="attachment_61" align="aligncenter" width="340" caption="L&#39;interfaccia di pyBackup-gtk"]<img class="size-full wp-image-61" src="http://slashcode.wordpress.com/files/2008/08/pybackup-gtk.png" alt="L'interfaccia di pyBackup-gtk." width="340" height="330" />[/caption]
<p>Eccovi la gui che ho progettato per lo script pybackup. E' scritta in pyGTK + Glade. Al momento è completamente funzionale a parte la statusbar che mi sta dando rogne per far visualizzare lo stato di avanzamento del backup.</p>
<p>Andando su Launchpad ricordo che potete provarla. :)</p>
<p>Per i prossimi sviluppi vi terrò aggiornati. :)</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Elegant Brit [GTK Theme]]]></title>
<link>http://arbolcharyou.wordpress.com/?p=1181</link>
<pubDate>Sat, 16 Aug 2008 16:49:23 +0000</pubDate>
<dc:creator>DiS</dc:creator>
<guid>http://arbolcharyou.wordpress.com/?p=1181</guid>
<description><![CDATA[Muy elegante el diseño minimalista de este theme para GTK. Está disponible también para Xfwm4, Op]]></description>
<content:encoded><![CDATA[<p style="text-align:left;">Muy elegante el diseño minimalista de este <em>theme</em> para GTK. Está disponible también para <span class="contenttext"><em>Xfwm4</em>, <em>Openbox</em> o <em>PekWM</em> y, para rematar, nos ofrecen enlaces para temas GDM y unos cuantos fondos de escritorio a juego.<br />
</span></p>
<p><a href="http://farm4.static.flickr.com/3139/2767672631_5f90aff897_o.jpg"><img class="alignnone" style="border:0 none;" src="http://farm4.static.flickr.com/3139/2767672631_22da90a7e7.jpg" alt="" width="460" height="112" /></a></p>
<p style="text-align:left;">→ <a title="Elegant Brit GTK Theme" href="http://www.gnome-look.org/content/show.php/Elegant+Brit?content=74553">Elegant Brit</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Why not to use GtkFixed]]></title>
<link>http://dreblen.wordpress.com/?p=31</link>
<pubDate>Thu, 14 Aug 2008 21:49:40 +0000</pubDate>
<dc:creator>dreblen</dc:creator>
<guid>http://dreblen.wordpress.com/?p=31</guid>
<description><![CDATA[Using GtkFixed, although sometimes easier and sometimes useful for some things, is discouraged.
Why?]]></description>
<content:encoded><![CDATA[<p>Using <a title="GtkFixed C Doc" href="http://library.gnome.org/devel/gtk/stable/GtkFixed.html" target="_blank">GtkFixed</a>, although sometimes easier and sometimes useful for some things, is discouraged.<br />
Why? Well that's what I'm hoping to answer.</p>
<p><!--more--></p>
<p><em>With GtkFixed, the following things will result in truncated text,  overlapping widgets, and other display bugs:</em></p>
<div class="itemizedlist">
<ul type="disc">
<li><em>Themes, which may change widget sizes.</em></li>
<li><em>Fonts other than the one you used to write the app will of course change the size of widgets containing text; keep in mind that users may use a larger font because of difficulty reading the default, or they may be using Windows or the framebuffer port of GTK+, where different fonts are available.</em></li>
</ul>
<ul>
<li><em> Translation of text into other languages changes its size. Also, display of non-English text will use a different font in many cases.</em></li>
</ul>
</div>
<div class="itemizedlist">Here's an example of the second point:</p>
[caption id="attachment_32" align="alignnone" width="510" caption="GtkHBox"]<a href="http://dreblen.wordpress.com/files/2008/08/gtkhbox2.png"><img class="size-full wp-image-32" src="http://dreblen.wordpress.com/files/2008/08/gtkhbox2.png" alt="GtkHBox" width="510" height="106" /></a>[/caption]
</div>
<div class="itemizedlist">
<dl class="wp-caption alignnone">
<dt class="wp-caption-dt"><a href="http://dreblen.wordpress.com/files/2008/08/gtkfixed2.png"><img class="size-full wp-image-33" src="http://dreblen.wordpress.com/files/2008/08/gtkfixed2.png" alt="GtkFixed" width="337" height="107" /></a></dt>
<dd class="wp-caption-dd">GtkFixed</dd>
</dl>
</div>
<p>As you can see, the large font causes one button to bleed into the other.</p>
<p><em>In addition, the fixed widget can't properly be mirrored in right-to-left languages such as Hebrew and Arabic. i.e. normally GTK+ will flip the interface to put labels to the right of the thing they label, but it can't do that with GtkFixed. So your application will  not be usable in right-to-left languages.</em></p>
<p><em>Finally, fixed positioning makes it kind of annoying to add/remove GUI elements, since you have to reposition all the other elements. This is a long-term maintenance problem for your application.</em></p>
<p><em>If you know none of these things are an issue for your application, and prefer the simplicity of GtkFixed, by all means use the widget. But you should be aware of the tradeoffs.</em></p>
<p>I hope that this will help you in your decisions regarding the use of GtkFixed.<br />
I took all of my information from <a title="GtkFixed Reference" href="http://library.gnome.org/devel/gtk/stable/GtkFixed.html#GtkFixed.description" target="_blank">here</a>.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[GUI for CalculTrainer]]></title>
<link>http://programmingruby.wordpress.com/?p=20</link>
<pubDate>Thu, 14 Aug 2008 19:07:45 +0000</pubDate>
<dc:creator>lostoliman</dc:creator>
<guid>http://programmingruby.wordpress.com/?p=20</guid>
<description><![CDATA[Yeh all!!
I&#8217;m now writting the graphical user interface for CalculTrainer!!
I do this with GTK]]></description>
<content:encoded><![CDATA[<p>Yeh all!!</p>
<p>I'm now writting the graphical user interface for CalculTrainer!!</p>
<p>I do this with GTK+ so the program will be portable and usefull on all OS.</p>
<p>I think I will post some of my GTK+ experiences to show you the progression of the work. But also to give you some examples of what GTK can do basically ;)</p>
<p>Enjoy it and look on the download page or on the GTK page when I will create it!!</p>
<p>Bye</p>
<p>-LostMan-</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[¿Qué es PyTube?]]></title>
<link>http://tuxbelito.wordpress.com/?p=103</link>
<pubDate>Thu, 14 Aug 2008 02:25:59 +0000</pubDate>
<dc:creator>luzbelito92</dc:creator>
<guid>http://tuxbelito.wordpress.com/?p=103</guid>
<description><![CDATA[Hoy les voy a mostrar lo genial que es este programa, se trata del PyTube el cual nos permite básic]]></description>
<content:encoded><![CDATA[<p>Hoy les voy a mostrar lo genial que es este programa, se trata del PyTube el cual nos permite básicamente bajar videos de YouTube de una manera muy fácil y gráfica. Este software esta realizado en GTK+ y es OpenSource.</p>
<p>Además, este gran software nos ofrece algunas funciones más:</p>
<ul>
<li><span class="google-src-active-text" style="direction:ltr;text-align:left;">Conversión de formatos ( OGM, OGG, OGV, MP3, MPEG, AMV, GIF, MP4, WAV, AVI, 3GP, FLV)</span></li>
</ul>
<ul>
<li><span class="google-src-active-text" style="direction:ltr;text-align:left;">Búsqueda integrada con videos de YouTube</span></li>
</ul>
<ul>
<li><span class="google-src-active-text" style="direction:ltr;text-align:left;">Posibilidad de descargar videos de YouTube utilizando una cuenta registrada (nose bien para que sirve)</span></li>
</ul>
<ul>
<li><span class="google-src-active-text" style="direction:ltr;text-align:left;">Puede descargar animaciones flash que se están reproduciendo actualmente a tu PC, solo con GNU/Linux.</span></li>
</ul>
<ul>
<li><span>Posibilidad de descargar un número ilimitado de vídeos desde YouTube, MyspaceTV, Google Video y Metacafe</span></li>
</ul>
<ul>
<li><span>Preconfigurado dispositivos de apoyo para una rápida compatibilidad de vídeo en el dispositivo (Apple iPod, Sony PSP, Flip Mino, otros por venir)</span></li>
</ul>
<ul>
<li><span>Herramientas de edición de vídeo, como la rotación, escalado de vídeo, la inserción de un archivo de audio personalizado en un archivo de vídeo, la fusión de video, generador de tono de llamada móvil.</span></li>
</ul>
<ul>
<li>R<span>ecuperar información sobre el perfil y los contactos de miembros de YouTube</span></li>
</ul>
<ul>
<li><span>Comparte tus vídeos favoritos con la exportación de una lista de enlaces de vídeo, o importar una lista de otro usuario con unos pocos clics</span></li>
</ul>
[caption id="" align="aligncenter" width="363" caption="Pantalla principal"]<a href="http://s2.subirimagenes.com/imagen/935664pantallazopytube.png"><img src="http://s2.subirimagenes.com/imagen/935664pantallazopytube.png" alt="Pantalla principal" width="363" height="220" /></a>[/caption]
<p>Existe una petición en la web principal del <a href="http://bashterritory.com/pytube/index.php?option=com_frontpage&#38;Itemid=1">proyecto</a> para que se integre este software  a los repositorios oficiales de Ubuntu, lo cual me parece genial ya que es un software digno de usar.</p>
<p><a href="http://brainstorm.ubuntu.com/idea/10342/"><img class="aligncenter" src="http://brainstorm.ubuntu.com/item/10342/image/1/" alt="" width="300" height="80" /></a></p>
<p>Para Ubuntu, actualmente existe un repositorio especial:</p>
<blockquote><p><code>deb http://www.bashterritory.com/pytube/releases/ /</code></p></blockquote>
<p>y para las demás distros tenemos la lista de instaladores <a href="http://bashterritory.com/pytube/index.php?option=com_remository&#38;Itemid=26&#38;func=select&#38;id=1">aquí</a>, incluyendo su código fuente.</p>
<h2>Un video de cómo se usa:</h2>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/SlgqCt8A9pw'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/SlgqCt8A9pw&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Początek nauki GTK+ (PHP-GTK 2) i pierwszy program - WD-Notatnik-0.1]]></title>
<link>http://whitedervish.wordpress.com/?p=422</link>
<pubDate>Sun, 10 Aug 2008 16:06:10 +0000</pubDate>
<dc:creator>WhiteDervish</dc:creator>
<guid>http://whitedervish.wordpress.com/?p=422</guid>
<description><![CDATA[Od niedawna uczę się pisać aplikacje w GTK+. Aktualnie wykorzystuję do tego celu PHP i PHP-GTK 2]]></description>
<content:encoded><![CDATA[<p>Od niedawna uczę się pisać aplikacje w GTK+. Aktualnie wykorzystuję do tego celu PHP i PHP-GTK 2. Nigdy nie korzystałem z żadnej biblioteki służącej do tworzenia graficznego interfejsu, więc jest to dla mnie coś zupełnie nowego. Miałem trochę kłopotów, ale, ogólnie rzecz biorąc, używanie GTK+ nie sprawia mi jakichś wielkich problemów. Największym problemem była dla mnie wręcz zerowa liczba materiałów o PHP-GTK 2 w języku polskim. Znalazłem kawałek tłumaczenia tutoriala z <a href="http://gtk.php.net/" target="_blank">http://gtk.php.net/</a> na jednym blogu, ale była to znikoma część tego tutoriala. W każdym razie udało mi się przeczytać i zrozumieć całą zawartość kursu ze <a href="http://gtk.php.net/" target="_blank">strony domowej PHP-GTK 2</a>.<br />
<!--more--><br />
Teraz zacząłem czytać <a href="http://gtk.php.net/manual/en/reference.php" target="_blank">dokumentację PHP-GTK 2</a>. Niby jest to oficjalna dokumentacja PHP-GTK 2, ale wiele metod wielu obiektów nie ma tam praktycznie żadnego opisu. Bardzo często jest jedynie napisane jaki parametr/parametry dana funkcja przyjmuje i jaki zwraca. Dlatego też, oprócz dokumentacji PHP-GTK 2, czytam także dokumentację z <a href="http://library.gnome.org/devel/gtk/stable/" target="_blank">tej strony</a>. Jakoś pomału mi ta nauka idzie.</p>
<p>Napisałem pierwszy program. Notatnik. Bardzo, ale to bardzo prosty notatnik. Umożliwia jedynie otwieranie wskazanego pliku, jego edytowanie i zapisywanie zmienionej zawartości w tym samym pliku lub w innym, określonym. Sporo nauczyłem się pisząc ten prosty program. Mam zamiar go rozbudowywać, dodawać nowe funkcje, bo wiem, że dużo mogę się dzięki temu nauczyć. Póki co jest w wersji 0.1.</p>
<p><a href="http://odsiebie.com/pokaz/388456---24d1.html" target="_blank">WD-Notatnik-0.1.7z</a> (11.7 KB).<br />
Program udostępniany jest na licencji GNU GPL.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[FAQ: Pobieranie listy zarejestrowanych typów MIME w giomm]]></title>
<link>http://adawo.wordpress.com/?p=179</link>
<pubDate>Sun, 10 Aug 2008 12:09:40 +0000</pubDate>
<dc:creator>adawo</dc:creator>
<guid>http://adawo.wordpress.com/?p=179</guid>
<description><![CDATA[Aby pobrać listę zarejestrowanych typów MIME należy posłużyć się funckją oferowaną przez p]]></description>
<content:encoded><![CDATA[<p>Aby pobrać listę zarejestrowanych typów <a href="http://pl.wikipedia.org/wiki/MIME">MIME</a> należy posłużyć się funckją oferowaną przez przestrzeń nazw Gio,  a mianowicie <strong>content_types_get_registered. </strong></p>
<p>Przykład programu wypisującego liste typów mime na standardowe wyjście:<br />
[sourcecode language="c++"]<br />
#include <iostream><br />
#include <giomm.h></p>
<p>int main(int argc, char *argv[]) {<br />
    Gio::init(); //Inicjujemy Giomm</p>
<p>    std::list<Glib::ustring> mime_types = Gio::content_types_get_registered(); //Lista typow mime<br />
    //Wypisujemy liste<br />
    for (std::list<Glib::ustring>::iterator iter = mime_types.begin(); iter != mime_types.end(); ++iter) {<br />
        std::cout << *iter << std::endl; <br />
    }    </p>
<p>    return 0;<br />
}<br />
[/sourcecode]</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[¿No te gusta Mono? Prueba Vala]]></title>
<link>http://solognu.wordpress.com/?p=244</link>
<pubDate>Sat, 09 Aug 2008 18:53:58 +0000</pubDate>
<dc:creator>sosias</dc:creator>
<guid>http://solognu.wordpress.com/?p=244</guid>
<description><![CDATA[From I&#8217; Been to Debian. Don&#8217;t Like Mono? Try Vala by Daengbo.
Mi reciente entrada sobre ]]></description>
<content:encoded><![CDATA[<p><strong>From <a title="I' Been to Debian" href="http://blog.ibeentoubuntu.com/" target="_blank">I' Been to Debian</a>. <a title="Don't Like Mono? Try Vala" href="http://blog.ibeentoubuntu.com/2008/08/dont-like-mono-try-vala.html" target="_blank">Don't Like Mono? Try Vala</a> by Daengbo.</strong></p>
<p>Mi reciente entrada sobre Mono ha sido sincera, y Boycott Novell se equivoca sobre Debian, pero Gnome actualmente <strong>está</strong> promocionado una alternativa. Antes de introducir el lenguaje de programación <a title="Vala Gnome" href="http://live.gnome.org/Vala" target="_blank">Vala</a>, te voy a dar unos antecedentes de la programación de Gnome como yo lo entiendo (ten presente que no soy programador y no tengo conocimientos reales de programación desde mediados de los años 80).</p>
<p>Gnome esta basado en C, lo que hace más difícil el escribir programas que en, digamos, KDE, que tiene un lenguaje orientados a objetos como C++. Gnome intenta añadir unas capas de orientación a objetos a C, pero los desarrolladores frecuentemente se quejan de que esto no ayuda demasiado. Como resultado, los desarrolladores de Gnome (especialmente los nuevos) usan <em>bindings</em> para otros lenguajes como Python, Ruby, o C#. Estos lenguajes y <em>bindings</em> tienen la desventaja de necesitar ser instalados, requiriendo más espacio para su instalación (mira el caso de Debian que para incluir Mono aumenta en 50MB sólo para Tomboy). El interprete de Mono se ejecuta casi tan rápido como los binarios, pero no tanto. Los lenguajes interpretados, por lo general, son notablemente más lentos. Ninguno de estos lenguajes son ideales para el sistema de GObject, y otros.</p>
<p>La introducción de Vala, como un nuevo lenguaje desarrollado por Gnome específicamente para escribir aplicaciones Gnome. Tiene una sintaxis muy similar a Java o C# (más cercano a C# por lo que he leído) y tiene un precompilador de Vala a código y cabeceras en C, que puede ser compilado como ejecutable. El código probablemente no es tan eficiente como el escrito a mano, pero desee Gnome se dice que tiene un rendimiento similar. Por supuesto el uso de un lenguaje de alto nivel significa que los programadores duros de C lo tienen más difícil. El inconveniente es que los programas de Vala no son multiplataforma como otros lenguajes de alto nivel, pero la compilación para las tres o cuatro plataformas no debería ser demasiado difícil.</p>
<p>Vala alcanzará la versión 1.0 a finales de Septiembre, pero sólo funciona con GLib y GTK+ ahora mismo. Se espera que toda la plataforma de desarrollo de Gnome funcione pronto. Ya existe el resaltado de sintaxis en GEdot y Monodevelop.</p>
<p>He estado jugando un poco con el código de ejemplo, y he comprobado lo directo y fácil que es hacer aplicaciones gráficas (como eggclock). El lenguaje es muy reciente, así que no existen muchas aplicaciones escritas en él, pero existe un fork de Cheese escrito usando Vala. También tenemos varias aplicaciones multimedia, pruebas de rendimiento, y editores de  texto.</p>
<p>Mono y C# tiene muchas aplicaciones muy buenas ahora: Tomboy, F-Spot, y Banshee. Si fueran escritos de nuevo a código Vala, podríamos ver como mejora su rendimiento y silenciar la guerra anti Mono. ¿Suena bien, no? De acuerdo, puedo soñar, ¿puedo?</p>
<p>Curiosamente, no tengo una sensación de NIH (<a title="Not Invented Here" href="http://en.wikipedia.org/wiki/Not_Invented_Here" target="_blank">Not Invented Here</a>) acerca de Vala. Me pregunto por qué es.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hydrangea]]></title>
<link>http://lathund.wordpress.com/?p=467</link>
<pubDate>Thu, 07 Aug 2008 05:26:45 +0000</pubDate>
<dc:creator>Hund</dc:creator>
<guid>http://lathund.wordpress.com/?p=467</guid>
<description><![CDATA[
Visa källa @ dA.
Eftersom inte Lassekongo83 tänkte släppa detta Visual Style tema för GNOME så]]></description>
<content:encoded><![CDATA[<p style="text-align:center;"><img class="aligncenter" src="http://fc03.deviantart.com/fs32/i/2008/219/c/6/Hydrangea_by_ebupof.png" alt="" width="238" height="199" /></p>
<p style="text-align:center;"><a href="http://ebupof.deviantart.com/art/Hydrangea-94056925" target="_blank">Visa källa @ dA</a>.</p>
<p style="text-align:left;">Eftersom inte Lassekongo83 tänkte släppa detta Visual Style tema för GNOME så valde jag att porta det själv.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Adding GTK+ To The Windows %PATH%]]></title>
<link>http://dreblen.wordpress.com/?p=16</link>
<pubDate>Wed, 06 Aug 2008 21:34:14 +0000</pubDate>
<dc:creator>dreblen</dc:creator>
<guid>http://dreblen.wordpress.com/?p=16</guid>
<description><![CDATA[

Well, it&#8217;s a common issue it would seem, so I&#8217;m writing a quick howto.

This howto req]]></description>
<content:encoded><![CDATA[<p style="text-align:center;"><a href="http://dreblen.wordpress.com/files/2008/08/dll_error.png"><img class="aligncenter size-full wp-image-18" src="http://dreblen.wordpress.com/files/2008/08/dll_error.png" alt="" width="397" height="135" /></a></p>
<p style="text-align:center;">
<p>Well, it's a common issue it would seem, so I'm writing a quick howto.</p>
<p><!--more--></p>
<p>This howto requires that you know where GTK+ is installed,</p>
<ul>
<li> If you install a runtime package, it will commonly be installed to<br />
<em>C:\Program Files\Common Files\Gtk</em></li>
<li>If you install a devel package, it will let you choose, but it will default to<br />
<em>C:\GTK</em></li>
<li> If you just use binary packages, or build from source, I think I can trust you to know where you installed it :)</li>
</ul>
<p>Alright, now onto the work. I'll cover XP first:</p>
<ol>
<li> Right-click on My Computer, then select "Properties".</li>
<li> Click the "Advanced" tab in the dialog that pops up, and click the "Environment Variables" button near the bottom.</li>
<li> Under "System variables", click the "New" button and enter "GTK_BASEPATH" (no quotes) as the name, and the path to where GTK is installed as the value.</li>
<li> Now find the variable named "Path", and click the "Edit" button.</li>
<li> Press the Home key to go the beginning of the entry, and add "%GTK_BASEPATH%\bin;" (no quotes) to the beginning. Note that the ';' at the end is very important.</li>
<li> Now click all the OK buttons until the dialogs are gone. You're done!</li>
</ol>
<p>Now I will cover Vista:</p>
<ol>
<li> Press the Windows key on your keyboard, or press the start button</li>
<li> Right click on "Computer" and select Properties</li>
<li> In the left side-bar, select "Advanced system settings", you'll need administrator rights to continue</li>
<li> Click the "Environment Variables" button near the bottom</li>
<li> Now do steps 3 through 6 of the XP instructions. You're done!</li>
</ol>
<p>I hope that this will help somebody out.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Gnome 3, GTK 3.0 e Clutter]]></title>
<link>http://alessandrobottoni.wordpress.com/?p=87</link>
<pubDate>Tue, 05 Aug 2008 17:05:42 +0000</pubDate>
<dc:creator>alessandrobottoni</dc:creator>
<guid>http://alessandrobottoni.wordpress.com/?p=87</guid>
<description><![CDATA[Come probabilmente sapete, non sono un utente di Gnome e non amo questo Desktop Environment. Questo ]]></description>
<content:encoded><![CDATA[<p class="western">Come probabilmente sapete, non sono un utente di <a href="http://it.wikipedia.org/wiki/Gnome">Gnome</a> e non amo questo <a href="http://it.wikipedia.org/wiki/Desktop_environment">Desktop Environment</a>. Questo però non vuol dire che non tenga d'occhio Gnome e <a href="http://it.wikipedia.org/wiki/GTK+">GTK+</a> nella speranza di vedere, in un prossimo futuro, qualcosa che sia in grado di competere con <a href="http://it.wikipedia.org/wiki/KDE">KDE</a> (3.X e 4.X). Forse, ma proprio forse, qualcosa comincia a muoversi all'orizzonte. Vediamo di cosa si tratta.</p>
<h1 class="western">Grandezza e Limiti di GTK+ 2.X e Gnome 2.X</h1>
<p class="western">Le GTK+ hanno una caratteristica fondamentale per un ambiente libero come quello di cui mi occupo: sono completamente svincolate da qualunque azienda e da qualunque interesse commerciale. Intendiamoci: anche le <a href="http://it.wikipedia.org/wiki/Qt_(toolkit)">Qt</a> sono open source - lo sono da anni e lo sono su tutte le principali piattaforme (Windows Linux e Mac) - ma le Qt sono open source <em>solo</em> se usate su progetti open source. Per sviluppare progetti closed source con le Qt bisogna acquistare una apposita licenza (non proprio economica...). Le GTK+ sono coperte da una <a href="http://it.wikipedia.org/wiki/GNU_General_Public_License">licenza GPL</a>2 e quindi non possono essere usate per creare prodotti commerciali completamente chiusi (ci vorrebbe una <a href="http://it.wikipedia.org/wiki/Licenza_MIT">licenza MIT</a> od una <a href="http://it.wikipedia.org/wiki/Licenze_BSD">BSD</a> per questo) ma possono essere ugualmente usate in modo piuttosto libero come base per progetti commerciali anche abbastanza complessi. Non è una differenza di poco conto.</p>
<p class="western">Tuttavia, sia le GTK+ che l'ambiente Gnome (basato su di esse) sono rimaste palesemente indietro rispetto alla coppia Qt/KDE. Non hanno tutte le finezze grafiche ed ingegneristiche dei loro rivali e, soprattutto, non riescono a trasmettere a l'impressione che ci sia qualcuno, dietro di essi, in grado di dirigerne lo sviluppo e di gestirlo con la dovuta competenza e determinazione.</p>
<p class="western">La situazione è abbastanza grave da aver convinto molti utenti e molti sviluppatori a rivolgere la loro attenzione altrove. Non è un mistero, ad esempio, che <a href="http://it.wikipedia.org/wiki/Linus_Torvalds">Linus Torvalds</a> in persona ritenga Gnome un ambiente da cerebrolesi. Nel mio piccolo, anch'io mi tengo alla larga dalle GTK+ e da Gnome, sia come utente che come programmatore.</p>
<h1 class="western">Il trend verso Mac OS X</h1>
<p class="western">Addirittura, si è arrivati al punto che alcuni sviluppatori del “core” di GTK+ e di Gnome, pur scrivendo codice per GTK+ e Gnome, usano <a href="http://it.wikipedia.org/wiki/Mac_os_x">Mac OS X</a> come ambiente di lavoro quotidiano. Insomma, nemmeno loro sono disposti a sottostare alle “stranezze” ed alle “instabilità” del loro stesso prodotto! Non credo che occorra dire altro.</p>
<p class="western">L'innamoramento di molti programmatori nei confronti di Mac OS X ha anche l'effetto di rendere Gnome sempre più simile a Mac OS X. Questo non sarebbe un problema se Mac OS X piacesse a tutti e se fosse emulato nella pienezza del suo splendore. Purtroppo, Mac OS X non piace assolutamente agli ex-utenti Windows (93% del “mercato”) e comunque viene emulato solo in parte (qualcuno ha detto “solo nei difetti”?).</p>
<p class="western">
<p class="western">Questi due fenomeni stanno facendo allontanare sempre di più Gnome e KDE uno dall'altro, alla faccia della interoperabilità tra questi due ambienti (vedi <a href="http://en.wikipedia.org/wiki/Freedesktop">freedesktop.org</a>).</p>
<h1 class="western">Gnome 3</h1>
<p class="western">Come molti altri utenti, anch'io sto osservando con grande interesse ciò che sta succedendo nel mondo Gnome/GTK+. In particolare, speravo di vedere le seguenti novità.</p>
<ol>
<li>
<p class="western">Una impostazione del Desktop più 	razionale, più adatta a degli utenti “esperti” e meno 	legata al mondo Apple. In particolare, speravo di vedere qualcosa di 	simile a KDE 3.X o <a href="http://it.wikipedia.org/wiki/Fluxbox">FluxBox</a>/BlackBox.</p>
</li>
<li>
<p class="western">Una serie di linee guida che fosse in grado 	di portare anche le applicazioni (Gnome, AbiWord, Evolution) verso 	una maggiore professionalità. Soprattutto, continuo a sperare 	che qualcuno metta (di nuovo!) le mani alla allucinante UI di <a href="http://it.wikipedia.org/wiki/Gimp">The 	Gimp</a>.</p>
</li>
</ol>
<p class="western">Personalmente, non me ne frega assolutamente nulla degli “<a href="http://en.wikipedia.org/wiki/Visual_appeal">eye-candies</a>” ispirati a Mac OS X, a Vista ed a KDE 4.X. <em>Non</em> uso le trasparenze sul desktop di KDE esattamente come <em>non</em> scrivo i miei appunti su carta da lucidi semitrasparente.</p>
<p class="western">Purtroppo, però, sembra che Gnome 3.0 andrà esattamente nell'altra direzione: più effetti speciali e meno attenzione alla HCI (Human-Computer Interface).</p>
<h1 class="western">Gtk+ 3.0</h1>
<p class="western">Le principali preoccupazioni del team di sviluppo di GTK+ e Gnome, infatti, sembrano essere legate alla mancanza di supporto per la grafica 3D e per gli effetti speciali (trasparenze e via dicendo). Il desiderio di queste funzionalità è tale che buona parte del team di sviluppo è disposto a buttare a mare la retro-compatibilità delle librerie pur di ottenerle. Inutile dire che questo vuol dire che tutti coloro che hanno applicazioni basate su GTK+ 2.X da mantenere dovranno eseguire un lungo e faticoso porting del codice per mantenerle in vita.</p>
<p class="western">Mai come ora sono lieto di aver abbandonato le GTK+ anni fa (per passare a <a href="http://it.wikipedia.org/wiki/WxWidgets">wxWidgets</a> e Qt).</p>
<p class="western">Va però detto che le GTK hanno veramente bisogno di una seria azione di pulizia. Ci sono librerie deprecate da anni che vanno rimosse e ci sono aggiornamenti al codice che vanno fatti. Il team di sviluppo di GTK, ad esempio, si sta concentrando sulla sostituzione dei metodi pubblici con apposite coppie getter/setter.</p>
<p class="western">Francamente, vista la inevitabile perdita di compatibilità, a questo punto io introdurrei delle novità anche più radicali nel codice.</p>
<h1 class="western">Clutter</h1>
<p class="western">Per fortuna, qualcun altro negli anni scorsi ha pensato a rinnovare l'ambiente desktop del mondo Open Source. Il gruppetto di sviluppatori di <a href="http://en.wikipedia.org/wiki/Clutter_(computing)">Clutter</a>, in particolare, ha creato una libreria basata su <a href="http://en.wikipedia.org/wiki/OpenGL">OpenGL</a> che può essere usata per fornire a GTK+ ed a Gnome gli effetti che mancano. Sia <a href="http://en.wikipedia.org/wiki/Havoc_Pennington">Havoc Pennington</a> che <a href="http://en.wikipedia.org/wiki/Miguel_de_icaza">Miguel de Icaza</a> hanno fatto notare come sia più semplice integrare Clutter in GTK+ che reimplementare queste funzionalità all'interno di GTK+.</p>
<p class="western">Speriamo che queste due voci nel deserto vengano ascoltate.</p>
<p class="western">Va però detto che Clutter è solo una GUI-building library, non è un Desktop Environment come Gnome o KDE e non è nemmeno una libreria di supporto completa e potente come GTK+ o, ancora meglio, Qt. C'è quindi un grosso lavoro da fare per trasformare questa libreria in un prodotto equivalente a GTK+ o d a Gnome. Qualcosa si sta muovendo, ad esempio, grazie al progetto <a href="http://candies.ubicast.eu/">Candies</a>.</p>
<h1 class="western">Una luce in fondo al tunnel?</h1>
<p class="western">Personalmente, credo che sarebbe tempo di affiancare a GTK+ e Gnome un progetto completamente nuovo, basato su Clutter e Candies, e teso a fornire tutte le funzionalità necessarie in modo indipendente da GTK+ e Gnome.</p>
<p class="western">In ogni caso, se verranno accettate le proposte di Pennington e di De Icaza, GTK+  Gnome potrebbero comunque fare un enorme salto in avanti, forse anche in tempi brevi.</p>
<p class="western">Teniamo le dita incrociate...</p>
<p class="western" align="right">Alessandro Bottoni</p>
<p class="western" align="right"><a href="mailto:alessandro.bottoni@infinito.it">alessandro.bottoni@infinito.it</a></p>
<p class="western">
]]></content:encoded>
</item>
<item>
<title><![CDATA[GTK 3 vs Gnome 3]]></title>
<link>http://elavdeveloper.wordpress.com/?p=85</link>
<pubDate>Mon, 04 Aug 2008 14:53:45 +0000</pubDate>
<dc:creator>elavdeveloper</dc:creator>
<guid>http://elavdeveloper.wordpress.com/?p=85</guid>
<description><![CDATA[El tema de este post se debe a una noticia que leí vía VivaLinux y sobre la cual quiero dar mi hum]]></description>
<content:encoded><![CDATA[<p>El tema de este post se debe a una noticia que leí vía <a title="VivaLinux" href="http://www.vivalinux.com.ar/desktop/gnome-3.0-preocupa.html" target="_blank">VivaLinux</a> y sobre la cual quiero dar mi humilde opinión...</p>
<p>No les hablo como un usuario de <a title="Gnome Desktop" href="http://www.gnome.org" target="_blank">Gnome</a> ( para que no piensen que es fanatismo ). Se ha creado una gran ola de especulación acerca de si <strong><a title="Gnome 3" href="http://elavdeveloper.wordpress.com/2008/07/14/gnome-3-para-el-2010/" target="_blank">Gnome 3</a></strong> deba hacer un cambio en su estructura o en su interfaz ( como hicera KDE 4 ) y no creo que deba ser así ( a lo que interfaz se refiere ), desde mi punto de vista solo deben agregarle pequeñas funcionalidades para hacerlo más intuitivo y fácil de usar. Lo que si es un hecho es que las librerías GTK deben ser mejoradas y si logran ser más rápidas, será mejor para Gnome y por tanto vendrán proyectos nuevos e ideas nuevas...<br />
Lo que no debe suceder bajo ningún concepto es que Gnome rompa con su filosofía, y estoy de acuerdo en este punto con Miguel de Icaza, <a title="Gnome 3" href="http://elavdeveloper.wordpress.com/2008/07/14/gnome-3-para-el-2010/" target="_blank">Gnome 3</a> o <a title="GTK+" href="http://es.wikipedia.org/wiki/GTK+" target="_blank">GTK</a> 3 no tiene por qué romper su compatibilidad con versiones anteriores, sino todo lo contario ( Acordarse por favor del efecto que esto causó Windows Vista en los usuarios de Windows XP )...</p>
<p>Pero creo que lo mejor sería esperar y ver que pasa dejando a un lado las especulaciones....</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Få dina GTK program att smälta in i KDE4]]></title>
<link>http://lathund.wordpress.com/?p=462</link>
<pubDate>Fri, 01 Aug 2008 23:42:26 +0000</pubDate>
<dc:creator>Hund</dc:creator>
<guid>http://lathund.wordpress.com/?p=462</guid>
<description><![CDATA[Häromdagen släpptes den första stabila versionen av KDE4 (4.1 för att vara exakt) och jag var in]]></description>
<content:encoded><![CDATA[<p>Häromdagen släpptes den första stabila versionen av KDE4 (4.1 för att vara exakt) och jag var inte sen att prova det. Nya KDE var helt okej, men eftersom jag hela tiden använt mig av GNOME är 99.99% av alla mina program just för GNOME. Och dessa smälter inte in något vidare i KDE miljön, men det går ganska enkelt att ordna detta.</p>
<p>Om du inte redan har provat KDE4 och skulle vilja göra detta lägger du helt enkelt till denna rad i din sources.list fil:</p>
<blockquote><p>deb http://ppa.launchpad.net/kubuntu-members-kde4/ubuntu hardy main</p></blockquote>
<p>Filen öppnar du enklast med kommandot:</p>
<blockquote><p>gksudo gedit /etc/apt/sources.list</p></blockquote>
<p>Efter det lär du uppdatera förråden med kommandot:</p>
<blockquote><p>sudo apt-get update</p></blockquote>
<p>Sedan kan du installera metapaketet <strong>kubuntu-kde4-desktop</strong> vilket ger dig KDE4 med alla dess program:</p>
<blockquote><p>sudo apt-get install kubuntu-kde4-desktop</p></blockquote>
<p>Men om du inte vill installera detta relativt stora metapaket kan du installera paketet <strong>kde4-core</strong> vilket installerar KDE4 med ett par nödvändiga program som t.ex filhanteraren Dolphin:</p>
<blockquote><p>sudo apt-get install kubuntu-kde4-desktop</p></blockquote>
<p>För att sedan byta till KDE4 loggar du ut och väljer Options och sedan Select session, välj KDE4 och logga sedan in som vanligt.</p>
<p>För att GTK program ska smälta in i KDE miljön behövs paketet gtk-qt-engine-kde4, vilket du installerar med kommandot:</p>
<blockquote><p>sudo apt-get install gtk-qt-engine-kde4</p></blockquote>
<p>För att ändringarna ska börja gälla lär du logga ut och in en gång, öppna sedan <em>System Settings</em> och välj <em>Apperance</em> följt av <em>GTK Styles and Fonts</em>. Välj <em>Use my KDE style in GTK applications</em> och till sist verkställer du ändringarna. Nu lär du sedan loggat ut och in ännu en gång kommer ändringarna att aktiveras.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Visualizar imágenes eficientemente]]></title>
<link>http://andalinux.wordpress.com/?p=262</link>
<pubDate>Thu, 31 Jul 2008 06:00:33 +0000</pubDate>
<dc:creator>jasvazquez</dc:creator>
<guid>http://andalinux.wordpress.com/?p=262</guid>
<description><![CDATA[¿Qué programa utilizas para visualizar tus fotos e imágenes?
¿Realmente utilizas todas las opcio]]></description>
<content:encoded><![CDATA[<p style="text-align:justify;"><img style="float:left;margin-right:15px;" src="http://img66.imageshack.us/img66/1167/gpicviewgtklinuxjq0.png" alt="" />¿Qué programa utilizas para <strong>visualizar</strong> tus <strong>fotos</strong> e imágenes?</p>
<p style="text-align:justify;">¿Realmente <strong>utilizas todas las opciones</strong> que incluyen o lo único que te interesa es poder ver esa foto que tienes en el <em>disco duro</em> y cuya vista previa no te permite distinguir si es realmente lo que andas buscando?</p>
<p style="text-align:justify;">Como imagino que no eres de los que utilizan <em>Gimp</em> o <em>Firefox</em> para abrir jpgs y pngs quiero ofrecerte una <strong>solución</strong> mucho<strong> más ligera</strong> incluso que <em>GQView</em>.</p>
<p style="text-align:justify;"><!--more--></p>
<h2 style="text-align:justify;">Justificación</h2>
<p style="text-align:justify;">El programa del que quiero hablaros en esta ocasión en <em>GPicView</em>.</p>
<p style="text-align:justify;">Para hacernos <strong>una idea</strong>: un fichero <em>png</em> de 1,2 MBs en GQView requieren 11,7 MBs para ser abiertos mientras que en GPicView bastarán 6,7 MBs; aunque en un principio <strong>5 MBs</strong> no parezcan significativos, ¿qué ocurrirá cuando tengas abiertas varias al mismo tiempo?</p>
<p style="text-align:justify;">Cuando el equipo cuenta con <em>pocos recursos</em> (y aunque los tenga mejor aprovecharlos para cosas más productivas ¿no?) cualquier <strong>mejora</strong> puede suponer un alivio y ahí es donde entra en escena el programa que nos ocupa.</p>
<p style="text-align:justify;"><strong>Otra</strong> gran <strong>ventaja</strong> frente al resto de programas de este tipo es estar desarrollada única y exclusivamente usando GTK+ por lo que <strong>no depende</strong> de las librerías de ninguno de los <strong>gestor</strong>es <strong>de ventanas</strong> habituales (Gnome, Kde, XFCE, ...)</p>
<h2 style="text-align:justify;">Instalación</h2>
<p style="text-align:justify;">Basta con <strong>descargar</strong> el paquete .deb del <a href="http://downloads.sourceforge.net/lxde/gpicview_0.1.5ubuntu1_i386.deb?modtime=1189626731&#38;big_mirror=0" target="_blank">siguiente enlace</a> y hacer <strong>doble click</strong> sobre él para comenzar el proceso de instalación.</p>
<p style="text-align:justify;">En pocos segundos contaremos con una<strong> nueva entrada</strong> en <em>Aplicaciones &#62; Gráficos &#62; GPicViewer Image Viewer</em> lista para ser utilizada.</p>
<p style="text-align:justify;"><img class="aligncenter" src="http://img140.imageshack.us/img140/3273/gpicviewfastlinuxjm0.png" alt="" width="437" height="393" /></p>
<p style="text-align:justify;">Si tengo que ponerle una <strong>pega</strong> es que <strong>me recuerda</strong> horrores al <em>Visor de documentos</em> del <strong>ventanuco</strong> produciéndome algún que otro repelús ;)</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[lgui 0.13]]></title>
<link>http://kknd.wordpress.com/2008/07/29/lgui-013/</link>
<pubDate>Tue, 29 Jul 2008 20:36:57 +0000</pubDate>
<dc:creator>Lucas Hermann Negri</dc:creator>
<guid>http://kknd.wordpress.com/2008/07/29/lgui-013/</guid>
<description><![CDATA[Novidades:
- Troca do script de construção por um Makefile;
- Suporte ao GtkBuilder;
- Binding do ]]></description>
<content:encoded><![CDATA[<p>Novidades:</p>
<p>- Troca do script de construção por um Makefile;<br />
- Suporte ao GtkBuilder;<br />
- Binding do GtkRecentManager e amigos;<br />
- Novos exemplos;</p>
<p>Link.: <a title="OProj" href="http://oproj.tuxfamily.org" target="_blank">http://oproj.tuxfamily.org</a></p>
[caption id="attachment_70" align="aligncenter" width="300" caption="Screenshot de uma aplicação que utiliza lgui "]<a href="http://kknd.wordpress.com/files/2008/07/ss.png"><img class="size-medium wp-image-70" src="http://kknd.wordpress.com/files/2008/07/ss.png?w=300" alt="Screenshot de uma aplicação que utiliza lgui " width="300" height="202" /></a>[/caption]
]]></content:encoded>
</item>

</channel>
</rss>
