<?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>Unconventional Everything (Mikamai) &#187; Deployment</title>
	<atom:link href="http://blog.mikamai.com/tag/deployment/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mikamai.com</link>
	<description>Blogging on MIKAMAI and what it&#039;s up to: social media, startups and unconventional technologies</description>
	<lastBuildDate>Mon, 30 Apr 2012 10:45:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Vhost per tutti con i template per Apache</title>
		<link>http://blog.mikamai.com/2009/04/vhost-per-tutti-con-i-template-per-apache/</link>
		<comments>http://blog.mikamai.com/2009/04/vhost-per-tutti-con-i-template-per-apache/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 12:30:49 +0000</pubDate>
		<dc:creator>Giovanni Intini</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[Deployment]]></category>
		<category><![CDATA[Giovanni Intini]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://blog.mikamai.com/?p=717</guid>
		<description><![CDATA[Tutti i server di Mikamai usano Ubuntu Linux come distribuzione. Una delle cose migliori è il layout delle directory di Apache, in particolare il modo in cui si abilitano e disabilitano i Virtual Host. Nonostante la loro semplicità, la creazione dei nuovi vhost è un lavoro tedioso, che abbiamo risolto (alfine!) con uno script ruby [...]]]></description>
			<content:encoded><![CDATA[<p>Tutti i server di Mikamai usano Ubuntu Linux come distribuzione. Una delle cose migliori è il layout delle directory di Apache, in particolare il modo in cui si abilitano e disabilitano i Virtual Host. </p>
<p>Nonostante la loro semplicità, la creazione dei nuovi vhost è un lavoro tedioso, che abbiamo risolto (alfine!) con uno script ruby molto semplice (è richiesta la gemma optiflag):</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;"><span style="color:#008000; font-style:italic;">#!/usr/bin/env ruby</span>
&nbsp;
<span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#996600;">'rubygems'</span>
<span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#996600;">'optiflag'</span>
&nbsp;
<span style="color:#9966CC; font-weight:bold;">module</span> MyOptions extend OptiFlagSet
  flag <span style="color:#996600;">&quot;d&quot;</span> <span style="color:#9966CC; font-weight:bold;">do</span>
    description <span style="color:#996600;">&quot;The domain name the vhost should serve&quot;</span>
    long_form <span style="color:#996600;">&quot;domain&quot;</span>
  <span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
  optional_flag <span style="color:#996600;">&quot;a&quot;</span> <span style="color:#9966CC; font-weight:bold;">do</span>
    description <span style="color:#996600;">&quot;Email of the admin. If not specified defaults to info@domain&quot;</span>
    long_form <span style="color:#996600;">&quot;admin&quot;</span>
  <span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
  optional_switch_flag <span style="color:#996600;">&quot;w&quot;</span> <span style="color:#9966CC; font-weight:bold;">do</span>
    description <span style="color:#996600;">&quot;Adds www to non www redirection&quot;</span>
    long_form <span style="color:#996600;">&quot;www_redirect&quot;</span>
  <span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
  and_process!
<span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
flags = MyOptions.<span style="color:#9900CC;">flags</span>
&nbsp;
admin = flags.<span style="color:#9900CC;">a</span> ? flags.<span style="color:#9900CC;">a</span> : <span style="color:#996600;">&quot;info@#{flags.d}&quot;</span>
domain = flags.<span style="color:#9900CC;">d</span>
quoted_domain = flags.<span style="color:#9900CC;">d</span>.<span style="color:#CC0066; font-weight:bold;">gsub</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">/</span>\.<span style="color:#006600; font-weight:bold;">/</span>, <span style="color:#996600;">&quot;<span style="color:#000099;">\\</span>.&quot;</span><span style="color:#006600; font-weight:bold;">&#41;</span>
&nbsp;
TEMPLATE=<span style="color:#006600; font-weight:bold;">&lt;&lt;-</span>EOT
<span style="color:#006600; font-weight:bold;">&lt;</span>VirtualHost <span style="color:#006600; font-weight:bold;">*</span>:<span style="color:#006666;">80</span><span style="color:#006600; font-weight:bold;">&gt;</span>
        ServerName <span style="color:#008000; font-style:italic;">#{domain}</span>
        ServerAdmin <span style="color:#008000; font-style:italic;">#{admin} </span>
&nbsp;
        DocumentRoot <span style="color:#006600; font-weight:bold;">/</span>var<span style="color:#006600; font-weight:bold;">/</span>apps<span style="color:#006600; font-weight:bold;">/</span><span style="color:#008000; font-style:italic;">#{domain}</span>
        <span style="color:#006600; font-weight:bold;">&lt;</span>Directory <span style="color:#006600; font-weight:bold;">/&gt;</span>
                Options FollowSymLinks
                AllowOverride None
        <span style="color:#006600; font-weight:bold;">&lt;/</span>Directory<span style="color:#006600; font-weight:bold;">&gt;</span>
        <span style="color:#006600; font-weight:bold;">&lt;</span>Directory <span style="color:#006600; font-weight:bold;">/</span>var<span style="color:#006600; font-weight:bold;">/</span>apps<span style="color:#006600; font-weight:bold;">/</span><span style="color:#008000; font-style:italic;">#{domain}&gt;</span>
                Options Indexes FollowSymLinks MultiViews
                AllowOverride All 
                Order allow,deny
                allow from all
        <span style="color:#006600; font-weight:bold;">&lt;/</span>Directory<span style="color:#006600; font-weight:bold;">&gt;</span>
&nbsp;
        ErrorLog <span style="color:#006600; font-weight:bold;">/</span>var<span style="color:#006600; font-weight:bold;">/</span>log<span style="color:#006600; font-weight:bold;">/</span>apache2<span style="color:#006600; font-weight:bold;">/</span><span style="color:#008000; font-style:italic;">#{domain}.log</span>
&nbsp;
        <span style="color:#008000; font-style:italic;"># Possible values include: debug, info, notice, warn, error, crit,</span>
        <span style="color:#008000; font-style:italic;"># alert, emerg.</span>
        LogLevel warn
&nbsp;
        CustomLog <span style="color:#006600; font-weight:bold;">/</span>var<span style="color:#006600; font-weight:bold;">/</span>log<span style="color:#006600; font-weight:bold;">/</span>apache2<span style="color:#006600; font-weight:bold;">/</span><span style="color:#008000; font-style:italic;">#{domain}.log combined</span>
&nbsp;
<span style="color:#006600; font-weight:bold;">&lt;/</span>VirtualHost<span style="color:#006600; font-weight:bold;">&gt;</span>
EOT
&nbsp;
REDIRECTION=<span style="color:#006600; font-weight:bold;">&lt;&lt;-</span>EOT
<span style="color:#006600; font-weight:bold;">&lt;</span>VirtualHost <span style="color:#006600; font-weight:bold;">*</span>:<span style="color:#006666;">80</span><span style="color:#006600; font-weight:bold;">&gt;</span>
  ServerName www.<span style="color:#008000; font-style:italic;">#{domain}</span>
  ServerAdmin <span style="color:#008000; font-style:italic;">#{admin} </span>
&nbsp;
  RewriteEngine On
  RewriteCond <span style="color:#006600; font-weight:bold;">%</span><span style="color:#006600; font-weight:bold;">&#123;</span>HTTP_HOST<span style="color:#006600; font-weight:bold;">&#125;</span> ^www\\.<span style="color:#008000; font-style:italic;">#{quoted_domain}</span>
  RewriteRule <span style="color:#006600; font-weight:bold;">&#40;</span>.<span style="color:#006600; font-weight:bold;">*</span><span style="color:#006600; font-weight:bold;">&#41;</span> http:<span style="color:#006600; font-weight:bold;">//</span><span style="color:#008000; font-style:italic;">#{domain}/$1 [R=301,L]</span>
<span style="color:#006600; font-weight:bold;">&lt;/</span>VirtualHost<span style="color:#006600; font-weight:bold;">&gt;</span>
EOT
&nbsp;
<span style="color:#CC0066; font-weight:bold;">puts</span> TEMPLATE
<span style="color:#CC0066; font-weight:bold;">puts</span> REDIRECTION <span style="color:#9966CC; font-weight:bold;">if</span> flags.<span style="color:#9900CC;">w</span>?</pre></div></div>

<p>Lo usiamo in questo modo:</p>
<pre>
$ vhgen -d domain.com -w > /etc/apache2/sites-available/my_vhost
$ a2ensite my_vhost
</pre>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.wikio.it/vote?url=http%3A%2F%2Fblog.mikamai.com%2F2009%2F04%2Fvhost-per-tutti-con-i-template-per-apache%2F" title="Wikio IT"><img src="http://blog.mikamai.com/wp-content/plugins/sociable/images/wikio.png" title="Wikio IT" alt="Wikio IT" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.mikamai.com%2F2009%2F04%2Fvhost-per-tutti-con-i-template-per-apache%2F&amp;title=Vhost%20per%20tutti%20con%20i%20template%20per%20Apache&amp;bodytext=Tutti%20i%20server%20di%20Mikamai%20usano%20Ubuntu%20Linux%20come%20distribuzione.%20Una%20delle%20cose%20migliori%20%C3%A8%20il%20layout%20delle%20directory%20di%20Apache%2C%20in%20particolare%20il%20modo%20in%20cui%20si%20abilitano%20e%20disabilitano%20i%20Virtual%20Host.%20%0D%0A%0D%0ANonostante%20la%20loro%20semplicit%C3%A0%2C%20la%20creazion" title="Digg"><img src="http://blog.mikamai.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fblog.mikamai.com%2F2009%2F04%2Fvhost-per-tutti-con-i-template-per-apache%2F&amp;title=Vhost%20per%20tutti%20con%20i%20template%20per%20Apache&amp;notes=Tutti%20i%20server%20di%20Mikamai%20usano%20Ubuntu%20Linux%20come%20distribuzione.%20Una%20delle%20cose%20migliori%20%C3%A8%20il%20layout%20delle%20directory%20di%20Apache%2C%20in%20particolare%20il%20modo%20in%20cui%20si%20abilitano%20e%20disabilitano%20i%20Virtual%20Host.%20%0D%0A%0D%0ANonostante%20la%20loro%20semplicit%C3%A0%2C%20la%20creazion" title="del.icio.us"><img src="http://blog.mikamai.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.mikamai.com%2F2009%2F04%2Fvhost-per-tutti-con-i-template-per-apache%2F&amp;t=Vhost%20per%20tutti%20con%20i%20template%20per%20Apache" title="Facebook"><img src="http://blog.mikamai.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.mikamai.com%2F2009%2F04%2Fvhost-per-tutti-con-i-template-per-apache%2F&amp;title=Vhost%20per%20tutti%20con%20i%20template%20per%20Apache&amp;annotation=Tutti%20i%20server%20di%20Mikamai%20usano%20Ubuntu%20Linux%20come%20distribuzione.%20Una%20delle%20cose%20migliori%20%C3%A8%20il%20layout%20delle%20directory%20di%20Apache%2C%20in%20particolare%20il%20modo%20in%20cui%20si%20abilitano%20e%20disabilitano%20i%20Virtual%20Host.%20%0D%0A%0D%0ANonostante%20la%20loro%20semplicit%C3%A0%2C%20la%20creazion" title="Google Bookmarks"><img src="http://blog.mikamai.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fblog.mikamai.com%2F2009%2F04%2Fvhost-per-tutti-con-i-template-per-apache%2F&amp;title=Vhost%20per%20tutti%20con%20i%20template%20per%20Apache" title="Reddit"><img src="http://blog.mikamai.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.mikamai.com%2F2009%2F04%2Fvhost-per-tutti-con-i-template-per-apache%2F&amp;title=Vhost%20per%20tutti%20con%20i%20template%20per%20Apache&amp;source=Unconventional+Everything+%28Mikamai%29+Blogging+on+MIKAMAI+and+what+it%26%23039%3Bs+up+to%3A+social+media%2C+startups+and+unconventional+technologies&amp;summary=Tutti%20i%20server%20di%20Mikamai%20usano%20Ubuntu%20Linux%20come%20distribuzione.%20Una%20delle%20cose%20migliori%20%C3%A8%20il%20layout%20delle%20directory%20di%20Apache%2C%20in%20particolare%20il%20modo%20in%20cui%20si%20abilitano%20e%20disabilitano%20i%20Virtual%20Host.%20%0D%0A%0D%0ANonostante%20la%20loro%20semplicit%C3%A0%2C%20la%20creazion" title="LinkedIn"><img src="http://blog.mikamai.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://slashdot.org/bookmark.pl?title=Vhost%20per%20tutti%20con%20i%20template%20per%20Apache&amp;url=http%3A%2F%2Fblog.mikamai.com%2F2009%2F04%2Fvhost-per-tutti-con-i-template-per-apache%2F" title="Slashdot"><img src="http://blog.mikamai.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.mikamai.com%2F2009%2F04%2Fvhost-per-tutti-con-i-template-per-apache%2F&amp;t=Vhost%20per%20tutti%20con%20i%20template%20per%20Apache&amp;s=Tutti%20i%20server%20di%20Mikamai%20usano%20Ubuntu%20Linux%20come%20distribuzione.%20Una%20delle%20cose%20migliori%20%C3%A8%20il%20layout%20delle%20directory%20di%20Apache%2C%20in%20particolare%20il%20modo%20in%20cui%20si%20abilitano%20e%20disabilitano%20i%20Virtual%20Host.%20%0D%0A%0D%0ANonostante%20la%20loro%20semplicit%C3%A0%2C%20la%20creazion" title="Tumblr"><img src="http://blog.mikamai.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://twitter.com/home?status=Vhost%20per%20tutti%20con%20i%20template%20per%20Apache%20-%20http%3A%2F%2Fblog.mikamai.com%2F2009%2F04%2Fvhost-per-tutti-con-i-template-per-apache%2F" title="Twitter"><img src="http://blog.mikamai.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.mikamai.com/2009/04/vhost-per-tutti-con-i-template-per-apache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sweeter, Nicer Drupal with Capistrano</title>
		<link>http://blog.mikamai.com/2008/07/sweeter-nicer-drupal-with-capistrano/</link>
		<comments>http://blog.mikamai.com/2008/07/sweeter-nicer-drupal-with-capistrano/#comments</comments>
		<pubDate>Fri, 18 Jul 2008 11:34:43 +0000</pubDate>
		<dc:creator>Ivan Vaghi</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Capistrano]]></category>
		<category><![CDATA[Deployment]]></category>
		<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Montalbano]]></category>
		<category><![CDATA[RubyOnRails]]></category>

		<guid isPermaLink="false">http://mikamai.com/?p=75</guid>
		<description><![CDATA[We didn&#8217;t make a fuss about it (although we wish we had the time to do it :-) but we have recently released Montalbano.tv We are working hard to fatten our portfolio, and it has been great to put a new notch on the belt in our portfolio, side by side with WikiSAP.it. Both Montalbano [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://montalbano.tv" target="_blank"><img class="size-thumbnail wp-image-42 alignnone" style="border: 0pt none;" title="mont_color" src="http://blog.mikamai.com/wp-content/uploads/2008/07/mont_color.jpg" alt="" width="145" height="80" /></a></p>
<p>We didn&#8217;t make a fuss about it (although we wish we had the time to do it :-) but we have recently released <a href="http://montalbano.tv" target="_blank">Montalbano.tv</a></p>
<p>We are working hard to fatten our portfolio, and it has been great to put a new notch on the belt in our portfolio, side by side with <a onclick="return top.js.OpenExtLink(window,event,this)" href="http://wikisap.it/" target="_blank">WikiSAP.it</a>.</p>
<p>Both Montalbano and WikiSap are Drupal-based system, as they have a strong editorial component and make wide use of the CMS capabilities of <a href="http://drupal.com" target="_blank">Drupal</a>.</p>
<p>Drupal is very very nice to get started, but as clients start asking you for more complex features &#8211; yes they always do! &#8211; you have to develop custom modules, do strange magic with the rendering hooks and coordinate more and more people working on the same Drupal instance.  Not an easy task on Drupal, if you ask me.</p>
<p>What makes me proud about the people here at MIKAMAI is that we are never happy to just get the work done, but we are always try to extract every nugget of knowledge to hone the process and get the job done better and faster.  <a href="http://tempe.st/about/" target="_blank">Giovanni</a>, our Technical Director, is now working on our own Drupal distribution, where we try to address many of the problems that you meet when doing team development on Drupal.</p>
<p>One big point is the externalisation of logic from the DB to files, do that we can put everything nice and safe on <a href="http://git.or.cz/" target="_blank">Git</a>.  The other issue is the  deployment.  Drupal doesn&#8217;t really help with it..  fortunately we are all <a href="http://www.rubyonrails.org/" target="_blank">Ruby on Rails</a> developers and <a href="http://www.capify.org/" target="_blank">Capistrano</a> always lends an helping hand.  <a href="http://tempe.st/2008/07/deploying-drupal-with-capistrano/" target="_blank">Here are Giovanni&#8217;s thoughts and experience</a> on using <a href="http://www.capify.org/" target="_blank">Capistrano</a> to deploy Drupal applications in our projects. Enjoy the post.</p>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.wikio.it/vote?url=http%3A%2F%2Fblog.mikamai.com%2F2008%2F07%2Fsweeter-nicer-drupal-with-capistrano%2F" title="Wikio IT"><img src="http://blog.mikamai.com/wp-content/plugins/sociable/images/wikio.png" title="Wikio IT" alt="Wikio IT" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.mikamai.com%2F2008%2F07%2Fsweeter-nicer-drupal-with-capistrano%2F&amp;title=Sweeter%2C%20Nicer%20Drupal%20with%20Capistrano&amp;bodytext=%0D%0A%0D%0AWe%20didn%27t%20make%20a%20fuss%20about%20it%20%28although%20we%20wish%20we%20had%20the%20time%20to%20do%20it%20%3A-%29%20but%20we%20have%20recently%20released%20Montalbano.tv%0D%0A%0D%0AWe%20are%20working%20hard%20to%20fatten%20our%20portfolio%2C%20and%20it%20has%20been%20great%20to%20put%20a%20new%20notch%20on%20the%20belt%20in%20our%20portfolio%2C%20side%20" title="Digg"><img src="http://blog.mikamai.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fblog.mikamai.com%2F2008%2F07%2Fsweeter-nicer-drupal-with-capistrano%2F&amp;title=Sweeter%2C%20Nicer%20Drupal%20with%20Capistrano&amp;notes=%0D%0A%0D%0AWe%20didn%27t%20make%20a%20fuss%20about%20it%20%28although%20we%20wish%20we%20had%20the%20time%20to%20do%20it%20%3A-%29%20but%20we%20have%20recently%20released%20Montalbano.tv%0D%0A%0D%0AWe%20are%20working%20hard%20to%20fatten%20our%20portfolio%2C%20and%20it%20has%20been%20great%20to%20put%20a%20new%20notch%20on%20the%20belt%20in%20our%20portfolio%2C%20side%20" title="del.icio.us"><img src="http://blog.mikamai.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.mikamai.com%2F2008%2F07%2Fsweeter-nicer-drupal-with-capistrano%2F&amp;t=Sweeter%2C%20Nicer%20Drupal%20with%20Capistrano" title="Facebook"><img src="http://blog.mikamai.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.mikamai.com%2F2008%2F07%2Fsweeter-nicer-drupal-with-capistrano%2F&amp;title=Sweeter%2C%20Nicer%20Drupal%20with%20Capistrano&amp;annotation=%0D%0A%0D%0AWe%20didn%27t%20make%20a%20fuss%20about%20it%20%28although%20we%20wish%20we%20had%20the%20time%20to%20do%20it%20%3A-%29%20but%20we%20have%20recently%20released%20Montalbano.tv%0D%0A%0D%0AWe%20are%20working%20hard%20to%20fatten%20our%20portfolio%2C%20and%20it%20has%20been%20great%20to%20put%20a%20new%20notch%20on%20the%20belt%20in%20our%20portfolio%2C%20side%20" title="Google Bookmarks"><img src="http://blog.mikamai.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fblog.mikamai.com%2F2008%2F07%2Fsweeter-nicer-drupal-with-capistrano%2F&amp;title=Sweeter%2C%20Nicer%20Drupal%20with%20Capistrano" title="Reddit"><img src="http://blog.mikamai.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.mikamai.com%2F2008%2F07%2Fsweeter-nicer-drupal-with-capistrano%2F&amp;title=Sweeter%2C%20Nicer%20Drupal%20with%20Capistrano&amp;source=Unconventional+Everything+%28Mikamai%29+Blogging+on+MIKAMAI+and+what+it%26%23039%3Bs+up+to%3A+social+media%2C+startups+and+unconventional+technologies&amp;summary=%0D%0A%0D%0AWe%20didn%27t%20make%20a%20fuss%20about%20it%20%28although%20we%20wish%20we%20had%20the%20time%20to%20do%20it%20%3A-%29%20but%20we%20have%20recently%20released%20Montalbano.tv%0D%0A%0D%0AWe%20are%20working%20hard%20to%20fatten%20our%20portfolio%2C%20and%20it%20has%20been%20great%20to%20put%20a%20new%20notch%20on%20the%20belt%20in%20our%20portfolio%2C%20side%20" title="LinkedIn"><img src="http://blog.mikamai.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://slashdot.org/bookmark.pl?title=Sweeter%2C%20Nicer%20Drupal%20with%20Capistrano&amp;url=http%3A%2F%2Fblog.mikamai.com%2F2008%2F07%2Fsweeter-nicer-drupal-with-capistrano%2F" title="Slashdot"><img src="http://blog.mikamai.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.mikamai.com%2F2008%2F07%2Fsweeter-nicer-drupal-with-capistrano%2F&amp;t=Sweeter%2C%20Nicer%20Drupal%20with%20Capistrano&amp;s=%0D%0A%0D%0AWe%20didn%27t%20make%20a%20fuss%20about%20it%20%28although%20we%20wish%20we%20had%20the%20time%20to%20do%20it%20%3A-%29%20but%20we%20have%20recently%20released%20Montalbano.tv%0D%0A%0D%0AWe%20are%20working%20hard%20to%20fatten%20our%20portfolio%2C%20and%20it%20has%20been%20great%20to%20put%20a%20new%20notch%20on%20the%20belt%20in%20our%20portfolio%2C%20side%20" title="Tumblr"><img src="http://blog.mikamai.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://twitter.com/home?status=Sweeter%2C%20Nicer%20Drupal%20with%20Capistrano%20-%20http%3A%2F%2Fblog.mikamai.com%2F2008%2F07%2Fsweeter-nicer-drupal-with-capistrano%2F" title="Twitter"><img src="http://blog.mikamai.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.mikamai.com/2008/07/sweeter-nicer-drupal-with-capistrano/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

