<?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; CMS</title>
	<atom:link href="http://www.jarconnection.com/category/cms/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>Firsts steps to Liferay Portal</title>
		<link>http://www.jarconnection.com/cms/firsts-steps-to-liferay-portal/</link>
		<comments>http://www.jarconnection.com/cms/firsts-steps-to-liferay-portal/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 15:03:53 +0000</pubDate>
		<dc:creator>reych</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[liferay]]></category>

		<guid isPermaLink="false">http://www.jarconnection.com/?p=134</guid>
		<description><![CDATA[This is the first of a serie of articles where you can learn how to develope a portal in Liferay.]]></description>
			<content:encoded><![CDATA[<p>This is the first of a serie of articles where you can learn how to develope a portal in Liferay.</p>
<p>We are going to install and fix all the necessary settings to work on a Windows XP system.</p>
<p>To install Liferay Portal is needed:</p>
<p>- Java 6 JDK<br />
(<a href="http://java.sun.com/javase/downloads/widget/jdk6.jsp" target="_blank">http://java.sun.com/javase/downloads/widget/jdk6.jsp</a>)</p>
<p>- Mysql Community Server 5.x<br />
(<a href="http://dev.mysql.com/downloads/mysql/" target="_blank">http://dev.mysql.com/downloads/mysql/</a>).<br />
You&#8217;ll need a database manager (Mysql Administrator or other).</p>
<p>- Liferay Portal 5.2.3 CE bundled with Tomcat 6.0<br />
(<a href="http://sourceforge.net/projects/lportal/files/Liferay%20Portal/liferay-portal-tomcat-6.0-5.2.3.zip" target="_blank">http://sourceforge.net/projects/lportal/files/Liferay%20Portal/liferay-portal-tomcat-6.0-5.2.3.zip</a>)</p>
<p>- Notepad++<br />
(<a href="http://notepad-plus-plus.org/download" target="_blank">http://notepad-plus-plus.org/download</a>)</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 &#8220;Environment Variables&#8221; at &#8220;System Properties&#8221; section on &#8220;My Computer&#8221;. Click on &#8220;New&#8221; and add the variable with this values:</p>
<p><em>variable name: JAVA_HOME<br />
variable value: C:\Java\jdk1.6.0_20<br />
(you have to put your jdk path here)</em></p>
<div id="attachment_143" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.jarconnection.com/wp-content/uploads/2010/06/java_home.jpg"><img class="size-medium wp-image-143 " title="java_home" src="http://www.jarconnection.com/wp-content/uploads/2010/06/java_home-300x172.jpg" alt="Environment Variable &quot;JAVA_HOME&quot;" width="300" height="172" /></a><p class="wp-caption-text">Fig. 1. Environment Variable &quot;JAVA_HOME&quot;</p></div>
<p>Then, edit the system variable &#8220;Path&#8221; and add the new variable and save all changes.</p>
<p><em>variable value: %JAVA_HOME%\bin; (don&#8217;t delete the other values)</em></p>
<div id="attachment_148" class="wp-caption aligncenter" style="width: 267px"><a href="http://www.jarconnection.com/wp-content/uploads/2010/06/path.jpg"><img class="size-medium wp-image-148" title="path" src="http://www.jarconnection.com/wp-content/uploads/2010/06/path-257x300.jpg" alt="path" width="257" height="300" /></a><p class="wp-caption-text">Fig. 2. &quot;JAVA_HOME&quot; added to &quot;Path&quot;</p></div>
<p>Liferay Portal works with a database called &#8220;hsql&#8221;. To work with a Mysql database, create a database called &#8220;lportal&#8221; and a user with all the grants to that database. Then create a file called &#8220;portal-ext.properties&#8221; on &#8220;C:\liferay-portal-5.2.3&#8243;. Copy and paste the next code in it:</p>
<p><em>jdbc.default.driverClassName=com.mysql.jdbc.Driver<br />
jdbc.default.url=jdbc:mysql://localhost/<strong>lportal</strong>?useUnicode=true&amp;characterEncoding=UTF-8&amp;useFastDateParsing=false<br />
jdbc.default.username=<strong>lportal</strong><br />
jdbc.default.password=<strong>lportal</strong></em></p>
<p>Where the words in bold are: database name, username and password.</p>
<p>On &#8220;<em>C:\liferay-portal-5.2.3\tomcat-6.0.18\webapps\ROOT</em>&#8221; delete the folders &#8220;<em>sevencogs-theme</em>&#8221; and &#8220;<em>sevencogs-hook</em>&#8221; (these are sample themes and hooks).</p>
<p>Now we can run Liferay Portal. Go to</p>
<p><em>C:\liferay-portal-5.2.3\tomcat-6.0.18\bin (or wherever your folder is unzipped)</em></p>
<p>and execute &#8220;startup.bat&#8221;. After a few minutes, the welcome page will appear on your browser.</p>
<div id="attachment_151" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.jarconnection.com/wp-content/uploads/2010/06/home.jpg"><img class="size-medium wp-image-151" title="home" src="http://www.jarconnection.com/wp-content/uploads/2010/06/home-300x182.jpg" alt="home page" width="300" height="182" /></a><p class="wp-caption-text">Fig. 3. Liferay Portal Home page</p></div>
<p>To get to the portal administration, sign in as:</p>
<p>username: test@liferay.com<br />
password: test</p>
<p>You can download a pdf version <a href="http://www.jarconnection.com/wp-content/uploads/2010/07/Firts-steps-to-Liferay-Portal.pdf" target="_blank">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jarconnection.com/cms/firsts-steps-to-liferay-portal/feed/</wfw:commentRss>
		<slash:comments>2</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>How To Access Objects From A Velocity Template</title>
		<link>http://www.jarconnection.com/cms/how-to-access-objects-from-a-velocity-template/</link>
		<comments>http://www.jarconnection.com/cms/how-to-access-objects-from-a-velocity-template/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 11:20:03 +0000</pubDate>
		<dc:creator>reych</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[templates]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[velocity]]></category>

		<guid isPermaLink="false">http://www.jarconnection.com/?p=45</guid>
		<description><![CDATA[You want to display an image in a template or a jsp file of a portlet? Velocity Theme variables can help you!!]]></description>
			<content:encoded><![CDATA[<p>Recently I started developing a new theme in Liferay. I had some troubles because I had to display images in the &#8220;portal_normal.vm&#8221; not only in the &#8220;custom.css&#8221; by requirements of design.</p>
<p>After looking in several posts and blogs and aiming us to display them in the css file (why we would not do it?) I found an interesting post about Velocity objects.</p>
<p>And now the is an application:</p>
<p>&lt;a href=&#8221;#&#8221;&gt;&lt;img src=&#8221;$themeDisplay.getPathThemeImages()/theme/logo.gif&#8221; alt=&#8221;Logo&#8221;&gt;&lt;/a&gt;</p>
<p>In the &#8220;Theme&#8221; scenario, we have the &#8220;$themeDisplay&#8221; variable. We can get the name of the css class, its folder path, the logo name, &#8230;</p>
<p>All these variables are in the &#8220;init.vm&#8221; file in :</p>
<p>{your  root\liferay-portal-5.2.3\tomcat-6.0.18\webapps\ROOT\html\themes\_unstyled\templates</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jarconnection.com/cms/how-to-access-objects-from-a-velocity-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Liferay 5.3 release</title>
		<link>http://www.jarconnection.com/cms/liferay-5-3-release/</link>
		<comments>http://www.jarconnection.com/cms/liferay-5-3-release/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 19:52:05 +0000</pubDate>
		<dc:creator>reych</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[liferay]]></category>

		<guid isPermaLink="false">http://www.jarconnection.com/?p=63</guid>
		<description><![CDATA[There are some features quite interesting, in special all the improvements planned for the 5.3 release. You can get the slides of the last symposium in Berlin.]]></description>
			<content:encoded><![CDATA[<p>There are some features quite interesting, in special all the improvements planned for the 5.3 release (about december/january). Here is a summary of some of them:</p>
<p>- Content Management:</p>
<ul>
<li>Sharing structures between communities.</li>
<li>Related contents</li>
<li>Tagcloud</li>
<li>Improvements in the management of taxonomies</li>
<li>Moderation / censorship of content</li>
</ul>
<p>- Custom Attributes</p>
<ul>
<li>Incorporate custom fields to most portlets</li>
</ul>
<p>- Knowledge base</p>
<ul>
<li>Functional module for knowledge management.</li>
</ul>
<p>- Integrated Workflow</p>
<p>- Audit and usage statistics</p>
<p>- Scalability</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jarconnection.com/cms/liferay-5-3-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Liferay Themes</title>
		<link>http://www.jarconnection.com/cms/liferay-themes/</link>
		<comments>http://www.jarconnection.com/cms/liferay-themes/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 10:52:00 +0000</pubDate>
		<dc:creator>reych</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[liferay]]></category>
		<category><![CDATA[velocity]]></category>

		<guid isPermaLink="false">http://www.jarconnection.com/?p=35</guid>
		<description><![CDATA[I&#8217;ve been busy lately, so I could be as consistent as I wanted. I started creating a new theme in Liferay, editing &#8220;custom.css&#8221; with my own design and modifying the Velocity templates (for more info, check this link). It&#8217;s quite easy its language, and you can create a new template in few minutes (if you [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been busy lately, so I could be as consistent as I wanted.</p>
<p>I started creating a new theme in Liferay, editing &#8220;custom.css&#8221; with my own design and modifying the Velocity templates (for more info, check this <a title="Apache Velocity" href="http://velocity.apache.org/engine/devel/user-guide.html" target="_blank">link</a>).</p>
<p>It&#8217;s quite easy its language, and you can create a new template in few minutes (if you have the stylesheet ready, of course). The trouble I found when trying to display the images in the template.  I tried to set a variable to display it but it didn&#8217;t work. I turned to Google but I didn&#8217;t found what I needed. Maybe I&#8217;ll have to look for it a bit more.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jarconnection.com/cms/liferay-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
