<?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/"
	>

<channel>
	<title>The Jar in the Spotlight &#187; Developement</title>
	<atom:link href="http://www.jarconnection.com/category/developement/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jarconnection.com</link>
	<description>Computation, Visualization and Programming lab</description>
	<lastBuildDate>Thu, 26 Aug 2010 11:22:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How to develope a Liferay Theme</title>
		<link>http://www.jarconnection.com/developement/how-to-develope-a-liferay-theme/</link>
		<comments>http://www.jarconnection.com/developement/how-to-develope-a-liferay-theme/#comments</comments>
		<pubDate>Wed, 11 Aug 2010 11:17:23 +0000</pubDate>
		<dc:creator>reych</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[Developement]]></category>
		<category><![CDATA[liferay]]></category>
		<category><![CDATA[templates]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[velocity]]></category>

		<guid isPermaLink="false">http://www.jarconnection.com/?p=170</guid>
		<description><![CDATA[This is the second article of the series where you can learn how to develope a portal in Liferay.This one will show how to develope a Liferay Theme.
]]></description>
			<content:encoded><![CDATA[<p>This article will show how to develope a Liferay Theme.</p>
<p>Requirements:</p>
<p>- Ant 1.8.1 (<em>or the latest stable version</em>)<br />
<a href="http://apache.rediris.es/ant/binaries/apache-ant-1.8.1-bin.zip" target="_blank">http://apache.rediris.es/ant/binaries/apache-ant-1.8.1-bin.zip</a></p>
<p>-  SDK Plugins</p>
<p><a href="http://downloads.sourceforge.net/lportal/liferay-plugins-sdk-5.2.3.zip">http://downloads.sourceforge.net/lportal/liferay-plugins-sdk-5.2.3.zip</a></p>
<p>- Eclipse IDE for Java EE Developers<br />
<a href="http://www.eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/heliosr" target="_blank">http://www.eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/heliosr</a></p>
<p>- Notepad ++ (or other text editor)</p>
<p><a href="http://notepad-plus-plus.org/release/5.7" target="_blank">http://notepad-plus-plus.org/release/5.7</a></p>
<p>- Your CSS and HTML design</p>
<p>Unzip all the files in your HD. Remember the path in order to the  next step.</p>
<p>We need to add a new user variable. Click on “Environment Variables”  at “System Properties” section on “My Computer”. Click on “New” and add  the variable with this values:</p>
<p><em>variable name: ANT_HOME<br />
variable value: </em>C:\ant<br />
<em> (you have to put your ant path here)</em></p>
<p><em> </em></p>
<div id="attachment_180" class="wp-caption aligncenter" style="width: 310px"><em><em><a href="http://www.jarconnection.com/wp-content/uploads/2010/07/ant_home.jpg"><img class="size-medium wp-image-180" title="ant_home" src="http://www.jarconnection.com/wp-content/uploads/2010/07/ant_home-300x172.jpg" alt="" width="300" height="172" /></a></em></em><p class="wp-caption-text">Fig. 1. Environment Variable &quot;ANT_HOME&quot;</p></div>
<p>Then, edit the system variable “Path” and add the new variable. Save all changes.</p>
<p><em>variable value: %ANT_HOME%\bin; (don’t delete the other values)</em></p>
<p>Create a &#8220;build.{your windows session name}.properties in yor sdk folder and paste in it your tomcat path:</p>
<p><em>app.server.dir=C:/liferay-portal-5.2.3/tomcat-6.0.18</em></p>
<p>Now execute your command window (<em>run-&gt;cmd</em>) and go to the &#8220;Themes&#8221; folder of  sdk plugins folder. Then create the theme:</p>
<p><em>create jarconnection &#8220;Jarconnection Theme&#8221;</em><br />
(where <em>jarconnection </em>is the name of the theme and <em>&#8220;Jarconnection Theme&#8221; is a description of it</em>)</p>
<div id="attachment_184" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.jarconnection.com/wp-content/uploads/2010/07/create_theme.jpg"><img class="size-medium wp-image-184" title="create_theme" src="http://www.jarconnection.com/wp-content/uploads/2010/07/create_theme-300x202.jpg" alt="" width="300" height="202" /></a><p class="wp-caption-text">Fig. 2. Creating the theme files</p></div>
<p>If you look at the &#8220;Theme&#8221; folder, you&#8217;ll see a new folder with the name you gave to, followed by &#8220;-theme&#8221;.</p>
<p>Create the project in Eclipse. Go to &#8220;File&#8221;-&gt;&#8221;New&#8221;-&gt;&#8221;Other&#8221; and select &#8220;Java Project&#8221;. Then clic &#8220;Next&#8221;. Write out the project name and select &#8220;Create project from existing source&#8221;. Click on &#8220;Browse&#8221; and select your theme folder (in C:\liferay-plugins-sdk-5.2.3\themes\jarconnection-theme). Finally, click on &#8220;Finish&#8221;.</p>
<div id="attachment_191" class="wp-caption aligncenter" style="width: 224px"><a href="http://www.jarconnection.com/wp-content/uploads/2010/07/them_structure.jpg"><img class="size-medium wp-image-191" title="theme_structure" src="http://www.jarconnection.com/wp-content/uploads/2010/07/them_structure-214x300.jpg" alt="" width="214" height="300" /></a><p class="wp-caption-text">Fig. 3. Theme project in Eclipse</p></div>
<p>Delete &#8220;src&#8221; folder. Now go to the project and edit &#8220;build.xml&#8221; file and change the value of  property &#8220;theme.parent&#8221; to &#8220;classic&#8221; instead of &#8220;_styled&#8221;. Drag &#8220;build.xml&#8221; file and drop it into &#8220;ant&#8221; window. Execute it (double click). You&#8217;ll see the theme structure in the package explorer window.</p>
<div id="attachment_196" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.jarconnection.com/wp-content/uploads/2010/07/theme_structure_1.jpg"><img class="size-medium wp-image-196" title="theme_structure_1" src="http://www.jarconnection.com/wp-content/uploads/2010/07/theme_structure_1-300x182.jpg" alt="" width="300" height="182" /></a><p class="wp-caption-text">Fig.4. Theme structure</p></div>
<p>If you see &#8220;C:\sdk\dist&#8221;, there&#8217;ll be a war file (your war theme). If you execute liferay portal, you&#8217;ll see your theme is available (but now is a copy of classic theme).</p>
<p style="text-align: left;">It&#8217;s time to develope the theme. Create a folder named &#8220;templates&#8221; in &#8220;_diffs&#8221; folder. Then copy &#8220;portal_normal.vm&#8221; file in this folder and open it.</p>
<p style="text-align: left;">Note: &#8220;_diffs&#8221; folder lets you add and overwrite templates, images, javascript code, &#8230;</p>
<p style="text-align: left;">If you see the code, there&#8217;ll be HTML code and other tags. This is <em><a href="http://www.jarconnection.com/developement/velocity/" target="_self">velocity</a> code</em>. Most of the code are velocity variables, defined on &#8220;init.vm&#8221; (you can find the file at &#8220;C:\liferay-portal-5.2.3\tomcat-6.0.18\webapps\ROOT\html\themes\_unstyled\templates&#8221;).</p>
<p style="text-align: left;">Paste your HTML design on &#8220;portal_normal.vm&#8221; file (on &#8220;_diffs&#8221; folder). Be carefull not to delete these variables, you have to place them in your HTML where they better fit.</p>
<p style="text-align: left;">Create a &#8220;css&#8221; folder in &#8220;_diffs&#8221; folder. Create a &#8220;custom.css&#8221; in it and your css design. Here you can overwrite css default styles of the theme. If you have images in your css design, create a &#8220;images&#8221; folder and paste it in &#8220;_diffs&#8221; folder. Create a new folder in it called &#8220;css&#8221; and paste your images. Remember to change the path in your css code. The new path will be:</p>
<p style="text-align: left;"><em>background-image:url(<strong>../images/css/</strong>butllet.gif);</em></p>
<p style="text-align: center;"><em> </em></p>
<div id="attachment_222" class="wp-caption aligncenter" style="width: 118px"><em><em><a href="http://www.jarconnection.com/wp-content/uploads/2010/07/diffs_structure.jpg"><img class="size-medium wp-image-222 " title="diffs_structure" src="http://www.jarconnection.com/wp-content/uploads/2010/07/diffs_structure-108x300.jpg" alt="" width="108" height="300" /></a></em></em><p class="wp-caption-text">Fig. 5. _diffs folder structure</p></div>
<p style="text-align: left;">If you have to add a javascript file, create a folder in &#8220;_diffs&#8221; called &#8220;javascript&#8221; and paste your javascript file in it.</p>
<p style="text-align: left;">Now it&#8217;s time to build the theme. Execute build file on ant window and wait until<em> </em>appears &#8220;Build successful&#8221; on console window.</p>
<p style="text-align: left;">To set this theme, you have to login as an admin and go to &#8220;Manage pages&#8221; at dock menu. Click on &#8220;Look &amp; feel&#8221; tab and select your theme. Click on &#8220;Return to Full Page&#8221; to see your Homepage with the new theme.</p>
<div id="attachment_208" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.jarconnection.com/wp-content/uploads/2010/07/web.jpg"><img class="size-medium wp-image-208  " title="web" src="http://www.jarconnection.com/wp-content/uploads/2010/07/web-300x182.jpg" alt="" width="300" height="182" /></a><p class="wp-caption-text">Fig. 6. Theme</p></div>
<p><em><strong>Note</strong>: each time you modify anyhing of the theme, you&#8217;ll have to build the theme again and verify at the Tomcat console the theme is available for use.</em></p>
<p>Now you can modify and desing your theme.</p>
<p>You can download a pdf version <a href="http://www.jarconnection.com/wp-content/uploads/2010/08/How-to-develope-a-Liferay-Theme.pdf" target="_blank">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jarconnection.com/developement/how-to-develope-a-liferay-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is Hibernate?</title>
		<link>http://www.jarconnection.com/developement/what-is-hibernate/</link>
		<comments>http://www.jarconnection.com/developement/what-is-hibernate/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 14:04:17 +0000</pubDate>
		<dc:creator>reych</dc:creator>
				<category><![CDATA[Developement]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[liferay]]></category>

		<guid isPermaLink="false">http://www.jarconnection.com/?p=112</guid>
		<description><![CDATA[Working with object oriented software and relational databases can  make us spend much time in the current environments. Hibernate is a tool that performs the mapping between object oriented world applications and entity relationship data bases in Java environments.]]></description>
			<content:encoded><![CDATA[<p><strong>Hibernate</strong> is an object-relational mapping (ORM) library for the Java language, providing a framework for mapping an object-oriented domain model to a traditional relational database. Hibernate solves object-relational impedance mismatch problems by replacing direct persistence-related database accesses with high-level object handling functions.</p>
<p>Hibernate is designed to be flexible in terms of  table schema used, to adapt to use on an existing database. It also has the functionality to create the database from available information.</p>
<p>Hibernate offers a query language data called HQL (Hibernate Query Language), at the same time to build an API queries programmatically (known as &#8220;criteria&#8221;).</p>
<p>Hibernate for Java can be used in applications Independent Java applications or Java EE, by the component that implements the Hibernate Annotations JPA standard, which is part of this platform.</p>
<p>An interesting point is connecting Hibernate and Liferay. More info about this experience soon!!</p>
<p>Official site: <a href="http://www.hibernate.org/">http://www.hibernate.org/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jarconnection.com/developement/what-is-hibernate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Liferay.com</title>
		<link>http://www.jarconnection.com/developement/new-liferay-com/</link>
		<comments>http://www.jarconnection.com/developement/new-liferay-com/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 11:22:00 +0000</pubDate>
		<dc:creator>reych</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[Developement]]></category>
		<category><![CDATA[liferay]]></category>

		<guid isPermaLink="false">http://www.jarconnection.com/?p=101</guid>
		<description><![CDATA[While we are waiting for the Liferay 6.0 release, Liferay official site changes its image.]]></description>
			<content:encoded><![CDATA[<p>Liferay.com has changed. Now we can see its new look at <a href="http://www.liferay.com" target="_blank">www.liferay.com</a> while we&#8217;re waiting for the Liferay 6.0 release (maybe end of april).</p>
<p>Meanwhile, you can know the last features of it at the blogs, like the &#8220;<a href="http://www.liferay.com/web/manish.gupta/blog/-/blogs/new-feature-in-liferay-6-0-team?_33_redirect=/community/blogs" target="_blank">team</a>&#8221; (a new kind of group). I just downloaded bundeled Liferay Portal 6.0 and looks great!!!</p>
<p>Here are some screenshots:</p>
<p><a href="http://www.jarconnection.com/wp-content/uploads/2010/04/liferay_6.0_0.png"><img class="aligncenter size-medium wp-image-108" title="liferay_6.0_0" src="http://www.jarconnection.com/wp-content/uploads/2010/04/liferay_6.0_0-300x292.png" alt="" width="300" height="292" /></a></p>
<p style="text-align: center;">Fig. 1. Home</p>
<p style="text-align: center;">
<p><a href="http://www.jarconnection.com/wp-content/uploads/2010/04/liferay_6.0_1.png"><img class="aligncenter size-medium wp-image-103" title="liferay_6.0_1" src="http://www.jarconnection.com/wp-content/uploads/2010/04/liferay_6.0_1-300x155.png" alt="" width="300" height="155" /></a></p>
<p style="text-align: center;">Fig. 2. Admin Menu</p>
<p style="text-align: left;">More news soon!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jarconnection.com/developement/new-liferay-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ICEfaces &amp; Liferay</title>
		<link>http://www.jarconnection.com/developement/icefaces-liferay/</link>
		<comments>http://www.jarconnection.com/developement/icefaces-liferay/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 12:38:28 +0000</pubDate>
		<dc:creator>reych</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[Developement]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[liferay]]></category>
		<category><![CDATA[programming languages]]></category>

		<guid isPermaLink="false">http://www.jarconnection.com/?p=86</guid>
		<description><![CDATA[Many times we want to improve our web applications in Java. Yes, they are robust and give users the information they want. But what could we do to improve their response time? Discover Icefaces]]></description>
			<content:encoded><![CDATA[<p>ICEfaces is an integrated Ajax Java application framework that enables Java EE Ajax application developers to easily create and deploy thin-client rich Internet applications (RIA) in pure Java. This lets us to imporve our Liferay portal.</p>
<p>ICEfaces is a fully featured product that enterprise developers can use to develop new or existing Java EE Ajax applications at no cost. There is an open source project and an Enterprise (commercial) software that extends the open source project.</p>
<p>There are numerous benefits of using ICEfaces to enrich enterprise web applications:</p>
<p><strong>Rich User Experience:</strong> Create a superior user experience and produce more effective enterprise Java EE Ajax applications.</p>
<p><strong>Open Source:</strong> ICEfaces is the most successful enterprise Ajax  Java framework  available under open source.</p>
<p><strong>Standards-based:</strong> ICEfaces is a pure Java enterprise solution so developers can continue to work the way they are use to.  Existing Java IDEs and test tools can be leveraged during development.</p>
<p><strong>Easy Ajax:</strong> ICEfaces is much more than a component suite it is a Java Ajax application framework that provides ease of development for Java/JSF developers. ICEfaces applications are developed with minimal design effort in Java/JSF not JavaScript.</p>
<p><strong>Ajax Push:</strong> ICEfaces pioneered<a href="http://www.icefaces.org/main/ajax-java/ajaxpush.iface">Ajax Push</a> , enabling server/application initiated content rendering to the browser.  With<a href="http://www.icefaces.org/main/ajax-java/ajaxpush.iface">Ajax Push</a> , developers can create  collaborative and dynamic Java  EE Ajax applications like  never before.  There is simply no easier way to develop Java<a href="http://www.icefaces.org/main/ajax-java/ajaxpush.iface">Ajax Push</a> applications.</p>
<p><strong>Security:</strong> ICEfaces EE is the most secure Java EE Ajax solution on the market today. It is compatible with SSL, prevents cross-site scripting, malicious code injections and unauthorized data mining. As a server-based solution, ICEfaces EE doesn&#8217;t expose application logic or user data, plus it is especially effective at preventing fake form submissions and SQL injections attacks.</p>
<p><strong>Project Home page:</strong></p>
<p>http://www.icefaces.org</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jarconnection.com/developement/icefaces-liferay/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Go Programming Language</title>
		<link>http://www.jarconnection.com/developement/the-go-programming-language/</link>
		<comments>http://www.jarconnection.com/developement/the-go-programming-language/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 20:24:43 +0000</pubDate>
		<dc:creator>reych</dc:creator>
				<category><![CDATA[Developement]]></category>
		<category><![CDATA[programming languages]]></category>

		<guid isPermaLink="false">http://www.jarconnection.com/?p=72</guid>
		<description><![CDATA[Go, the new Google project was released a few days ago on the Google Tech Talks.]]></description>
			<content:encoded><![CDATA[<p><em><strong>Go</strong></em> is the new programming language developed by Google.  The basics of the <em><strong>Go</strong></em> programming language are intended for programmers familiar with C or <em>C++. </em></p>
<p>If you want to know more about it or <em>just take a look to the code you can visit the official site or click the videos:<br />
</em></p>
<p>Official site:  <a href="http://golang.org/" target="_blank">http://golang.org/</a></p>
<p><strong>Google Tech Talks (<span>October 30, 2009</span></strong><strong>)<br />
</strong></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/rKnDgT73v8s&amp;hl=es_ES&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/rKnDgT73v8s&amp;hl=es_ES&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><strong>First steps</strong></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/wwoWei-GAPo&amp;hl=es_ES&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/wwoWei-GAPo&amp;hl=es_ES&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jarconnection.com/developement/the-go-programming-language/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Velocity</title>
		<link>http://www.jarconnection.com/developement/velocity/</link>
		<comments>http://www.jarconnection.com/developement/velocity/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 11:04:40 +0000</pubDate>
		<dc:creator>reych</dc:creator>
				<category><![CDATA[Developement]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[templates]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[velocity]]></category>

		<guid isPermaLink="false">http://www.jarconnection.com/?p=48</guid>
		<description><![CDATA[Liferay uses Velocity templates not only to design a theme, also to reference objects defined in Java  code.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.liferay.com" target="_blank">Liferay</a> uses Velocity templates not only to design a theme, also to reference objects defined in Java  code.</p>
<p>Velocity is a Java-based template engine.  As we use Velocity for web development, web designers can work in parallel with Java programmers to develop web sites according to the Model-View-Controller (MVC) model. That means that web page designers can focus wholly on creating a site with an awesome, and programmers can focus solely on writing code.<br />
Velocity separates Java code from the web pages, making the web site more maintainable over its lifespan and providing a viable alternative to <a href="http://java.sun.com/products/jsp/" target="_blank">Java Server Pages</a> (JSPs) or <a href="http://www.php.net/" target="_blank">PHP</a> .</p>
<p>But Velocity&#8217;s capabilities reach well beyond the realm of the web; for example, it can be used to generate SQL, PostScript and XML from templates. It can be used either as a standalone utility for generating source code and reports, or as an integrated component of other systems. For instance, Velocity provides template services for the <a href="http://jakarta.apache.org/turbine/">Turbine</a> web application framework, together resulting in a view engine facilitating development of web applications according to a true MVC model.</p>
<p>Here are some links:<br />
<a href="http://velocity.apache.org/" target="_blank">Apache Velocity Project</a><br />
<a href="http://en.wikipedia.org/wiki/Apache_Velocity" target="_blank">Velocity on the Wikipedia</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jarconnection.com/developement/velocity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello World</title>
		<link>http://www.jarconnection.com/developement/hello-world/</link>
		<comments>http://www.jarconnection.com/developement/hello-world/#comments</comments>
		<pubDate>Sun, 09 Aug 2009 12:25:30 +0000</pubDate>
		<dc:creator>reych</dc:creator>
				<category><![CDATA[Developement]]></category>
		<category><![CDATA[liferay]]></category>

		<guid isPermaLink="false">http://www.jarconnection.com/?p=30</guid>
		<description><![CDATA[Welcome everybody!! I&#8217;m happy because today I release my new blog. At last!!!It&#8217;s been a long time working. I&#8217;ll start with some interesting books about &#8220;Liferay&#8221; on &#8220;Books&#8221; at the bottom section. I hope you&#8217;ll enjoy them!!]]></description>
			<content:encoded><![CDATA[<p>Welcome everybody!!</p>
<p>I&#8217;m happy because today I release my new blog. At last!!!It&#8217;s been a long time working.</p>
<p>I&#8217;ll start with some interesting books about &#8220;Liferay&#8221; on &#8220;Books&#8221; at the bottom section.</p>
<p>I hope you&#8217;ll enjoy them!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jarconnection.com/developement/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
