<?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>Stefan's Blog &#187; coding</title>
	<atom:link href="http://www.stefan-motz.de/wordpress/category/coding/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.stefan-motz.de/wordpress</link>
	<description>coding, scouting, diy, ideas …</description>
	<lastBuildDate>Fri, 15 Jul 2011 17:19:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>DropBox Gallery Demo</title>
		<link>http://www.stefan-motz.de/wordpress/2011/07/dropbox-gallery-demo/</link>
		<comments>http://www.stefan-motz.de/wordpress/2011/07/dropbox-gallery-demo/#comments</comments>
		<pubDate>Fri, 15 Jul 2011 17:19:10 +0000</pubDate>
		<dc:creator>moldi</dc:creator>
				<category><![CDATA[coding]]></category>

		<guid isPermaLink="false">http://www.stefan-motz.de/wordpress/?p=300</guid>
		<description><![CDATA[It&#8217;s been a while since I first mentioned my Dropbox Gallery Plugin. Up to today I did not release it for two major reasons: You have to get your own dropbox developer key to use the plugin . That&#8217;s a barrier for most users. I did not manage to (and didn&#8217;t really try to) optimize [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a while since I first mentioned my Dropbox Gallery Plugin.</p>
<p>Up to today I did not release it for two major reasons:</p>
<ol>
<li>You have to get your own dropbox developer key to use the plugin . That&#8217;s a barrier for most users.</li>
<li>I did not manage to (and didn&#8217;t really try to) optimize memory consumption when the images are cached. Right now you have to reload the page several times, until all images are cached. That&#8217;s a real show stopper.</li>
</ol>
<p>After all I do know, that some people might like to use the plugin nevertheless and perhaps they might even optimize it.</p>
<p>Please drop me a line if you use the Dropbox gallery , enhanced it or even pushed it to github or google code.</p>
<p><a href="http://www.stefan-motz.de/wordpress/wp-content/uploads/2011/07/dropbox-gallery.tar.gz">dropbox-gallery.tar.gz</a></p>
<p>If you ant to use the plugin, make sure to configure it and to get a Dropbox API-Key.<br />
It&#8217;s recommended to use <a title="WP-prettyPhoto" href="http://wordpress.org/extend/plugins/wp-prettyphoto/">WP-prettyPhoto</a> along with the dropbox gallery.</p>
<a class="dropbox_gallery_link" rel="wp-prettyPhoto[c77cc17daa697fe71e59e19d8974dafe]" href="http://www.stefan-motz.de/wordpress/wp-content/plugins/dropbox-gallery/dropbox_gallery_image.php?hash=dbgc_cd11a4f603b256adecd46343f9cf78d0"><img src="/wordpress/wp-content/plugins/dropbox-gallery/dropbox_gallery_image.php?hash=dbgc_f5c702e67803467b7c4c19a33f73b01e"/></a><a class="dropbox_gallery_link" rel="wp-prettyPhoto[c77cc17daa697fe71e59e19d8974dafe]" href="http://www.stefan-motz.de/wordpress/wp-content/plugins/dropbox-gallery/dropbox_gallery_image.php?hash=dbgc_6710cb3b5d63b1d6a2a1ded2dc3952ea"><img src="/wordpress/wp-content/plugins/dropbox-gallery/dropbox_gallery_image.php?hash=dbgc_e70feb591c72bd953df5616968b9beb6"/></a>
]]></content:encoded>
			<wfw:commentRss>http://www.stefan-motz.de/wordpress/2011/07/dropbox-gallery-demo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery.printQr: use QR-Codes for your Print-Stylesheet with Google Charts API and jQuery</title>
		<link>http://www.stefan-motz.de/wordpress/2011/03/use-qr-codes-for-your-print-stylesheet-with-google-charts-api-and-jquery/</link>
		<comments>http://www.stefan-motz.de/wordpress/2011/03/use-qr-codes-for-your-print-stylesheet-with-google-charts-api-and-jquery/#comments</comments>
		<pubDate>Thu, 17 Mar 2011 23:41:38 +0000</pubDate>
		<dc:creator>moldi</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[common]]></category>
		<category><![CDATA[printQr]]></category>

		<guid isPermaLink="false">http://www.stefan-motz.de/wordpress/?p=291</guid>
		<description><![CDATA[It&#8217;s a common practice to make the URIs of links visible in a print styleheets via CSS: @media print { a:after { content: &#34; (&#34; attr(href) &#34;)&#34;; } } Quite often you would not like to type a cryptic url by hand. Here is what you may utilize jQuery.printQr for. Here is all you have [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s a common practice to make the URIs of links visible in a print styleheets via CSS:</p>
<pre class="brush: css; title: ;">
@media print {
a:after {
content: &quot; (&quot; attr(href) &quot;)&quot;;
}
}
</pre>
<p>Quite often you would not like to type a cryptic url by hand. Here is what you may utilize jQuery.printQr  for.</p>
<p>Here is all you have to do:</p>
<pre class="brush: xml; title: ;">
&lt;script src=&quot;jquery.printqr.js&quot; type=&quot;text/javascript&quot; charset=&quot;utf-8&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; charset=&quot;utf-8&quot;&gt;
$(document).ready(function() {
    $('a').printQr();
});
&lt;/script&gt;
</pre>
<p>These lines of code will add QR Codes for all links to the bottom of the page when you print it.<br />
I built a little <a title="printQr jQuery Plugin" href="http://www.stefan-motz.de/oss/printQR/" target="_blank">demo page</a>.</p>
<p>Have fun with it, I&#8217;m interested in some feedback.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stefan-motz.de/wordpress/2011/03/use-qr-codes-for-your-print-stylesheet-with-google-charts-api-and-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image Galleries from DropBox</title>
		<link>http://www.stefan-motz.de/wordpress/2011/03/image-galleries-from-dropbox/</link>
		<comments>http://www.stefan-motz.de/wordpress/2011/03/image-galleries-from-dropbox/#comments</comments>
		<pubDate>Wed, 02 Mar 2011 23:17:09 +0000</pubDate>
		<dc:creator>moldi</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[common]]></category>

		<guid isPermaLink="false">http://www.stefan-motz.de/wordpress/?p=280</guid>
		<description><![CDATA[My previous post gave a little sneak peek to my very first wordpress plugin &#8220;Dropbox Gallery&#8221;. Although it is not ready for press right now, I&#8217;ll tell you about its features and advantages. No (manual) upload needed All you do is drag a file to your Dropbox folder. You should upload an image with a [...]]]></description>
			<content:encoded><![CDATA[<p>My previous post gave a little sneak peek to my very first wordpress plugin &#8220;Dropbox Gallery&#8221;.<br />
Although it is not ready for press right now, I&#8217;ll tell you about its features and advantages.</p>
<p><strong>No (manual) upload needed</strong><br />
All you do is drag a file to your Dropbox folder. You should upload an image with a reasonable filesize, so don&#8217;t use your 20 megapixel raw image. Thumbnailing is done by dropbox.</p>
<p><strong>Caching, not copying</strong><br />
The images from your Dropbox are cached for faster access. The cache has a configurable lifetime.</p>
<p><strong>Update galleries or individual pictures</strong><br />
On the other hand every new revision of an image is detected and updated. You altered your image in Photoshop? No need to update your image in WordPress.</p>
<p><strong>Choose any folder from your Dropbox account</strong><br />
You may choose any folder to create an image gallery out of its contents. All images of the folder you chose are displayed in your article.</p>
<p><strong>And here is what you get</strong><br />
<a class="dropbox_gallery_link" rel="wp-prettyPhoto[6d74d400679488e8b58409fb2d553ad1]" href="http://www.stefan-motz.de/wordpress/wp-content/plugins/dropbox-gallery/dropbox_gallery_image.php?hash=dbgc_79af3ccfd8ab3ccef6bbe44202550744"><img src="/wordpress/wp-content/plugins/dropbox-gallery/dropbox_gallery_image.php?hash=dbgc_8fd071deac0d04f709af29188cd0eeda"/></a><a class="dropbox_gallery_link" rel="wp-prettyPhoto[6d74d400679488e8b58409fb2d553ad1]" href="http://www.stefan-motz.de/wordpress/wp-content/plugins/dropbox-gallery/dropbox_gallery_image.php?hash=dbgc_023c983748c3ede4144506e17aac729c"><img src="/wordpress/wp-content/plugins/dropbox-gallery/dropbox_gallery_image.php?hash=dbgc_2a4e1a64c3936d2b23284f372d5f95ef"/></a><a class="dropbox_gallery_link" rel="wp-prettyPhoto[6d74d400679488e8b58409fb2d553ad1]" href="http://www.stefan-motz.de/wordpress/wp-content/plugins/dropbox-gallery/dropbox_gallery_image.php?hash=dbgc_f847bfd8f97719edaa73079c7ca50025"><img src="/wordpress/wp-content/plugins/dropbox-gallery/dropbox_gallery_image.php?hash=dbgc_91da6c7e569a0f9fdef4073c5f2b3d01"/></a><a class="dropbox_gallery_link" rel="wp-prettyPhoto[6d74d400679488e8b58409fb2d553ad1]" href="http://www.stefan-motz.de/wordpress/wp-content/plugins/dropbox-gallery/dropbox_gallery_image.php?hash=dbgc_2ed9bcb888cbce6fd2072d52d6dd8d83"><img src="/wordpress/wp-content/plugins/dropbox-gallery/dropbox_gallery_image.php?hash=dbgc_afd0daa55b07ef63026e9803e36d901d"/></a><a class="dropbox_gallery_link" rel="wp-prettyPhoto[6d74d400679488e8b58409fb2d553ad1]" href="http://www.stefan-motz.de/wordpress/wp-content/plugins/dropbox-gallery/dropbox_gallery_image.php?hash=dbgc_1a4773dc77556125dda430c71c89c43f"><img src="/wordpress/wp-content/plugins/dropbox-gallery/dropbox_gallery_image.php?hash=dbgc_a3a508bba43cd14733ed322c06159410"/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.stefan-motz.de/wordpress/2011/03/image-galleries-from-dropbox/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Connect Photo Galleries from DropBox with your WordPress Blog</title>
		<link>http://www.stefan-motz.de/wordpress/2010/08/connect-photo-galleries-from-dropbox-with-your-wordpress-blog/</link>
		<comments>http://www.stefan-motz.de/wordpress/2010/08/connect-photo-galleries-from-dropbox-with-your-wordpress-blog/#comments</comments>
		<pubDate>Sun, 22 Aug 2010 21:17:06 +0000</pubDate>
		<dc:creator>moldi</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[common]]></category>

		<guid isPermaLink="false">http://www.stefan-motz.de/wordpress/?p=273</guid>
		<description><![CDATA[Today I wrote a tiny Plug-In to incorporate Dropbox Photo-Folders into a WordPress Blog.]]></description>
			<content:encoded><![CDATA[<p>Today I wrote a tiny Plug-In to incorporate Dropbox Photo-Folders into a WordPress Blog.</p>
<a class="dropbox_gallery_link" rel="wp-prettyPhoto[aef04e0014869cf0add4ab103c6ce4ed]" href="http://www.stefan-motz.de/wordpress/wp-content/plugins/dropbox-gallery/dropbox_gallery_image.php?hash=dbgc_c62f3b20a1fd709f26469440c295480a"><img src="/wordpress/wp-content/plugins/dropbox-gallery/dropbox_gallery_image.php?hash=dbgc_4327945f300ebc1dd4a6dc996ff63dac"/></a><a class="dropbox_gallery_link" rel="wp-prettyPhoto[aef04e0014869cf0add4ab103c6ce4ed]" href="http://www.stefan-motz.de/wordpress/wp-content/plugins/dropbox-gallery/dropbox_gallery_image.php?hash=dbgc_ca05930e78944d62ba01fc02d728dcf4"><img src="/wordpress/wp-content/plugins/dropbox-gallery/dropbox_gallery_image.php?hash=dbgc_8352cd4a0f0060cd100dfc5208366a10"/></a><a class="dropbox_gallery_link" rel="wp-prettyPhoto[aef04e0014869cf0add4ab103c6ce4ed]" href="http://www.stefan-motz.de/wordpress/wp-content/plugins/dropbox-gallery/dropbox_gallery_image.php?hash=dbgc_da71fe4d3f3adcfa5be8867d1e95f7c7"><img src="/wordpress/wp-content/plugins/dropbox-gallery/dropbox_gallery_image.php?hash=dbgc_c730929d389851ad73607011e8b0ac6b"/></a><a class="dropbox_gallery_link" rel="wp-prettyPhoto[aef04e0014869cf0add4ab103c6ce4ed]" href="http://www.stefan-motz.de/wordpress/wp-content/plugins/dropbox-gallery/dropbox_gallery_image.php?hash=dbgc_9ae5bf086ab1586c44c0f30cf989344d"><img src="/wordpress/wp-content/plugins/dropbox-gallery/dropbox_gallery_image.php?hash=dbgc_26c006299314b93a9877146d0c777fc4"/></a><a class="dropbox_gallery_link" rel="wp-prettyPhoto[aef04e0014869cf0add4ab103c6ce4ed]" href="http://www.stefan-motz.de/wordpress/wp-content/plugins/dropbox-gallery/dropbox_gallery_image.php?hash=dbgc_9ad57654b03cb801fe130c1538339c45"><img src="/wordpress/wp-content/plugins/dropbox-gallery/dropbox_gallery_image.php?hash=dbgc_c8eddf6e3ebca1d6a8430d3fe4f7c0ae"/></a><a class="dropbox_gallery_link" rel="wp-prettyPhoto[aef04e0014869cf0add4ab103c6ce4ed]" href="http://www.stefan-motz.de/wordpress/wp-content/plugins/dropbox-gallery/dropbox_gallery_image.php?hash=dbgc_57a0ae5ab8fa762d0db157b77583afeb"><img src="/wordpress/wp-content/plugins/dropbox-gallery/dropbox_gallery_image.php?hash=dbgc_6e6bc0355925d76974fca42ea5cdb4fc"/></a><a class="dropbox_gallery_link" rel="wp-prettyPhoto[aef04e0014869cf0add4ab103c6ce4ed]" href="http://www.stefan-motz.de/wordpress/wp-content/plugins/dropbox-gallery/dropbox_gallery_image.php?hash=dbgc_be3cb968590ce76fda312fa9cba89ae9"><img src="/wordpress/wp-content/plugins/dropbox-gallery/dropbox_gallery_image.php?hash=dbgc_8d7605104dd21eb3c343c761718786ee"/></a>
]]></content:encoded>
			<wfw:commentRss>http://www.stefan-motz.de/wordpress/2010/08/connect-photo-galleries-from-dropbox-with-your-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mehr Suchmaschinen für Glims</title>
		<link>http://www.stefan-motz.de/wordpress/2009/10/mehr-suchmaschinen-fur-glims/</link>
		<comments>http://www.stefan-motz.de/wordpress/2009/10/mehr-suchmaschinen-fur-glims/#comments</comments>
		<pubDate>Sat, 03 Oct 2009 11:27:59 +0000</pubDate>
		<dc:creator>moldi</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[glims]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://www.stefan-motz.de/wordpress/?p=228</guid>
		<description><![CDATA[Glims ist eine sehr praktische Erweiterung für Safari, die unter anderem mehr Suchmaschinen zum Suchfeld hinzufügt. Darüber hinaus können Suchanfragen aus der Adresszeile heraus gestartet werden. Pro Suchmaschine wird ein Kürzel definiert, z.B. &#8220;g&#8221; für Google, so dass die Eingabe &#8220;g tag der deutschen einheit&#8221; in die Adresszeile die entsprechenden Suchergebnisse bei Google auswirft. Leider [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.machangout.com/">Glims</a> ist eine sehr praktische Erweiterung für Safari, die unter anderem mehr Suchmaschinen zum Suchfeld hinzufügt. Darüber hinaus können Suchanfragen aus der Adresszeile heraus gestartet werden. Pro Suchmaschine wird ein Kürzel definiert, z.B. &#8220;g&#8221; für Google, so dass die Eingabe &#8220;g tag der deutschen einheit&#8221; in die Adresszeile die entsprechenden Suchergebnisse bei Google auswirft.</p>
<p>Leider sind (noch) keine deutschen Nachschlagewerke vorgegeben. Über die Einstellungen von Glims können eigene Suchmaschinen hinzugefügt werden. Nachfolgend die Such-Urls für eine kleine Auswahl von Seiten:</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Google-DE</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">http://www.google.de/search?hl=de&amp;q=#query#</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">g</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Amazon.de</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">http://www.amazon.de/s/ref=nb_ss?url=search-alias%3Daps&amp;field-keywords=#query#</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">a</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Wikikpedia-DE</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">http://de.wikipedia.org/w/index.php?search=#query#&amp;go=Go</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">w</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">dict.leo.org</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">http://dict.leo.org/ende?lp=ende&amp;lang=de&amp;search=#query#</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">d</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Ebay-DE</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">http://search.ebay.de/#query#</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">e</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Flickr-CC</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">http://www.flickr.com/search/?q=#query#&amp;l=commderiv&amp;ct=0&amp;mt=all&amp;adv=1</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">fcc</div>
<ul>
<li>Google-DE
<p>http://www.google.de/search?hl=de&#038;q=#query#</li>
<li>Amazon.de
<p>http://www.amazon.de/s/ref=nb_ss?url=search-alias%3Daps&#038;field-keywords=#query#</li>
<li>Wikikpedia-DE
<p>http://de.wikipedia.org/w/index.php?search=#query#&#038;go=Go</li>
<li>dict.leo.org &#8211; Übersetzung deutsch/englisch &#8211; englisch/deutsch
<p>http://dict.leo.org/ende?lp=ende&#038;lang=de&#038;search=#query#</li>
<li>Ebay-DE
<p>http://search.ebay.de/#query#</li>
<li>Flickr-CC &#8211; Flickr Bildsuche, beschränkt auf CreativeComons-Bilder mit Freigabe
<p>http://www.flickr.com/search/?q=#query#&#038;l=commderiv&#038;ct=0&#038;mt=all&#038;adv=1</li>
</ul>
<p>Diese Suchmaschinen kann man sich als <a href="http://www.stefan-motz.de/wordpress/wp-content/uploads/2009/10/MHOCustomSearchEngines.plist">Property-Datei auch gerne hier herunterladen</a>.<br />
Gespeichert wird diese Datei in ~/Library/Application Support/Glims</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stefan-motz.de/wordpress/2009/10/mehr-suchmaschinen-fur-glims/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>dojo.back &#8211; finally working</title>
		<link>http://www.stefan-motz.de/wordpress/2009/05/dojoback-finally-working/</link>
		<comments>http://www.stefan-motz.de/wordpress/2009/05/dojoback-finally-working/#comments</comments>
		<pubDate>Tue, 05 May 2009 09:01:15 +0000</pubDate>
		<dc:creator>moldi</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[dojo]]></category>

		<guid isPermaLink="false">http://www.stefan-motz.de/wordpress/?p=37</guid>
		<description><![CDATA[It took me quite a while to get dojo.back working in that way, that i prevents that the user is leaving my site accidentaly. As far as I understood the documentation, dojo.back.setInitialState should have been enough to catch the back button action. But I had to add another historyState to get the intended behaviour. Perhaps [...]]]></description>
			<content:encoded><![CDATA[<p>It took me quite a while to get dojo.back working in that way, that i prevents that the user is leaving my site accidentaly.</p>
<p>As far as I understood the documentation, dojo.back.setInitialState should have been enough to catch the back button action. But I had to add another historyState to get the intended behaviour. Perhaps this might be useful to someone out there:</p>
<pre class="brush: jscript; title: ;">
dojo.addOnLoad(function() {
	dojo.back.setInitialState({
		back : function() {
			if (confirm('Do you want to leave this site?')) {
				history.back();
			} else {
				history.forward();
			}
		},
		forward : function() { console.log(&quot;User clicked forward&quot;); },
		changeUrl : true
	});

	dojo.back.addToHistory({
		back : function() {
			console.log(&quot;initCompleted-back was clicked!&quot;);
		},
		forward : function() {
			console.log(&quot;initCompleted-forward was clicked!&quot;);
		},
		changeUrl : 'state1'
	});
});
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.stefan-motz.de/wordpress/2009/05/dojoback-finally-working/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenID, OAuth etc</title>
		<link>http://www.stefan-motz.de/wordpress/2009/04/openid-oauth-etc/</link>
		<comments>http://www.stefan-motz.de/wordpress/2009/04/openid-oauth-etc/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 06:28:24 +0000</pubDate>
		<dc:creator>moldi</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[media-asset-finder]]></category>
		<category><![CDATA[oauth]]></category>
		<category><![CDATA[openid]]></category>

		<guid isPermaLink="false">http://www.stefan-motz.de/wordpress/?p=30</guid>
		<description><![CDATA[Für den MediaAssetFinder bieten wir bei Divis auch ein OpenID-Modul zur Benutzeranmeldung an. Oft ist es gar nicht so einfach zu erläutern, um was es bei OpenID geht und wo die Vorteile für den Firmenkunden und den Endbenutzer liegen. Gerade habe ich einen guten Artikel bei Heise gefunden, der OpenID gut und ausführlich erläutert und [...]]]></description>
			<content:encoded><![CDATA[<p>Für den MediaAssetFinder bieten wir bei Divis auch ein OpenID-Modul zur Benutzeranmeldung an. Oft ist es gar nicht so einfach zu erläutern, um was es bei OpenID geht und wo die Vorteile für den Firmenkunden und den Endbenutzer liegen.</p>
<p>Gerade habe ich einen guten <a href="http://www.heise.de/developer/Identity-Management-Authentifizierungsdienste-mit-OpenID--/artikel/136222/0">Artikel bei Heise</a> gefunden, der OpenID gut und ausführlich erläutert und das Verfahren auch mit Schaubildern und einem verständlichen Text beschreibt. Viel Spaß beim Lesen!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stefan-motz.de/wordpress/2009/04/openid-oauth-etc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If you can dream it, you can do it!</title>
		<link>http://www.stefan-motz.de/wordpress/2009/04/if-you-can-dream-it-you-can-do-it/</link>
		<comments>http://www.stefan-motz.de/wordpress/2009/04/if-you-can-dream-it-you-can-do-it/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 09:45:51 +0000</pubDate>
		<dc:creator>moldi</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[media-asset-finder]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[maf]]></category>
		<category><![CDATA[mediaassetfinder]]></category>

		<guid isPermaLink="false">http://www.stefan-motz.de/wordpress/?p=22</guid>
		<description><![CDATA[This quote from Walt Disney (according to google search results) is a big motivation. It motivates me to create software. And I do have some ideas and dreams, but sometimes I get stucked. Too much work for one person, no reessources left, lack of knowledge etc. Today google presented &#8220;similar images&#8221; which searches images by [...]]]></description>
			<content:encoded><![CDATA[<p>This quote from Walt Disney (according to google search results) is a big motivation.</p>
<p>It motivates me to create software. And I do have some ideas and dreams, but sometimes I get stucked. Too much work for one person, no reessources left, lack of knowledge etc.<br />
Today google presented &#8220;<a title="similra images search" href="http://similar-images.googlelabs.com/" target="_blank">similar images</a>&#8221; which searches images by their content.</p>
<p>This was one thing I dreamed of, when we started programming the <a href="http://www.media-asset-finder.de/" target="_blank">MediaAssetFinder</a>.<br />
And if I think about it, there is one conclusion:<br />
&#8220;If you can dream it, google can do it!&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stefan-motz.de/wordpress/2009/04/if-you-can-dream-it-you-can-do-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vorbereitungen für die WebmasterCon</title>
		<link>http://www.stefan-motz.de/wordpress/2008/10/vorbereitungen-fur-die-webmastercon/</link>
		<comments>http://www.stefan-motz.de/wordpress/2008/10/vorbereitungen-fur-die-webmastercon/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 22:38:59 +0000</pubDate>
		<dc:creator>moldi</dc:creator>
				<category><![CDATA[dojo]]></category>
		<category><![CDATA[dpsg]]></category>
		<category><![CDATA[google earth/maps]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[mashup]]></category>
		<category><![CDATA[pfadis.com]]></category>

		<guid isPermaLink="false">http://www.stefan-motz.de/wordpress/?p=8</guid>
		<description><![CDATA[Nächstes Wochenende findet im Kölner Diözesanzentrum ein Treffen von Webmastern des Ring deutscher Pfadfinder statt. Neben dem allgemeinen Austausch sollen verschiedene Vorträge zu aktuellen Web-Themen stattfinden. Ich werde einen kleinen Vortrag über das Dojo Toolkit halten und dabei ein kleines MashUp aus dem Scoutnet-Kalender, der neuen Pfadis.com-API und Google Maps als Demo verwenden. Wer mag [...]]]></description>
			<content:encoded><![CDATA[<p>Nächstes Wochenende findet im Kölner Diözesanzentrum ein Treffen von Webmastern des Ring deutscher Pfadfinder statt. Neben dem allgemeinen Austausch sollen verschiedene Vorträge zu aktuellen Web-Themen stattfinden.</p>
<p>Ich werde einen kleinen Vortrag über das Dojo Toolkit halten und dabei ein kleines MashUp aus dem Scoutnet-Kalender, der neuen Pfadis.com-API und Google Maps als Demo verwenden.</p>
<p>Wer mag kann schon einmal einen Blick auf die Baustelle werfen: <a href="http://www.pfadis.com/webmasterCon/test.php">http://www.pfadis.com/webmasterCon/test.php</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.stefan-motz.de/wordpress/2008/10/vorbereitungen-fur-die-webmastercon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

