<?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>Byte-size</title>
	<atom:link href="http://www.bananus.dk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bananus.dk</link>
	<description>Miscellenous ramblings from just another programmer</description>
	<lastBuildDate>Fri, 25 Feb 2011 02:00:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Slow Gmail</title>
		<link>http://www.bananus.dk/2011/02/slow-gmail/</link>
		<comments>http://www.bananus.dk/2011/02/slow-gmail/#comments</comments>
		<pubDate>Fri, 25 Feb 2011 02:00:41 +0000</pubDate>
		<dc:creator>janus</dc:creator>
				<category><![CDATA[Gmail]]></category>
		<category><![CDATA[Troubleshooting]]></category>

		<guid isPermaLink="false">http://www.bananus.dk/?p=30</guid>
		<description><![CDATA[Recently my Gmail account has been extremely slow (when accessed by the browser). I tried following Google&#8217;s own suggestions but they did not solve the problem. Today, I noticed that logging on Gmail from another computer the problem disappeared only to re-appear when back at my normal workstation. Solution? I removed all gmail.com cookies, logged [...]]]></description>
			<content:encoded><![CDATA[<p>Recently my Gmail account has been extremely slow (when accessed by the browser). I tried following <a href="http://mail.google.com/support/bin/answer.py?hl=en&amp;answer=80446">Google&#8217;s own suggestions</a> but they did not solve the problem.</p>
<p>Today, I noticed that logging on Gmail from another computer the problem disappeared only to re-appear when back at my normal workstation.</p>
<p>Solution? I removed all <a href="http://gmail.com">gmail.com</a> cookies, logged in again and problem solved.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bananus.dk/2011/02/slow-gmail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Outlook Order E-mail Has Totals On Top</title>
		<link>http://www.bananus.dk/2010/07/outlook-order-e-mail-has-totals-on-top/</link>
		<comments>http://www.bananus.dk/2010/07/outlook-order-e-mail-has-totals-on-top/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 08:41:23 +0000</pubDate>
		<dc:creator>janus</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.bananus.dk/?p=25</guid>
		<description><![CDATA[In Magento 1.4.x the standard templates for order emails specify totals in a table using the tfoot tag. Unfortunately the HTML renderer in Outlook (at least in 2007) does not put the contents of tfoot at the bottom of the table &#8211; and hence your emails will look as if the totals are before the [...]]]></description>
			<content:encoded><![CDATA[<p>In Magento 1.4.x the standard templates for order emails specify totals in a table using the <code>tfoot</code> tag. Unfortunately the HTML renderer in Outlook (at least in 2007) does not put the contents of <code>tfoot</code> at the bottom of the table &#8211; and hence your emails will look as if the totals are before the order items.</p>
<p>This can easily be fixed by reordering the <code>tfoot </code>and <code>tbody</code> elements in <strong>default/template/email/order/items.phtml</strong>.</p>
<p>Note however that this breaks the <a href="http://www.w3.org/TR/html401/">HTML4 specification</a> that states that the <a href="http://www.w3.org/TR/html401/"><code>tfoot element must appear before <code>tbody</code></code></a><code>.</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bananus.dk/2010/07/outlook-order-e-mail-has-totals-on-top/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Inluding blocks in Magento CMS pages</title>
		<link>http://www.bananus.dk/2010/03/inluding-blocks-in-magento-cms-pages/</link>
		<comments>http://www.bananus.dk/2010/03/inluding-blocks-in-magento-cms-pages/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 23:21:31 +0000</pubDate>
		<dc:creator>janus</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.bananus.dk/?p=4</guid>
		<description><![CDATA[Including output from blocks is easily done using the following directive {{block type=&#34;module/block_name&#34; method=&#34;outputFunction&#34;}} You can pass it additional parameters by adding these to the directive using the same syntax as the type and method parameters. These extra parameters will make up the block&#8217;s data contents. The method parameter is optional defaults to toHtml. Including a [...]]]></description>
			<content:encoded><![CDATA[<p>Including output from blocks is easily done using the following directive</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">{{block type=&quot;module/block_name&quot; method=&quot;outputFunction&quot;}}</pre></div></div>

<p>You can pass it additional parameters by adding these to the directive using the same syntax as the <em>type </em>and <em>method</em> parameters. These extra parameters will make up the block&#8217;s data contents. The <em>method </em>parameter is optional defaults to <em>toHtml</em>.</p>
<p>Including a CMS block can be done by</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">{{block id=&quot;block_id&quot;}}</pre></div></div>

<p>All of this is (surprisingly) implemented in the Mage_Core_Model_Email_Template_Filter class. There are a number of other directives including <em>layout</em>, <em>skin</em>, <em>media</em>, <em>store</em>, <em>htmlescape</em>, <em>var</em>, <em>protocol</em>, <em>config </em>and <em>customvar</em>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bananus.dk/2010/03/inluding-blocks-in-magento-cms-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

