<?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>Lacisoft&#039;s &#187; typoscript</title>
	<atom:link href="http://www.lacisoft.com/blog/tag/typoscript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lacisoft.com/blog</link>
	<description>SELECT * FROM lacisoft</description>
	<lastBuildDate>Mon, 30 Jan 2012 17:42:20 +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>Typoscript: wrap only if content is not empty</title>
		<link>http://www.lacisoft.com/blog/2010/08/16/typoscript-wrap-only-if-content-is-not-empty/</link>
		<comments>http://www.lacisoft.com/blog/2010/08/16/typoscript-wrap-only-if-content-is-not-empty/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 09:48:41 +0000</pubDate>
		<dc:creator>lacisoft</dc:creator>
				<category><![CDATA[TYPO3 Development]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[typo3]]></category>
		<category><![CDATA[typoscript]]></category>
		<category><![CDATA[wrap]]></category>

		<guid isPermaLink="false">http://www.lacisoft.com/blog/?p=550</guid>
		<description><![CDATA[Often i run into this problem in TYPO3 : i have to wrap a content element with Typoscript but ONLY if there is content. This has an easy solution but all too often i forget it and have to search it up again. So this time i post it here and maybe it helps others [...]
Related posts:<ol>
<li><a href='http://www.lacisoft.com/blog/2011/09/06/your-content-or-facebooks-content/' rel='bookmark' title='Your content or Facebook&rsquo;s content ?'>Your content or Facebook&rsquo;s content ?</a></li>
<li><a href='http://www.lacisoft.com/blog/2010/02/07/typoscript-snippet-for-creating-breadcrumbs/' rel='bookmark' title='Typoscript snippet for creating breadcrumbs'>Typoscript snippet for creating breadcrumbs</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Often i run into this problem in TYPO3 : i have to wrap a content element with Typoscript but ONLY if there is content. This has an easy solution but all too often i forget it and have to search it up again. So this time i post it here and maybe it helps others too.</p>
<pre class="brush:css">
subparts.col2 &lt; styles.content.getRight
subparts.col2.stdWrap {
       wrap =
<div id="col2_content" class="clearfix">|</div>

       required = 1
}
</pre>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.lacisoft.com%2Fblog%2F2010%2F08%2F16%2Ftyposcript-wrap-only-if-content-is-not-empty%2F&amp;title=Typoscript%3A%20wrap%20only%20if%20content%20is%20not%20empty" id="wpa2a_2"><img src="http://www.lacisoft.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>Related posts:<ol>
<li><a href='http://www.lacisoft.com/blog/2011/09/06/your-content-or-facebooks-content/' rel='bookmark' title='Your content or Facebook&rsquo;s content ?'>Your content or Facebook&rsquo;s content ?</a></li>
<li><a href='http://www.lacisoft.com/blog/2010/02/07/typoscript-snippet-for-creating-breadcrumbs/' rel='bookmark' title='Typoscript snippet for creating breadcrumbs'>Typoscript snippet for creating breadcrumbs</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.lacisoft.com/blog/2010/08/16/typoscript-wrap-only-if-content-is-not-empty/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Typoscript snippet for creating breadcrumbs</title>
		<link>http://www.lacisoft.com/blog/2010/02/07/typoscript-snippet-for-creating-breadcrumbs/</link>
		<comments>http://www.lacisoft.com/blog/2010/02/07/typoscript-snippet-for-creating-breadcrumbs/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 15:01:33 +0000</pubDate>
		<dc:creator>lacisoft</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[breadcrumbs]]></category>
		<category><![CDATA[snippets]]></category>
		<category><![CDATA[typo3]]></category>
		<category><![CDATA[typoscript]]></category>

		<guid isPermaLink="false">http://www.lacisoft.com/blog/?p=406</guid>
		<description><![CDATA[A nice little Typoscript snippet that demonstrates how a simple breadcrumb can be created with TS. The last element of the breadcrumb will not be linked. lib.breadcrumbs = HMENU lib.breadcrumbs.special = rootline lib.breadcrumbs.special.range = 0 lib.breadcrumbs.1 = TMENU lib.breadcrumbs.1 { noBlur = 1 NO.linkWrap = &#60;li&#62; &#124;&#38;nbsp;&#62;&#38;nbsp;&#124;*&#124;&#124;*&#124; &#124;&#60; /li&#62; NO.stdWrap.htmlSpecialChars = 1 CUR = 1 [...]
Related posts:<ol>
<li><a href='http://www.lacisoft.com/blog/2010/08/16/typoscript-wrap-only-if-content-is-not-empty/' rel='bookmark' title='Typoscript: wrap only if content is not empty'>Typoscript: wrap only if content is not empty</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>A nice little Typoscript snippet that demonstrates how a simple breadcrumb can be created with TS. The last element of the breadcrumb will not be linked.</p>
<pre class="brush:plain">lib.breadcrumbs = HMENU
lib.breadcrumbs.special = rootline
lib.breadcrumbs.special.range = 0
lib.breadcrumbs.1 = TMENU
lib.breadcrumbs.1 {
     noBlur = 1
     NO.linkWrap = &lt;li&gt; |&amp;nbsp;&gt;&amp;nbsp;|*||*| |&lt; /li&gt;
     NO.stdWrap.htmlSpecialChars = 1
     CUR = 1
     CUR.allWrap = &lt;li&gt;|&lt;/li&gt;
     CUR.doNotLinkIt = 1
}</pre>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.lacisoft.com%2Fblog%2F2010%2F02%2F07%2Ftyposcript-snippet-for-creating-breadcrumbs%2F&amp;title=Typoscript%20snippet%20for%20creating%20breadcrumbs" id="wpa2a_4"><img src="http://www.lacisoft.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>Related posts:<ol>
<li><a href='http://www.lacisoft.com/blog/2010/08/16/typoscript-wrap-only-if-content-is-not-empty/' rel='bookmark' title='Typoscript: wrap only if content is not empty'>Typoscript: wrap only if content is not empty</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.lacisoft.com/blog/2010/02/07/typoscript-snippet-for-creating-breadcrumbs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 useful TYPO3 links</title>
		<link>http://www.lacisoft.com/blog/2009/11/17/3-typo3-useful-links/</link>
		<comments>http://www.lacisoft.com/blog/2009/11/17/3-typo3-useful-links/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 13:46:02 +0000</pubDate>
		<dc:creator>lacisoft</dc:creator>
				<category><![CDATA[web development]]></category>
		<category><![CDATA[4.3]]></category>
		<category><![CDATA[articles]]></category>
		<category><![CDATA[hooks]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[typo3]]></category>
		<category><![CDATA[typoscript]]></category>

		<guid isPermaLink="false">http://www.lacisoft.com/blog/?p=353</guid>
		<description><![CDATA[I&#8217;ve come across two great articles and some novelties about the upcoming 4.3 version of TYPO3, here they come: 45 minutes TypoScript &#8211; one of the most comprehensive tutorial about TypoScript i&#8217;ve ever seen since i work with TYPO3. It has a few nice and useful code examples too. Using existing hooks in your own extension [...]
Related posts:<ol>
<li><a href='http://www.lacisoft.com/blog/2010/07/19/typo3-extension-google-web-font-loader/' rel='bookmark' title='TYPO3 extension: Google Web Font Loader'>TYPO3 extension: Google Web Font Loader</a></li>
<li><a href='http://www.lacisoft.com/blog/2008/12/05/3-books-for-typo3-developers/' rel='bookmark' title='3 books for Typo3 developers'>3 books for Typo3 developers</a></li>
<li><a href='http://www.lacisoft.com/blog/2011/07/28/is-your-extension-compatible-with-typo3-4-6/' rel='bookmark' title='Is your extension compatible with TYPO3 4.6 ?'>Is your extension compatible with TYPO3 4.6 ?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve come across two great articles and some novelties about the upcoming 4.3 version of TYPO3, here they come:</p>
<ul>
<li> <a href="http://wiki.typo3.org/index.php/Ts45min">45 minutes TypoScript</a> &#8211; one of the most comprehensive tutorial about TypoScript i&#8217;ve ever seen since i work with TYPO3. It has a few nice and useful code examples too.</li>
<li><a href="http://typo3.org/development/articles/how-to-use-existing-hooks/?tx_rlmpofficedocuments_pi1[view]=single&amp;cHash=45a565e1de">Using existing hooks in your own extension</a> &#8211; as its name says this great tutorial will show you how to hook into existing functionality and alter it</li>
<li><a href="http://typo3.org/news-single-view/?tx_newsimporter_pi1[showItem]=0&amp;tx_newsimporter_pi1[feed]=10&amp;cHash=c5554a06e2#single">Beta 3 of TYPO3 4.3 is out</a>, go check it out &#8211; it has some neat new features like built in frontend editing</li>
</ul>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.lacisoft.com%2Fblog%2F2009%2F11%2F17%2F3-typo3-useful-links%2F&amp;title=3%20useful%20TYPO3%20links" id="wpa2a_6"><img src="http://www.lacisoft.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>Related posts:<ol>
<li><a href='http://www.lacisoft.com/blog/2010/07/19/typo3-extension-google-web-font-loader/' rel='bookmark' title='TYPO3 extension: Google Web Font Loader'>TYPO3 extension: Google Web Font Loader</a></li>
<li><a href='http://www.lacisoft.com/blog/2008/12/05/3-books-for-typo3-developers/' rel='bookmark' title='3 books for Typo3 developers'>3 books for Typo3 developers</a></li>
<li><a href='http://www.lacisoft.com/blog/2011/07/28/is-your-extension-compatible-with-typo3-4-6/' rel='bookmark' title='Is your extension compatible with TYPO3 4.6 ?'>Is your extension compatible with TYPO3 4.6 ?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.lacisoft.com/blog/2009/11/17/3-typo3-useful-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

