<?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>NEW TRENDS IN WEB TECHNOLOGY by Casteyó</title>
	<atom:link href="http://casteyo.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://casteyo.wordpress.com</link>
	<description>Tutorials &#38; articles about Web 2.0, CSS, J2EE, .NET.... --&#62; web applications</description>
	<lastBuildDate>Fri, 06 Jan 2012 19:49:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='casteyo.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>NEW TRENDS IN WEB TECHNOLOGY by Casteyó</title>
		<link>http://casteyo.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://casteyo.wordpress.com/osd.xml" title="NEW TRENDS IN WEB TECHNOLOGY by Casteyó" />
	<atom:link rel='hub' href='http://casteyo.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Advices for JSP &#8211; Java Server Pages</title>
		<link>http://casteyo.wordpress.com/2007/06/29/jsp-java-server-pages/</link>
		<comments>http://casteyo.wordpress.com/2007/06/29/jsp-java-server-pages/#comments</comments>
		<pubDate>Fri, 29 Jun 2007 17:43:14 +0000</pubDate>
		<dc:creator>casteyo</dc:creator>
				<category><![CDATA[JSP]]></category>

		<guid isPermaLink="false">http://casteyo.wordpress.com/2007/06/29/jsp-java-server-pages/</guid>
		<description><![CDATA[First of all, I should explain what is the JSP technology and how JSP pages work.The JSP technology is an open, freely available specification developed by Sun Microsystems as an alternative to Microsoft&#8217;s Active Server Pages (ASP) technology, and a key component of the Java 2 Enterprise Edition (J2EE) specification. Many of the commercially available [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=casteyo.wordpress.com&amp;blog=1198899&amp;post=34&amp;subd=casteyo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>First of all, I should explain what is the JSP technology and how JSP pages work.The JSP technology is an open, freely available specification developed by Sun Microsystems as an alternative to Microsoft&#8217;s Active Server Pages (ASP) technology, and a key component of the Java 2 Enterprise Edition (J2EE) specification. Many of the commercially available application servers support JSP technology.</p>
<p><img src="http://geneura.ugr.es/~jmerelo/JSP/modelo1.gif" height="277" width="491" /><br />
<span id="more-34"></span></p>
<p><strong>How Do JSP Pages Work?</strong></p>
<p>A JSP page is basically a web page with traditional HTML and bits of Java code. The file extension of a JSP page is .jsp rather than .html or .htm, which tells the server that this page requires special handling that will be accomplished by a server extension or a plug-in.</p>
<p>When a JSP page is called, it will be compiled (by the JSP engine) into a Java servlet. At this point the servlet is handled by the servlet engine, just like any other servlet. The servlet engine then loads the servlet class (using a class loader) and executes it to create dynamic HTML to be sent to the browser, as shown in next figure. The servlet creates any necessary object, and writes any object as a string to an output stream to the browser.</p>
<p><img src="http://java.sun.com/developer/technicalArticles/javaserverpages/servlets_jsp/fig1.gif" alt="request/response flow calling a jsp page" height="247" width="430" /></p>
<p>The next time the page is requested, the JSP engine executes the already-loaded servlet unless the JSP page has changed, in which case it is automatically recompiled into a servlet and executed.</p>
<p>In order to do good practices you should follow these advices:</p>
<ul>
<li>Don&#8217;t overuse Java code in HTML pages</li>
<li>Don&#8217;t mix business logic with presentation</li>
<li>Use custom tags</li>
<li>Do not reinvent the wheel</li>
<li>Use the JSTL Expression Language</li>
<li>Use filters if necessary</li>
<li>Use a portable security model</li>
<li>Use a database for persistent information</li>
<li>Cache content</li>
<li>Use connection pooling</li>
<li>Cache results of database queries</li>
<li>Adopt the new JSP XML syntax if necessary</li>
</ul>
<p><strong>Example:</strong></p>
<blockquote>
<pre>
&lt;%@ page language="java" contentType="text/html" %&gt;
&lt;html&gt;
 &lt;body&gt;
    &lt;jsp:useBean id="clock" class="java.util.Date" /&gt;
    The current time at the server is:
    &lt;ul&gt;
      &lt;li&gt;Date: &lt;jsp:getProperty name="clock" property="date" /&gt;
      &lt;li&gt;Month: &lt;jsp:getProperty name="clock" property="month" /&gt;
      &lt;li&gt;Year: &lt;jsp:getProperty name="clock" property="year" /&gt;
      &lt;li&gt;Hours: &lt;jsp:getProperty name="clock" property="hours" /&gt;
     &lt;li&gt;Minutes: &lt;jsp:getProperty name="clock" property="minutes" /&gt;
    &lt;/ul&gt;
  &lt;/body&gt;
&lt;/html&gt;</pre>
</blockquote>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/casteyo.wordpress.com/34/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/casteyo.wordpress.com/34/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/casteyo.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/casteyo.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/casteyo.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/casteyo.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/casteyo.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/casteyo.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/casteyo.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/casteyo.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/casteyo.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/casteyo.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/casteyo.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/casteyo.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/casteyo.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/casteyo.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=casteyo.wordpress.com&amp;blog=1198899&amp;post=34&amp;subd=casteyo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://casteyo.wordpress.com/2007/06/29/jsp-java-server-pages/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/58a9aafbc905333734fe204644acebf0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">casteyo</media:title>
		</media:content>

		<media:content url="http://geneura.ugr.es/~jmerelo/JSP/modelo1.gif" medium="image" />

		<media:content url="http://java.sun.com/developer/technicalArticles/javaserverpages/servlets_jsp/fig1.gif" medium="image">
			<media:title type="html">request/response flow calling a jsp page</media:title>
		</media:content>
	</item>
		<item>
		<title>How to do a Circular Menu with CSS</title>
		<link>http://casteyo.wordpress.com/2007/06/20/how-to-do-a-circular-menu-with-css/</link>
		<comments>http://casteyo.wordpress.com/2007/06/20/how-to-do-a-circular-menu-with-css/#comments</comments>
		<pubDate>Wed, 20 Jun 2007 11:11:12 +0000</pubDate>
		<dc:creator>casteyo</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://casteyo.wordpress.com/2007/06/20/how-to-do-a-circular-menu-with-css/</guid>
		<description><![CDATA[Look this peculiar menu fully developed in XHTML and CSS. It&#8217;s good to know the wonders that somebody can do with CSS and a little of imagination. At the moment, people agree in which one of the best ways to make flexible menus and of little weight, is to use CSS. This one is a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=casteyo.wordpress.com&amp;blog=1198899&amp;post=28&amp;subd=casteyo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Look this peculiar menu fully developed in XHTML and CSS. It&#8217;s good to know the wonders that somebody can do with CSS and a little of imagination. At the moment, people agree in which one of the best ways to make flexible menus and of little weight, is to use CSS. This one is a very powerful tool and it has a great characteristic as it is to separate the code of the appearance.</p>
<p><img src="http://casteyo.files.wordpress.com/2007/06/menu.jpg?w=510" alt="Circular Menu with CSS" /></p>
<p><span id="more-28"></span></p>
<p>At the time of approaching a design, it is important to consider certain factors like the accessibility, the facility of update, the speed of load and the compatibility. There are a lot of advantages in order to develop a menu with lists and css. <strong>Cascading Style Sheets</strong> (CSS) is a stylesheet language used to describe the presentation of a document written in a markup language. The CSS specifications are maintained by the World Wide Web Consortium (<a href="http://www.w3.org/" target="_blank">W3C</a>).</p>
<ul>
<li><a href="http://casteyo.files.wordpress.com/2007/06/menuc.pdf" title="Circular Menu with CSS" target="_blank">CODE</a></li>
<li><a href="http://metalize.liveonstyle.com/wp-content/uploads/2007/03/index.html" target="_blank">DEMO</a></li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/casteyo.wordpress.com/28/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/casteyo.wordpress.com/28/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/casteyo.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/casteyo.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/casteyo.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/casteyo.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/casteyo.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/casteyo.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/casteyo.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/casteyo.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/casteyo.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/casteyo.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/casteyo.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/casteyo.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/casteyo.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/casteyo.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=casteyo.wordpress.com&amp;blog=1198899&amp;post=28&amp;subd=casteyo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://casteyo.wordpress.com/2007/06/20/how-to-do-a-circular-menu-with-css/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/58a9aafbc905333734fe204644acebf0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">casteyo</media:title>
		</media:content>

		<media:content url="http://casteyo.files.wordpress.com/2007/06/menu.jpg" medium="image">
			<media:title type="html">Circular Menu with CSS</media:title>
		</media:content>
	</item>
		<item>
		<title>Configuration of Hibernate, MySQL &amp; Eclipse</title>
		<link>http://casteyo.wordpress.com/2007/06/06/conf_hibernate/</link>
		<comments>http://casteyo.wordpress.com/2007/06/06/conf_hibernate/#comments</comments>
		<pubDate>Wed, 06 Jun 2007 21:12:04 +0000</pubDate>
		<dc:creator>casteyo</dc:creator>
				<category><![CDATA[Hibernate]]></category>

		<guid isPermaLink="false">http://casteyo.wordpress.com/2007/06/06/configuracio-dhibernate-mysql-i-eclipse/</guid>
		<description><![CDATA[Hi! I&#8217;m gonna tell you how you could configure these 3 tools. Together, they provide great facilities to us to construct and to manipulate web applications. This configuration will be based on: Eclipse 3.2 + Web Tools Platform Hibernate Core 3.2.4 .SP1 + Hibernate Tools-3.2.0.beta9a MySQL 4.1 + MySQL Gui Tools 5.0-r12+ MySQL Connector (driver) [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=casteyo.wordpress.com&amp;blog=1198899&amp;post=11&amp;subd=casteyo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi!</p>
<p>I&#8217;m gonna tell you how you could configure these 3 tools. Together, they provide great facilities to us to construct and to manipulate web applications. This configuration will be based on:</p>
<ul>
<li> <a href="http://www.eclipse.org/downloads/download.php?file=/eclipse/downloads/drops/R-3.2.2-200702121330/eclipse-SDK-3.2.2-win32.zip">Eclipse 3.2</a> + <a href="http://download.eclipse.org/technology/phoenix/demos/install-wtp/install-wtp.html">Web Tools Platform</a></li>
<li><a href="http://switch.dl.sourceforge.net/sourceforge/hibernate/hibernate-3.2.4.sp1.zip">Hibernate Core 3.2.4 .SP1</a> + <a href="http://switch.dl.sourceforge.net/sourceforge/jboss/HibernateTools-3.2.0.beta9a.zip">Hibernate Tools-3.2.0.beta9a</a></li>
<li><a href="http://downloads.mysql.com/archives/mysql-4.1/mysql-essential-4.1.12a-win32.msi">MySQL 4.1</a> + <a href="http://dev.mysql.com/get/Downloads/MySQLGUITools/mysql-gui-tools-5.0-r12-win32.msi/from/http://mysql.rediris.es/">MySQL Gui Tools 5.0-r12</a>+ <a href="http://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-java-5.0.6.zip/from/http://mysql.rediris.es/">MySQL Connector (driver)</a></li>
<li><a href="http://apache.rediris.es/tomcat/tomcat-5/v5.5.23/bin/apache-tomcat-5.5.23.exe">Apache Tomcat 5.5</a></li>
</ul>
<p><span id="more-11"></span>First of all, you have to create a new project of type <em><strong>Dynamic Web Project</strong></em> with the Eclipse environment; we are going to call it &#8220;<strong>test</strong>&#8220;. In the field &#8220;Target Runtime&#8221; we must indicate which server we are gonna use. In our case, we will use the Tomcat Apache 5.5. With the created project and a good database in the MySQL,  now, we must import all the Hibernate libs into <em>/WebContent/WEB-INF/lib</em> folder. There is another way: you must put all the Hibernate libs into <em>/tomcat/common/lib</em> folder. This last one it&#8217;s better if you have to export the project in a &#8220;*.war&#8221; file.</p>
<p>We are ready to establish connection and mapping between the database and our project.</p>
<p>We are going to create the <strong><em>Hibernate Configuration File</em></strong>. This one, will contain the information to access to the database.</p>
<address>ROUTE: File &#8211;&gt; New &#8211;&gt; Other &#8211;&gt; Hibernate &#8211;&gt;  Hibernate Configuration File</address>
<p><img src="http://casteyo.files.wordpress.com/2007/06/cfgxml.jpg?w=510" alt="hibernate.cfg.xml" /></p>
<p>(I have to say that this configuration is right for all of the available databases. If you don&#8217;t use MySQL, you must select the correct &#8220;database dialect&#8221; and &#8220;driver class&#8221;..)</p>
<p>Now, we are going to create the <strong><em>Hibernate Console Configuration</em></strong> file.</p>
<address>ROUTE: File &#8211;&gt; New &#8211;&gt; Other &#8211;&gt; Hibernate &#8211;&gt;  Hibernate Console Configuration</address>
<p>In addition, we are going to create the <strong><em>Hibernate Reverse Engineering</em></strong> file. This one,  will allow to us to generate the source code of VO and DAO layers (VO = Value Object; DAO = Data Access Object).</p>
<address>ROUTE: File &#8211;&gt; New &#8211;&gt; Other &#8211;&gt; Hibernate &#8211;&gt;  Hibernate Reverse Engineering</address>
<p>We must select the console that we had created and then clicking on the &#8220;Refresh&#8221; button, we have to be able to see the database structure. Finalize.</p>
<p>That&#8217;s all! Now it is everything ready to generate the source code.</p>
<address>ROUTE: Run &#8211;&gt; Hibernate Code Generation &#8211;&gt; <strong><em>Hibernate Code Generation</em></strong></address>
<ul>
<li><em>Main</em>: We must select the console,  to specify the output directory, to mark the &#8220;Reverse Engineer From JDBC connection&#8221; option and select the path of the Hibernate Reverse Engineering file in &#8220;reveng.xml&#8221;.</li>
<li><em>Exporters</em>: we must choose to work with Java 5 and to mark:
<ul>
<li>Domain Code</li>
<li>Hibernate XML mappings</li>
<li>DAO code</li>
<li>Hibernate XML configuration</li>
</ul>
</li>
<li><em>Run </em>and.. source code created! <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </li>
</ul>
<p>I hope this little manual of the Hibernate configuration be useful. If someone has any question, please post it.</p>
<p>See ya!!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/casteyo.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/casteyo.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/casteyo.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/casteyo.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/casteyo.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/casteyo.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/casteyo.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/casteyo.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/casteyo.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/casteyo.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/casteyo.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/casteyo.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/casteyo.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/casteyo.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/casteyo.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/casteyo.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=casteyo.wordpress.com&amp;blog=1198899&amp;post=11&amp;subd=casteyo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://casteyo.wordpress.com/2007/06/06/conf_hibernate/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/58a9aafbc905333734fe204644acebf0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">casteyo</media:title>
		</media:content>

		<media:content url="http://casteyo.files.wordpress.com/2007/06/cfgxml.jpg" medium="image">
			<media:title type="html">hibernate.cfg.xml</media:title>
		</media:content>
	</item>
		<item>
		<title>BlogHome.persist(new Blog(&#8220;casteyó&#8221;));</title>
		<link>http://casteyo.wordpress.com/2007/06/05/inici/</link>
		<comments>http://casteyo.wordpress.com/2007/06/05/inici/#comments</comments>
		<pubDate>Tue, 05 Jun 2007 18:16:52 +0000</pubDate>
		<dc:creator>casteyo</dc:creator>
				<category><![CDATA[Hello World]]></category>

		<guid isPermaLink="false">http://casteyo.wordpress.com/2007/06/05/provant/</guid>
		<description><![CDATA[&#160; Hello World!! Having been inspired by many excellent blogs on the internet, I have decided to start my own blog. I will report about new trends in web technology. Some tutorials, some articles and some cheats about these new technologies which are being developed constantly. &#160; it begins!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=casteyo.wordpress.com&amp;blog=1198899&amp;post=6&amp;subd=casteyo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="justify">&nbsp;</p>
<p align="justify"> Hello World!!</p>
<p align="justify">Having been inspired by many excellent blogs on the internet, I have decided to start my own blog. I will report about new trends in web technology. Some tutorials, some articles and some cheats about these new technologies which are being developed constantly.</p>
<table width="597">
<tr>
<td>&nbsp;</td>
<td><a href="http://casteyo.files.wordpress.com/2007/06/eclipse1.jpg" target="_blank"><img src="http://casteyo.files.wordpress.com/2007/06/eclipse1.jpg?w=178&#038;h=143" height="143" width="178" /></a></td>
<td><a href="http://casteyo.files.wordpress.com/2007/06/eos.jpg" target="_blank"><img src="http://casteyo.files.wordpress.com/2007/06/eos.jpg?w=178&#038;h=143" height="143" width="178" /></a></td>
</tr>
</table>
<p align="justify"><font color="#000000"><strong>it begins!</strong></font></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/casteyo.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/casteyo.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/casteyo.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/casteyo.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/casteyo.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/casteyo.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/casteyo.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/casteyo.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/casteyo.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/casteyo.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/casteyo.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/casteyo.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/casteyo.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/casteyo.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/casteyo.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/casteyo.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=casteyo.wordpress.com&amp;blog=1198899&amp;post=6&amp;subd=casteyo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://casteyo.wordpress.com/2007/06/05/inici/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/58a9aafbc905333734fe204644acebf0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">casteyo</media:title>
		</media:content>

		<media:content url="http://casteyo.files.wordpress.com/2007/06/eclipse1.jpg" medium="image" />

		<media:content url="http://casteyo.files.wordpress.com/2007/06/eos.jpg" medium="image" />
	</item>
	</channel>
</rss>
