<?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 &#187; Javascript</title>
	<atom:link href="http://blog.team-noir.net/tag/javascript/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>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>  ( 172x )
<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>Release: bad Browser &#8211; new Version 1.3</title>
		<link>http://blog.team-noir.net/2009/07/release-bad-browser-new-version-13/</link>
		<comments>http://blog.team-noir.net/2009/07/release-bad-browser-new-version-13/#comments</comments>
		<pubDate>Sun, 26 Jul 2009 17:20:45 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[badbrowser]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[popup]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=203</guid>
		<description><![CDATA[Release
Hi there &#8230;
today we finished the tests for our updated badBrowser version. More information about our ideas and sources for this script you will find here.

Changelog:

Google Chrome detect, warning &#60; version 2.0
new Safari detecting mode

The userAgent from Safari and Chrome are very similar because both of them use webkit. So detecting is more difficult but works [...]


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/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/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[<p><strong>Release</strong></p>
<p>Hi there &#8230;</p>
<p>today we finished the tests for our updated badBrowser version. More information about our ideas and sources for this script you will find <a title="fight old Browser" href="http://blog.team-noir.net/2009/06/fight-old-browsers-warning-with-jquery/">here</a>.</p>
<p><span id="more-203"></span></p>
<p><em>Changelog:</em></p>
<ul>
<li><em>Google Chrome detect, warning &lt; version 2.0</em></li>
<li><em>new Safari detecting mode</em></li>
</ul>
<p>The userAgent from <a href="http://www.apple.com/en/safari/">Safari</a> and <a title="Google Chrome" href="http://www.google.com/chrome/">Chrome</a> are very similar because both of them use <a href="http://webkit.org/">webkit</a>. So detecting is more difficult but works fine now in version 1.3</p>
<p>Thanks to chobo2 and fleshgrinder</p>
<p>Have fun and tell us your thoughts</p>
<p><strong>NEW VERSION: 1.4</strong><br />
<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>  ( 172x )</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/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/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/2009/07/release-bad-browser-new-version-13/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Fight old Browsers &#8211; Warning with jQuery</title>
		<link>http://blog.team-noir.net/2009/06/fight-old-browsers-warning-with-jquery/</link>
		<comments>http://blog.team-noir.net/2009/06/fight-old-browsers-warning-with-jquery/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 17:45:37 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[internet explorer 6]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[old browser]]></category>
		<category><![CDATA[popup]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=137</guid>
		<description><![CDATA[Block the Internet Explorer 6 and other old browsers with a small Warning-div
Hi there,
in the last days we relaunched our website (www.team-noir.net). We used the CSS Framework YAML and create a small website (6 pages). But i spent 4 hours just for bugfixing the  fxxxx Internet Explorer 6.0 and 5.5
They don&#8217;t know variables heights or [...]


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/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>
</ol>]]></description>
			<content:encoded><![CDATA[<h4>Block the Internet Explorer 6 and other old browsers with a small Warning-div</h4>
<p>Hi there,</p>
<p>in the last days we relaunched our website (<a title="new design" href="http://www.team-noir.net">www.team-noir.net</a>). We used the CSS Framework <a title="thanks!" href="http://www.yaml.de">YAML </a>and create a small website (6 pages). But i spent <strong>4 hours</strong> just for bugfixing the <span style="text-decoration: line-through;"> fxxxx</span> Internet Explorer 6.0 and 5.5</p>
<p>They don&#8217;t know variables heights or transparent png&#8217;s &#8230; certainly you know this!</p>
<p>I was so angry about loosing this time for old, silly and unsecure browers &#8230; <img src='http://blog.team-noir.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><span id="more-137"></span></p>
<p>So we decided to implement a small but important WARNING to all users with old browsers. I found a very nice script on <a href="http://think2loud.com/build-an-unsupported-browser-warning-with-jquery/">think2loud.com</a></p>
<p>I just extended the browser-detection, you will find the hole skript &gt;&gt;<a title="download from think2loud" href="http://www.think2loud.com/examples/badbrowser.zip">here</a>&lt;&lt;:</p>
<pre>function badBrowser(){
if($.browser.msie &amp;&amp; parseInt($.browser.version) &lt;= 6){ return true;}
if($.browser.opera &amp;&amp; parseInt($.browser.version) &lt;= 9) { return true;}
if (/Firefox[\/\s](\d+\.\d+)/.test(navigator.userAgent)){
var ffversion=new Number(RegExp.$1)
if (ffversion&lt;=2) { return true;}}
if ($.browser.safari &amp;&amp; (navigator.appVersion.indexOf("1") != -1) ){return true;}
if ($.browser.safari &amp;&amp; (navigator.appVersion.indexOf("2") != -1) ){return true;}
if ($.browser.safari &amp;&amp; (navigator.appVersion.indexOf("3") != -1) ){return true;}
return false;
}</pre>
<p>There are a few ways to detect the browser and correct version. Most problems i had with Safari &#8211; because i cant&#8217;t find any stand-alone Version-Code &#8211; so i had to workaround &#8230; and built 3 queries.</p>
<p>If you have an better an easier idea &#8211; please let me know!</p>
<p>You can check our Sites now with &#8220;old&#8221; Browsers (IE &lt;=6, Opera &lt;9, Safari &lt;=3, Firefox &lt;=2) and see what happens &#8230; <img src='http://blog.team-noir.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>&#8230; Martin</p>
<p><strong>UPDATE (25.06.2009):</strong></p>
<p>I have a new version for browser detecting. Now the &#8220;Opera Problem&#8221; is solved, every <strong>Opera &lt;= Version 9.5 </strong>gets now the Warning-Popup, and not all 9.x versions.<br />
(Thanks to Ulf <img src='http://blog.team-noir.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  )</p>
<pre>function badBrowser(){
    if($.browser.msie &amp;&amp; parseInt($.browser.version) &lt;= 6){ return true;}                  //IE ab ver. 6.0

    if($.browser.opera &amp;&amp; ($.browser.version *10) &lt;= 95) { return true;}                //Opera ab ver. 9.5

  if (/Firefox[\/\s](\d+\.\d+)/.test(navigator.userAgent)){
    var ffversion=new Number(RegExp.$1)
    if (ffversion&lt;=2) { return true;}}                                                   //Firefox ab ver. 2.0

    if ($.browser.safari &amp;&amp; (navigator.appVersion.indexOf("1.") != -1) ){return true;}    //Safari ver. 1.0
    if ($.browser.safari &amp;&amp; (navigator.appVersion.indexOf("2.") != -1) ){return true;}    //Safari ver. 2.0
    if ($.browser.safari &amp;&amp; (navigator.appVersion.indexOf("3.") != -1) ){return true;}    //Safari ver. 3.0

    return false;
}</pre>
<p>more problems? tell us &#8230;</p>

<a href='http://blog.team-noir.net/2009/06/fight-old-browsers-warning-with-jquery/090625-032528-opera-80-windows-xp-9859c34422442fbcd7347674d6e6453c/' title='Opera Version 8.0'><img width="150" height="150" src="http://blog.team-noir.net/wp-content/uploads/2009/06/090625-032528-opera-80-windows-xp-9859c34422442fbcd7347674d6e6453c-150x150.png" class="attachment-thumbnail" alt="" title="Opera Version 8.0" /></a>
<a href='http://blog.team-noir.net/2009/06/fight-old-browsers-warning-with-jquery/090625-034216-opera-925-windows-xp-4a2abe40731b943e6004d449c3262623/' title='Opera Version 9.25'><img width="150" height="150" src="http://blog.team-noir.net/wp-content/uploads/2009/06/090625-034216-opera-925-windows-xp-4a2abe40731b943e6004d449c3262623-150x150.png" class="attachment-thumbnail" alt="" title="Opera Version 9.25" /></a>
<a href='http://blog.team-noir.net/2009/06/fight-old-browsers-warning-with-jquery/090625-032647-opera-960-windows-xp-3b592cade0897b6df6d565b9b03421a4/' title='Opera Version 9.60'><img width="150" height="150" src="http://blog.team-noir.net/wp-content/uploads/2009/06/090625-032647-opera-960-windows-xp-3b592cade0897b6df6d565b9b03421a4-150x150.png" class="attachment-thumbnail" alt="" title="Opera Version 9.60" /></a>
<a href='http://blog.team-noir.net/2009/06/fight-old-browsers-warning-with-jquery/090625-032747-opera-964-windows-xp-a1edca7dcdf40b22c2da9d87302768bf/' title='Opera Version 9.64'><img width="150" height="150" src="http://blog.team-noir.net/wp-content/uploads/2009/06/090625-032747-opera-964-windows-xp-a1edca7dcdf40b22c2da9d87302768bf-150x150.png" class="attachment-thumbnail" alt="" title="Opera Version 9.64" /></a>
<a href='http://blog.team-noir.net/2009/06/fight-old-browsers-warning-with-jquery/090625-032539-opera-1000-windows-xp-57f87d8fbc2ef0c2587b46ce34524b2f/' title='Opera Version 10.00'><img width="150" height="150" src="http://blog.team-noir.net/wp-content/uploads/2009/06/090625-032539-opera-1000-windows-xp-57f87d8fbc2ef0c2587b46ce34524b2f-150x150.png" class="attachment-thumbnail" alt="" title="Opera Version 10.00" /></a>

<h3><strong>UPDATE:</strong></h3>
<h4><a title="check out the new version" href="http://blog.team-noir.net/2010/05/jquery-badbrowser-update-version-1-4/">new<strong> badBrowser</strong> Version released !!!</a></h4>
<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>  ( 172x )
<p><a title="check out the new version!" href="http://blog.team-noir.net/2010/05/jquery-badbrowser-update-version-1-4/">more information</a></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/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>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2009/06/fight-old-browsers-warning-with-jquery/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Aptana IDE Webdevelopment</title>
		<link>http://blog.team-noir.net/2009/05/aptana-webdevelopment-zen-code/</link>
		<comments>http://blog.team-noir.net/2009/05/aptana-webdevelopment-zen-code/#comments</comments>
		<pubDate>Sat, 30 May 2009 14:32:00 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[aptana]]></category>
		<category><![CDATA[ide]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=119</guid>
		<description><![CDATA[hey!
instead of  giving you TYPO3 hints and snippets i like to share my enthusiasm. Yesterday i found APTANA and started to work with. Amazing!
The hole IDE is nice to look at, good to work with and for now i discover so much features &#8230; WHOU.
I will continue posting here all the nice possibilities to work [...]


Related posts:<ol><li><a href='http://blog.team-noir.net/2009/08/new-aptana-version-15/' rel='bookmark' title='Permanent Link: new Aptana version 1.5'>new Aptana version 1.5</a></li>
<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/03/how-to-code-a-jquery-slider-menu/' rel='bookmark' title='Permanent Link: How to code a jQuery slider menu'>How to code a jQuery slider menu</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>hey!</p>
<p>instead of  giving you TYPO3 hints and snippets i like to share my enthusiasm. Yesterday i found <a title="Aptana IDE" href="http://aptana.com/">APTANA </a>and started to work with. Amazing!</p>
<p>The hole IDE is nice to look at, good to work with and for now i discover so much features &#8230; WHOU.</p>
<p>I will continue posting here all the nice possibilities to work with.</p>
<p><span id="more-119"></span></p>
<p>for now, look here:  a really cool plugin is ZEN CODE:<br />
(turn off the sound <img src='http://blog.team-noir.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  )</p>
<p><object width="425" height="350" data="http://www.youtube.com/v/ug84Ypwqfzk" type="application/x-shockwave-flash"><param name="src" value="http://www.youtube.com/v/ug84Ypwqfzk" /></object></p>
<p>If you want to share your APTANA-experience &#8211; feel free to post here.</p>
<p><strong>Links</strong>:</p>
<ul>
<li><a href="http://aptana.com/">http://aptana.com/</a></li>
<li><a title="Zen Code" href="http://code.google.com/p/zen-coding/">http://code.google.com/p/zen-coding/</a></li>
</ul>
<p>greetz<br />
Martin</p>


<p>Related posts:<ol><li><a href='http://blog.team-noir.net/2009/08/new-aptana-version-15/' rel='bookmark' title='Permanent Link: new Aptana version 1.5'>new Aptana version 1.5</a></li>
<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/03/how-to-code-a-jquery-slider-menu/' rel='bookmark' title='Permanent Link: How to code a jQuery slider menu'>How to code a jQuery slider menu</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2009/05/aptana-webdevelopment-zen-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
