<?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>fragmente</title>
	<atom:link href="http://blog.team-noir.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.team-noir.net</link>
	<description>team noir blog</description>
	<lastBuildDate>Tue, 24 Aug 2010 15:39:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>mixed TypoScript Snippets Vol. 2</title>
		<link>http://blog.team-noir.net/2010/08/mixed-typoscript-snippets-vol-2/</link>
		<comments>http://blog.team-noir.net/2010/08/mixed-typoscript-snippets-vol-2/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 15:36:07 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[TYPO3]]></category>
		<category><![CDATA[typoscript]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=419</guid>
		<description><![CDATA[New stuff, just copy&#38;paste  
Today i present:

Disable  Flexform Elements from tt_news:
paste into PageTS:
TCEFORM.tt_news.datetime.disabled = 0
TCEFORM.tt_news.editlock.disabled = 1
TCEFORM.tt_news.image.disabled = 0
TCEFORM.tt_news.imagecaption.disabled = 1
TCEFORM.tt_news.imagealttext.disabled = 1
TCEFORM.tt_news.imagetitletext.disabled = 0
TCEFORM.tt_news.related.disabled = 1
TCEFORM.tt_news.short.disabled = 1
TCEFORM.tt_news.bodytext.disabled = 0
TCEFORM.tt_news.author.disabled = 0
TCEFORM.tt_news.author_email.disabled = 1
TCEFORM.tt_news.news_files.disabled = 1
TCEFORM.tt_news.links.disabled = 0
TCEFORM.tt_news.keywords.disabled = 1
TCEFORM.tt_news.archivedate.disabled = 1
TCEFORM.tt_news.ext_url.disabled = 1
TCEFORM.tt_news.fe_group.disabled = 1
...

activate new tt_news articles automatically (not hidden):
again, paste [...]


Related posts:<ol><li><a href='http://blog.team-noir.net/2010/08/mixed-typoscript-snippets-vol-1/' rel='bookmark' title='Permanent Link: mixed TypoScript Snippets Vol. 1'>mixed TypoScript Snippets Vol. 1</a></li>
<li><a href='http://blog.team-noir.net/2009/05/how-to-sort-the-typoscript-template/' rel='bookmark' title='Permanent Link: How to &#8230; sort the Typoscript Template'>How to &#8230; sort the Typoscript Template</a></li>
<li><a href='http://blog.team-noir.net/2009/09/how-to-add-a-redirect-for-realurl-ext/' rel='bookmark' title='Permanent Link: How to &#8230; add a simple REDIRECT with realurl Extension'>How to &#8230; add a simple REDIRECT with realurl Extension</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>New stuff, just copy&amp;paste <img src='http://blog.team-noir.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Today i present:</p>
<p><span id="more-419"></span></p>
<h4>Disable  Flexform Elements from tt_news:</h4>
<p>paste into PageTS:</p>
<pre>TCEFORM.tt_news.datetime.disabled = 0
TCEFORM.tt_news.editlock.disabled = 1
TCEFORM.tt_news.image.disabled = 0
TCEFORM.tt_news.imagecaption.disabled = 1
TCEFORM.tt_news.imagealttext.disabled = 1
TCEFORM.tt_news.imagetitletext.disabled = 0
TCEFORM.tt_news.related.disabled = 1
TCEFORM.tt_news.short.disabled = 1
TCEFORM.tt_news.bodytext.disabled = 0
TCEFORM.tt_news.author.disabled = 0
TCEFORM.tt_news.author_email.disabled = 1
TCEFORM.tt_news.news_files.disabled = 1
TCEFORM.tt_news.links.disabled = 0
TCEFORM.tt_news.keywords.disabled = 1
TCEFORM.tt_news.archivedate.disabled = 1
TCEFORM.tt_news.ext_url.disabled = 1
TCEFORM.tt_news.fe_group.disabled = 1
...
</pre>
<h4>activate new tt_news articles automatically (not hidden):</h4>
<p>again, paste into PageTS:</p>
<pre>TCAdefaults.tt_news.hidden = 0
</pre>
<h4>insert a Logout-Button on feeditadvanced Layout:</h4>
<p>First, add this to your root TS-Setup:</p>
<pre>[globalVar = TSFE : beUserLogin &gt; 0]
lib.belogout = TEXT
lib.belogout.value = &lt;a class="belogout" title="Logout!" href="typo3/logout.php?redirect=../index.php"&gt;Logout&lt;/a&gt;
[global]
</pre>
<p>now you will need a TS-Object or a PageMARKER inside your FE-Template, like &#8230;</p>
<pre>lib.belogout
</pre>
<p>just add some CSS like:</p>
<pre>.belogout {
 display: inline-block;
 padding-top: 4px;
 margin: 2px 10px 0 0;
 height: 21px;
 text-decoration: none;
 cursor: pointer;
 text-align: center;
 color: #c6c6c6;
 background: url(../../typo3conf/ext/feeditadvanced/res/icons/menubar/button.png) no-repeat 0 0;
 font-size: 12px;
 width: 92px;
 -moz-border-radius: 5px;
 -webkit-border-radius: 5px;
 z-index: 8001;
 position: fixed;
 right: 100px;
 top:1px;
 color: #fff;
}
.belogout:hover, .belogout:active, .belogout:visited {color:#fff; text-decoration:none;}
</pre>
<p>Now your Logout-Button looks like the feeditadvanced Layout und works &#8230;</p>
<p><a href="http://blog.team-noir.net/wp-content/uploads/2010/08/logout_button.png"><img class="alignnone size-full wp-image-421" title="logout_button" src="http://blog.team-noir.net/wp-content/uploads/2010/08/logout_button.png" alt="" width="382" height="107" /></a></p>
<p>That&#8217;s all for today.</p>
<p>TYPO3 &#8211; <strong>Inspiring people to share</strong> &#8211; Yeah that&#8217;s right!</p>


<p>Related posts:<ol><li><a href='http://blog.team-noir.net/2010/08/mixed-typoscript-snippets-vol-1/' rel='bookmark' title='Permanent Link: mixed TypoScript Snippets Vol. 1'>mixed TypoScript Snippets Vol. 1</a></li>
<li><a href='http://blog.team-noir.net/2009/05/how-to-sort-the-typoscript-template/' rel='bookmark' title='Permanent Link: How to &#8230; sort the Typoscript Template'>How to &#8230; sort the Typoscript Template</a></li>
<li><a href='http://blog.team-noir.net/2009/09/how-to-add-a-redirect-for-realurl-ext/' rel='bookmark' title='Permanent Link: How to &#8230; add a simple REDIRECT with realurl Extension'>How to &#8230; add a simple REDIRECT with realurl Extension</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2010/08/mixed-typoscript-snippets-vol-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mixed TypoScript Snippets Vol. 1</title>
		<link>http://blog.team-noir.net/2010/08/mixed-typoscript-snippets-vol-1/</link>
		<comments>http://blog.team-noir.net/2010/08/mixed-typoscript-snippets-vol-1/#comments</comments>
		<pubDate>Wed, 18 Aug 2010 09:07:45 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[TYPO3]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[snippets]]></category>
		<category><![CDATA[typoscript]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=415</guid>
		<description><![CDATA[Today i will start a new Session and post some nice and tricky TypoScript Snippets for Typo3 (tested in Ver. 4.4)
show restricted Pages &#38; add css (class=&#8221;locked&#8221;)

make restricted pages visible for all, but not accessible
# 11 = Page with Login Plugin
config.typolinkLinkAccessRestrictedPages = 11
config.typolinkLinkAccessRestrictedPages_addParams = &#38;referer=###RETURN_URL###

#for the menu
lib.menu.1 {
 showAccessRestrictedPages = NONE
 showAccessRestrictedPages.addParams = &#38;redirect_url=###RETURN_URL###
}

now, add [...]


Related posts:<ol><li><a href='http://blog.team-noir.net/2010/08/mixed-typoscript-snippets-vol-2/' rel='bookmark' title='Permanent Link: mixed TypoScript Snippets Vol. 2'>mixed TypoScript Snippets Vol. 2</a></li>
<li><a href='http://blog.team-noir.net/2009/05/how-to-sort-the-typoscript-template/' rel='bookmark' title='Permanent Link: How to &#8230; sort the Typoscript Template'>How to &#8230; sort the Typoscript Template</a></li>
<li><a href='http://blog.team-noir.net/2009/02/how-to-integrate-a-yaml-menu-to-typo3/' rel='bookmark' title='Permanent Link: How to &#8230; integrate  a YAML Menu to TYPO3'>How to &#8230; integrate  a YAML Menu to TYPO3</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Today i will start a new Session and post some nice and tricky TypoScript Snippets for Typo3 (tested in Ver. 4.4)</p>
<h4>show restricted Pages &amp; add css (class=&#8221;locked&#8221;)</h4>
<p><span id="more-415"></span></p>
<p>make restricted pages visible for all, but not accessible</p>
<pre># 11 = Page with Login Plugin
config.typolinkLinkAccessRestrictedPages = 11
config.typolinkLinkAccessRestrictedPages_addParams = &amp;referer=###RETURN_URL###

#for the menu
lib.menu.1 {
 showAccessRestrictedPages = NONE
 showAccessRestrictedPages.addParams = &amp;redirect_url=###RETURN_URL###
}
</pre>
<p>now, add some class or attributes to the restricted pages</p>
<pre>[usergroup = *]
# after login
...
[else]
#without login
...
lib.menu.1.NO = 1
lib.menu.1.NO.ATagParams.if {
         value=0
         isGreaterThan.field = fe_group
     }
lib.menu.1.NO.ATagParams = class="locked"
lib.menu.1.IFSUB = 1
lib.menu.1.IFSUB.ATagParams.if {
         value=0
        isGreaterThan.field = fe_group
     }
lib.menu.1.IFSUB.ATagParams = class="locked"
[end]
</pre>
<p>hard to find the right solution, i spent several hours for this snippets &#8211; so have fun!</p>
<p><a href="http://typo3.org/"><img class="alignnone" title="Inspiring people to share" src="http://typo3.org/fileadmin/templates/images/logo-typo3.gif" alt="Inspiring people to share" width="123" height="34" /></a></p>


<p>Related posts:<ol><li><a href='http://blog.team-noir.net/2010/08/mixed-typoscript-snippets-vol-2/' rel='bookmark' title='Permanent Link: mixed TypoScript Snippets Vol. 2'>mixed TypoScript Snippets Vol. 2</a></li>
<li><a href='http://blog.team-noir.net/2009/05/how-to-sort-the-typoscript-template/' rel='bookmark' title='Permanent Link: How to &#8230; sort the Typoscript Template'>How to &#8230; sort the Typoscript Template</a></li>
<li><a href='http://blog.team-noir.net/2009/02/how-to-integrate-a-yaml-menu-to-typo3/' rel='bookmark' title='Permanent Link: How to &#8230; integrate  a YAML Menu to TYPO3'>How to &#8230; integrate  a YAML Menu to TYPO3</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2010/08/mixed-typoscript-snippets-vol-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to use transparency with different Browsers</title>
		<link>http://blog.team-noir.net/2010/07/how-to-use-transparency-with-different-browser/</link>
		<comments>http://blog.team-noir.net/2010/07/how-to-use-transparency-with-different-browser/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 16:19:37 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[transparency]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=404</guid>
		<description><![CDATA[How to:
One more snippet &#8230;
I hab trouble with transparency backgrounds and the different Browser interpretation, ahhrgh. But finally i found a cool summary.
take this:
div .test {
   background: rgb(255, 255, 255); /* fallback for all old guys */
   background: rgba(2255, 255, 255, 0.5);
}

Internet Explorer need a special treatment, via conditional comment
&#60;!--[if lt [...]


Related posts:<ol><li><a href='http://blog.team-noir.net/2010/05/jquery-badbrowser-update-version-1-4/' rel='bookmark' title='Permanent Link: jQuery badBrowser Update Version 1.4'>jQuery badBrowser Update Version 1.4</a></li>
<li><a href='http://blog.team-noir.net/2009/07/fight-old-browsers-youtube-follows/' rel='bookmark' title='Permanent Link: Fight old Browsers &#8211; YouTube follows'>Fight old Browsers &#8211; YouTube follows</a></li>
<li><a href='http://blog.team-noir.net/2009/06/fight-old-browsers-warning-with-jquery/' rel='bookmark' title='Permanent Link: Fight old Browsers &#8211; Warning with jQuery'>Fight old Browsers &#8211; Warning with jQuery</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>How to:</strong></p>
<p>One more snippet &#8230;</p>
<p>I hab trouble with transparency backgrounds and the different Browser interpretation, ahhrgh. But finally i found a cool <a href="http://css-tricks.com/examples/RGBaSupport/" target="_blank">summary</a>.</p>
<p><strong>take this:</strong></p>
<pre><code>div .test {
   background: rgb(255, 255, 255); /* fallback for all old guys */
   background: rgba(2255, 255, 255, <strong>0.5</strong>);
}
</code></pre>
<p><strong>Internet Explorer </strong>need a special treatment, via conditional comment</p>
<pre><code>&lt;!--[if lt IE 9]&gt;
div .test {background:#fff; filter:alpha(opacity=<strong>50</strong>);}
&lt;![endif]--&gt;</code></pre>
<p>Thats all. Enjoy it.</p>


<p>Related posts:<ol><li><a href='http://blog.team-noir.net/2010/05/jquery-badbrowser-update-version-1-4/' rel='bookmark' title='Permanent Link: jQuery badBrowser Update Version 1.4'>jQuery badBrowser Update Version 1.4</a></li>
<li><a href='http://blog.team-noir.net/2009/07/fight-old-browsers-youtube-follows/' rel='bookmark' title='Permanent Link: Fight old Browsers &#8211; YouTube follows'>Fight old Browsers &#8211; YouTube follows</a></li>
<li><a href='http://blog.team-noir.net/2009/06/fight-old-browsers-warning-with-jquery/' rel='bookmark' title='Permanent Link: Fight old Browsers &#8211; Warning with jQuery'>Fight old Browsers &#8211; Warning with jQuery</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2010/07/how-to-use-transparency-with-different-browser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS: center background image in Firefox &amp; Co.</title>
		<link>http://blog.team-noir.net/2010/07/css-center-background-image-in-firefox-co/</link>
		<comments>http://blog.team-noir.net/2010/07/css-center-background-image-in-firefox-co/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 10:09:09 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[background-image]]></category>
		<category><![CDATA[center]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=399</guid>
		<description><![CDATA[Today just a short snippet.
To center a background image vertical and horizontal especially Mozilla Firefox need the attribute &#8220;fixed&#8221;:
body {
background-image: url(....);
background-position: center center;
background-attachment: fixed;
height: 100%;
}
Tested with: IE 6 &#8211; 8, Firefox 3.6, Safari 4
With this little trick, my day will be fine! Ole.


Related posts:How to &#8230; center a YAML Layout
How to use position-absolute and z-index [...]


Related posts:<ol><li><a href='http://blog.team-noir.net/2009/02/how-to-center-a-yaml-layout/' rel='bookmark' title='Permanent Link: How to &#8230; center a YAML Layout'>How to &#8230; center a YAML Layout</a></li>
<li><a href='http://blog.team-noir.net/2010/05/how-to-use-position-absolute-and-z-index-with-internet-explorer-7-and-nested-containers/' rel='bookmark' title='Permanent Link: How to use position-absolute and z-index with Internet Explorer 7 and nested containers'>How to use position-absolute and z-index with Internet Explorer 7 and nested containers</a></li>
<li><a href='http://blog.team-noir.net/2010/04/how-to-add-german-amazon-de-opensearch-plugin-to-firefox-3-5-on-ubuntu-9-1/' rel='bookmark' title='Permanent Link: How to add german Amazon.de OpenSearch Plugin to Firefox 3.5 on Ubuntu 9.1'>How to add german Amazon.de OpenSearch Plugin to Firefox 3.5 on Ubuntu 9.1</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Today just a short snippet.</p>
<p>To center a background image vertical and horizontal especially Mozilla Firefox need the attribute &#8220;fixed&#8221;:</p>
<pre>body {
background-image: url(....);
background-position: center center;
<strong><span style="color: #800000;">background-attachment: fixed</span></strong>;
height: 100%;
}</pre>
<p>Tested with:<strong> IE 6 &#8211; 8, Firefox 3.6, Safari 4</strong></p>
<p>With this little trick, my day will be fine! Ole.</p>


<p>Related posts:<ol><li><a href='http://blog.team-noir.net/2009/02/how-to-center-a-yaml-layout/' rel='bookmark' title='Permanent Link: How to &#8230; center a YAML Layout'>How to &#8230; center a YAML Layout</a></li>
<li><a href='http://blog.team-noir.net/2010/05/how-to-use-position-absolute-and-z-index-with-internet-explorer-7-and-nested-containers/' rel='bookmark' title='Permanent Link: How to use position-absolute and z-index with Internet Explorer 7 and nested containers'>How to use position-absolute and z-index with Internet Explorer 7 and nested containers</a></li>
<li><a href='http://blog.team-noir.net/2010/04/how-to-add-german-amazon-de-opensearch-plugin-to-firefox-3-5-on-ubuntu-9-1/' rel='bookmark' title='Permanent Link: How to add german Amazon.de OpenSearch Plugin to Firefox 3.5 on Ubuntu 9.1'>How to add german Amazon.de OpenSearch Plugin to Firefox 3.5 on Ubuntu 9.1</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2010/07/css-center-background-image-in-firefox-co/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TYPO3 Version 4.4.0 released</title>
		<link>http://blog.team-noir.net/2010/06/typo3-440-released/</link>
		<comments>http://blog.team-noir.net/2010/06/typo3-440-released/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 10:47:31 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[TYPO3]]></category>
		<category><![CDATA[new version]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=387</guid>
		<description><![CDATA[Yesterday they did it &#8230;
The latest TYPO3 version 4.4 makes TYPO3 easier than ever –  especially for newbies. Your TYPO3 website can be up and running in five  minutes after it has been downloaded – use the included template and it  is ready to go right away. Below you will find the [...]


Related posts:<ol><li><a href='http://blog.team-noir.net/2009/07/how-to-update-typo3-42/' rel='bookmark' title='Permanent Link: How to &#8230; update TYPO3 4.2'>How to &#8230; update TYPO3 4.2</a></li>
<li><a href='http://blog.team-noir.net/2009/11/typo3-ver-4-3-released/' rel='bookmark' title='Permanent Link: TYPO3 ver. 4.3 released'>TYPO3 ver. 4.3 released</a></li>
<li><a href='http://blog.team-noir.net/2010/04/problems-after-upgrading-typo3-4-2-to-4-3-with-stylesheets-and-images/' rel='bookmark' title='Permanent Link: Problems after upgrading TYPO3 4.2 to 4.3 with stylesheets and images'>Problems after upgrading TYPO3 4.2 to 4.3 with stylesheets and images</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Yesterday they did it &#8230;</p>
<blockquote><p><strong>The latest TYPO3 version 4.4 makes TYPO3 easier than ever –  especially for newbies. Your TYPO3 website can be up and running in five  minutes after it has been downloaded – use the included template and it  is ready to go right away. Below you will find the most important  innovations.</strong></p></blockquote>
<p>from: <a href="http://typo3.org/download/release-notes/typo3-44/">http://typo3.org/download/release-notes/typo3-44/</a></p>
<p><span id="more-387"></span></p>
<p><a href="http://typo3.org/download/release-notes/typo3-44/"><img class="alignnone" title="official view" src="http://typo3.org/typo3temp/pics/8ae7447e01.png" alt="screenshot TYPO3 4.4.0" width="300" height="227" /></a></p>
<p>Last night i checked my own &#8220;starterpackage&#8221; with the new version. Everything seems to be fine.</p>
<p>The new Backend looks great, loads fast and is really easy to use.</p>
<p><strong>Thanks to the Core-team of TYPO3</strong>! Great work, guys!</p>
<h4><span style="text-decoration: underline;"><strong>UPGRADING from 4.3 to 4.4:</strong></span></h4>
<p>Here you&#8217;ll finde some nice tricks and tutorials &#8230;</p>
<ul>
<li><a href="http://wiki.typo3.org/index.php/Upgrade#Upgrading_to_4.4">http://wiki.typo3.org/index.php/Upgrade#Upgrading_to_4.4</a></li>
<li><a href="http://www.youtube.com/watch?v=iE2tFVtm5Is">http://www.youtube.com/watch?v=iE2tFVtm5Is</a></li>
<li><a href="http://www.youtube.com/watch?v=5ksV41wfJIo">http://www.youtube.com/watch?v=5ksV41wfJIo</a></li>
</ul>
<p><a href="http://typo3.org/download/release-notes/typo3-44/"><img class="alignnone" title="easy 1-2-3 Installation" src="http://typo3.org/typo3temp/pics/85c972c930.png" alt="screenshot 1-2-3 installation" width="200" height="155" /></a></p>


<p>Related posts:<ol><li><a href='http://blog.team-noir.net/2009/07/how-to-update-typo3-42/' rel='bookmark' title='Permanent Link: How to &#8230; update TYPO3 4.2'>How to &#8230; update TYPO3 4.2</a></li>
<li><a href='http://blog.team-noir.net/2009/11/typo3-ver-4-3-released/' rel='bookmark' title='Permanent Link: TYPO3 ver. 4.3 released'>TYPO3 ver. 4.3 released</a></li>
<li><a href='http://blog.team-noir.net/2010/04/problems-after-upgrading-typo3-4-2-to-4-3-with-stylesheets-and-images/' rel='bookmark' title='Permanent Link: Problems after upgrading TYPO3 4.2 to 4.3 with stylesheets and images'>Problems after upgrading TYPO3 4.2 to 4.3 with stylesheets and images</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2010/06/typo3-440-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to use position-absolute and z-index with Internet Explorer 7 and nested containers</title>
		<link>http://blog.team-noir.net/2010/05/how-to-use-position-absolute-and-z-index-with-internet-explorer-7-and-nested-containers/</link>
		<comments>http://blog.team-noir.net/2010/05/how-to-use-position-absolute-and-z-index-with-internet-explorer-7-and-nested-containers/#comments</comments>
		<pubDate>Thu, 27 May 2010 11:43:19 +0000</pubDate>
		<dc:creator>karrock</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[YAML]]></category>
		<category><![CDATA[ie7]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=376</guid>
		<description><![CDATA[When you have a div-container which has the attribute position-absolute and you put a 2nd div-container inside (which has also a position-absolute attribute) it can happens that Internet Explorer 7 does not interpret this correct.
I had the problem, that the 2nd div-container (which is a fold-out CSS-menu) is larger than the sorrounding div. In IE [...]


Related posts:<ol><li><a href='http://blog.team-noir.net/2009/02/overflow-auto-internet-explorer-6-bug/' rel='bookmark' title='Permanent Link: overflow:auto &#8211; Internet Explorer 6 Bug'>overflow:auto &#8211; Internet Explorer 6 Bug</a></li>
<li><a href='http://blog.team-noir.net/2009/02/how-to-center-a-yaml-layout/' rel='bookmark' title='Permanent Link: How to &#8230; center a YAML Layout'>How to &#8230; center a YAML Layout</a></li>
<li><a href='http://blog.team-noir.net/2009/06/css-floating-problems/' rel='bookmark' title='Permanent Link: CSS floating problems'>CSS floating problems</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>When you have a div-container which has the attribute position-absolute and you put a 2nd div-container inside (which has also a position-absolute attribute) it can happens that Internet Explorer 7 does not interpret this correct.</p>
<p>I had the problem, that the 2nd div-container (which is a fold-out CSS-menu) is larger than the sorrounding div. In IE 7 the CSS-menu lays, in the part outside the sorrounding container, behind those elements. But for a menu you aspect to be the first element in the hierarchy.</p>
<p>Those layer positions can be set using z-index in CSS. The higher the index, the higher the position of the element to users-view. So I set the z-index to a high value but in IE 7 nothing happened.</p>
<p><span id="more-376"></span></p>
<p>After trying a while I worked out a very easy solution. If you use for an element the position-absolute attribute it will be set out of the normal element-flow of the website and be positioned absolute to the given position. But IE 7 inherits the value from the parent-element (here the sorrounding div-container) which had no z-index.</p>
<p>So my <em>solution</em> is to give both, the surrounding and the inner div-container a z-index. The surrounding container gets (in my case) a higher z-index than the surrounding one and the problem is fixed! <img src='http://blog.team-noir.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The surrounding element is the YAML #topnav-element and the inner one is a div-container with list-items which are styled as a JS-free fully CSS-menu.</p>
<pre>#topnav {
  overflow:visible;
  z-index:5;
  position:absolute;
  [...]
}

#inner_container {
  position:absolute;
  z-index:2;
  [...]
}</pre>


<p>Related posts:<ol><li><a href='http://blog.team-noir.net/2009/02/overflow-auto-internet-explorer-6-bug/' rel='bookmark' title='Permanent Link: overflow:auto &#8211; Internet Explorer 6 Bug'>overflow:auto &#8211; Internet Explorer 6 Bug</a></li>
<li><a href='http://blog.team-noir.net/2009/02/how-to-center-a-yaml-layout/' rel='bookmark' title='Permanent Link: How to &#8230; center a YAML Layout'>How to &#8230; center a YAML Layout</a></li>
<li><a href='http://blog.team-noir.net/2009/06/css-floating-problems/' rel='bookmark' title='Permanent Link: CSS floating problems'>CSS floating problems</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2010/05/how-to-use-position-absolute-and-z-index-with-internet-explorer-7-and-nested-containers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>jQuery badBrowser Update Version 1.4</title>
		<link>http://blog.team-noir.net/2010/05/jquery-badbrowser-update-version-1-4/</link>
		<comments>http://blog.team-noir.net/2010/05/jquery-badbrowser-update-version-1-4/#comments</comments>
		<pubDate>Tue, 18 May 2010 16:22:19 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[badbrowser]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=365</guid>
		<description><![CDATA[Time is running &#8230;
Hello!
Today you can download my new version from &#8220;jQuery badBrowser Script&#8221; . Why and how it works you can read in my last articles:

fight-old-browsers-warning-with-jquery
release-bad-browser-new-version-13
fight-internet-explorer-6-reloaded

After several comments to the missing MSIE 5.5 detecting i decided to update my script and tell you my solution:
I have tested several ways to use JavaCcript/jQuery and useragent [...]


Related posts:<ol><li><a href='http://blog.team-noir.net/2009/06/fight-old-browsers-warning-with-jquery/' rel='bookmark' title='Permanent Link: Fight old Browsers &#8211; Warning with jQuery'>Fight old Browsers &#8211; Warning with jQuery</a></li>
<li><a href='http://blog.team-noir.net/2009/07/release-bad-browser-new-version-13/' rel='bookmark' title='Permanent Link: Release: bad Browser &#8211; new Version 1.3'>Release: bad Browser &#8211; new Version 1.3</a></li>
<li><a href='http://blog.team-noir.net/2009/07/fight-old-browsers-youtube-follows/' rel='bookmark' title='Permanent Link: Fight old Browsers &#8211; YouTube follows'>Fight old Browsers &#8211; YouTube follows</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Time is running &#8230;</p>
<p>Hello!</p>
<p>Today you can download my new version from &#8220;<strong>jQuery badBrowser Script</strong>&#8221; . Why and how it works you can read in my last articles:<span id="more-365"></span></p>
<ul>
<li><a href="http://blog.team-noir.net/2009/06/fight-old-browsers-warning-with-jquery/">fight-old-browsers-warning-with-jquery</a></li>
<li><a href="http://blog.team-noir.net/2009/07/release-bad-browser-new-version-13/">release-bad-browser-new-version-13</a></li>
<li><a href="http://blog.team-noir.net/2009/08/fight-internet-explorer-6-reloaded/">fight-internet-explorer-6-reloaded</a></li>
</ul>
<p>After several comments to the missing MSIE 5.5 detecting i decided to update my script and tell you my solution:</p>
<p>I have tested several ways to use JavaCcript/jQuery and <em>useragent</em> identification.</p>
<pre>// special Testcheck for dirty Microsoft Internet Explorer 5.5
 if (userAgent.indexOf("MSIE 5.")&gt;=0) {
 return true;
 }</pre>
<p>Nothing happens.  Mostly the Browser doesn&#8217;t work with JavaScript or displays many errors.<br />
MSIE 5.5 is very old and in my opinion it&#8217;s <strong>enough to detect IE 6.0</strong>. In special cases you may use <a title="german wikipedia" href="http://de.wikipedia.org/wiki/Conditional_Comments">conditional comments</a> like this:</p>
<pre>&lt;head&gt;
 &lt;!--[if lte IE 5]&gt;
 &lt;style&gt; body {background:yellow;}&lt;/style&gt;
 &lt;![endif]--&gt;
&lt;/head&gt;</pre>
<p>The actually jQuery library is 1.4.2, since version 1.3 the <em>jquery.browser</em> command is deprecated, but on the <a href="http://api.jquery.com/jQuery.browser/">website</a> you can read:</p>
<blockquote><p>The <code>$.browser</code> property is deprecated in jQuery 1.3, but there are no immediate plans to remove it.</p></blockquote>
<p><strong><span style="text-decoration: underline;">My small Changelog</span></strong>:</p>
<ul>
<li><em>update the browser version support, alert if smaller then:</em>
<ul>
<li><em>Firefox &lt; 3 .0<br />
</em></li>
<li><em>Opera &lt; 9.5</em></li>
<li><em>Safari &lt; 4.0</em></li>
<li><em>Google Chrome &lt; 3.0</em></li>
<li><em>MSIE &lt; 8.0</em></li>
</ul>
</li>
<li><em>German warning language<br />
</em><br />
<em><br />
</em></li>
</ul>
<p>Please comment this Post for hints, tricks and more &#8230; have fun!</p>
<a href="http://blog.team-noir.net/wp-content/plugins/download-monitor/download.php?id=2" title="1.4"><img src="http://blog.team-noir.net/wp-content/uploads/download.png" title="Download badBrowser Version 1.4" /></a> <a href="http://blog.team-noir.net/wp-content/plugins/download-monitor/download.php?id=2" title="1.4">badBrowser Version 1.4</a>  ( 168x )
<p><span style="text-decoration: underline;"><strong>UPDATE 19.05.2010:</strong></span> Now you can also find a minimized .js Version in the download-zip (Thanks to fleshgrinder). Nice javascript <a href="http://yui.2clics.net/">compression tool</a>.</p>


<p>Related posts:<ol><li><a href='http://blog.team-noir.net/2009/06/fight-old-browsers-warning-with-jquery/' rel='bookmark' title='Permanent Link: Fight old Browsers &#8211; Warning with jQuery'>Fight old Browsers &#8211; Warning with jQuery</a></li>
<li><a href='http://blog.team-noir.net/2009/07/release-bad-browser-new-version-13/' rel='bookmark' title='Permanent Link: Release: bad Browser &#8211; new Version 1.3'>Release: bad Browser &#8211; new Version 1.3</a></li>
<li><a href='http://blog.team-noir.net/2009/07/fight-old-browsers-youtube-follows/' rel='bookmark' title='Permanent Link: Fight old Browsers &#8211; YouTube follows'>Fight old Browsers &#8211; YouTube follows</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2010/05/jquery-badbrowser-update-version-1-4/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Problems after upgrading TYPO3 4.2 to 4.3 with stylesheets and images</title>
		<link>http://blog.team-noir.net/2010/04/problems-after-upgrading-typo3-4-2-to-4-3-with-stylesheets-and-images/</link>
		<comments>http://blog.team-noir.net/2010/04/problems-after-upgrading-typo3-4-2-to-4-3-with-stylesheets-and-images/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 15:51:31 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[TYPO3]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=361</guid>
		<description><![CDATA[TYPO3 Upgrade 4.2 to 4.3  &#8211; Backendview
Today i had some trouble after upgrading TYPO3 Installation 4.2.10 to 4.3.3 .
After the big security announcement i decided to update all costumers TYPO3 Installations.

With my short step-by-step upgrade sheet everything works fine, only one &#8230;
After Uploading the files the TYPO3 Install-Tool appears with basic black/white stylesheet, no images, [...]


Related posts:<ol><li><a href='http://blog.team-noir.net/2009/07/how-to-update-typo3-42/' rel='bookmark' title='Permanent Link: How to &#8230; update TYPO3 4.2'>How to &#8230; update TYPO3 4.2</a></li>
<li><a href='http://blog.team-noir.net/2009/10/how-to-convert-html-content-to-pdf-file-in-typo3/' rel='bookmark' title='Permanent Link: How to &#8230; convert HTML-Content to PDF File in TYPO3'>How to &#8230; convert HTML-Content to PDF File in TYPO3</a></li>
<li><a href='http://blog.team-noir.net/2010/06/typo3-440-released/' rel='bookmark' title='Permanent Link: TYPO3 Version 4.4.0 released'>TYPO3 Version 4.4.0 released</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h3>TYPO3 Upgrade 4.2 to 4.3  &#8211; Backendview</h3>
<p>Today i had some trouble after upgrading TYPO3 Installation 4.2.10 to 4.3.3 .<br />
After the big <a href="http://typo3.org/teams/security/security-bulletins/typo3-sa-2010-008/">security announcement</a> i decided to update all costumers TYPO3 Installations.</p>
<p><span id="more-361"></span></p>
<p>With my short <a href="http://blog.team-noir.net/2009/07/how-to-update-typo3-42/">step-by-step upgrade sheet</a> everything works fine, only one &#8230;</p>
<p>After Uploading the files the TYPO3 Install-Tool appears with basic black/white stylesheet, no images, no alignement &#8230; *strange*<br />
The Backend doesn&#8217;t show any image, the menu couldn&#8217;t get clicked &#8211; aahhhhrgh! Whats up?!</p>
<p>But here&#8217;s my solution: <em>SEARCH, READ, UNDERSTAND, ADJUST</em></p>
<p>I found some hints in the <em>install.txt</em> from TYPO3 source:</p>
<blockquote><p>Make sure that AllowOverride allows &#8220;Indexes&#8221; and &#8220;FileInfo&#8221; in the Apache<br />
configuration. If you cannot ensure this, rename .htaccess files to<br />
_.htaccess. TYPO3 will run but considerably slower.<br />
Here is the list of the files to rename:<br />
typo3/contrib/.htaccess<br />
typo3/gfx/.htaccess<br />
typo3/mod/user/ws/.htaccess<br />
typo3/sysext/.htaccess<br />
typo3/sysext/t3skin/stylesheets/.htaccess<br />
If the error does not disappear, web server error logs should help.</p></blockquote>
<p>That&#8217;s all. First i tested mith renaming the .htaccess to _.htaccess, in the second step i adjust the apache-config manually -&gt; tataaaam, it works fine!</p>
<p>So have fun with TYPO3.</p>


<p>Related posts:<ol><li><a href='http://blog.team-noir.net/2009/07/how-to-update-typo3-42/' rel='bookmark' title='Permanent Link: How to &#8230; update TYPO3 4.2'>How to &#8230; update TYPO3 4.2</a></li>
<li><a href='http://blog.team-noir.net/2009/10/how-to-convert-html-content-to-pdf-file-in-typo3/' rel='bookmark' title='Permanent Link: How to &#8230; convert HTML-Content to PDF File in TYPO3'>How to &#8230; convert HTML-Content to PDF File in TYPO3</a></li>
<li><a href='http://blog.team-noir.net/2010/06/typo3-440-released/' rel='bookmark' title='Permanent Link: TYPO3 Version 4.4.0 released'>TYPO3 Version 4.4.0 released</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2010/04/problems-after-upgrading-typo3-4-2-to-4-3-with-stylesheets-and-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add german Amazon.de OpenSearch Plugin to Firefox 3.5 on Ubuntu 9.1</title>
		<link>http://blog.team-noir.net/2010/04/how-to-add-german-amazon-de-opensearch-plugin-to-firefox-3-5-on-ubuntu-9-1/</link>
		<comments>http://blog.team-noir.net/2010/04/how-to-add-german-amazon-de-opensearch-plugin-to-firefox-3-5-on-ubuntu-9-1/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 16:14:28 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=357</guid>
		<description><![CDATA[How to &#8230;
Today i wanted to search with my current Ubuntu 9.10 Karmic Koala Installation and Firefox Browser 3.5 with a OpenSerach Plugin in german Amazon store.
The standard Installation of Firefox only provides the amazon.com Search Plugin. The normal way to add SearchPlugin doesn&#8217;t work on amazon.de with Ubuntu Firefox  
I found after a [...]


Related posts:<ol><li><a href='http://blog.team-noir.net/2010/03/aptana-studio-2-0-under-ubuntu-9-10/' rel='bookmark' title='Permanent Link: Aptana Studio 2.0 under Ubuntu 9.10'>Aptana Studio 2.0 under Ubuntu 9.10</a></li>
<li><a href='http://blog.team-noir.net/2010/07/css-center-background-image-in-firefox-co/' rel='bookmark' title='Permanent Link: CSS: center background image in Firefox &#038; Co.'>CSS: center background image in Firefox &#038; Co.</a></li>
<li><a href='http://blog.team-noir.net/2009/08/css-border-bottom-for-ie-6/' rel='bookmark' title='Permanent Link: CSS border-bottom for IE 6'>CSS border-bottom for IE 6</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>How to &#8230;</strong></p>
<p>Today i wanted to search with my current <a href="https://wiki.ubuntu.com/KarmicKoala">Ubuntu 9.10 Karmic Koala</a> Installation and <a href="http://www.mozilla-europe.org/de/firefox/">Firefox Browser 3.5 </a>with a <a href="http://www.firefox-browser.de/wiki/Searchplugins">OpenSerach Plugin</a> in <a href="http://www.amazon.de">german Amazon store</a>.</p>
<p>The standard Installation of Firefox only provides the <a href="http://www.amazon.com">amazon.com</a> Search Plugin. The normal way to add SearchPlugin doesn&#8217;t work on amazon.de with Ubuntu Firefox <img src='http://blog.team-noir.net/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
<p>I found after a short search one <span style="text-decoration: underline;"><strong>nice overview</strong></span>: <a title="opensearch plugin amazon" href="http://mycroft.mozdev.org/amazon-search-plugins.html">http://mycroft.mozdev.org/amazon-search-plugins.html</a></p>
<p>Thank you! After clicking on &#8220;<em>Amazon DE (Support Mycroft*) de-DE (amazon.de) by Mycroft Project</em>&#8221; my german SearchPlugin works fine.</p>
<p><strong>more SearchPlugins</strong> &#8230;. look here: <a href="http://mycroft.mozdev.org/">http://mycroft.mozdev.org/</a></p>


<p>Related posts:<ol><li><a href='http://blog.team-noir.net/2010/03/aptana-studio-2-0-under-ubuntu-9-10/' rel='bookmark' title='Permanent Link: Aptana Studio 2.0 under Ubuntu 9.10'>Aptana Studio 2.0 under Ubuntu 9.10</a></li>
<li><a href='http://blog.team-noir.net/2010/07/css-center-background-image-in-firefox-co/' rel='bookmark' title='Permanent Link: CSS: center background image in Firefox &#038; Co.'>CSS: center background image in Firefox &#038; Co.</a></li>
<li><a href='http://blog.team-noir.net/2009/08/css-border-bottom-for-ie-6/' rel='bookmark' title='Permanent Link: CSS border-bottom for IE 6'>CSS border-bottom for IE 6</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2010/04/how-to-add-german-amazon-de-opensearch-plugin-to-firefox-3-5-on-ubuntu-9-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to delete csc-default and id tag in TYPO3 4.3</title>
		<link>http://blog.team-noir.net/2010/04/how-to-delete-csc-default-and-id-tag-in-typo3-4-3/</link>
		<comments>http://blog.team-noir.net/2010/04/how-to-delete-csc-default-and-id-tag-in-typo3-4-3/#comments</comments>
		<pubDate>Sat, 10 Apr 2010 15:48:34 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[TYPO3]]></category>
		<category><![CDATA[htmlcode]]></category>
		<category><![CDATA[typoscript]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=350</guid>
		<description><![CDATA[How to &#8230;
Since TYPO3 Version 4.3 all the source code is tagged with unlovely id and class tags with div-wrapper.
&#60;div id="c1" class="csc-default"&#62;
But with one little typoscript snippet you will get rid off it:
tt_content.stdWrap.innerWrap &#62;

Now everything looks clean and sweet. I love TYPO3 anyway!


Related posts:How to &#8230; sort the Typoscript Template
TYPO3 ver. 4.3 released
How to &#8230; [...]


Related posts:<ol><li><a href='http://blog.team-noir.net/2009/05/how-to-sort-the-typoscript-template/' rel='bookmark' title='Permanent Link: How to &#8230; sort the Typoscript Template'>How to &#8230; sort the Typoscript Template</a></li>
<li><a href='http://blog.team-noir.net/2009/11/typo3-ver-4-3-released/' rel='bookmark' title='Permanent Link: TYPO3 ver. 4.3 released'>TYPO3 ver. 4.3 released</a></li>
<li><a href='http://blog.team-noir.net/2009/03/how-to-set-the-favicon-in-typo3/' rel='bookmark' title='Permanent Link: How to &#8230; set the favicon in TYPO3'>How to &#8230; set the favicon in TYPO3</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>How to &#8230;</strong></p>
<p>Since TYPO3 Version 4.3 all the source code is tagged with unlovely <em>id</em> and <em>class</em> tags with <em>div-wrapper</em>.</p>
<pre>&lt;div id="c1" class="csc-default"&gt;</pre>
<p>But with one little typoscript snippet you will get rid off it:</p>
<pre>tt_content.stdWrap.innerWrap &gt;
</pre>
<p>Now everything looks clean and sweet. I love TYPO3 anyway!</p>


<p>Related posts:<ol><li><a href='http://blog.team-noir.net/2009/05/how-to-sort-the-typoscript-template/' rel='bookmark' title='Permanent Link: How to &#8230; sort the Typoscript Template'>How to &#8230; sort the Typoscript Template</a></li>
<li><a href='http://blog.team-noir.net/2009/11/typo3-ver-4-3-released/' rel='bookmark' title='Permanent Link: TYPO3 ver. 4.3 released'>TYPO3 ver. 4.3 released</a></li>
<li><a href='http://blog.team-noir.net/2009/03/how-to-set-the-favicon-in-typo3/' rel='bookmark' title='Permanent Link: How to &#8230; set the favicon in TYPO3'>How to &#8230; set the favicon in TYPO3</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2010/04/how-to-delete-csc-default-and-id-tag-in-typo3-4-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
