<?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>Codecandies &#187; firefox</title>
	<atom:link href="http://codecandies.de/tag/firefox/feed/" rel="self" type="application/rss+xml" />
	<link>http://codecandies.de</link>
	<description>Das Weblog von Nico Brünjes.</description>
	<lastBuildDate>Wed, 08 Feb 2012 11:20:31 +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>Mozilla 3.6beta</title>
		<link>http://codecandies.de/2009/11/01/mozilla-3-6beta/</link>
		<comments>http://codecandies.de/2009/11/01/mozilla-3-6beta/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 09:54:31 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Postings]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://codecandies.de/?p=2406</guid>
		<description><![CDATA[<p>Die ersten Beta-Versionen des neuen Firefox stehen bereit und es zeigt sich: mit dem 3.7er Rekease wird Mozilla in Sachen CSS3 gewaltig auf seine Konkurrenten Safari und Chrome aufholen, teilweise geht Firefox sogar schon weiter. Damit r&#252;ckt CSS3 immer mehr in den Focus der Webentwicklung.</p>]]></description>
			<content:encoded><![CDATA[<p>Seit vorgestern gibt es die erste <a href="https://developer.mozilla.org/devnews/index.php/2009/10/30/firefox-3-6-beta-1-is-now-available-for-download/">Betaversion des Firefox 3.6 zum Download</a> und es gibt damit einige recht interessante Neuerungen im Bereich CSS.</p>
<p><span id="more-2406"></span></p>
<h3>-moz-background-size</h3>
<p>Da ist Mozilla ja etwas hinterher gewesen, denn die Gr&#246;&#223;e des Hintergrundbildes anzupassen gestatten <a href="http://www.css3.info/preview/background-size/">andere Browser schon l&#228;nger</a> (Opera ab 9.5, Safari3 und Konqueror). Dabei l&#228;sst sich das Hintergrundbild von der <code>-moz-background-origin</code> auf verschiedene Arten vergr&#246;&#223;ern und/oder verkleinern. Neben Angaben in L&#228;nge oder Prozent, sind auch Schl&#252;sselw&#246;rter wie <code>auto</code>, <code>contain</code> (so gro&#223; wie m&#246;glich, wenn das Bild kleiner als die Gr&#246;&#223;e des Container ist) und <code>cover</code> (so klein wie m&#246;glich, wenn das Bild gr&#246;&#223;er ist) erlaubt. Die letzten beiden Schl&#252;sselw&#246;rter sind bisher firefoxpropriet&#228;r.</p>
<h3>image-rendering</h3>
<p>Passend dazu wird die Eigenschaft <code>image-rendering</code> eingef&#252;hrt, eine Analogie zu Microsofts <code>-ms-interpolation-mode</code>. W&#228;hrend man bei M$ aber zwischen <code>bicubic</code> und <code>nearest-neighbour</code> w&#228;hlen kann, bietet Mozilla vier Werte an: <code>auto</code>, <code>optimizeQuality</code>, <code>optimizeSpeed</code> und <code>-moz-crisp-edges</code>. Wobei im Moment zumindest gilt: auto = optimizeQuality und optimizeSpeed = -moz-crisp-edges. Jedenfalls soll damit dem Browser eine Renderingmethode f&#252;r vergr&#246;&#223;erte oder verkleinerte Bilder an die Hand gegeben werden.</p>
<h3>-moz-linear/radial-gradient</h3>
<p>Ebenfalls neu und im Hintergrund t&#228;tig sind <code>-moz-linear-gradient</code> und <code>-moz-radial-gradient</code>. Firefox stellt damit die M&#246;glichkeit zur Verf&#252;gung, Farbverl&#228;ufe zu generieren, die sich in der Verlaufsrichtung genauso beeinflussen lassen, wie in den Verlaufsl&#228;nge. Au&#223;erdem k&#246;nnen beliebig viele Vias bzw <code>color-stop</code>s agebeben werden, d.h. man kann auch (wenn man das will) Regebogenverl&#228;ufe erzielen. Democode dazu:</p>
<pre><code>background: -moz-linear-gradient(left, right,
    from(red),
    color-stop(16%, orange),
    color-stop(32%, yellow),
    color-stop(48%, green),
    color-stop(64%, blue),
    color-stop(80%, indigo),
    to(violet));</code></pre>
<p>Neben den Farbschl&#252;sselw&#246;rtern funktionieren nat&#252;rlich auch Hexoces, <code>rgb()</code> und (Achtung!) auch <code>rgba()</code>, also auch Transparenzen.</p>
<p>Dieses Feature gibt es &#252;brigens auch schon bei anderen Browsern, n&#228;mlich seit IE 5.5 als <code>filter: progid:DXImageTransform.Microsoft.Gradient()</code> und auch in Safari 4, als <code>-webkit-gradient(linear,…)</code> (man ist sich mal wieder nicht &#252;ber die Syntax einig).</p>
<h3>Weitere Mediaqueries</h3>
<p>Bereits ab Version 3.5 unterst&#252;tzt Firefox die <a href="http://www.w3.org/TR/css3-mediaqueries/">CSS3 media queries</a>, womit man Stylesheets anhand bestimmter Eigenschaften des Mediums ausw&#228;hlen kann, auf dem eine Website angezeigt wird. Einige Ber&#252;hmtheit hat dieses Feature bereits durch das iPhone erlangt, denn mit <code>&lt;link media=&quot;only screen and (max-device-width: 480px)&quot; href=&quot;../iphone.css&quot; type=&quot;text/css&quot; rel=&quot;stylesheet&quot;/&gt;</code> kann man eben ein Medium ansteuern, dessen maximale Darstellungsbreite 480px ist, also bspw. das iPhone. Solche queries kann man &#252;ber viele Eigenschaften machen, bspw. Farbtiefe, Seitenverh&#228;ltnis des Bildschirms, dessen H&#246;he und Breite, die H&#246;he und Breite des Viewports und einige mehr.</p>
<p>Firefox ab 3.6 kann noch ein paar mehr, mozilla spezifische Queries verstehen und auswerten. Damit lassen sich tats&#228;chlich sehr spezielle Dinge &#252;ber das genutzte Medium erfahren, zum Beispiel, ob die Website unter einem ungethemeten Windows angezeigt wird (<code>moz-windows-classic</code>) oder unter OS X mit „Graphite” Erscheinungsbild (<code>-moz-mac-graphite-theme</code>) oder eben – und das wirds m.M. nach interessant – ob ein Touchscreen vorliegt: <code>-moz-touch-enabled</code>. Mit letzterm k&#246;nnte man bspw. auch f&#252;r Touchscreens das normale CSS verwenden, aber Buttons einfach ein wenig vergr&#246;&#223;ert darstellen. Da ist noch einiges drin… zur Zeit aber nur propriet&#228;r f&#252;r Firefox.</p>
<h3>:indeterminate</h3>
<p>Ich geb hier mal zu, dass ich nicht wusste, dass man mit Javascript seit Firefox 3.2 eine Checkbox den Zustand „indeterminate” zuweisen kann <code>document.getElementById(”check1″).indeterminate = true;</code>, oder <a href="https://developer.mozilla.org/web-tech/2009/02/05/a-new-checkbox-type/">was es damit auf sich hat</a> (wenn man das Beispiel sieht, ist alles klar). Ab FF3.6 kann man diesen Zustand &#252;ber eine CSS-Pseudoklasse nutzen, also bspw. die Hintergrundfarbe des Checkbox &#228;ndern.</p>
<h3>WOFF</h3>
<p>Und <em>last but not least</em> unterst&#252;tzt Firefox 3.6 das Fontformat <a href="http://people.mozilla.com/~jkew/woff/woff-2009-09-16.html">WOFF</a> (Web Open Font Format). WOFF erkl&#228;rt sich so:</p>
<blockquote cite="https://developer.mozilla.org/en/CSS/@font-face"><p>WOFF (Web Open Font Format) is a new web font format developed by Mozilla in concert with Type Supply, LettError, and other organizations. It uses a compressed version of the same table-based sfnt structure used by TrueType, OpenType, and Open Font Format, but adds metadata and private-use data structures, including predefined fields allowing foundries and vendors to provide license information if desired.</p>
 <p class="citesource"><cite><a href="https://developer.mozilla.org/en/CSS/@font-face">developer.mozilla.org</a></cite></p></blockquote>
<p>Ich sag mal <a href="http://www.edenspiekermann.com/woff/">Erik Spiekermann bef&#252;rwortet das neue Format</a> und es sieht so aus, als das dies der Weg aus der Linzenzfalle beim einbetten von Schriften via <a href="http://codecandies.de/2009/06/30/embedden-sie-jetzt/"><code>@font-face</code></a> ist.</p>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2009/11/01/mozilla-3-6beta/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>@font-face considered harmful?</title>
		<link>http://codecandies.de/2009/10/14/font-face-considered-harmful/</link>
		<comments>http://codecandies.de/2009/10/14/font-face-considered-harmful/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 08:11:05 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Postings]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[opera]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[typographie]]></category>

		<guid isPermaLink="false">http://codecandies.de/?p=2380</guid>
		<description><![CDATA[<p>Eingehende Tests der @font-face-Implementierung in diversen Browsern hat ergeben: wenn man nicht aufpasst, kann das Einbetten von Schriftarten zu einer echten Performancefalle werden. F&#252;r strakfrequentierte Webseiten derzeit noch keine Perspektive.</p>]]></description>
			<content:encoded><![CDATA[<p>Nachdem sich die Kunde von den <a href="http://codecandies.de/2009/06/30/embedden-sie-jetzt/">M&#246;glichkeiten des Fontembedding</a> nun reichlich verbreitet hat, tauchen leider die ersten Problme auf. <a href="http://www.stevesouders.com/blog/2009/10/13/font-face-and-performance/" title="@font-face and performance">Steve Sounders hat einige Quellen zu Problemen beim Fontembedding zusammengefasst und eigene Untersuchungen angestellt</a>, unbedingt lesen bitte, auch wenn ich hier kurz die unliebsamen Fakten zusammenfasse: im Bereich <em>high performance websites</em> muss man wohl von <code>@font-face</code> zun&#228;chst mal Abstand nehmen.</p>
<p>Nat&#252;rlich ist es mal wieder die Internet-Explorer-Familie, die extreme Perdormanceprobleme aufweisen, aber auch s&#228;mtliche andere Browser bekleckern sich im Umgang mit der noch recht jungen Technologie kaum mit Ruhm. <abbr title="FlashOfUnstyledText">FOUT</abbr> – <q>flash of unstyled text</q> ist dabei noch das kleinste Problem, wenn die Fontdateien nicht schnell genug vom Server geliefert werden. In IEs wirkt sich das noch schlimmer aus: bis zum Download des Fonts zeigt <em>Bill Gates Rache</em> <strong>gar nichts an</strong>. In anderen Browsern bleiebn nur die Textteile, die mit <code>@font-face</code> gerendert werden sollen unsichtbar, Firefox zeigt die Ausweichschrift(en) an.</p>
<p>Solchen (und den anderen im Text genannten) Performancefallen kann man nat&#252;rlich mit Caching, Zipping und &#228;hnlichzen Techniken begegnen. Ob man sich aber den Aufwand leisten will, bereits zum jetzigen Zeitpunkt, ich stelle das mal in Frage…</p>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2009/10/14/font-face-considered-harmful/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Embedden Sie jetzt!</title>
		<link>http://codecandies.de/2009/06/30/embedden-sie-jetzt/</link>
		<comments>http://codecandies.de/2009/06/30/embedden-sie-jetzt/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 07:46:01 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Postings]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[opera]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[typographie]]></category>

		<guid isPermaLink="false">http://codecandies.de/?p=2145</guid>
		<description><![CDATA[Mit @font-face lassen sich Schriften in Webseiten einbetten. Machen Sie das! Ok, es ist soweit, mit dem neuen Firefox 3.5…]]></description>
			<content:encoded><![CDATA[<div class="medium"><a class="thickbox" title="Embedded Font im Firefox 3.5rc3" href="http://codecandies.de/wp-content/uploads/2009/06/fontatfirefox.jpg"><img src="http://codecandies.de/wp-content/uploads/2009/06/fontatfirefox-340x123.jpg" alt="fontatfirefox" title="fontatfirefox" width="340" height="123" class="alignnone size-medium wp-image-2148" /></a>
<p>Mit <code>@font-face</code> lassen sich Schriften in Webseiten einbetten. Machen Sie das!</p>
</div>
<p>Ok, es ist soweit, mit dem neuen <a href="http://www.mozilla.com/en-US/firefox/all-rc.html">Firefox 3.5</a> (und Safari 4 und <a href="http://www.opera.com/browser/next/">Opera 10beta</a>), steht immer mehr Nutzern unserer Websites <em>Font<del>embedding</del><ins>downloading<sup><a href="#star1">1</a></sup></ins></em> zur Verf&#252;gung. Damit widerum steht der fl&#228;chendeckenden Umsetzung  typographisch ordentlich gestylter Websites nicht mehr viel im Weg, ausser nat&#252;rlich die IE-Familie, aber die ignorieren wir hier einfach einmal.<sup><a href="#star2">2</a></sup></p>
<p><span id="more-2145"></span></p>
<h4>Und so geht&#8217;s</h4>
<p>Das obige Beispiel nutzt das Embedding, der Code daf&#252;r sieht ungef&#228;hr so aus:</p>
<pre><code>@font-face {
    font-family: Kaffeesatz;
    font-weight: normal;
    src: url(fonts/YanoneKaffeesatz-Regular.otf) format('opentype');
}
h1 {
	font: normal 3em/120% Kaffeesatz, sans-serif;
	text-shadow: 1px 1px 1px #eee;
}</code></pre>
<p>Der genutzte Font ist die unter CC Lizenz stehende <a href="http://yanone.de/typedesign/kaffeesatz/">Kaffeesatz</a>. Der Code ist vielleicht nicht ganz selbst erkl&#228;rend: mit <code>@font-face</code> legen wir selbst eine Font fest, den Namen der <code>font-family</code> kann man dabei frei w&#228;hlen, ein dem Font nahe stehender Name empfiehlt sich nat&#252;rlich. Als <code>src</code> wird der Pfad zum <abbr title="Open Type Font">OTF</abbr>- oder <abbr title="TrueTypeFont">TTF</abbr>-File angegeben, danach noch das <code>format</code>. Fertig. Damit steht uns die <code>font-family</code> „Kaffeesatz” zur weiteren Nutzung zu Verf&#252;gung. Das <code>H1</code> macht auch gleich Gebrauch davon, noch ein wenig vers&#252;sst mit etwas CSS3-<code>text-shadow</code> (wenn wir auf den IE sch…sen, dann aber richtg).</p>
<h4>Mehr Gewicht, bitte</h4>
<p>Folgendes ist zu beachten: wir haben bis hier nur den Font f&#252;r die <code>font-weight</code> <em>normal</em> definiert. Wollen wir eine <em>bold</em>e Schrift, muss ein Font daf&#252;r <em>embedded</em> werden, und zwar bspw. so:</p>
<pre><code>@font-face {
    font-family: Kaffeesatz;
    font-weight: normal;
    src: url(fonts/YanoneKaffeesatz-Regular.otf) format('opentype');
}
@font-face {
    font-family: Kaffeesatz;
    font-weight: bold;
    src: url(fonts/YanoneKaffeesatz-Bold.otf) format('opentype');
}
h1 {
	font: normal 3em/120% Kaffeesatz,sans-serif;
	text-shadow: 1px 1px 1px #eee;
}
h2 {
    font: bold 2em/120% Kaffeesatz, sans-serif;
    text-transform: uppercase;
}</code></pre>
<p>In diesem Falle w&#252;rden die H2s bold gesetzt, da wir hierf&#252;r <em>YanoneKaffeesatz-Bold.otf</em> embedded haben. &#196;hnliches k&#246;nnen wir nun auch mit <code>font-style: italic</code> anstellen.</p>
<p>Nochmal zur&#252;ck zur Fettung: <del>Safari kann einige Fettungsstufen mehr anzeigen als Firefox</del>. Unterst&#252;tzt wird eine genauere Abstufung des Fettungsgrades, wenn man bspw. einen Font hat die Kaffeesatz. Das kann dann so aussehen:</p>
<pre><code>@font-face {
    font-family: Kaffeesatz;
    font-weight: 100;
    src: url(fonts/YanoneKaffeesatz-Thin.otf) format('opentype');
}
@font-face {
    font-family: Kaffeesatz;
    font-weight: 300;
    src: url(fonts/YanoneKaffeesatz-Light.otf) format('opentype');
}
@font-face {
    font-family: Kaffeesatz;
    font-weight: 400;
    src: url(fonts/YanoneKaffeesatz-Regular.otf) format('opentype');
}
@font-face {
    font-family: Kaffeesatz;
    font-weight: 700;
    src: url(fonts/YanoneKaffeesatz-Bold.otf) format('opentype');
}</code></pre>
<p>Das geht sicherlich auch mit <em>keywords</em> wie „light” oder „bolder” etc.</p>
<div class="medium"><a class="thickbox" href="http://codecandies.de/wp-content/uploads/2009/06/schriftenvergleich.gif"><img src="http://codecandies.de/wp-content/uploads/2009/06/schriftenvergleich-340x215.gif" alt="schriftenvergleich" title="schriftenvergleich" width="340" height="215" class="alignnone size-medium wp-image-2155" /></a>
<p>Das Fontrendering unterscheidet sich mitunter, links Firefox, rechts Safari 4 (Mac).</p></div>
<h4>Fonts von der Platte zuerst</h4>
<p>Was ja auch angehen kann, ist dass man eher einen Font nutzen m&#246;chte, der sowieso schon lokal vorhanden ist und nur wenn dieser nicht vorhanden ist, will man einen Download anbieten. Geht auch, wie man bei <a href="http://hacks.mozilla.org/2009/06/beautiful-fonts-with-font-face/">John Dagget</a> nachlesen kann, mit der Eigenschaft „local”:</p>
<pre><code>@font-face {
  font-family: NeueHelvetica;
  src: local("Helvetica Neue"),
       local("HelveticaNeue"),
       url(fonts/MgOpenModernaRegular.ttf);
}</code></pre>
<p>Hier sind zwei <code>local</code> angegeben, &#252;ber diese Liste wird iteriert, genauso wie in der normalem <code>font-family</code> Zuweisung, wo die Schriften durch Kommata getrennt werden (das diese Zusammenstellung von Namen nicht immer ganz einfach ist, <a href="http://www.qxm.de/webdesign/20080317-155549/helvetica-neue-light-in-firefox-3">lesen wir bei Herrn Preidel</a>).</p>
<h4>Und nun?</h4>
<p>Nat&#252;rlich sollte man nur Schriften nehmen, die man auch f&#252;rs embedding benutzen darf, sonst gibt&#8217;s schnell Lizenz&#228;rger. <a href="http://opentype.info/blog/2008/08/05/10-great-free-fonts-for-font-face-embedding/">Hier gibt&#8217;s ein paar freie Schriften</a>, die das ausdr&#252;cklich zulassen. Ach ja und zum guten Schluss, sollte man <code>font-size-adjust</code> <a title="Peter Kr&#246;ner: Sch&#246;nes neues CSS: font-size-adjust" href="http://www.peterkroener.de/schoenes-neues-css-font-size-adjust/">auf keinen Fall vergssen</a>.</p>
<h4>Updates</h4>
<p id="star1"><sup>1)</sup> Von „Embedding“ zu sprechen ist eigentlich nicht richtig, weil der Font tats&#228;chlich auf den Rechner des Nutzers heruntergeladen wird. Das schl&#228;gst sich nat&#252;rlich auch in der Gr&#246;&#223;e der Website nieder und ist auch f&#252;r die Lizenzfrage nicht unerheblich.</p>
<p id="star2"><sup>2)</sup> Na gut, ich hab noch einen Link <a href="http://codecandies.de/2008/11/05/font-face-in-ie-making-web-fonts-work/">aus meinen Bookmarks geangelt</a>, der mehr in Sachen IE verr&#228;t.</p>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2009/06/30/embedden-sie-jetzt/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>Intranet</title>
		<link>http://codecandies.de/2009/06/15/intranet/</link>
		<comments>http://codecandies.de/2009/06/15/intranet/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 20:58:09 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Postings]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://codecandies.de/?p=2071</guid>
		<description><![CDATA[Letzte Woche habe ich einen mehrt&#228;gigen Workshop gemacht, bei dem es um Oberfl&#228;chendesigns f&#252;r eine Intranet-Anwendung ging. Der Clou: vorrausgesetzter…]]></description>
			<content:encoded><![CDATA[<p>Letzte Woche habe ich einen mehrt&#228;gigen Workshop gemacht, bei dem es um Oberfl&#228;chendesigns f&#252;r eine Intranet-Anwendung ging. Der Clou: vorrausgesetzter Browser f&#252;r diese Anwendung ist <strong>Firefox &gt; 2</strong>.</p>
<p>Da steigen einem mitunter die Tr&#228;nen in die Augen, wenn man nach ein bis zwei Stunden endg&#252;ltig realisiert hat, das man sich um <em>bloody fuckin&#8217;</em> Internet Explorer – welche Version auch immer – keine Gedanken zu machen braucht. Wooohooo!</p>
<p>Her mit den Childselektoren, den Pseudoklassen und runden Ecken!</p>
<p>Und sch… auf SEO.</p>
<p>Ach, was f&#252;r ein befreiendes Gef&#252;hl. Muss man mal gemacht haben. Schade, dass es so kurz war.</p>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2009/06/15/intranet/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Raider heisst jetzt Twix</title>
		<link>http://codecandies.de/2009/03/06/raider-heisst-jetzt-twix/</link>
		<comments>http://codecandies.de/2009/03/06/raider-heisst-jetzt-twix/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 08:38:16 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Postings]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://codecandies.de/?p=1939</guid>
		<description><![CDATA[Und Firefox 3.1 heisst jetzt Firefox 3.5. Naja.]]></description>
			<content:encoded><![CDATA[<p>Und Firefox 3.1 heisst jetzt Firefox 3.5. Naja.</p>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2009/03/06/raider-heisst-jetzt-twix/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Wie niedlich ist der denn bitte?</title>
		<link>http://codecandies.de/2008/11/24/wie-niedlich-ist-der-denn-bitte/</link>
		<comments>http://codecandies.de/2008/11/24/wie-niedlich-ist-der-denn-bitte/#comments</comments>
		<pubDate>Mon, 24 Nov 2008 19:11:52 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Postings]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://codecandies.de/?p=1500</guid>
		<description><![CDATA[Beim chinesischen Firefox ist eigentlich alles anders. Aber die Chinesen surfen ja auch anders.]]></description>
			<content:encoded><![CDATA[<div class="medium"><img src="http://codecandies.de/wp-content/uploads/2008/11/firefoxie-340x228.png" alt="" title="firefoxie" width="340" height="228" class="alignnone size-medium wp-image-1501" />
<p>Beim <a href="http://www.g-fox.cn/">chinesischen Firefox</a> ist eigentlich alles anders. Aber die <a href="http://www.readwriteweb.com/archives/firefox_china_edition_everything_a_local_browser_should_be.php">Chinesen surfen ja auch anders</a>.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2008/11/24/wie-niedlich-ist-der-denn-bitte/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Juice</title>
		<link>http://codecandies.de/2008/11/04/juice/</link>
		<comments>http://codecandies.de/2008/11/04/juice/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 15:55:03 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[semantic web]]></category>

		<guid isPermaLink="false">http://codecandies.de/?p=1369</guid>
		<description><![CDATA[Juice ist eine Firefox-Sidebar die contextrelevante Inhalte anbietet: Suchergenisse, Videos, Wikipedia… way cool! Mehr dazu hier.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.juiceapp.com/">Juice</a> ist eine Firefox-Sidebar die contextrelevante Inhalte anbietet: Suchergenisse, Videos, Wikipedia… <strong>way cool!</strong> Mehr dazu <a href="http://www.techcrunch.com/2008/11/03/pump-up-firefox-with-juice-now-in-public-beta/">hier</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2008/11/04/juice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video und Audio in Firefox 3.1</title>
		<link>http://codecandies.de/2008/10/28/video-und-audio-in-firefox-31/</link>
		<comments>http://codecandies.de/2008/10/28/video-und-audio-in-firefox-31/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 09:54:01 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Postings]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://codecandies.de/?p=1322</guid>
		<description><![CDATA[Wenn man ein wenig sucht, findet man einige Artikel zu HTML5 und meist fehlte nicht die pessimistische Anmerkung, wie lang das wohl noch dauern w&#252;rde, bis das umgesetzt ist, yadayadayada. Die Wahrheit ist: einiges ist bereits heute umgesetzt und zwar in Firefox 3.1, dessen erste Betaversion ich seit ein paar Tagen als Standardbrowser nutze (und sch&#228;tze).]]></description>
			<content:encoded><![CDATA[<p>Wenn man ein wenig sucht, findet man <a href="http://codecandies.de/index.php?s=html5">einige Artikel</a> zu <strong>HTML5</strong> und meist fehlte nicht die pessimistische Anmerkung, wie lang das wohl noch dauern w&#252;rde, bis das umgesetzt ist, <em>yadayadayada</em>. Die Wahrheit ist: einiges ist bereits heute umgesetzt und zwar <a href="http://ajaxian.com/archives/firefox-31-to-support-html-5-video-and-audio">in Firefox 3.1</a>, dessen erste Betaversion ich seit ein paar Tagen als Standardbrowser nutze (und sch&#228;tze).</p>
<p>Im Moment wird <em>zwar nur</em> das offene Ogg-Format unterst&#252;tzt, weitere Formate kann man sich allerdingsleicht vorstellen. Und je nach Willen der Zusammenarbeit der Lizenzinhaber sicherlich auch umsetzbar. Jedenfalls mit…</p>
<pre class="code"><code>&lt;video src=&quot;http://v2v.cc/~j/theora_testsuite/320x240.ogg&quot; autoplay&gt;
    Your browser does not support the &lt;code&gt;video&lt;/code&gt; element.
&lt;/video&gt;</code></pre>
<p>… ist in windeseile ein Videoplay umsetzt, der Ogg-Videos abspielt und sich mit Javascript auch steuern l&#228;sst.</p>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2008/10/28/video-und-audio-in-firefox-31/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox 3.1alpha2</title>
		<link>http://codecandies.de/2008/09/08/firefox-31alpha2/</link>
		<comments>http://codecandies.de/2008/09/08/firefox-31alpha2/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 07:19:45 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Postings]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://codecandies.de/?p=1031</guid>
		<description><![CDATA[Entwicklerversionen und die erste Alpha von Firefox 3.1 habe ich mal ausgelassen, nun jedoch ist die zweite Alphaversion (Gecko 1.9.1)…]]></description>
			<content:encoded><![CDATA[<p>Entwicklerversionen und die erste Alpha von Firefox 3.1 habe ich mal ausgelassen, nun jedoch ist die zweite Alphaversion (Gecko 1.9.1) <a href="http://developer.mozilla.org/devnews/index.php/2008/09/05/firefox-31-alpha-2-now-available-for-download/">verf&#252;gbar</a>  und mit da gerade Aufregung im Browsergesch&#228;ft herrscht, lohnt es sicherlich jetzt mal einen Blick drauf zu werfen. Es sind ja ein paar Neuerungen dabei: so wird bspw. das HTML 5 <code>&lt;video&gt;</code>-Element nun unterst&#252;tzt, man kann Tabs zwischen Fenstern <em>draggen &amp; droppen</em>, der CSS 2.1 und CSS 3 Support wurde weiter ausgebaut.</p>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2008/09/08/firefox-31alpha2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The 5 Best Firebug Extensions</title>
		<link>http://codecandies.de/2008/07/22/the-5-best-firebug-extensions/</link>
		<comments>http://codecandies.de/2008/07/22/the-5-best-firebug-extensions/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 04:25:27 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://codecandies.de/?p=703</guid>
		<description><![CDATA[Firebug extensions are a sort of meta-extension that lets you add on to Firebug. Developers are adding some features that…]]></description>
			<content:encoded><![CDATA[<p><q>Firebug extensions are a sort of meta-extension that lets you add on to Firebug. Developers are adding some features that we’re starting to find hard to live without.</q> [<a href="http://codecandies.de/2008/07/21/voran-firebug/#comment-4606">via</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2008/07/22/the-5-best-firebug-extensions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Voran Firebug!</title>
		<link>http://codecandies.de/2008/07/21/voran-firebug/</link>
		<comments>http://codecandies.de/2008/07/21/voran-firebug/#comments</comments>
		<pubDate>Mon, 21 Jul 2008 07:19:16 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Postings]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://codecandies.de/?p=697</guid>
		<description><![CDATA[Mein Lieblingstool Firebug f&#252;r die Webentwicklung, wird wohl in n&#228;chster Zeit wieder ein paar Schritte nach vorn machen, nachdem es im Zuge des Update auf Firefox 3 zu kleinere Holprigkeiten gekommen war…]]></description>
			<content:encoded><![CDATA[<p>Mein Lieblingstool <a href="http://getfirebug.com">Firebug</a> f&#252;r die Webentwicklung, wird wohl in n&#228;chster Zeit wieder ein paar Schritte nach vorn machen, nachdem es im Zuge des Update auf Firefox 3 zu kleinere Holprigkeiten gekommen war. Der von uns inzwischen nahezu religi&#246;s verehrte Joe Hewitt (»Aaaaaaaaaaaaaaahhh!«) kann nicht mehr genug Zeit aufbringen, Firebug weiterzutreiben, deswegen hat man die <a href="http://getfirebug.com/workingGroup/">Firebug WorkingGroup</a> ins Leben gerufen. Hier tummelten sich bisher John J. Barton von IBM und Jan Odvarko, nun stossen zwei Leute der Mozilla Foundation dazu: <a href="http://ejohn.org/blog/firebuggin/">John Resig</a> und Rob Campbell. <strong>Voran! Voran!</strong> [<a href="http://ajaxian.com/archives/firebug-to-get-a-boost">via</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2008/07/21/voran-firebug/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Mal updaten</title>
		<link>http://codecandies.de/2008/07/17/mal-updaten/</link>
		<comments>http://codecandies.de/2008/07/17/mal-updaten/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 08:14:21 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Postings]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://codecandies.de/?p=688</guid>
		<description><![CDATA[Das Google Online Security Blog berichtet &#252;ber die Update-Faulheit der Browsernutzer: man hat dazu auch Zahlen…]]></description>
			<content:encoded><![CDATA[<div class="div-306-pull-right" style="width:470px"><img src="http://codecandies.de/wp-content/uploads/iw/ZZ6294E763.jpg" width="470" height="194" alt="screenshot" /></div>
<p>Das <a href="http://googleonlinesecurity.blogspot.com/2008/07/are-you-using-latest-web-browser.html">Google Online Security Blog berichtet</a> &#252;ber die Update-Faulheit der Browsernutzer: man hat dazu auch Zahlen:</p>
<blockquote cite="http://googleonlinesecurity.blogspot.com/2008/07/are-you-using-latest-web-browser.html"><p>Over the past 18 months, the study also shows, a maximum of 83.3% of Firefox users were using the latest major version of the web browser and also had all current patches installed (i.e. latest minor version). Only 56.1% and 47.6% of Opera and Internet Explorer users, respectively, were similarly utilizing fully-patched web browsers. Apple users are no better: since the public release of Safari 3, only 65.3% of users operate the latest Safari version.</p>
 <p class="citesource"><cite><a href="http://googleonlinesecurity.blogspot.com/2008/07/are-you-using-latest-web-browser.html">googleonlinesecurity.blogspot.com</a></cite></p></blockquote>
<p>Niederschmetternd.</p>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2008/07/17/mal-updaten/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox 3 for developers</title>
		<link>http://codecandies.de/2008/06/25/firefox-3-for-developers/</link>
		<comments>http://codecandies.de/2008/06/25/firefox-3-for-developers/#comments</comments>
		<pubDate>Wed, 25 Jun 2008 10:34:37 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://codecandies.de/?p=651</guid>
		<description><![CDATA[If you&#8217;re a developer trying to get a handle on all the new features in Firefox 3, this is the…]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re a developer trying to get a handle on all the new features in Firefox 3, this is the perfect place to start. This article provides a list of the new articles covering features added to Firefox 3. While it doesn&#8217;t necessarily cover every little change, it will help you learn about the major improvements.</p>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2008/06/25/firefox-3-for-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When Bugs Collide</title>
		<link>http://codecandies.de/2008/06/20/when-bugs-collide/</link>
		<comments>http://codecandies.de/2008/06/20/when-bugs-collide/#comments</comments>
		<pubDate>Fri, 20 Jun 2008 07:46:34 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[ie]]></category>

		<guid isPermaLink="false">http://codecandies.de/?p=638</guid>
		<description><![CDATA[Unter diesem sch&#246;nen Titel beschreibt Drew McLellan die Wechselwirkung zweier Browserbugs: FF2 Textdimming Bug vs. IE7 PNG transparency.]]></description>
			<content:encoded><![CDATA[<p>Unter diesem sch&#246;nen Titel beschreibt Drew McLellan die Wechselwirkung zweier Browserbugs: FF2 Textdimming Bug vs. IE7 PNG transparency.</p>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2008/06/20/when-bugs-collide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Download Day</title>
		<link>http://codecandies.de/2008/06/17/download-day/</link>
		<comments>http://codecandies.de/2008/06/17/download-day/#comments</comments>
		<pubDate>Mon, 16 Jun 2008 22:04:46 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Postings]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://codecandies.de/?p=629</guid>
		<description><![CDATA[Heute irgendwann, denn wenn ich das richtig sehe, schweigt man sich &#252;ber die Zeitzone aus, also heute irgendwann gibt’s den neuen Firefox, Version 3 dann inzwischen. Man kann also heute mithelfen, einen Weltrekord aufzustellen.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.spreadfirefox.com/node&#038;id=0&#038;t=264"><img border="0" alt="Download Day" title="Download Day" src="http://www.spreadfirefox.com/files/images/affiliates_banners/dday_badge_fox.png" style="float:left;margin: 0 10px 10px 0;" /></a>Heute <del><em>irgendwann</em>, denn wenn ich das richtig sehe, schweigt man sich &#252;ber die Zeitzone aus</del>, also heute <del>irgendwann</del> <ins><a href="http://twitter.com/mozillafirefox/statuses/836404961">ab 19.00 Uhr</a></ins> gibt&#8217;s den neuen Firefox, Version 3 dann inzwischen. Man kann also heute mithelfen, einen <a href="http://www.spreadfirefox.com/de/worldrecord">Weltrekord</a> aufzustellen.</p>
<p>Und sich gleichzeitig einen, wie ich finden muss, technisch ziemlich ansprechenden Browser auf den Rechner laden, vor allem <strong>wenn man Windows-User ist</strong> gibt es eigentlich keine wirklichliche Alternative, IMHO.</p>
<p>Wen meine &#252;bliche Werbeeinblendung f&#252;r Firefox nicht &#252;berzeugt, der mag auch gerne den <a href="http://www.dria.org/wordpress/archives/2008/06/12/655/">Field Guide to Firefox 3</a> zur Hand nehmen, dort erf&#228;hrt man alles, was am neuen Firefox dran ist…</p>
<p>Update: <ins>&#214;hhh… war wohl zu <a href="http://www.spreeblick.com/2008/06/17/firefox-3-download-day/">naheliegend</a>.</ins></p>
<p>Update, 21:51 MESZ: <q>Thanks to overwhelming demand we’ve passed through 14,000 downloads a minute! This will put us well into the tens of millions of downloads in a 24 hour period if we can sustain it. Each download is about 7MB so that’s around 13 Gigabits/s of just download traffic.</q> <cite><a href="http://developer.mozilla.org/devnews/index.php/2008/06/17/quick-note-on-firefox-3-downloads/">mozdev center</a></cite>… :)</p>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2008/06/17/download-day/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Firebug 1.2b</title>
		<link>http://codecandies.de/2008/05/22/firebug-12b/</link>
		<comments>http://codecandies.de/2008/05/22/firebug-12b/#comments</comments>
		<pubDate>Thu, 22 May 2008 13:48:52 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://codecandies.de/?p=563</guid>
		<description><![CDATA[Hurra, Firebug 1.2 geht in die Betaphase [via].]]></description>
			<content:encoded><![CDATA[<p>Hurra, <a href="http://getfirebug.com/releases/index.html">Firebug 1.2</a> geht in die Betaphase [<a href="http://ajaxian.com/archives/firebug-12-beta-for-firefox-3-rc-1">via</a>].</p>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2008/05/22/firebug-12b/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Firefox!</title>
		<link>http://codecandies.de/2008/05/21/firefox/</link>
		<comments>http://codecandies.de/2008/05/21/firefox/#comments</comments>
		<pubDate>Wed, 21 May 2008 21:53:01 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Postings]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://codecandies.de/?p=558</guid>
		<description><![CDATA[http://www.youtube.com/watch?v=OV8SU2DH9tg Via Cute Overload.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.youtube.com/watch?v=OV8SU2DH9tg">http://www.youtube.com/watch?v=OV8SU2DH9tg</a></p>
<p>Via <a href="http://mfrost.typepad.com/cute_overload/2008/05/everyone-knows.html">Cute Overload</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2008/05/21/firefox/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Firefox Oberfl&#228;che, letzte Worte vor dem Launch</title>
		<link>http://codecandies.de/2008/05/16/firefox-oberflaeche-letzte-worte/</link>
		<comments>http://codecandies.de/2008/05/16/firefox-oberflaeche-letzte-worte/#comments</comments>
		<pubDate>Fri, 16 May 2008 20:33:03 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Postings]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[ui]]></category>

		<guid isPermaLink="false">http://codecandies.de/?p=528</guid>
		<description><![CDATA[Ist schon ein wenig her, da hab ich mich &#252;ber das Aussehen von Firefox 3 unter OS X beschwert, inzwischen hat man an der GUI aber noch ein wenig gearbeitet. Trotzdem, ich bin nicht komplett zufrieden. Nat&#252;rlich nicht.]]></description>
			<content:encoded><![CDATA[<p><img src="http://codecandies.de/wp-content/uploads/iw/ZZ04ED0546.png" width="306" height="520" alt="" class="img-pull-left" />Ist schon ein wenig her, da hab ich mich &#252;ber das Aussehen von Firefox 3 unter OS X <a href="http://codecandies.de/2008/03/02/geht-das-denn-wirklich-nicht-besser/">beschwert</a>, inzwischen hat man an der GUI aber noch ein wenig gearbeitet. Trotzdem, ich bin nicht komplett zufrieden. Nat&#252;rlich nicht.</p>
<p><a href="http://blog.mozilla.com/faaborg/2008/05/14/firefox-3-themes/">Alex Faarborg stellt hier die neuen Standard-Themes vor</a>—und da kann man nun sagen: nochmal Gl&#252;ck gehabt. Ich meine, ist man mit OS X-Version noch einigermassen zufrieden, die Windows Versionen sind ja grausam! Also diese Multifunktionspfeilbedienelemente sind wirklich h&#228;&#223;lich.</p>
<p>Da hat man bei OS X wenigsten das Gl&#252;ck, <a href="http://iamthewalr.us/blog/2008/03/27/smaller-is-better/">kleine Buttons ausw&#228;hlen</a> zu k&#246;nnen. Allerdings: die gew&#252;nschte Funktionalit&#228;t wird damit auch nicht erreicht. Ich teste FF3 jetzt seit Beta3: »Male, wie oft ich das R&#252;ckw&#228;rts-Vorw&#228;rts-History-Button-Monstrum benutzt habe seitdem: <strong>2</strong>«. Einmal zum testen nach der Installation, und nach einem Update. Der Rest geht per Tastenkombi.</p>
<p>Alex <a href="http://blog.mozilla.com/faaborg/2008/05/14/firefox-3-themes/">sieht das nat&#252;rlich anders</a>:</p>
<blockquote cite="http://blog.mozilla.com/faaborg/2008/05/14/firefox-3-themes/"><p>The overall goal of the Firefox 3 visual refresh was visually integrating with the platform, while still maintaining a unique identity and presence by using the keyhole form for the navigation controls.</p>
 <p class="citesource"><cite><a href="http://blog.mozilla.com/faaborg/2008/05/14/firefox-3-themes/">blog.mozilla.com</a></cite></p></blockquote>
<p>Was man bei Firefox versucht: sich dem OS anzupassen und trotzdem einen eigenen Look zu bewahren. <a href="http://www.peterkroener.de/warum-safari-auf-windows-keine-chance-hat/">bei Peter Kr&#246;ner diskutiert man gerade, warum Safari f&#252;r Windows gar nicht geht</a>—dort macht man es n&#228;mlich genau anders: man versucht die fremde Oberfl&#228;che in das fremde OS zu exportieren (aus wirtschaftlich-strategischen Gr&#252;nden wie ich meine). Wie w&#252;rde die Apple-Gemeinde schreien, w&#252;rde jemand den XP-Look nach OS X zu exportieren suchen…</p>
<p>Ich halte ja fast das eine, wie das andere f&#252;r fraglich: nat&#252;rlich sollte Firefox nicht genauso aussehen wie Safari, aber Usability-Dummheiten begehen, nur um einen eigenen Look zu behalten? Ich wei&#223; ja nicht…</p>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2008/05/16/firefox-oberflaeche-letzte-worte/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Safari vs. FF3</title>
		<link>http://codecandies.de/2008/04/07/safari-vs-ff3/</link>
		<comments>http://codecandies.de/2008/04/07/safari-vs-ff3/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 08:23:14 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Postings]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[safari]]></category>

		<guid isPermaLink="false">http://codecandies.de/2008/04/07/safari-vs-ff3/</guid>
		<description><![CDATA[In short, competition in the Mac web browser space is strong and getting stronger. Firefox isn’t just a great web…]]></description>
			<content:encoded><![CDATA[<blockquote cite="http://daringfireball.net/2008/04/firefox_3_safari_3"><p>In short, competition in the Mac web browser space is strong and getting stronger. Firefox isn’t just a great web browser, but it’s a pretty good Mac web browser, too.</p>
 <p class="citesource"><cite><a href="http://daringfireball.net/2008/04/firefox_3_safari_3">daringfireball.net</a></cite></p></blockquote>
<p>Afterwards, <a href="http://daringfireball.net/2008/04/firefox_3_safari_3">John Gruber switched back to Safari</a>. Schade.</p>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2008/04/07/safari-vs-ff3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox 3 beta 5</title>
		<link>http://codecandies.de/2008/04/03/firefox-3-beta-5/</link>
		<comments>http://codecandies.de/2008/04/03/firefox-3-beta-5/#comments</comments>
		<pubDate>Thu, 03 Apr 2008 07:25:09 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Postings]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://codecandies.de/2008/04/03/firefox-3-beta-5/</guid>
		<description><![CDATA[So, nun gibt&#8217;s auch endlich die wohl letzte Beta von Firefox 3. Die Release Notes sind hier, aber, wie es…]]></description>
			<content:encoded><![CDATA[<p>So, nun gibt&#8217;s auch endlich die wohl <a href="http://www.mozilla.com/en-US/firefox/all-beta.html">letzte Beta von Firefox 3</a>. Die <a href="http://www.mozilla.com/en-US/firefox/3.0b5/releasenotes/">Release Notes sind hier</a>, aber, wie es sich f&#252;r eine f&#252;nfte Beta geh&#246;rt, was Bugs angeht: unspektakul&#228;r.</p>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2008/04/03/firefox-3-beta-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

