<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>pixelspace.org</title>
	
	<link>http://www.pixelspace.org</link>
	<description>visualization, programming &amp; art</description>
	<lastBuildDate>Thu, 11 Mar 2010 01:50:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<meta xmlns="http://www.w3.org/1999/xhtml" name="robots" content="noindex,follow" />
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Pixelspaceorg/de" /><feedburner:info uri="pixelspaceorg/de" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Slideshow mit Scriptaculous</title>
		<link>http://feedproxy.google.com/~r/Pixelspaceorg/de/~3/9Tu-Bu3kA3c/</link>
		<comments>http://www.pixelspace.org/2009/07/slideshow-mit-scriptaculous/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 21:05:01 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[webentwicklung]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[prototype]]></category>
		<category><![CDATA[scriptaculous]]></category>
		<category><![CDATA[slideshow]]></category>

		<guid isPermaLink="false">http://www.pixelspace.org/2009/07/09/slideshow-mit-scriptaculous-2/</guid>
		<description><![CDATA[Das kleine Tutorial soll zeigen wie eine simple Slideshow mit wenigen Effekten gemacht werden kann. Die Slideshow basiert auf Prototype sowie Scriptaculous und ermöglicht zudem verschiedene Instanzen.]]></description>
			<content:encoded><![CDATA[<p>Die Slideshow basiert auf <a href="http://www.prototypejs.org/download">Prototype</a> sowie <a href="http://script.aculo.us/downloads">Scriptaculous</a> und ermöglicht verschiedene Instanzen. Die Darstellung erfolgt über eine unsortierte Liste. Dadurch ist es möglich neben Bildern und Fotos auch  anderen HTML-Code wie auch einfache Texte darzustellen.</p>
<p>Hier das Beispiel wie die Galerie umgesetzt ist.</p>
<p><strong>Das Javascript zur Slideshow:</strong></p>
<div class="toggle-code"><span class="toggler">toggle code</span>
<div class="javascript synhigh">
<ol>
<li style="background-color:#fff;">
<pre style=""><span style="color: #003366; font-weight: bold;">function</span> init<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style="">&nbsp;</pre>
</li>
<li style="background-color:#fff;">
<pre style="">  <span style="color: #003366; font-weight: bold;">var</span> slides <span style="color: #339933;">=</span> document.<span style="color: #660066;">getElementsByClassName</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'slide-show'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style="">&nbsp;</pre>
</li>
<li style="background-color:#fff;">
<pre style="">  <span style="color: #000066; font-weight: bold;">for</span><span style="color: #009900;">&#40;</span>i<span style="color: #339933;">=</span><span style="color: #CC0000;">0</span><span style="color: #339933;">;</span>i<span style="color: #339933;">&lt;</span>slides.<span style="color: #660066;">length</span><span style="color: #339933;">;</span>i<span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style="">&nbsp;</pre>
</li>
<li style="background-color:#fff;">
<pre style="">    <span style="color: #003366; font-weight: bold;">var</span> lis <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span>slides<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span>.<span style="color: #660066;">id</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">getElementsByTagName</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'li'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style="">&nbsp;</pre>
</li>
<li style="background-color:#fff;">
<pre style="">    <span style="color: #000066; font-weight: bold;">for</span><span style="color: #009900;">&#40;</span> j<span style="color: #339933;">=</span><span style="color: #CC0000;">0</span><span style="color: #339933;">;</span> j <span style="color: #339933;">&lt;</span> lis.<span style="color: #660066;">length</span><span style="color: #339933;">;</span> j<span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style="">      <span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span>j<span style="color: #339933;">!=</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></pre>
</li>
<li style="background-color:#fff;">
<pre style="">        lis<span style="color: #009900;">&#91;</span>j<span style="color: #009900;">&#93;</span>.<span style="color: #660066;">style</span>.<span style="color: #660066;">display</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">'none'</span><span style="color: #339933;">;</span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style="">      <span style="color: #009900;">&#125;</span></pre>
</li>
<li style="background-color:#fff;">
<pre style="">    <span style="color: #009900;">&#125;</span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style="">    end_li <span style="color: #339933;">=</span> lis.<span style="color: #660066;">length</span> <span style="color: #339933;">-</span><span style="color: #CC0000;">1</span><span style="color: #339933;">;</span></pre>
</li>
<li style="background-color:#fff;">
<pre style="">&nbsp;</pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style="">    setTimeout<span style="color: #009900;">&#40;</span>swapElements<span style="color: #009900;">&#40;</span><span style="color: #CC0000;">0</span><span style="color: #339933;">,</span><span style="color: #CC0000;">0</span><span style="color: #339933;">,</span>end_li<span style="color: #339933;">,</span> <span style="color: #CC0000;">3000</span><span style="color: #339933;">,</span> lis<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">2000</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre>
</li>
<li style="background-color:#fff;">
<pre style="">  <span style="color: #009900;">&#125;</span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style=""><span style="color: #009900;">&#125;</span></pre>
</li>
<li style="background-color:#fff;">
<pre style="">&nbsp;</pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style=""><span style="color: #003366; font-weight: bold;">function</span> swapElements<span style="color: #009900;">&#40;</span>cur_li<span style="color: #339933;">,</span> start_li<span style="color: #339933;">,</span> end_li<span style="color: #339933;">,</span> delay<span style="color: #339933;">,</span> lis<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span></pre>
</li>
<li style="background-color:#fff;">
<pre style="">&nbsp;</pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style="">  <span style="color: #000066; font-weight: bold;">return</span> <span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span></pre>
</li>
<li style="background-color:#fff;">
<pre style="">    Effect.<span style="color: #660066;">Fade</span><span style="color: #009900;">&#40;</span>lis<span style="color: #009900;">&#91;</span>cur_li<span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span><span style="color: #009900;">&#123;</span> duration<span style="color: #339933;">:</span><span style="color: #CC0000;">3</span><span style="color: #339933;">,</span> from<span style="color: #339933;">:</span><span style="color: #CC0000;">1.0</span><span style="color: #339933;">,</span> to<span style="color: #339933;">:</span><span style="color: #CC0000;">0.0</span> <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style="">&nbsp;</pre>
</li>
<li style="background-color:#fff;">
<pre style="">      <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>cur_li <span style="color: #339933;">==</span> end_li<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style="">        cur_li <span style="color: #339933;">=</span> start_li<span style="color: #339933;">;</span></pre>
</li>
<li style="background-color:#fff;">
<pre style="">      <span style="color: #009900;">&#125;</span> <span style="color: #000066; font-weight: bold;">else</span> <span style="color: #009900;">&#123;</span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style="">        cur_li<span style="color: #339933;">++;</span></pre>
</li>
<li style="background-color:#fff;">
<pre style="">      <span style="color: #009900;">&#125;</span>	</pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style="">&nbsp;</pre>
</li>
<li style="background-color:#fff;">
<pre style="">      Effect.<span style="color: #660066;">Appear</span><span style="color: #009900;">&#40;</span>lis<span style="color: #009900;">&#91;</span>cur_li<span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> <span style="color: #009900;">&#123;</span> duration<span style="color: #339933;">:</span><span style="color: #CC0000;">3</span><span style="color: #339933;">,</span> from<span style="color: #339933;">:</span><span style="color: #CC0000;">0.0</span><span style="color: #339933;">,</span> to<span style="color: #339933;">:</span><span style="color: #CC0000;">1.0</span> <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style="">&nbsp;</pre>
</li>
<li style="background-color:#fff;">
<pre style="">      setTimeout<span style="color: #009900;">&#40;</span>swapElements<span style="color: #009900;">&#40;</span>cur_li<span style="color: #339933;">,</span>start_li<span style="color: #339933;">,</span>end_li<span style="color: #339933;">,</span>delay<span style="color: #339933;">,</span>lis<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style="">      delay <span style="color: #339933;">+</span> <span style="color: #CC0000;">3000</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre>
</li>
<li style="background-color:#fff;">
<pre style="">    <span style="color: #009900;">&#125;</span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style="">  <span style="color: #009900;">&#41;</span></pre>
</li>
<li style="background-color:#fff;">
<pre style=""><span style="color: #009900;">&#125;</span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style="">&nbsp;</pre>
</li>
<li style="background-color:#fff;">
<pre style="">Event.<span style="color: #660066;">observe</span><span style="color: #009900;">&#40;</span>window<span style="color: #339933;">,</span> <span style="color: #3366CC;">'load'</span><span style="color: #339933;">,</span> init<span style="color: #339933;">,</span> <span style="color: #003366; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre>
</li>
</ol>
</div>
</div>
<p>Alle Elemente mit der Klassendefinition &#8216;<em>slide-show</em>&#8216; werden durchlaufen und für jedes Listenelement werden die Bilder nacheinander ausgewechselt.</p>
<p>Damit die Positionierung der Galerie bei den Überblendeffekten sichergestellt ist empfiehlt es sich, einige Anpassungen im CSS vorzunehmen.</p>
<p><strong>Der CSS-Code:</strong></p>
<div class="toggle-code"><span class="toggler">toggle code</span>
<div class="css synhigh">
<ol>
<li style="background-color:#fff;">
<pre style="">.slide-<span style="color: #000000;">show</span> li<span style="color: #00AA00;">&#123;</span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style="">&nbsp;</pre>
</li>
<li style="background-color:#fff;">
<pre style="">  <span style="color: #800040; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #000000;">absolute</span><span style="color: #00AA00;">;</span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style="">&nbsp;</pre>
</li>
<li style="background-color:#fff;">
<pre style="">  <span style="color: #800040; font-weight: bold;">list-style</span><span style="color: #00AA00;">:</span><span style="color: #000000;">none</span><span style="color: #00AA00;">;</span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style="">  <span style="color: #800040; font-weight: bold;">display</span><span style="color: #00AA00;">:</span><span style="color: #000000;">block</span><span style="color: #00AA00;">;</span></pre>
</li>
<li style="background-color:#fff;">
<pre style="">  <span style="color: #800040; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #0000ff;">200px</span><span style="color: #00AA00;">;</span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style="">  <span style="color: #800040; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #0000ff;">200px</span><span style="color: #00AA00;">;</span></pre>
</li>
<li style="background-color:#fff;">
<pre style="">  <span style="color: #800040; font-weight: bold;">overflow</span><span style="color: #00AA00;">:</span><span style="color: #000000;">hidden</span><span style="color: #00AA00;">;</span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style=""><span style="color: #00AA00;">&#125;</span></pre>
</li>
</ol>
</div>
</div>
<p>Wichtig dabei ist, dass die Listenelemente absolut positioniert werden damit sie beim wechseln eine feste Position behalten und nicht verschoben werden.</p>
<p>Die Ausgabe der Slideshow erfolgt, wie schon gesagt, über eine unsortierte Liste.</p>
<p><strong>Der HTML-Code dafür ist folgender:</strong></p>
<div class="toggle-code"><span class="toggler">toggle code</span>
<div class="html4strict synhigh">
<ol>
<li style="background-color:#fff;">
<pre style=""><span style="color: #666666;">&lt;<a href="http://december.com/html/x1/element/ul.html"><span style="color: #3e73ae; font-weight: bold;">ul</span></a> <span style="color: #000000;">id</span><span style="color: #666666;">=</span><span style="color: #000000;">&quot;my_slide_show&quot;</span> <span style="color: #000000;">class</span><span style="color: #666666;">=</span><span style="color: #000000;">&quot;slide-show&quot;</span>&gt;</span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style=""><span style="color: #666666;">&lt;<a href="http://december.com/html/x1/element/li.html"><span style="color: #3e73ae; font-weight: bold;">li</span></a>&gt;&lt;<a href="http://december.com/html/x1/element/img.html"><span style="color: #3e73ae; font-weight: bold;">img</span></a> <span style="color: #000000;">src</span><span style="color: #666666;">=</span><span style="color: #000000;">&quot;1.jpg&quot;</span> <span style="color: #000000;">alt</span><span style="color: #666666;">=</span><span style="color: #000000;">&quot;first image&quot;</span><span style="color: #666666;">/</span>&gt;&lt;<span style="color: #666666;">/</span><a href="http://december.com/html/x1/element/li.html"><span style="color: #3e73ae; font-weight: bold;">li</span></a>&gt;</span></pre>
</li>
<li style="background-color:#fff;">
<pre style=""><span style="color: #666666;">&lt;<a href="http://december.com/html/x1/element/li.html"><span style="color: #3e73ae; font-weight: bold;">li</span></a>&gt;&lt;<a href="http://december.com/html/x1/element/img.html"><span style="color: #3e73ae; font-weight: bold;">img</span></a> <span style="color: #000000;">src</span><span style="color: #666666;">=</span><span style="color: #000000;">&quot;2.jpg&quot;</span> <span style="color: #000000;">alt</span><span style="color: #666666;">=</span><span style="color: #000000;">&quot;second image&quot;</span><span style="color: #666666;">/</span>&gt;&lt;<span style="color: #666666;">/</span><a href="http://december.com/html/x1/element/li.html"><span style="color: #3e73ae; font-weight: bold;">li</span></a>&gt;</span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style=""><span style="color: #666666;">&lt;<a href="http://december.com/html/x1/element/li.html"><span style="color: #3e73ae; font-weight: bold;">li</span></a>&gt;</span>Lorem ipsum dolor sit amet, consetetur sadipscing elitr...<span style="color: #666666;">&lt;<span style="color: #666666;">/</span><a href="http://december.com/html/x1/element/li.html"><span style="color: #3e73ae; font-weight: bold;">li</span></a>&gt;</span></pre>
</li>
<li style="background-color:#fff;">
<pre style=""><span style="color: #666666;">&lt;<span style="color: #666666;">/</span><a href="http://december.com/html/x1/element/ul.html"><span style="color: #3e73ae; font-weight: bold;">ul</span></a>&gt;</span></pre>
</li>
</ol>
</div>
</div>
<p>Da das Javascript auf alle Objekte mit der Klassendefinition &#8216;<em>slide-show</em>&#8216; zugreift, muss diese Angabe im HTML-Code mit der Klasse aus dem Javascript übereinstimmen.</p>
<p class="download"><a href="http://www.pixelspace.org/works/file/slideshow.zip">Beispielcode herunterladen</a><br />
<small>Dateigröße: 69KB | Dateityp: .zip</small></p>
<p class="demo"><a href="http://www.pixelspace.org/demo-slideshow-mit-scriptaculous/">LIVE DEMO</a></p>
<p style="clear:both;">&nbsp;</p>
<img src="http://feeds.feedburner.com/~r/Pixelspaceorg/de/~4/9Tu-Bu3kA3c" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.pixelspace.org/2009/07/slideshow-mit-scriptaculous/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.pixelspace.org/2009/07/slideshow-mit-scriptaculous/</feedburner:origLink></item>
		<item>
		<title>Social Bookmark Dienste</title>
		<link>http://feedproxy.google.com/~r/Pixelspaceorg/de/~3/dY9iUSYoyCE/</link>
		<comments>http://www.pixelspace.org/2009/02/social-bookmark-dienste/#comments</comments>
		<pubDate>Sat, 14 Feb 2009 12:05:09 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[allgemein]]></category>
		<category><![CDATA[social bookmark]]></category>
		<category><![CDATA[social media]]></category>

		<guid isPermaLink="false">http://www.pixelspace.org/2009/02/14/social-bookmark-dienste-2/</guid>
		<description><![CDATA[Nachdem ich neulich &#252;ber twitter zu Toms neuer Seite geleitet wurde, entdeckte ich nicht nur das neue und ziemlich ansprechende Layout, sondern eine ziemlich sinnvolles Feature. N&#228;mlich die M&#246;glichkeit Beitr&#228;ge in anderen Netzwerken zu verbreiten und Freunden zu schicken!
Wie versprochen habe ich nun auch mal etwas aufger&#252;stet. Nun besteht auch auf pixelspace.org die M&#246;glichkeit, Artikel [...]]]></description>
			<content:encoded><![CDATA[<p>Nachdem ich neulich &uuml;ber twitter zu <a href="http://www.moosbett.de">Toms neuer Seite</a> geleitet wurde, entdeckte ich nicht nur das neue und ziemlich ansprechende Layout, sondern eine ziemlich sinnvolles Feature. N&auml;mlich die M&ouml;glichkeit Beitr&auml;ge in anderen Netzwerken zu verbreiten und Freunden zu schicken!</p>
<p>Wie <a href="http://moosbett.de/node/27#comments">versprochen</a> habe ich nun auch mal etwas aufger&uuml;stet. Nun besteht auch auf pixelspace.org die M&ouml;glichkeit, Artikel &uuml;ber verschiedene Social Bookmark Dienste zu speichern und Freunden zu empfehlen. Somit k&ouml;nnen die ~3 Besucher, die hier zuf&auml;llig mal landen auch einen Eintrag ganz bequem weiterleiten. Bleibt nur noch das eine Problemchen mit dem Inhalt. Bislang hab ich einfach nicht die Zeit gefunden oder mir die Zeit genommen um ausf&uuml;hrliche Eintr&auml;ge zu verfassen. Irgendwie komm ich mir bl&ouml;d dabei vor, etwas komplett unbedeutendes zu posten.</p>
<p>Mal sehen wie sich das in Zukunft so entwickelt.</p>
<img src="http://feeds.feedburner.com/~r/Pixelspaceorg/de/~4/dY9iUSYoyCE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.pixelspace.org/2009/02/social-bookmark-dienste/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.pixelspace.org/2009/02/social-bookmark-dienste/</feedburner:origLink></item>
		<item>
		<title>Kleines Update im CG Bereich</title>
		<link>http://feedproxy.google.com/~r/Pixelspaceorg/de/~3/-IjMIRxdaNY/</link>
		<comments>http://www.pixelspace.org/2008/12/kleines-update-im-cg-bereich/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 13:32:50 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[computergraphik]]></category>
		<category><![CDATA[c4d]]></category>
		<category><![CDATA[helicopter]]></category>
		<category><![CDATA[hind]]></category>

		<guid isPermaLink="false">http://www.pixelspace.org/2008/12/17/kleines-update-im-cg-bereich-2/</guid>
		<description><![CDATA[Sooo mal wieder ein kleines Update, ich hab mal das Modell eines russischen Angriffs-und Transporthelikopters hochgeladen die vorläufige Bildergalerie zur Mil-Mi 24 gibt es hier.
Kommentare und Kritik sind wie immer gern gesehen, wenn Interesse am Modell besteht, einfach bei mir melden. Derzeit komme ich leider nicht dazu es weiter zu bearbeiten.
]]></description>
			<content:encoded><![CDATA[<p>Sooo mal wieder ein kleines Update, ich hab mal das Modell eines russischen Angriffs-und Transporthelikopters hochgeladen die vorläufige Bildergalerie zur Mil-Mi 24 gibt es <a href="http://www.pixelspace.org/portfolio/cg/mi-24">hier</a>.</p>
<p>Kommentare und Kritik sind wie immer gern gesehen, wenn Interesse am Modell besteht, einfach bei mir melden. Derzeit komme ich leider nicht dazu es weiter zu bearbeiten.</p>
<img src="http://feeds.feedburner.com/~r/Pixelspaceorg/de/~4/-IjMIRxdaNY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.pixelspace.org/2008/12/kleines-update-im-cg-bereich/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.pixelspace.org/2008/12/kleines-update-im-cg-bereich/</feedburner:origLink></item>
		<item>
		<title>Chicago 2008</title>
		<link>http://feedproxy.google.com/~r/Pixelspaceorg/de/~3/82Gespk_SU8/</link>
		<comments>http://www.pixelspace.org/2008/12/chicago-2008/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 15:40:13 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[allgemein]]></category>
		<category><![CDATA[chicago]]></category>
		<category><![CDATA[impressions]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[snapshots]]></category>

		<guid isPermaLink="false">http://www.pixelspace.org/2008/12/15/chicago-2008-2/</guid>
		<description><![CDATA[Endlich hab ich es geschafft einige Bilder vom Aufenthalt in Chicago hochzuladen...]]></description>
			<content:encoded><![CDATA[<p>Endlich hab ich es geschafft einige Bilder vom Aufenthalt in Chicago hochzuladen.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="561" height="438" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="embedFlashGallery" /><param name="data" value="http://iloapp.pixelspace.org/gallery/swf/embedFlashGallery.swf?albumId=13&amp;galleryLocation=galerie&amp;domainName=pixelspace.org" /><param name="quality" value="high" /><param name="bgcolor" value="#000000" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><param name="src" value="http://iloapp.pixelspace.org/gallery/swf/embedFlashGallery.swf?albumId=13&amp;galleryLocation=galerie&amp;domainName=pixelspace.org" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="561" height="438" src="http://iloapp.pixelspace.org/gallery/swf/embedFlashGallery.swf?albumId=13&amp;galleryLocation=galerie&amp;domainName=pixelspace.org" allowfullscreen="true" allowscriptaccess="always" bgcolor="#000000" quality="high" data="http://iloapp.pixelspace.org/gallery/swf/embedFlashGallery.swf?albumId=13&amp;galleryLocation=galerie&amp;domainName=pixelspace.org" name="embedFlashGallery"></embed></object></p>
<img src="http://feeds.feedburner.com/~r/Pixelspaceorg/de/~4/82Gespk_SU8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.pixelspace.org/2008/12/chicago-2008/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.pixelspace.org/2008/12/chicago-2008/</feedburner:origLink></item>
		<item>
		<title>PHP: Link zum Twitter User generieren</title>
		<link>http://feedproxy.google.com/~r/Pixelspaceorg/de/~3/k-kbflBP4LA/</link>
		<comments>http://www.pixelspace.org/2008/11/php-link-zum-twitter-user-generieren/#comments</comments>
		<pubDate>Wed, 26 Nov 2008 18:45:23 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[webentwicklung]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[snipplet]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.pixelspace.org/2008/11/26/php-link-zum-twitter-user-generieren-2/</guid>
		<description><![CDATA[Ich hab hier mal eine simple PHP-Funktion geschrieben, die es ermöglicht @user-Tags in Links umzuwandeln. Die Funktion sucht nach Zeichen die mit @ beginnen und ersetzt die Zeichenkette durch einen Link zum Twitterprofil des Nutzers.  Es ist zwar nicht viel und durchaus erweiterbar aber vielleicht hilft es ja dem ein oder anderen.
toggle code



&#60;?php


function parseContent&#40;$content&#41;&#123;


 [...]]]></description>
			<content:encoded><![CDATA[<p>Ich hab hier mal eine simple PHP-Funktion geschrieben, die es ermöglicht @user-Tags in Links umzuwandeln. Die Funktion sucht nach Zeichen die mit @ beginnen und ersetzt die Zeichenkette durch einen Link zum Twitterprofil des Nutzers.  Es ist zwar nicht viel und durchaus erweiterbar aber vielleicht hilft es ja dem ein oder anderen.</p>
<div class="toggle-code"><span class="toggler">toggle code</span>
<div class="php synhigh">
<ol>
<li style="background-color:#fff;">
<pre style=""><span style="color: #000000; font-weight: bold;">&lt;?php</span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style=""><span style="color: #000000; font-weight: bold;">function</span> parseContent<span style="color: #009900;">&#40;</span><span style="color: #000088;">$content</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></pre>
</li>
<li style="background-color:#fff;">
<pre style="">  <span style="color: #000088;">$content_array</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/split"><span style="color: #008000; font-weight: bold;">split</span></a><span style="color: #009900;">&#40;</span><span style="color: red;">' '</span><span style="color: #339933;">,</span><span style="color: #000088;">$content</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style="">  <span style="color: #000088;">$result</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">null</span><span style="color: #339933;">;</span></pre>
</li>
<li style="background-color:#fff;">
<pre style="">  <span style="color: #0000bb;">if</span><span style="color: #009900;">&#40;</span><a href="http://www.php.net/sizeof"><span style="color: #008000; font-weight: bold;">sizeof</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$content_array</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">&gt;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style="">    <span style="color: #0000bb;">foreach</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$content_array</span> <span style="color: #0000bb;">as</span> <span style="color: #000088;">$str</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></pre>
</li>
<li style="background-color:#fff;">
<pre style="">      <span style="color: #0000bb;">if</span><span style="color: #009900;">&#40;</span><a href="http://www.php.net/preg_match"><span style="color: #008000; font-weight: bold;">preg_match</span></a><span style="color: #009900;">&#40;</span><span style="color: red;">&quot;|@[a-zA-Z_0-9-]*|&quot;</span><span style="color: #339933;">,</span><span style="color: #000088;">$str</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style="">	<span style="color: #000088;">$str</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/str_replace"><span style="color: #008000; font-weight: bold;">str_replace</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$str</span><span style="color: #339933;">,</span><span style="color: red;">'&lt;a href=&quot;http://twitter.com/'</span> <span style="color: #339933;">.</span></pre>
</li>
<li style="background-color:#fff;">
<pre style="">               <a href="http://www.php.net/substr"><span style="color: #008000; font-weight: bold;">substr</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$str</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">1</span><span style="color: #339933;">,</span><a href="http://www.php.net/strlen"><span style="color: #008000; font-weight: bold;">strlen</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$str</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: red;">'&quot;&gt;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$str</span><span style="color: #339933;">.</span><span style="color: red;">'&lt;/a&gt;'</span><span style="color: #339933;">,</span><span style="color: #000088;">$str</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style="">      <span style="color: #009900;">&#125;</span></pre>
</li>
<li style="background-color:#fff;">
<pre style="">      <span style="color: #000088;">$result</span> <span style="color: #339933;">.=</span> <span style="color: red;">' '</span><span style="color: #339933;">.</span><span style="color: #000088;">$str</span><span style="color: #339933;">;</span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style="">     <span style="color: #009900;">&#125;</span></pre>
</li>
<li style="background-color:#fff;">
<pre style="">   <span style="color: #009900;">&#125;</span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style="">   <span style="color: #0000bb;">return</span> <a href="http://www.php.net/trim"><span style="color: #008000; font-weight: bold;">trim</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$result</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre>
</li>
<li style="background-color:#fff;">
<pre style=""><span style="color: #009900;">&#125;</span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style=""><span style="color: #000000; font-weight: bold;">?&gt;</span></pre>
</li>
</ol>
</div>
</div>
<p>Für Tags kann dieser Codeschinpsel ebenfalls verwendet werden, es müsste lediglich @ mit # ersetzt werden und die erlaubten Zeichen überprüft werden.</p>
<img src="http://feeds.feedburner.com/~r/Pixelspaceorg/de/~4/k-kbflBP4LA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.pixelspace.org/2008/11/php-link-zum-twitter-user-generieren/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.pixelspace.org/2008/11/php-link-zum-twitter-user-generieren/</feedburner:origLink></item>
		<item>
		<title>Server-Umzug</title>
		<link>http://feedproxy.google.com/~r/Pixelspaceorg/de/~3/FKskqMFrCB8/</link>
		<comments>http://www.pixelspace.org/2008/11/server-umzug/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 08:42:23 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[allgemein]]></category>

		<guid isPermaLink="false">http://www.pixelspace.org/2008/11/19/server-umzug/</guid>
		<description><![CDATA[Nach einem Anbieterwechsel befinden sich diese Seiten f&#252;r einige Tage im Umbau. Dadurch kann es hin und wieder zu kleinen Problemen bei der Verf&#252;gbarkeit kommen.
]]></description>
			<content:encoded><![CDATA[<p>Nach einem Anbieterwechsel befinden sich diese Seiten f&uuml;r einige Tage im Umbau. Dadurch kann es hin und wieder zu kleinen Problemen bei der Verf&uuml;gbarkeit kommen.</p>
<img src="http://feeds.feedburner.com/~r/Pixelspaceorg/de/~4/FKskqMFrCB8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.pixelspace.org/2008/11/server-umzug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.pixelspace.org/2008/11/server-umzug/</feedburner:origLink></item>
		<item>
		<title>re:publica 09</title>
		<link>http://feedproxy.google.com/~r/Pixelspaceorg/de/~3/7t3LdNxaM4g/</link>
		<comments>http://www.pixelspace.org/2008/11/republica-09/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 14:04:20 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[allgemein]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[journalism]]></category>
		<category><![CDATA[social media]]></category>

		<guid isPermaLink="false">http://www.pixelspace.org/2008/11/11/republica-09/</guid>
		<description><![CDATA[
Nach bisher zwei erfolgreichen Konferenzen wird es im April 2009 wieder hoch hergehen. Blogger, Netzbewohner und Internetexperten diskutieren &#252;ber soziale Medien, digitale Gesellschaft wie auch Netzpolitik. Dabei sein lohnt sich!
&#8220;re:publica 09 &#8211; Die Konferenz &#252;ber Blogs, soziale Medien und die digitale Gesellschaft&#8221;
]]></description>
			<content:encoded><![CDATA[<p><a href="http://re-publica.de"><img height="278" width="498" src="http://re-publica.de/08/wp-content/imagemagic/033e7e2ed0796d545a824a1ef072000d.jpg" alt="" /></a></p>
<p>Nach bisher zwei erfolgreichen Konferenzen wird es im April 2009 wieder hoch hergehen. Blogger, Netzbewohner und Internetexperten diskutieren &uuml;ber soziale Medien, digitale Gesellschaft wie auch Netzpolitik. Dabei sein lohnt sich!</p>
<p>&ldquo;re:publica 09 &#8211; Die Konferenz &uuml;ber Blogs, soziale Medien und die digitale Gesellschaft&rdquo;</p>
<img src="http://feeds.feedburner.com/~r/Pixelspaceorg/de/~4/7t3LdNxaM4g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.pixelspace.org/2008/11/republica-09/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.pixelspace.org/2008/11/republica-09/</feedburner:origLink></item>
		<item>
		<title>Flash und valides XHTML</title>
		<link>http://feedproxy.google.com/~r/Pixelspaceorg/de/~3/RFRgpC1mW48/</link>
		<comments>http://www.pixelspace.org/2008/05/flash-und-valides-xhtml/#comments</comments>
		<pubDate>Tue, 20 May 2008 23:16:20 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[webentwicklung]]></category>

		<guid isPermaLink="false">http://www.pixelspace.org/2008/05/20/flash-und-valides-xhtml/</guid>
		<description><![CDATA[Nachdem ich in letzter Zeit etwas öfter mit Flash zu tun hatte, blieb die Situation natürlich nicht aus, Flash in einen XHTML valide Seite zu integrieren. Als einfaches Beispiel nehme ich mal den Code der bei Youtube.com zum Einbinden von Clips angezeigt wird:
toggle code



&#60;object width=&#34;425&#34; height=&#34;355&#34;&#62;


&#60;param name=&#34;movie&#34; value=&#34;http://youtube.com/v/hvDDDKnNhuE&#34;&#62;&#60;/param&#62;


&#60;param name=&#34;wmode&#34; value=&#34;transparent&#34;&#62;&#60;/param&#62;


&#60;embed src=&#34;http://youtube.com/v/hvDDDKnNhuE&#34;


	type=&#34;application/x-shockwave-flash&#34;


	wmode=&#34;transparent&#34; width=&#34;425&#34; height=&#34;355&#34;&#62;&#60;/embed&#62;


&#60;/object&#62;




Das &#60;embed&#62; &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>Nachdem ich in letzter Zeit etwas öfter mit Flash zu tun hatte, blieb die Situation natürlich nicht aus, Flash in einen XHTML valide Seite zu integrieren. Als einfaches Beispiel nehme ich mal den Code der bei <a href="http://www.youtube.com">Youtube.com</a> zum Einbinden von Clips angezeigt wird:</p>
<div class="toggle-code"><span class="toggler">toggle code</span>
<div class="html4strict synhigh">
<ol>
<li style="background-color:#fff;">
<pre style=""><span style="color: #666666;">&lt;<a href="http://december.com/html/x1/element/object.html"><span style="color: #3e73ae; font-weight: bold;">object</span></a> <span style="color: #000000;">width</span><span style="color: #666666;">=</span><span style="color: #000000;">&quot;425&quot;</span> <span style="color: #000000;">height</span><span style="color: #666666;">=</span><span style="color: #000000;">&quot;355&quot;</span>&gt;</span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style=""><span style="color: #666666;">&lt;<a href="http://december.com/html/x1/element/param.html"><span style="color: #3e73ae; font-weight: bold;">param</span></a> <span style="color: #000000;">name</span><span style="color: #666666;">=</span><span style="color: #000000;">&quot;movie&quot;</span> <span style="color: #000000;">value</span><span style="color: #666666;">=</span><span style="color: #000000;">&quot;http://youtube.com/v/hvDDDKnNhuE&quot;</span>&gt;&lt;<span style="color: #666666;">/</span><a href="http://december.com/html/x1/element/param.html"><span style="color: #3e73ae; font-weight: bold;">param</span></a>&gt;</span></pre>
</li>
<li style="background-color:#fff;">
<pre style=""><span style="color: #666666;">&lt;<a href="http://december.com/html/x1/element/param.html"><span style="color: #3e73ae; font-weight: bold;">param</span></a> <span style="color: #000000;">name</span><span style="color: #666666;">=</span><span style="color: #000000;">&quot;wmode&quot;</span> <span style="color: #000000;">value</span><span style="color: #666666;">=</span><span style="color: #000000;">&quot;transparent&quot;</span>&gt;&lt;<span style="color: #666666;">/</span><a href="http://december.com/html/x1/element/param.html"><span style="color: #3e73ae; font-weight: bold;">param</span></a>&gt;</span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style=""><span style="color: #666666;">&lt;embed <span style="color: #000000;">src</span><span style="color: #666666;">=</span><span style="color: #000000;">&quot;http://youtube.com/v/hvDDDKnNhuE&quot;</span></span></pre>
</li>
<li style="background-color:#fff;">
<pre style=""><span style="color: #666666;">	<span style="color: #000000;">type</span><span style="color: #666666;">=</span><span style="color: #000000;">&quot;application/x-shockwave-flash&quot;</span></span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style=""><span style="color: #666666;">	wmode<span style="color: #666666;">=</span><span style="color: #000000;">&quot;transparent&quot;</span> <span style="color: #000000;">width</span><span style="color: #666666;">=</span><span style="color: #000000;">&quot;425&quot;</span> <span style="color: #000000;">height</span><span style="color: #666666;">=</span><span style="color: #000000;">&quot;355&quot;</span>&gt;&lt;<span style="color: #666666;">/</span>embed&gt;</span></pre>
</li>
<li style="background-color:#fff;">
<pre style=""><span style="color: #666666;">&lt;<span style="color: #666666;">/</span><a href="http://december.com/html/x1/element/object.html"><span style="color: #3e73ae; font-weight: bold;">object</span></a>&gt;</span></pre>
</li>
</ol>
</div>
</div>
<p>Das &lt;embed&gt; &#8211; Tag jedoch ist kein Standard HTML Tag. Es muss also eine andere Lösung geben, um das Flashobjekt und validen HTML Code zu vereinen. Der Schlüssel zum Erfolg ist auch kein Geheimnis. Eine Möglichkeit stellt die bewährte <a href="http://www.alistapart.com/articles/flashsatay">Flash Satay</a> Methode dar.</p>
<p>Man wirft das &lt;embed&gt; &#8211; Tag raus und gibt dem &lt;object&gt; &#8211; Tag 2 Attribute.</p>
<ol>
<li>Data Das attribut <em>data</em> benötigt die URL zur Quelle des gewünschten Flashobjektes<br />
Also: http://youtube.com/v/hvDDDKnNhuE</li>
<li>Type Das Attribut <em>type</em> bestimmt den MIME-Typ des Objektes, in diesem Falle Flash <em>application/x-shockwave-flash</em></li>
</ol>
<p>Da es sich um eine Einbettung in XHTML 1.0 validen Code handelt, muss das &lt;param&gt; &#8211; Tag als <a class="ext" href="http://www.w3.org/TR/xhtml1/#h-4.6">leeres Tag</a> geschlossen werden.</p>
<p>Das validierte Beispiel könnte dann so aussehen:</p>
<div class="toggle-code"><span class="toggler">toggle code</span>
<div class="html4strict synhigh">
<ol>
<li style="background-color:#fff;">
<pre style=""><span style="color: #666666;">&lt;<a href="http://december.com/html/x1/element/object.html"><span style="color: #3e73ae; font-weight: bold;">object</span></a> <span style="color: #000000;">data</span><span style="color: #666666;">=</span><span style="color: #000000;">&quot;http://youtube.com/v/hvDDDKnNhuE&quot;</span></span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style=""><span style="color: #666666;">	<span style="color: #000000;">type</span><span style="color: #666666;">=</span><span style="color: #000000;">&quot;application/x-shockwave-flash&quot;</span></span></pre>
</li>
<li style="background-color:#fff;">
<pre style=""><span style="color: #666666;">	<span style="color: #000000;">style</span><span style="color: #666666;">=</span><span style="color: #000000;">&quot;width:425px;height:355px;&quot;</span>&gt;</span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style="">&nbsp;</pre>
</li>
<li style="background-color:#fff;">
<pre style=""><span style="color: #666666;">&lt;<a href="http://december.com/html/x1/element/param.html"><span style="color: #3e73ae; font-weight: bold;">param</span></a> <span style="color: #000000;">name</span><span style="color: #666666;">=</span><span style="color: #000000;">&quot;movie&quot;</span> <span style="color: #000000;">value</span><span style="color: #666666;">=</span><span style="color: #000000;">&quot;http://youtube.com/v/hvDDDKnNhuE&quot;</span> <span style="color: #666666;">/</span>&gt;</span></pre>
</li>
<li style="background-color:#f7f7f7;">
<pre style="">&nbsp;</pre>
</li>
<li style="background-color:#fff;">
<pre style=""><span style="color: #666666;">&lt;<span style="color: #666666;">/</span><a href="http://december.com/html/x1/element/object.html"><span style="color: #3e73ae; font-weight: bold;">object</span></a>&gt;</span></pre>
</li>
</ol>
</div>
</div>
<p>Die Größe des Objektes kann dabei auch mit Style-Angaben gelöst werden.</p>
<p>Das Ergebnis ist weniger Code, welcher zudem noch valides XHTML ermöglicht.</p>
<img src="http://feeds.feedburner.com/~r/Pixelspaceorg/de/~4/RFRgpC1mW48" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.pixelspace.org/2008/05/flash-und-valides-xhtml/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.pixelspace.org/2008/05/flash-und-valides-xhtml/</feedburner:origLink></item>
		<item>
		<title>CG: Audi Q7 Work in Progress</title>
		<link>http://feedproxy.google.com/~r/Pixelspaceorg/de/~3/ZEIATh_fqPU/</link>
		<comments>http://www.pixelspace.org/2007/08/cg-audi-q7-work-in-progress/#comments</comments>
		<pubDate>Thu, 09 Aug 2007 10:00:00 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[computergraphik]]></category>
		<category><![CDATA[audi q7]]></category>
		<category><![CDATA[c4d]]></category>
		<category><![CDATA[q7]]></category>

		<guid isPermaLink="false">http://www.pixelspace.org/2007/08/09/cg-audi-q7-work-in-progress/</guid>
		<description><![CDATA[Ein neues Lichtsetup sowie bessere Materialen.]]></description>
			<content:encoded><![CDATA[<p>Ein neues Lichtsetup sowie bessere Materialen.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="563" height="450" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="embedFlashGallery" /><param name="data" value="http://iloapp.pixelspace.org/gallery/swf/embedFlashGallery.swf?albumId=6&amp;galleryLocation=galerie&amp;domainName=pixelspace.org" /><param name="quality" value="high" /><param name="bgcolor" value="#000000" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><param name="src" value="http://iloapp.pixelspace.org/gallery/swf/embedFlashGallery.swf?albumId=6&amp;galleryLocation=galerie&amp;domainName=pixelspace.org" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="563" height="450" src="http://iloapp.pixelspace.org/gallery/swf/embedFlashGallery.swf?albumId=6&amp;galleryLocation=galerie&amp;domainName=pixelspace.org" allowfullscreen="true" allowscriptaccess="always" bgcolor="#000000" quality="high" data="http://iloapp.pixelspace.org/gallery/swf/embedFlashGallery.swf?albumId=6&amp;galleryLocation=galerie&amp;domainName=pixelspace.org" name="embedFlashGallery"></embed></object></p>
<p>Den gesamten Entwicklungsstand kann man auf <a class="ext" href="http://www.cg-cars.com/forum/showthread.php?t=2134">http://www.cg-cars.com</a> und auf <a class="ext" href="http://www.c4dboard.com/showthread.php?t=1459">http://www.c4dboard.com/</a> einsehen.</p>
<img src="http://feeds.feedburner.com/~r/Pixelspaceorg/de/~4/ZEIATh_fqPU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.pixelspace.org/2007/08/cg-audi-q7-work-in-progress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.pixelspace.org/2007/08/cg-audi-q7-work-in-progress/</feedburner:origLink></item>
		<item>
		<title>CG: Transrapid</title>
		<link>http://feedproxy.google.com/~r/Pixelspaceorg/de/~3/M39b2B09rok/</link>
		<comments>http://www.pixelspace.org/2007/07/cg-transrapid/#comments</comments>
		<pubDate>Thu, 26 Jul 2007 21:20:20 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[computergraphik]]></category>
		<category><![CDATA[c4d]]></category>
		<category><![CDATA[transrapid]]></category>

		<guid isPermaLink="false">http://www.pixelspace.org/2007/07/26/cg-transrapid/</guid>
		<description><![CDATA[Neulich angefangen:ein CG Modell des Transrapids, ob ich es schaffe das Modell weiter zu bauen steht wohl noch nicht fest.

]]></description>
			<content:encoded><![CDATA[<p>Neulich angefangen:ein CG Modell des Transrapids, ob ich es schaffe das Modell weiter zu bauen steht wohl noch nicht fest.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="561" height="450" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="embedFlashGallery" /><param name="data" value="http://iloapp.pixelspace.org/gallery/swf/embedFlashGallery.swf?albumId=5&amp;galleryLocation=galerie&amp;domainName=pixelspace.org" /><param name="quality" value="high" /><param name="bgcolor" value="#000000" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><param name="src" value="http://iloapp.pixelspace.org/gallery/swf/embedFlashGallery.swf?albumId=5&amp;galleryLocation=galerie&amp;domainName=pixelspace.org" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="561" height="450" src="http://iloapp.pixelspace.org/gallery/swf/embedFlashGallery.swf?albumId=5&amp;galleryLocation=galerie&amp;domainName=pixelspace.org" allowfullscreen="true" allowscriptaccess="always" bgcolor="#000000" quality="high" data="http://iloapp.pixelspace.org/gallery/swf/embedFlashGallery.swf?albumId=5&amp;galleryLocation=galerie&amp;domainName=pixelspace.org" name="embedFlashGallery"></embed></object></p>
<img src="http://feeds.feedburner.com/~r/Pixelspaceorg/de/~4/M39b2B09rok" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.pixelspace.org/2007/07/cg-transrapid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.pixelspace.org/2007/07/cg-transrapid/</feedburner:origLink></item>
	</channel>
</rss>
