<?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>info.michael-simons.eu &#187; Daily Fratze</title>
	<atom:link href="http://info.michael-simons.eu/tag/daily-fratze/feed/" rel="self" type="application/rss+xml" />
	<link>http://info.michael-simons.eu</link>
	<description>Just another nerd blog</description>
	<lastBuildDate>Fri, 09 Jul 2010 07:40:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Rails&#8217; respond_to method</title>
		<link>http://info.michael-simons.eu/2007/08/06/rails-respond_to-method/</link>
		<comments>http://info.michael-simons.eu/2007/08/06/rails-respond_to-method/#comments</comments>
		<pubDate>Mon, 06 Aug 2007 12:21:13 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Rails]]></category>
		<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Daily Fratze]]></category>
		<category><![CDATA[Tipps]]></category>

		<guid isPermaLink="false">http://info.michael-simons.eu/2007/08/06/rails-respond_to-method/</guid>
		<description><![CDATA[Ruby On Rails has a neat little feature called &#8220;respond_to&#8221;: class WeblogController &#60; ActionController::Base def index @posts = Post.find :all respond_to do &#124;format&#124; format.html format.xml &#123; render :xml =&#62; @posts.to_xml &#125; format.rss &#123; render :action =&#62; &#34;feed.rxml&#34; &#125; end end end Quelle This feature uses the routes with the new default route since 1.2: map.connect [...]]]></description>
			<content:encoded><![CDATA[<p>Ruby On Rails has a neat little feature called &#8220;respond_to&#8221;:</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;"><span style="color:#9966CC; font-weight:bold;">class</span> WeblogController <span style="color:#006600; font-weight:bold;">&lt;</span> <span style="color:#6666ff; font-weight:bold;">ActionController::Base</span>
  <span style="color:#9966CC; font-weight:bold;">def</span> index
    <span style="color:#0066ff; font-weight:bold;">@posts</span> = Post.<span style="color:#9900CC;">find</span> <span style="color:#ff3333; font-weight:bold;">:all</span>
    respond_to <span style="color:#9966CC; font-weight:bold;">do</span> <span style="color:#006600; font-weight:bold;">|</span>format<span style="color:#006600; font-weight:bold;">|</span>
      <span style="color:#CC0066; font-weight:bold;">format</span>.<span style="color:#9900CC;">html</span>
      <span style="color:#CC0066; font-weight:bold;">format</span>.<span style="color:#9900CC;">xml</span> <span style="color:#006600; font-weight:bold;">&#123;</span> render <span style="color:#ff3333; font-weight:bold;">:xml</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#0066ff; font-weight:bold;">@posts</span>.<span style="color:#9900CC;">to_xml</span> <span style="color:#006600; font-weight:bold;">&#125;</span>
      <span style="color:#CC0066; font-weight:bold;">format</span>.<span style="color:#9900CC;">rss</span> <span style="color:#006600; font-weight:bold;">&#123;</span> render <span style="color:#ff3333; font-weight:bold;">:action</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">&quot;feed.rxml&quot;</span> <span style="color:#006600; font-weight:bold;">&#125;</span>
    <span style="color:#9966CC; font-weight:bold;">end</span>
  <span style="color:#9966CC; font-weight:bold;">end</span>
<span style="color:#9966CC; font-weight:bold;">end</span></pre></div></div>

<p><a href="http://weblog.rubyonrails.org/2007/1/19/rails-1-2-rest-admiration-http-lovefest-and-utf-8-celebrations">Quelle</a></p>
<p>This feature uses the routes with the new default route since 1.2:</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;">map.<span style="color:#9900CC;">connect</span> <span style="color:#996600;">':controller/:action/:id.:format'</span>.</pre></div></div>

<p>as well as accept header. </p>
<p>With the later and certainly co-starring Internet Explorer 5.5 to 7.0 the fun starts.</p>
<p>In most examples developers serve html, xml and javascript like <a href="http://weblog.jamisbuck.org/2006/3/27/web-services-rails-style">here</a>. I cannot confirm neither negate that the following problem occurs with these types as well:</p>
<p>I just finished developing an &#8220;respond_to jpg&#8221; method:</p>
<p>This was there from the beginning: <a href="http://dailyfratze.de/michael/2007/8">http://dailyfratze.de/michael/2007/8</a> and i could easily achieve this <a href="http://dailyfratze.de/michael/2007/8.jpg">http://dailyfratze.de/michael/2007/8.jpg</a> with the exact same method:</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;">respond_to <span style="color:#9966CC; font-weight:bold;">do</span> <span style="color:#006600; font-weight:bold;">|</span>format<span style="color:#006600; font-weight:bold;">|</span>      
  <span style="color:#9966CC; font-weight:bold;">if</span><span style="color:#006600; font-weight:bold;">&#40;</span>!user<span style="color:#006600; font-weight:bold;">&#41;</span>
    <span style="color:#008000; font-style:italic;"># some stuff to see if the user exists, blah blah</span>
    redirect_to<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#ff3333; font-weight:bold;">:action</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#ff3333; font-weight:bold;">:index</span><span style="color:#006600; font-weight:bold;">&#41;</span>
    <span style="color:#0000FF; font-weight:bold;">return</span>
  <span style="color:#9966CC; font-weight:bold;">else</span>
    <span style="color:#008000; font-style:italic;"># some common stuff</span>
&nbsp;
    <span style="color:#CC0066; font-weight:bold;">format</span>.<span style="color:#9900CC;">html</span> <span style="color:#006600; font-weight:bold;">&#123;</span><span style="color:#006600; font-weight:bold;">&#125;</span>
&nbsp;
    <span style="color:#CC0066; font-weight:bold;">format</span>.<span style="color:#9900CC;">jpg</span> <span style="color:#9966CC; font-weight:bold;">do</span>
      <span style="color:#008000; font-style:italic;"># some rmagick stuff</span>
      images = <span style="color:#CC0066; font-weight:bold;">Array</span>.<span style="color:#9900CC;">new</span>
      <span style="color:#008000; font-style:italic;"># some more and finally </span>
      send_data image.<span style="color:#9900CC;">to_blob</span>, <span style="color:#ff3333; font-weight:bold;">:type</span> <span style="color:#006600; font-weight:bold;">=&gt;</span><span style="color:#996600;">&quot;image/jpeg&quot;</span>, <span style="color:#ff3333; font-weight:bold;">:disposition</span> <span style="color:#006600; font-weight:bold;">=&gt;</span><span style="color:#996600;">'inline'</span>
      <span style="color:#008000; font-style:italic;"># the return is important, without it and without render, the other block is executed as well</span>
      <span style="color:#0000FF; font-weight:bold;">return</span>
    <span style="color:#9966CC; font-weight:bold;">end</span>
  <span style="color:#9966CC; font-weight:bold;">end</span>
<span style="color:#9966CC; font-weight:bold;">end</span></pre></div></div>

<p>I use the following routes in the following order:</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;">map.<span style="color:#9900CC;">connect</span> <span style="color:#996600;">':user/:year/:month.:format'</span>,
                  <span style="color:#ff3333; font-weight:bold;">:controller</span>   <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">'daily'</span>,
                  <span style="color:#ff3333; font-weight:bold;">:action</span>       <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">'month'</span>,
                  <span style="color:#ff3333; font-weight:bold;">:requirements</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#006600; font-weight:bold;">&#123;</span>:year  <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#006600; font-weight:bold;">/</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006666;">19</span><span style="color:#006600; font-weight:bold;">|</span><span style="color:#006666;">20</span><span style="color:#006600; font-weight:bold;">&#41;</span>\d\d<span style="color:#006600; font-weight:bold;">/</span>,
                  <span style="color:#ff3333; font-weight:bold;">:month</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#006600; font-weight:bold;">/</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006666;">0</span>?<span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#006666;">1</span><span style="color:#006600; font-weight:bold;">-</span><span style="color:#006666;">9</span><span style="color:#006600; font-weight:bold;">&#93;</span><span style="color:#006600; font-weight:bold;">|</span><span style="color:#006666;">1</span><span style="color:#006600; font-weight:bold;">&#91;</span>012<span style="color:#006600; font-weight:bold;">&#93;</span><span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">/</span><span style="color:#006600; font-weight:bold;">&#125;</span>
&nbsp;
map.<span style="color:#9900CC;">connect</span> <span style="color:#996600;">':user/:year/:month/'</span>,
                   <span style="color:#ff3333; font-weight:bold;">:controller</span>   <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">'daily'</span>,
                  <span style="color:#ff3333; font-weight:bold;">:action</span>       <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">'month'</span>,
                  <span style="color:#ff3333; font-weight:bold;">:requirements</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#006600; font-weight:bold;">&#123;</span>:year  <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#006600; font-weight:bold;">/</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006666;">19</span><span style="color:#006600; font-weight:bold;">|</span><span style="color:#006666;">20</span><span style="color:#006600; font-weight:bold;">&#41;</span>\d\d<span style="color:#006600; font-weight:bold;">/</span>,
                                           <span style="color:#ff3333; font-weight:bold;">:month</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#006600; font-weight:bold;">/</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006666;">0</span>?<span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#006666;">1</span><span style="color:#006600; font-weight:bold;">-</span><span style="color:#006666;">9</span><span style="color:#006600; font-weight:bold;">&#93;</span><span style="color:#006600; font-weight:bold;">|</span><span style="color:#006666;">1</span><span style="color:#006600; font-weight:bold;">&#91;</span>012<span style="color:#006600; font-weight:bold;">&#93;</span><span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">/</span><span style="color:#006600; font-weight:bold;">&#125;</span></pre></div></div>

<p>I know, this is not very DRY, but i didn&#8217;t find a way to make the dot in &#8216;:user/:year/:month.:format&#8217;, optional. Format isn&#8217;t a problem, but the dot was there to stay. (*)</p>
<p>Nevertheless, the thing worked perfect. Firefox and Safari send &#8220;*/*&#8221; as an accept header, the format argument was taken and all was well.</p>
<p>IE sends something like &#8220;image/jpeg&#8221;, &#8220;image/png&#8221;, &#8220;application/x-shockwave-flash&#8221;, [... some more stuff...], &#8220;*/&#8221;* the first request and all subsequent request send &#8220;*/*&#8221; as accept header. Hell yeah. After closing the window, the process repeats itself.</p>
<p>What does this mean? The first visit to a monthly view on <a href="http://dailyfratze.de">Daily Fratze</a> brought an jpeg image to IE users, the second the standard html page. Crap!</p>
<p>I found a post on a similar problem here: <a href="http://rituonrails.wordpress.com/2006/12/10/strane-behaviour-of-respond_to-in-ie/">Strange behaviour of respond_to in IE</a>. </p>
<p>The commentors says to put the most important block first but this isn&#8217;t an option if the accept header is used wrong. To me it seems that respond_to is somewhat broken. It should use the :format parameter or the accept header, not a mix of it.</p>
<p>I came up with the following solution:</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;">respond_to <span style="color:#9966CC; font-weight:bold;">do</span> <span style="color:#006600; font-weight:bold;">|</span>format<span style="color:#006600; font-weight:bold;">|</span>      
  <span style="color:#CC0066; font-weight:bold;">format</span>.<span style="color:#9900CC;">html</span> <span style="color:#006600; font-weight:bold;">&#123;</span><span style="color:#006600; font-weight:bold;">&#125;</span>
&nbsp;
  <span style="color:#CC0066; font-weight:bold;">format</span>.<span style="color:#9900CC;">jpg</span> <span style="color:#9966CC; font-weight:bold;">do</span>
     <span style="color:#008000; font-style:italic;"># some rmagick stuff</span>
     images = <span style="color:#CC0066; font-weight:bold;">Array</span>.<span style="color:#9900CC;">new</span>
     send_data image.<span style="color:#9900CC;">to_blob</span>, <span style="color:#ff3333; font-weight:bold;">:type</span> <span style="color:#006600; font-weight:bold;">=&gt;</span><span style="color:#996600;">&quot;image/jpeg&quot;</span>, <span style="color:#ff3333; font-weight:bold;">:disposition</span> <span style="color:#006600; font-weight:bold;">=&gt;</span><span style="color:#996600;">'inline'</span>
     <span style="color:#0000FF; font-weight:bold;">return</span>
  <span style="color:#9966CC; font-weight:bold;">end</span> <span style="color:#9966CC; font-weight:bold;">if</span> params<span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#ff3333; font-weight:bold;">:format</span><span style="color:#006600; font-weight:bold;">&#93;</span> == <span style="color:#996600;">'jpg'</span>  <span style="color:#008000; font-style:italic;"># If responds_to doesn't take care of :format, i'll do!</span>
<span style="color:#9966CC; font-weight:bold;">end</span></pre></div></div>

<p>If i generate links to this method with url_for(&#8230;blah&#8230;, :format => &#8216;jpg&#8217;) i get the correct format and i guess this will work for js, rss and co. as well.</p>
<p><ins datetime="2009-12-31T09:29:27+00:00">Edit:</ins>(*) I&#8217;ve noticed some change in behaviour in Rails 2.3.x: I now use <em>:format => nil</em> in the routes and the dot is optional as well then and i have dropped the more or less duplicate routes.</p>
<p class="akst_link"><a href="http://info.michael-simons.eu/?p=106&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_106" class="akst_share_link " rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://info.michael-simons.eu/2007/08/06/rails-respond_to-method/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Apple AFP SharePoints</title>
		<link>http://info.michael-simons.eu/2006/12/17/apple-afp-sharepoints/</link>
		<comments>http://info.michael-simons.eu/2006/12/17/apple-afp-sharepoints/#comments</comments>
		<pubDate>Sun, 17 Dec 2006 19:27:46 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[German posts]]></category>
		<category><![CDATA[Daily Fratze]]></category>
		<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://info.michael-simons.eu/2006/12/17/apple-afp-sharepoints/</guid>
		<description><![CDATA[Im Moment baue ich einen Mac Mini Core Solo zum Media und Webserver aus. Für diesen Zweck hat das Gerät eine nette, externe Platte mit hinreichend Platz bekommen. Hin- und herüberlegt: Wenn ich Samba nutze, müssen die Kennwörter des entsprechenden Accounts &#8220;unsicher&#8221; gespeichert werden. Das klingt nicht gut. Also habe ich mich für AFP entschieden. [...]]]></description>
			<content:encoded><![CDATA[<p>Im Moment baue ich einen Mac Mini Core Solo zum Media und Webserver aus. Für diesen Zweck hat das Gerät eine nette, externe Platte mit hinreichend Platz bekommen.</p>
<p>Hin- und herüberlegt: Wenn ich Samba nutze, müssen die Kennwörter des entsprechenden Accounts &#8220;unsicher&#8221; gespeichert werden. Das klingt nicht gut. Also habe ich mich für <a href="http://de.wikipedia.org/wiki/Apple_Filing_Protocol" rel="external">AFP</a> entschieden.</p>
<p>Und da ging der Palaver los: Angemeldet, hmm, wo ist das Laufwerk? Stimmt, es werden immer nur die Homeverzeichnisse geshared. So eine Scheisse. Normalerweise findet man ja überall die Konfigurationsdatei, nicht so in diesem Fall. Und wir mir Tante Google gesagt hat, bin ich nicht der einzige der sie sucht. Hab sie auch nicht gefunden. Wenn das jemand weiß, wo das ist&#8230; Bitte eine kurze Email schreiben.</p>
<p>Jedenfalls, geholfen habe ich mir mit <a href="http://www.hornware.com/sharepoints/">Sharepoints</a> von HornWare. Entweder als Standalone oder als Pref Pane nutzbar und voila, externe Laufwerke lassen sich als AFP Sharepoint bereitstellen. Das Ergebnis:</p>
<p><img id="image49" src="http://info.michael-simons.eu/wp-content/media.jpg" alt="afp" /></p>
<p>Fantastisch!</p>
<p>Alle sagen immer, der Mac Mini Core Solo wäre langsam, aber das muß man mal in Relation zu einem Mac Mini G4 oder einem PC in der Größe sehen. Das Dingen rockt.</p>
<p>Das fertige Ergebnis:</p>
<p><img id="image50" src="http://info.michael-simons.eu/wp-content/servermini.jpg" alt="Apple Mac Mini Core Solo Server" /></p>
<p>Auf dem Rechner läuft übrigens auch <a href="http://dailyfratze.de">Daily Fratze</a>.</p>
<p>Blöde Kleinigkeit (es sind immer!!! die Kleinigkeiten): Warum hat Iomega nicht die Farbe gescheit hinbekommen? Die Platte (Iomega Minimax) ist sonst absolut super. Man kann sie per FireWire und USB gleichzeitig anschliessen und per DIP Schalter einen Anschluss auswählen. Das hat den Vorteil: Man kann beide Hubs (FireWire und USB nutzen). Das geht bei vielen billigen Platten nicht.</p>
<p>Das schöne an AFP ist, dass es ein sogenanntes transparentes Protokol ist. Das heißt, nutzende Programme bekommen nichts davon mit, dass ihre Dateien janz woanders sind. So kann man z.B. in iTunes beim Start die ALT Taste drücken und eine andere Bibliothek auswählen. Ganz transparent habe ich dann auf jedem Rechner die gleichen Daten. Der Vorteil gegenüber dem Musicsharing via iTunes: Ganz einfach, die Playcounts erhöhen sich, ich kann die Ratings ändern und sogar übers Netz CDs rippen.</p>
<p>Praktischerweise funktionieren so auch alle Skripte fürs Backup, genau wie bisher.</p>
<p class="akst_link"><a href="http://info.michael-simons.eu/?p=48&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_48" class="akst_share_link " rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://info.michael-simons.eu/2006/12/17/apple-afp-sharepoints/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rolling on Rails: DailyFratze.de</title>
		<link>http://info.michael-simons.eu/2006/12/03/rolling-on-rails-dailyfratzede/</link>
		<comments>http://info.michael-simons.eu/2006/12/03/rolling-on-rails-dailyfratzede/#comments</comments>
		<pubDate>Sun, 03 Dec 2006 20:32:37 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Rails]]></category>
		<category><![CDATA[Shortcuts]]></category>
		<category><![CDATA[Daily Fratze]]></category>

		<guid isPermaLink="false">http://info.michael-simons.eu/2006/12/03/rolling-on-rails-dailyfratzede/</guid>
		<description><![CDATA[Hier angedeutet, dort vorgestellt und jetzt fertig: DailyFratze.de Viel Spaß! Share This]]></description>
			<content:encoded><![CDATA[<p><a href="http://info.michael-simons.eu/2006/07/06/dailyfratze-on-rails/">Hier</a> angedeutet, <a href="http://info.michael-simons.eu/2006/10/16/dailyfratze-20-preview/">dort</a> vorgestellt und jetzt fertig:</p>
<p><a href="http://dailyfratze.de">DailyFratze.de</a></p>
<p>Viel Spaß!</p>
<p class="akst_link"><a href="http://info.michael-simons.eu/?p=47&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_47" class="akst_share_link " rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://info.michael-simons.eu/2006/12/03/rolling-on-rails-dailyfratzede/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DailyFratze 2.0 Preview</title>
		<link>http://info.michael-simons.eu/2006/10/16/dailyfratze-20-preview/</link>
		<comments>http://info.michael-simons.eu/2006/10/16/dailyfratze-20-preview/#comments</comments>
		<pubDate>Mon, 16 Oct 2006 19:51:57 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Rails]]></category>
		<category><![CDATA[Daily Fratze]]></category>

		<guid isPermaLink="false">http://info.michael-simons.eu/2006/10/16/dailyfratze-20-preview/</guid>
		<description><![CDATA[Ich habe ja hier schon öfter von einer neuen Daily Fratze Version gesprochen. Bald ist es soweit. Eine Vorschau kann man unter http://dailyfratze.michael-simons.eu erreichen. Für Passwort und Benutzername bitte eine kurze Email an rotnroll666@mac.com schicken, ansonsten muss mit dem Bild hier vorlieb genommen werden: Share This]]></description>
			<content:encoded><![CDATA[<p>Ich habe ja hier schon öfter von einer neuen Daily Fratze Version gesprochen. Bald ist es soweit.</p>
<p>Eine Vorschau kann man unter</p>
<p><a href="http://dailyfratze.michael-simons.eu">http://dailyfratze.michael-simons.eu</a></p>
<p>erreichen.</p>
<p>Für Passwort und Benutzername bitte eine kurze Email an rotnroll666@mac.com schicken, ansonsten muss mit dem Bild hier vorlieb genommen werden:</p>
<p><img id="image40" src="http://info.michael-simons.eu/wp-content/preview.jpg" alt="DailyFratze2.0 Preview 1" /></p>
<p class="akst_link"><a href="http://info.michael-simons.eu/?p=41&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_41" class="akst_share_link " rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://info.michael-simons.eu/2006/10/16/dailyfratze-20-preview/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>DailyFratze on Rails</title>
		<link>http://info.michael-simons.eu/2006/07/06/dailyfratze-on-rails/</link>
		<comments>http://info.michael-simons.eu/2006/07/06/dailyfratze-on-rails/#comments</comments>
		<pubDate>Thu, 06 Jul 2006 18:50:55 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Rails]]></category>
		<category><![CDATA[Daily Fratze]]></category>
		<category><![CDATA[Safari]]></category>

		<guid isPermaLink="false">http://www.msimons.info/?p=28</guid>
		<description><![CDATA[Die letzten Posts über Rails und Co. enstanden natürlich nicht aus heiterem Himmel. Ich entwickle zur Zeit eine neue Version von DailyFratze.de auf Basis von Rails. Das ganze macht extrem viel Spaß und auch zügig Fortschritte. Es wird eine ganze Menge neuer Features geben, ein vollständig neues Layout, auf jedenfall: Ganz toll. Das Bild ist [...]]]></description>
			<content:encoded><![CDATA[<p>Die letzten Posts über Rails und Co. enstanden natürlich nicht aus heiterem Himmel. Ich entwickle zur Zeit eine neue Version von <a href="http://www.dailyfratze.de" rel="external">DailyFratze.de</a> auf Basis von Rails.</p>
<p>Das ganze macht extrem viel Spaß und auch zügig Fortschritte. Es wird eine ganze Menge neuer Features geben, ein vollständig neues Layout, auf jedenfall: Ganz toll.</p>
<p><img id="image27" src="http://info.michael-simons.eu/wp-content/dailyrails.jpg" alt="Development Version von DailyFratze.de" /></p>
<p>Das Bild ist ein kleiner Screenshot der Anwendung. Im Vordergrund sind man den Inspector aus Webkit. Webkit ist die Entwicklungsversion vom Mac OS X Browser Safari, den man sich auf der <a href="http://nightly.webkit.org/" rel="external">nightly</a> Seite von <a href="http://www.webkit.org" rel="external">Webkit.org</a> kostenlos laden kann. </p>
<p>Alleine der Inspektor ist superpraktisch. So zeigt er zum Beispiel die vollständige CSS Kaskade für jedes Element an, inklusive überschriebener Properties. Mit ihm kann man im DOM Baum suchen und vieles mehr.<br />
Webkit beherrscht darüber hinaus nativ SVG, auch etwas schönes.</p>
<p>Man darf also gespannt sein, sowohl auf die neuesten Entwicklungen von DailyFratze.de als auch von neuen Safari Versionen.</p>
<p><small>(Der Header im Screenshot enthält zur Zeit Bilder von anderen, täglichen Photoprojekten, die ich schätze und die mich inspiriert haben. Falls ich diesen so eines Tages in einer Onlineversion die ich nicht nur privat nutze, verwende, werde ich natürlich alle Rechteinhaber vorheransprechen. Nicht, dass sich jetzt jemand durch sein Konterfei in diesem kleinen Screenshot gestört fühlt. Wenn doch, bitte Bescheid sagen.)</small> </p>
<p class="akst_link"><a href="http://info.michael-simons.eu/?p=28&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_28" class="akst_share_link " rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://info.michael-simons.eu/2006/07/06/dailyfratze-on-rails/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
