<?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; TSConfig</title>
	<atom:link href="http://www.typo3-addict.com/category/tsconfig/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>TYPO3: RTE embed / iframe tag</title>
		<link>http://www.typo3-addict.com/2011/04/typo3-rte-embed-iframe-tag-tt_news/</link>
		<comments>http://www.typo3-addict.com/2011/04/typo3-rte-embed-iframe-tag-tt_news/#comments</comments>
		<pubDate>Thu, 28 Apr 2011 13:52:43 +0000</pubDate>
		<dc:creator>Maarten</dc:creator>
				<category><![CDATA[RTE]]></category>
		<category><![CDATA[Snippets]]></category>
		<category><![CDATA[TSConfig]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Typoscript]]></category>

		<guid isPermaLink="false">http://www.typo3-addict.com/?p=1052</guid>
		<description><![CDATA[According to Google Analytics a lot of people are currently looking for a way to use embed tags within the (tt_news) RTE. By default the TYPO3 RTE will remove these embed tags, but it&#8217;s fairly easy to change this. In this tutorial I&#8217;ll show you how to insert an iframe, within the TYPO3 RTE. Embedding [...]]]></description>
			<content:encoded><![CDATA[<p>According to Google Analytics a lot of people are currently looking for a way to use embed tags within the (tt_news) RTE. By default the TYPO3 RTE will remove these embed tags, but it&#8217;s fairly easy to change this. In this tutorial I&#8217;ll show you how to insert an iframe, within the TYPO3 RTE.</p>
<p><span id="more-1052"></span><br />
<strong>Embedding a Vimeo video </strong></p>
<p>Vimeo uses an iframe:<br />
<iframe src="http://player.vimeo.com/video/16458561?title=0&amp;byline=0&amp;portrait=0" frameborder="0" height="225" width="400"></iframe></p>
<pre>&lt;iframe src="http://player.vimeo.com/video/16458561?title=0&amp;amp;byline=0&amp;amp;portrait=0" frameborder="0" height="225" width="400"&gt;&lt;/iframe&gt;</pre>
<p>The most obvious way would be: Switch to HTML modus in the RTE, paste the code and save the content element. But as you might have experienced, this way you&#8217;ll end up with a nice HTML embed code printed in the frontend. Not so useful&#8230;</p>
<p><strong>How to fix this?!</strong><br />
Since Vimeo uses an iframe, we need to make sure the RTE accepts this iframe-tag. So we need to change RTE behaviour when saving the content element or tt_news record. Insert the following TSConfig configuration into the Page TSConfig field:</p>
<pre>RTE.default.proc.allowTags := addToList(iframe)
RTE.default.proc.entryHTMLparser_db.allowTags := addToList(iframe)</pre>
<p>If you want to insert the iframe outside of a block tag like a P or a DIV, than you&#8217;ll need to following as well:</p>
<pre>
RTE.default.proc.allowTagsOutside := addToList(iframe)
</pre>
<p>Now the RTE will preserve the iframe when saving. But&#8230; still no iframe in the frontend! <img src='http://www.typo3-addict.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /><br />
The extension css_styled_content doesn&#8217;t render an iframe by default, so let&#8217;s change this:</p>
<p>In your TypoScript constants add the iframe to the following (default) code:</p>
<pre>styles.content.links {
  allowTags  (
         b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,
         em,li,ul,ol,blockquote,strike,del,ins,span,h1,h2,h3,h4,
         h5,h6,address,iframe
  )
}</pre>
<p>Take a look in the frontend <img src='http://www.typo3-addict.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  If everything went well you can now see the Vimeo videoplayer.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.typo3-addict.com/2011/04/typo3-rte-embed-iframe-tag-tt_news/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>TYPO3: Hide records from static_info_tables in the rootpage</title>
		<link>http://www.typo3-addict.com/2010/05/hide-records-from-static_info_tables-in-the-rootpage/</link>
		<comments>http://www.typo3-addict.com/2010/05/hide-records-from-static_info_tables-in-the-rootpage/#comments</comments>
		<pubDate>Wed, 05 May 2010 08:50:26 +0000</pubDate>
		<dc:creator>Maarten</dc:creator>
				<category><![CDATA[Snippets]]></category>
		<category><![CDATA[TSConfig]]></category>
		<category><![CDATA[Configuration]]></category>

		<guid isPermaLink="false">http://blog.mmwebdesign.eu/?p=70</guid>
		<description><![CDATA[After you installed static_info_tables in your TYPO3 installtion, you get a whole bunch of records displayed in the rootpage. This really slows down the page, which isn&#8217;t funny when you work a lot with usergroups. You can hide all of these records with a simple line in your BE-User-TSConfig. Insert the following User TSConfig into [...]]]></description>
			<content:encoded><![CDATA[<p>After you installed static_info_tables in your TYPO3 installtion, you get a whole bunch of records displayed in the rootpage. This really slows down the page, which isn&#8217;t funny when you work a lot with usergroups. You can hide all of these records with a simple line in your BE-User-TSConfig.<span id="more-70"></span></p>
<p>Insert the following User TSConfig into your own userrecord or in the usergroup to which you belong (i.e. Admins).</p>
<pre>mod.web_list.hideTables=static_template, static_countries,
static_country_zones, static_currencies, static_languages,
static_territories, static_taxes, static_markets</pre>
<p><strong>IMPORTANT:</strong><br />
I had to use spaces in the code above in order to display it right. DON&#8217;T use them in your TSConfig!</p>
<p><!-- .googleAdsenseTop {  display: none; } --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.typo3-addict.com/2010/05/hide-records-from-static_info_tables-in-the-rootpage/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>TYPO3: Clear all cache for non-admins</title>
		<link>http://www.typo3-addict.com/2009/03/clear-all-cache-for-non-admins/</link>
		<comments>http://www.typo3-addict.com/2009/03/clear-all-cache-for-non-admins/#comments</comments>
		<pubDate>Sun, 08 Mar 2009 10:44:24 +0000</pubDate>
		<dc:creator>Maarten</dc:creator>
				<category><![CDATA[Snippets]]></category>
		<category><![CDATA[TSConfig]]></category>
		<category><![CDATA[Typoscript]]></category>

		<guid isPermaLink="false">http://www.typo3-addict.com/?p=394</guid>
		<description><![CDATA[With this line of User TSConfig you can enable non-be-admin&#8217;s to clear all cache the way an admin would. options.clearCache.all = 1]]></description>
			<content:encoded><![CDATA[<p>With this line of User TSConfig you can enable non-be-admin&#8217;s to clear all cache the way an admin would.</p>
<pre>options.clearCache.all = 1</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.typo3-addict.com/2009/03/clear-all-cache-for-non-admins/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>TYPO3: Always a &#8216;Save and create new&#8217; button</title>
		<link>http://www.typo3-addict.com/2009/01/always-a-save-and-create-new-button/</link>
		<comments>http://www.typo3-addict.com/2009/01/always-a-save-and-create-new-button/#comments</comments>
		<pubDate>Thu, 15 Jan 2009 20:04:46 +0000</pubDate>
		<dc:creator>Maarten</dc:creator>
				<category><![CDATA[TSConfig]]></category>

		<guid isPermaLink="false">http://www.typo-addict.com/?p=311</guid>
		<description><![CDATA[Some default records and extension records offer a &#8216;save and create new&#8217; button. Which is very usefull when making a lot of new records in a row. This line makes that button available for every kind of record: ## Always a save and create new button options.saveDocNew = 1 Place this line in your TSConfig&#8230;]]></description>
			<content:encoded><![CDATA[<p>Some default records and extension records offer a &#8216;save and create new&#8217; button. Which is very usefull when making a lot of new records in a row. This line makes that button available for every kind of record:</p>
<p><img class="alignnone size-full wp-image-312" title="createnewbutton" src="http://www.typo-addict.com/wp-content/uploads/2009/01/createnewbutton.png" alt="createnewbutton" width="71" height="22" /></p>
<pre>## Always a save and create new button
options.saveDocNew = 1</pre>
<p>Place this line in your TSConfig&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.typo3-addict.com/2009/01/always-a-save-and-create-new-button/feed/</wfw:commentRss>
		<slash:comments>2</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: The Clipboard</title>
		<link>http://www.typo3-addict.com/2009/01/the-clipboard/</link>
		<comments>http://www.typo3-addict.com/2009/01/the-clipboard/#comments</comments>
		<pubDate>Sun, 04 Jan 2009 06:30:18 +0000</pubDate>
		<dc:creator>Maarten</dc:creator>
				<category><![CDATA[TSConfig]]></category>
		<category><![CDATA[Configuration]]></category>

		<guid isPermaLink="false">http://blog.emaux.nl/?p=221</guid>
		<description><![CDATA[The TYPO3 clipboard is a very handy tool but you rarely use all 4 of them. Also, when you logout the content is gone. Both these things can be fixed by a little TSConfig: ## Makes sure the clipboard doesn't clear: options.saveClipboard = 1 ## Reduces the amount of clipboards from 4 to 1: options.clipboardNumberPads [...]]]></description>
			<content:encoded><![CDATA[<p>The TYPO3 clipboard is a very handy tool but you rarely use all 4 of them. Also, when you logout the content is gone. Both these things can be fixed by a little TSConfig:</p>
<pre lang="css">
## Makes sure the clipboard doesn't clear:
options.saveClipboard = 1

## Reduces the amount of clipboards from 4 to 1:
options.clipboardNumberPads = 1
</pre>
<p>If ANYONE know how to use copy as default instead of move a comment is highly appreciated!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.typo3-addict.com/2009/01/the-clipboard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TYPO3: Create new folders and upload files through the RTE</title>
		<link>http://www.typo3-addict.com/2008/12/create-new-folders-and-upload-files-through-the-rte/</link>
		<comments>http://www.typo3-addict.com/2008/12/create-new-folders-and-upload-files-through-the-rte/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 09:49:26 +0000</pubDate>
		<dc:creator>Maarten</dc:creator>
				<category><![CDATA[RTE]]></category>
		<category><![CDATA[TSConfig]]></category>

		<guid isPermaLink="false">http://blog.emaux.nl/?p=179</guid>
		<description><![CDATA[Default settings of the HTMLArea RTE do not allow you to create new folders or upload files to the fileadmin. 2 simple TSConfig lines can enable this. For your convenience: ## Enable upload field options.uploadFieldsInTopOfEB = 1  ## Enable folder create options.createFoldersInEB = 1  Check out the screenshot:]]></description>
			<content:encoded><![CDATA[<p>Default settings of the HTMLArea RTE do not allow you to create new folders or upload files to the fileadmin. 2 simple TSConfig lines can enable this.</p>
<p>For your convenience:</p>
<pre>
## Enable upload field
options.uploadFieldsInTopOfEB = 1  

## Enable folder create
options.createFoldersInEB = 1 
</pre>
<p>Check out the screenshot:</p>
<p><span id="more-179"></span></p>
<p><a href="http://blog.emaux.nl/wp-content/uploads/2008/12/upload_create_rte.png"><img class="alignnone size-medium wp-image-181" title="upload_create_rte" src="http://blog.emaux.nl/wp-content/uploads/2008/12/upload_create_rte-300x197.png" alt="" width="300" height="197" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.typo3-addict.com/2008/12/create-new-folders-and-upload-files-through-the-rte/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TYPO3: Wider text field in BE</title>
		<link>http://www.typo3-addict.com/2008/11/wider-text-field-in-be/</link>
		<comments>http://www.typo3-addict.com/2008/11/wider-text-field-in-be/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 19:24:50 +0000</pubDate>
		<dc:creator>Maarten</dc:creator>
				<category><![CDATA[Snippets]]></category>
		<category><![CDATA[TSConfig]]></category>
		<category><![CDATA[Configuration]]></category>

		<guid isPermaLink="false">http://blog.emaux.nl/?p=128</guid>
		<description><![CDATA[I just found this line in the TSRef.. It&#8217;s not perfect but it makes your BE field like setup and constants in list mode wider. Just a small User TSConfig line so why not&#8230; ## Makes the BE fields wider setup.override.edit_wideDocument = 1 See screenshots!]]></description>
			<content:encoded><![CDATA[<p>I just found this line in the TSRef.. It&#8217;s not perfect but it makes your BE field like setup and constants in list mode wider. Just a small User TSConfig line so why not&#8230;</p>
<pre style="text-align: left;">
## Makes the BE fields wider
setup.override.edit_wideDocument = 1
</pre>
<p>See screenshots!</p>
<p><span id="more-128"></span></p>
<div id="attachment_129" class="wp-caption alignnone" style="width: 249px"><a href="http://blog.emaux.nl/wp-content/uploads/2008/11/afbeelding-2.png"><img class="size-medium wp-image-129" title="BE_Fields_normal" src="http://blog.emaux.nl/wp-content/uploads/2008/11/afbeelding-2-239x300.png" alt="Backend Field without TSConfig line" width="239" height="300" /></a><p class="wp-caption-text">Backend Field without TSConfig line</p></div>
<div id="attachment_130" class="wp-caption alignnone" style="width: 310px"><a href="http://blog.emaux.nl/wp-content/uploads/2008/11/afbeelding-3.png"><img class="size-medium wp-image-130" title="BE_Field_TSConfig" src="http://blog.emaux.nl/wp-content/uploads/2008/11/afbeelding-3-300x279.png" alt="Backend Field with TSConfig line" width="300" height="279" /></a><p class="wp-caption-text">Backend Field with TSConfig line</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.typo3-addict.com/2008/11/wider-text-field-in-be/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TYPO3: Alternative BE Backgroundcolor</title>
		<link>http://www.typo3-addict.com/2008/11/alternative-be-backgroundcolor/</link>
		<comments>http://www.typo3-addict.com/2008/11/alternative-be-backgroundcolor/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 13:41:15 +0000</pubDate>
		<dc:creator>Maarten</dc:creator>
				<category><![CDATA[Snippets]]></category>
		<category><![CDATA[TSConfig]]></category>
		<category><![CDATA[Configuration]]></category>

		<guid isPermaLink="false">http://blog.mmwebdesign.eu/?p=96</guid>
		<description><![CDATA[The following Page TSConfig line is usefull if you have a lot of records on a single page. mod.web_list { alternateBgColors = 1 }]]></description>
			<content:encoded><![CDATA[<p>The following Page TSConfig line is usefull if you have a lot of records on a single page.</p>
<pre>mod.web_list {
  alternateBgColors = 1
}</pre>
<p><span id="more-96"></span></p>
<div id="attachment_124" class="wp-caption alignnone" style="width: 310px"><a href="http://blog.emaux.nl/wp-content/uploads/2008/11/afbeelding-1.png"><img class="size-medium wp-image-124" title="be_bg_color" src="http://blog.emaux.nl/wp-content/uploads/2008/11/afbeelding-1-300x123.png" alt="Every other line an other color" width="300" height="123" /></a><p class="wp-caption-text">Every other line an other color</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.typo3-addict.com/2008/11/alternative-be-backgroundcolor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TYPO3: Disable hide &amp; prepend at copy</title>
		<link>http://www.typo3-addict.com/2008/11/disable-hide-prepend-at-copy/</link>
		<comments>http://www.typo3-addict.com/2008/11/disable-hide-prepend-at-copy/#comments</comments>
		<pubDate>Fri, 07 Nov 2008 13:13:53 +0000</pubDate>
		<dc:creator>Maarten</dc:creator>
				<category><![CDATA[Snippets]]></category>
		<category><![CDATA[TSConfig]]></category>
		<category><![CDATA[Configuration]]></category>

		<guid isPermaLink="false">http://blog.mmwebdesign.eu/?p=93</guid>
		<description><![CDATA[Personally I hate it when TYPO3 hides my new copied record. TYPO3 also prepends your new copied record with something like &#8216;copy (1)&#8217;. To avoid this you can put this code in your PageTSConfig: TCEMAIN.table.pages { disablePrependAtCopy = 1 disableHideAtCopy = 1 } TCEMAIN.table.tt_content { disablePrependAtCopy = 1 disableHideAtCopy = 1 }]]></description>
			<content:encoded><![CDATA[<p>Personally I hate it when TYPO3 hides my new copied record. TYPO3 also prepends your new copied record with something like &#8216;copy (1)&#8217;. To avoid this you can put this code in your PageTSConfig:</p>
<pre>TCEMAIN.table.pages {
  disablePrependAtCopy = 1
  disableHideAtCopy = 1
}

TCEMAIN.table.tt_content {
  disablePrependAtCopy = 1
  disableHideAtCopy = 1
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.typo3-addict.com/2008/11/disable-hide-prepend-at-copy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

