<?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>TYPO3-Addict &#187; Speed</title>
	<atom:link href="http://www.typo3-addict.com/tag/speed/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.typo3-addict.com</link>
	<description>For those addicted to TYPO3</description>
	<lastBuildDate>Wed, 06 Jul 2011 08:08:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Speed up Firefox 3 Mac</title>
		<link>http://www.typo3-addict.com/2009/02/speed-up-firefox-3-mac/</link>
		<comments>http://www.typo3-addict.com/2009/02/speed-up-firefox-3-mac/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 20:47:21 +0000</pubDate>
		<dc:creator>Maarten</dc:creator>
				<category><![CDATA[Apple / Mac]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Speed]]></category>

		<guid isPermaLink="false">http://www.typo-addict.com/?p=356</guid>
		<description><![CDATA[I found a really useful post for speeding up Firefox 3 on Mac. Seems to work, especially with starting up. http://www.tonyspencer.com/2005/02/25/speed-up-firefox-with-these-tweaks/]]></description>
			<content:encoded><![CDATA[<p>I found a really useful post for speeding up Firefox 3 on Mac. Seems to work, especially with starting up.</p>
<p><a href="http://www.tonyspencer.com/2005/02/25/speed-up-firefox-with-these-tweaks/">http://www.tonyspencer.com/2005/02/25/speed-up-firefox-with-these-tweaks/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.typo3-addict.com/2009/02/speed-up-firefox-3-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TYPO3: Remove javascript warnings in the BE</title>
		<link>http://www.typo3-addict.com/2009/01/remove-javascript-warnings-in-the-be/</link>
		<comments>http://www.typo3-addict.com/2009/01/remove-javascript-warnings-in-the-be/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 07:18:25 +0000</pubDate>
		<dc:creator>Maarten</dc:creator>
				<category><![CDATA[TSConfig]]></category>
		<category><![CDATA[Speed]]></category>
		<category><![CDATA[Workflow]]></category>

		<guid isPermaLink="false">http://blog.emaux.nl/?p=237</guid>
		<description><![CDATA[Use the following in your TSConfig to disable warnings in the BE. This can be useful when you&#8217;re an experienced user. Just be careful, warning are not there just to anoy you # This option defines via a bitmask what to enable or disable # options.alertPopups = 255 (default value) # These options are possible: [...]]]></description>
			<content:encoded><![CDATA[<p>Use the following in your TSConfig to disable warnings in the BE. This can be useful when you&#8217;re an experienced user. Just be careful, warning are not there just to anoy you <img src='http://www.typo3-addict.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<pre># This option defines via a bitmask what to enable or disable
# options.alertPopups = 255 (default value)

# These options are possible:
# 1 - typeChange
# 2 - copy/move/paste
# 4 - delete
# 8 - frontend editing
# 128 - other - reserved but not used

# Example: disable warning by typeChange and copy/move/paste
# 255 - 1 -2 = 252
options.alertPopups = 252</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.typo3-addict.com/2009/01/remove-javascript-warnings-in-the-be/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TYPO3: Javascript at the bottom of your page</title>
		<link>http://www.typo3-addict.com/2009/01/javascript-at-the-bottom-of-your-page/</link>
		<comments>http://www.typo3-addict.com/2009/01/javascript-at-the-bottom-of-your-page/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 11:00:39 +0000</pubDate>
		<dc:creator>Maarten</dc:creator>
				<category><![CDATA[Snippets]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Speed]]></category>
		<category><![CDATA[Typoscript]]></category>

		<guid isPermaLink="false">http://blog.emaux.nl/?p=225</guid>
		<description><![CDATA[Yslow tells you to put your javascripts at the bottom of your pages. Normally when you include your JS files TYPO3 puts them in your head by default. To fix this you can easily: Old style: page.includeJS.file1 = file.js Solution: page.20 &#60; lib.javascript lib.javascript = HTML lib.javascript.value = &#60;script type="text/javascript" src="file.js"&#62;&#60;/script&#62; Note: In this example [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://developer.yahoo.com/yslow/">Yslow</a> tells you to put your javascripts at the bottom of your pages. Normally when you include your JS files TYPO3 puts them in your head by default. To fix this you can easily:</p>
<p><strong>Old style:</strong></p>
<pre lang="css">page.includeJS.file1 = file.js</pre>
<p><strong>Solution:</strong></p>
<pre lang="css">page.20 &lt; lib.javascript

lib.javascript = HTML
lib.javascript.value = &lt;script type="text/javascript" src="file.js"&gt;&lt;/script&gt;</pre>
<p><strong>Note:</strong></p>
<p>In this example I take it your content is in page.10<br />
If you already use page.20 than just take a higher value.</p>
<p>It&#8217;s not posible (as far as I know) to put the default js at the bottom, this is core stuff.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.typo3-addict.com/2009/01/javascript-at-the-bottom-of-your-page/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

