<?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>Bogdanovic</title>
	<atom:link href="http://www.bogdanovic.se/feed" rel="self" type="application/rss+xml" />
	<link>http://www.bogdanovic.se</link>
	<description>A blog about Linux, Mac OS X, SOA, Joomla and Wordpress</description>
	<lastBuildDate>Sun, 22 May 2011 04:05:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>How to upgrade Ubuntu 10.04 (Lucid Lynx) Server to 10.10 (Maverick Meerkat) Server</title>
		<link>http://www.bogdanovic.se/how-to-upgrade-ubuntu-10-04-lucid-lynx-to-10-10-maverick-meerkat-server</link>
		<comments>http://www.bogdanovic.se/how-to-upgrade-ubuntu-10-04-lucid-lynx-to-10-10-maverick-meerkat-server#comments</comments>
		<pubDate>Sun, 10 Apr 2011 06:13:03 +0000</pubDate>
		<dc:creator>Radoslav Bogdanovic</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.bogdanovic.se/?p=251</guid>
		<description><![CDATA[Install update manager $sudo apt-get install update-manager-core Change in release-ugrades file so that it says Prompt=normal instead of Prompt=LTS $sudo vi /etc/update-manager/release-upgrades Finally start the upgrade and answer yes [y] on all that is asked $sudo do-release-upgrade After the reboot you have now a 10.10 version running instead of 10.04]]></description>
			<content:encoded><![CDATA[<p>Install update manager<br />
	<raw>$sudo apt-get install update-manager-core</raw></p>
<p>Change in release-ugrades file so that it says <raw>Prompt=normal</raw> instead of <raw>Prompt=LTS </raw><br />
	<raw>$sudo vi /etc/update-manager/release-upgrades</raw></p>
<p>Finally start the upgrade and answer yes [y] on all that is asked<br />
	<raw>$sudo do-release-upgrade</raw></p>
<p>After the reboot you have now a 10.10 version running instead of 10.04</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bogdanovic.se/how-to-upgrade-ubuntu-10-04-lucid-lynx-to-10-10-maverick-meerkat-server/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding multiple sites or subdomains to Apache 2 in Ubuntu</title>
		<link>http://www.bogdanovic.se/adding-multiple-sites-or-subdomains-to-apache-2-in-ubuntu-10-04</link>
		<comments>http://www.bogdanovic.se/adding-multiple-sites-or-subdomains-to-apache-2-in-ubuntu-10-04#comments</comments>
		<pubDate>Sun, 10 Apr 2011 03:18:32 +0000</pubDate>
		<dc:creator>Radoslav Bogdanovic</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.bogdanovic.se/?p=245</guid>
		<description><![CDATA[Recently I have started my cloud experience by evaluating and testing out cloud computing at CityCloud the Swedish cloud computing provider. So far it has been a good experience. Anyway when you have your own server then you also want to host multiple sites or subdomains. In a shared hosting environment one would normally have [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Recently I have started my cloud experience by evaluating and testing out cloud computing at <a href="http://www.citycloud.eu/">CityCloud </a>the Swedish cloud computing provider. So far it has been a good experience. Anyway when you have your own server then you also want to host multiple sites or subdomains. In a shared hosting environment one would normally have support for handling multiple sites in cpanel or similar. However when you don&#8217;t have a panel application then one needs to do that manually and here how I have done that.</p>
<p style="text-align: justify;">First one need to add an A record to your DNS which points to your cloud computer IP address. This step is normally done at your registrar or where you have your name servers for your domain. Say that you have a domain called yourcloud.com and you want to add a subdomain called site1.</p>
<p>Next is the Apache setup.</p>
<p>One could start with following step with a copy of the default site definition<br />
<code>sudo cp /etc/apache2/sites-available/default /etc/apache2/sites-available/site1.yourcloud.com</code><br />
or just skip that step and just paste my already predefined site file.<br />
<code>sudo vi /etc/apache2/sites-available/site1.yourcloud.com</code><br />
Paste following and replace everything with <strong>site1.yourcloud.com</strong> with your own site and domain name.
<pre>
&lt;VirtualHost *:80&gt;
        ServerAdmin webmaster@site1.yourcloud.com
        ServerName site1.yourcloud.com
        DocumentRoot /var/www/site1.yourcloud.com/
        &lt;Directory /&gt;
                Options Indexes FollowSymLinks MultiViews
                AllowOverride None
                Order allow,deny
                allow from all
                DirectoryIndex index.php index.html
        &lt;/Directory&gt;
        ErrorLog /var/log/apache2/error.log
        # Possible values include: debug, info, notice, warn, error, crit,
        # alert, emerg.
        LogLevel warn
        CustomLog /var/log/apache2/access.log combined
&lt;/VirtualHost&gt;</pre>
<p>Save the file.</p>
<p>To activate your new site then execute command<br />
<code>sudo a2ensite site1.yourcloud.com</code></p>
<p>And finally restart Apache<br />
<code>sudo /etc/init.d/apache2 restart</code></p>
<p>Hopefully if your DNS change have kicked in you should now be able to browse to <code>site1.yourcloud.com</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bogdanovic.se/adding-multiple-sites-or-subdomains-to-apache-2-in-ubuntu-10-04/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Tomcat 7 on Ubuntu 10.04</title>
		<link>http://www.bogdanovic.se/installing-tomcat-7-on-ubuntu-10-04</link>
		<comments>http://www.bogdanovic.se/installing-tomcat-7-on-ubuntu-10-04#comments</comments>
		<pubDate>Fri, 08 Apr 2011 12:07:13 +0000</pubDate>
		<dc:creator>Radoslav Bogdanovic</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.bogdanovic.se/?p=230</guid>
		<description><![CDATA[After one have installed JDK 6 then do following steps to install Tomcat 7 wget http://apache.dataphone.se/tomcat/tomcat-7/v7.0.12/bin/apache-tomcat-7.0.12.tar.gz tar xvfz apache-tomcat-7.0.12.tar.gz sudo mv apache-tomcat-7.0.12 /usr/local/tomcat7 For autostart create following script in /etc/init.d sudo vi /etc/init.d/tomcat7 Paste in the following # Tomcat auto-start # # description: Auto-starts tomcat 7 # processname: tomcat7 # pidfile: /var/run/tomcat.pid export JAVA_HOME=/usr/lib/jvm/java-6-sun case [...]]]></description>
			<content:encoded><![CDATA[<p>After one have installed JDK 6 then do following steps to install Tomcat 7</p>
<pre>
wget http://apache.dataphone.se/tomcat/tomcat-7/v7.0.12/bin/apache-tomcat-7.0.12.tar.gz
tar xvfz apache-tomcat-7.0.12.tar.gz
sudo mv apache-tomcat-7.0.12 /usr/local/tomcat7
</pre>
<p>For autostart create following script in /etc/init.d</p>
<pre>sudo vi /etc/init.d/tomcat7</pre>
<p>Paste in the following</p>
<pre># Tomcat auto-start
#
# description: Auto-starts tomcat 7
# processname: tomcat7
# pidfile: /var/run/tomcat.pid 

export JAVA_HOME=/usr/lib/jvm/java-6-sun 

case $1 in
start)
        sh /usr/local/tomcat7/bin/startup.sh
        ;;
stop)
        sh /usr/local/tomcat7/bin/shutdown.sh
        ;;
restart)
        sh /usr/local/tomcat7/bin/shutdown.sh
        sh /usr/local/tomcat7/bin/startup.sh
        ;;
esac
exit 0</pre>
<p>Save the file and set executable permissions</p>
<pre>sudo chmod 755 /etc/init.d/tomcat7</pre>
<p>Link the startup script to startup folders</p>
<pre>sudo ln -s /etc/init.d/tomcat7 /etc/rc1.d/K99tomcat
sudo ln -s /etc/init.d/tomcat7 /etc/rc2.d/S99tomcat</pre>
<p>Finally test to start</p>
<pre>sudo /etc/init.d/tomcat7 start</pre>
<p>Now  open url <a href="http://yourserver.com:8080/">http://yourserver.com:8080/</a></p>
<p>Almost the complete description of this installation was taken from the blog post <a href="http://www.howtogeek.com/howto/linux/installing-tomcat-6-on-ubuntu/">http://www.howtogeek.com/howto/linux/installing-tomcat-6-on-ubuntu/ </a>but adapted to Tomcat 7. It turns out that it works perfectly for Tomcat 7 as well as Tomcat 6.</p>
<p>It might seem as a bit unnecessary to duplicate most of the steps from an already existing blog post. However this is more for my own reference and on occasion blogs and useful posts disappear.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bogdanovic.se/installing-tomcat-7-on-ubuntu-10-04/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Oracle (Sun) JDK 6 on Ubuntu 10.04</title>
		<link>http://www.bogdanovic.se/installing-oracle-sun-jdk-6-on-ubuntu</link>
		<comments>http://www.bogdanovic.se/installing-oracle-sun-jdk-6-on-ubuntu#comments</comments>
		<pubDate>Fri, 08 Apr 2011 09:05:58 +0000</pubDate>
		<dc:creator>Radoslav Bogdanovic</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.bogdanovic.se/?p=222</guid>
		<description><![CDATA[To install Oracle (Sun) JDK 6 on Ubuntu do the following steps First to get the add-apt-repository support do the following command sudo apt-get install python-software-properties Then sudo add-apt-repository ppa:sun-java-community-team/sun-java6 sudo apt-get update sudo apt-get install sun-java6-jdk # to set this as default java version sudo update-java-alternatives -s java-6-sun Finally do a test with java [...]]]></description>
			<content:encoded><![CDATA[<p>To install Oracle (Sun) JDK 6 on Ubuntu do the following steps</p>
<p>First to get the add-apt-repository support do the following command<br />
<code>sudo apt-get install python-software-properties</code></p>
<p>Then
<pre>sudo add-apt-repository ppa:sun-java-community-team/sun-java6
sudo apt-get update
sudo apt-get install sun-java6-jdk
# to set this as default java version
sudo update-java-alternatives -s java-6-sun </pre>
<p>Finally do a test with <code>java -version</code></p>
<p>Almost the complete description of this installation was taken from the blog post <a href="http://thilina.gunarathne.org/2011/02/installing-sun-oracle-jdk-6-on-ubuntu.html">http://thilina.gunarathne.org/2011/02/installing-sun-oracle-jdk-6-on-ubuntu.html</a></p>
<p>These steps were successfully executed on Ubuntu 10.04 64-bit. However in the original post this was done on Ubuntu 10.10.</p>
<p>It might seem as a bit unnecessary to duplicate most of the steps from an already existing blog post. However this is more for my own reference and on occasion blogs and useful posts disappear.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bogdanovic.se/installing-oracle-sun-jdk-6-on-ubuntu/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Really amusing article &#8220;Why PHP is better than Ruby&#8221;</title>
		<link>http://www.bogdanovic.se/really-amusing-article-why-php-is-better-than-ruby</link>
		<comments>http://www.bogdanovic.se/really-amusing-article-why-php-is-better-than-ruby#comments</comments>
		<pubDate>Thu, 24 Feb 2011 09:49:04 +0000</pubDate>
		<dc:creator>Radoslav Bogdanovic</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.bogdanovic.se/?p=219</guid>
		<description><![CDATA[Ran across this really amusing article on the subject &#8220;Why PHP is better than Ruby&#8221;. I must admit that I never have done any Ruby development myself but have done some PHP programming even if I cannot consider myself as any expert. The article starts with&#8230; &#34;PHP is better than ruby. There, I said it. [...]]]></description>
			<content:encoded><![CDATA[<p>Ran across this really amusing article on the subject &ldquo;<a href="http://najafali.com/php-is-better-than-ruby.html">Why PHP is better than Ruby</a>&rdquo;. I must admit that I never have done any Ruby development myself but have done some PHP programming even if I cannot consider myself as any expert. The article starts with&#8230;</p>
<p>&quot;PHP is better than ruby. There, I said it. In this article I&#39;m going to show you why, and probably upset some twenty-something, flip-flop clad, mac-using hippie fanboys in the process.&quot;</p>
<p>Anyway a must read and look at the first comment as well. You will understand after you have read the article.<br />
	&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bogdanovic.se/really-amusing-article-why-php-is-better-than-ruby/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JBoss AS6 Released &#8211; Featuring the new Java EE6 Web Profile</title>
		<link>http://www.bogdanovic.se/jboss-as6-released-featuring-the-new-java-ee6-web-profile</link>
		<comments>http://www.bogdanovic.se/jboss-as6-released-featuring-the-new-java-ee6-web-profile#comments</comments>
		<pubDate>Fri, 14 Jan 2011 05:34:11 +0000</pubDate>
		<dc:creator>Radoslav Bogdanovic</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.bogdanovic.se/?p=214</guid>
		<description><![CDATA[It seems that the final version of JBoss Application Server 6&#160;has been released. This&#160;seemed to have happend just before the new year on December 28th and it is available as download from jboss.org]]></description>
			<content:encoded><![CDATA[<p>It seems that the final version of JBoss Application Server 6&nbsp;has been released. This&nbsp;seemed to have happend just before the new year on December 28th and it is available as download from <a href="http://www.jboss.org/jbossas/downloads.html">jboss.org</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bogdanovic.se/jboss-as6-released-featuring-the-new-java-ee6-web-profile/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Database Testing</title>
		<link>http://www.bogdanovic.se/database-testing</link>
		<comments>http://www.bogdanovic.se/database-testing#comments</comments>
		<pubDate>Thu, 11 Nov 2010 13:36:39 +0000</pubDate>
		<dc:creator>Radoslav Bogdanovic</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.bogdanovic.se/?p=203</guid>
		<description><![CDATA[Really good article on&#160; Database Testing: How to Regression Test a Relational Database It&#39;s a good summary on what needs and could be done in that area as well what different tools can used in the process.]]></description>
			<content:encoded><![CDATA[<p>Really good article on&nbsp;<a href="http://www.agiledata.org/essays/databaseTesting.html"> Database Testing: How to Regression Test a Relational Database</a></p>
<p>It&#39;s a good summary on what needs and could be done in that area as well what different tools can used in the process.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bogdanovic.se/database-testing/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MAMP Pro</title>
		<link>http://www.bogdanovic.se/mamp-pro</link>
		<comments>http://www.bogdanovic.se/mamp-pro#comments</comments>
		<pubDate>Fri, 07 May 2010 09:46:05 +0000</pubDate>
		<dc:creator>Radoslav Bogdanovic</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[MAMP]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[postfix]]></category>
		<category><![CDATA[XAMPP]]></category>

		<guid isPermaLink="false">http://www.bogdanovic.se/?p=153</guid>
		<description><![CDATA[I have earlier tried to use the free MAMP and found it to be useful but it had some drawbacks such as not being able to Start servers on system startup Easy configuration The solution to all of this is obviously to use MAMP Pro who have all of these features but it also costs [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">I have earlier tried to use the free MAMP and found it to be useful but it had some drawbacks such as not being able to</p>
<ul>
<li>Start servers on system startup</li>
<li>Easy configuration</li>
</ul>
<p style="text-align: justify;">The solution to all of this is obviously to use MAMP Pro who have all of these features but it also costs $59 to register.  Perhaps not that much but nevertheless still too much for me. Also the fact that there is a pro alternative made me feel that I was missing something and it was not that obvious how to tune everything in the free version of MAMP. I have used XAMPP instead as it just felt easier to tune and it was available for free. Anyway some days ago MacUpdate Promo had an offer for registering MAMP Pro for 51% off the regular price and now I felt that the price was more for my pocket  and I﻿  registered MAMP Pro. I must admit that I really never had tested MAMP PRO earlier as I always was opting for the free standard version.</p>
<p style="text-align: justify;">To my surprise everything just worked perfectly. I could not complain on anything. I could even get the postfix working. I am really a happy user of MAMP Pro. The only problem that I did have was with the postfix setup and that was due to the fact that my ISP at home blocked port 25. After some unsuccessful searches on the internet I managed to solve the problem by myself. The solution was to add the new port number 26 separated by a colon (:) to Host. In my case it was just to add :26 at the end of the Host in the postfix &#8220;Smart Host&#8221; configuration.</p>
<p><img style="display: block; margin-left: auto; margin-right: auto;" title="MAMP PRO-smarthosts.png" src="http://www.bogdanovic.se/wp-content/uploads/2010/05/MAMP-PRO-smarthosts.png" border="0" alt="MAMP PRO-smarthosts.png" width="534" height="213" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bogdanovic.se/mamp-pro/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Mac Mini (Intel mid 2006)</title>
		<link>http://www.bogdanovic.se/my-mac-mini-intel-mid-2006</link>
		<comments>http://www.bogdanovic.se/my-mac-mini-intel-mid-2006#comments</comments>
		<pubDate>Tue, 30 Mar 2010 10:54:33 +0000</pubDate>
		<dc:creator>Radoslav Bogdanovic</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://www.bogdanovic.se/?p=138</guid>
		<description><![CDATA[I have been thinking about what to do with my Mac Mini (Intel mid 2006 version). I have been using it more as a file server as I have 2 external USB drives connected. The internal HD is just 80GB and feels a bit too small to use for anything useful. I really like the [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify; ">I have been thinking about what to do with my Mac Mini (Intel mid 2006 version). I have been using it more as a file server as I have 2 external USB drives connected. The internal HD is just 80GB and feels a bit too small to use for anything useful. I really like the Mac Mini as it is always powered on and completely silent. Actually an ideal candidate for a small home server. The processor is a dual core 1.66GHz. </p>
<p style="text-align: justify; ">Late back in 2006 I did a memory upgrade to the 2GB maximum for the device and remembered how difficult it was to open the case. At that time there were no 2.5 inch SATA HD drives with more storage space than&nbsp;160GB so I did not bother to change the HD at the same time as I did the memory upgrade. </p>
<p style="text-align: justify; ">Anyway last week I finally decided that it was time to replace the 80GB HD with a 500GB. After 1 or 2 hours I managed to change the HD and got all pieces back together. I then did a install of latest Mac OSX e.g. Snow Leopard and the Mac Mini was up and running again.</p>
<p style="text-align: justify; ">Next step is to install VMware Fusion 3.0 as my intention is to install Ubuntu Server 9.10 and also an experimental Windows Server 2008 with Active Directory. Even if one can install MAMP or XAMPP directly in OSX&nbsp;to get&nbsp;LAMP server functionality then Ubuntu is much easier to install and get working with all LAMP features.&nbsp; &nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bogdanovic.se/my-mac-mini-intel-mid-2006/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Template Frameworks for Joomla and WordPress</title>
		<link>http://www.bogdanovic.se/template-frameworks-for-joomla-and-wordpress</link>
		<comments>http://www.bogdanovic.se/template-frameworks-for-joomla-and-wordpress#comments</comments>
		<pubDate>Tue, 08 Dec 2009 11:34:06 +0000</pubDate>
		<dc:creator>Radoslav Bogdanovic</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.bogdanovic.se/template-frameworks-for-joomla-and-wordpress</guid>
		<description><![CDATA[It seems that the new fashion in template creation for Joomla and WordPress is frameworks as it makes it easier to produce new templates every month. In the Joomla world we are used to these well known template clubs where one can get really nice and cool templates with all latest Web 2.0 features. To [...]]]></description>
			<content:encoded><![CDATA[<div align="justify">It seems that the new fashion in template creation for Joomla and WordPress is frameworks as it makes it easier to produce new templates every month. In the Joomla world we are used to these well known template clubs where one can get really nice and cool templates with all latest Web 2.0 features. To name a few of these such as <a href="http://www.rockettheme.com">RocketTheme</a> and <a href="http://www.yootheme.com">YOOtheme</a> for Joomla where one for a reasonable price $75 for one year subscription get access and support to their templates. I am subscribing to both of these template clubs as they seem to be the one according to my opinion who are the leading ones.</div>
<h2>Gantry</h2>
<div align="justify"><a href="http://www.rockettheme.com/">RocketTheme</a> have recently launched its Gantry framework which look very promising. With the December 2009 template named Reaction we get the first glimpse of what is possible with the new Gantry template framework.</div>
<h3>Key Features</h3>
<div align="justify">The Gantry framework is packed with many great features that enable the rapid development of feature-rich designs with a minimum amount of effort. Some sample of the features Gantry brings to the table:</div>
<ul>
<li>960 Grid System (<a href="http://960.gs">http://960.gs</a>) for simple consistent layout </li>
<li>Cleaner more understandable index.php. All the complicated bits are handled for you in the Gantry core. </li>
<li>Flexibility to configure up to 6 modules in row position. </li>
<li>65 base module positions in the Gantry core. These can be easily extended to add more </li>
<li>36 possible combinations for the layout of the mainbody/sidebars alone! </li>
<li>Flexibility to configure different grid-size layouts based on number of published modules. You are not forced to use the same grid layout for every page </li>
<li>12 built-in Gantry Features like Logo, font-sizer, to-top smooth slider. Easily create your own to add more functionality with little coding required. </li>
<li>Ability to force module display and &#8216;blank&#8217; module positions for advanced module placement ability. </li>
<li>Stunning new Admin interface providing better usability and control. </li>
<li>Unique Layout controls allow you to configure your layout without having to do math or ever create a &#8216;broken&#8217; layout. </li>
<li>Layout controls provide visual representation of your front-end layout for simple and intuitive customization. </li>
<li>Gantry is XML driven, adding another row of completely flexible module positions is as simple as editing one XML file. </li>
<li>New flexible parameter system allows loading preset theme attributes and modifying for a custom design. Also support session and cookie level overriding for development. </li>
<li>All new table-less HTML overrides based on the excellent GNU/GPLv2 overrides from <a href="http://www.yootheme.com/">YOOtheme</a> </li>
<li>New standard typography and Joomla core elements styling </li>
<li>New advanced caching system makes using Gantry really fast! </li>
<li>All configuration state is stored in params.ini and cached for speed. </li>
<li>Optimized codebase with speed, size, and reuse core tenants of the framework design </li>
</ul>
<h2>Warp5</h2>
<p><a href="http://www.yootheme.com/">YOOtheme</a> have their template framework called <a href="http://warp.yootheme.com">Warp5</a>. That template framework was introduced with the July 2009 template named Phoenix.</p>
<h3>Key Features</h3>
<p><a href="http://warp.yootheme.com/">Warp5</a> is a fast and powerful template framework for Joomla. It lets you create sophisticated templates in no time, even for comprehensive websites. It provides a hybrid fluid-pixel grid and all the elaborate functionalities that make our templates easy to edit, nice to look at and super fast, in every browser.</p>
<ul>
<li>Flexible Layout &#8211; The flexible grid with its modern multi column layout lets you achieve any design layout. </li>
<li>Menu System &#8211; Create clearly arranged &amp; even comprehensive interfaces with Warp&#8217;s enhanced menu system. </li>
<li>Developer Toolbox &#8211; CSS, JS and PHP kits for rapid template development make creating websites a breeze. </li>
<li>Module System &#8211; Warp provides a clear grid for modules and a wide diversity of templates for module variations. </li>
<li>Ultra Fast Loading &#8211; Optimal loading time thanks to minimal file requests, gzip compression and image sprites. &#8211; Search Engine Optimized </li>
<li>Search engine friendly 2-1-3 column ordering for fully accessible sites, even without JS. </li>
</ul>
<div align="justify">In the WordPress world we have <a href="http://diythemes.com/thesis">Thesis</a> and <a href="http://headwaythemes.com">Headway</a> even if these more provide the framework with rudimentary looks. This site is actually using the <a href="http://diythemes.com/thesis">Thesis</a> theme with a free “<a href="http://thesisthemes.com/free-thesis-skins/fresh-company/">Fresh Company</a>” skin from <a href="http://thesisthemes.com/">ThesisThemes</a> who specialize in providing customizations for the <a href="http://diythemes.com/thesis">Thesis</a> theme.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.bogdanovic.se/template-frameworks-for-joomla-and-wordpress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

