User christian studer - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T02:02:28Z http://stackoverflow.com/feeds/user/6260 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1858470/technology-choice-for-redesigning-an-old-visualbasic-application 1 Technology choice for redesigning an old VisualBasic-Application christian studer 2009-12-07T07:49:01Z 2009-12-14T04:55:33Z <p>Completely unexpectedly, I (a webdeveloper, with a decent knowledge in OO), am tasked to re-design our old flagship Windows-application and drag it screaming and kicking into the next century.</p> <p>Here's what we have now:</p> <ul> <li>15 year old code, originally written in Delphi, about 8 years ago ported to Visual Basic (Kept in Visual Studio 2008).</li> <li>Some .net 2.0 uses.</li> <li>A lot of highly mathematical code in models, ready to be packed away in .dlls and sold seperately (Note: I don't dare to touch these, too specialised).</li> </ul> <p>Here's what I intend to do:</p> <ul> <li>Using Visual Studio 2008, port the whole thing to Visual Basic and .net 3.5.</li> <li>Redesign the front-end completely with WPF.</li> </ul> <p>Rejected ideas by the management:</p> <ul> <li>Porting to Java or any other, platform-independent language.</li> </ul> <p>My questions: Is this a valid technology choice or should I start mixing in C# for the frontend?</p> http://stackoverflow.com/questions/1184921/how-to-override-targetblank-in-kml-popups-in-embedded-google-map/1858891#1858891 1 Answer by christian studer for How to override target=_blank in KML popups in embedded Google map? christian studer 2009-12-07T09:38:53Z 2009-12-07T09:38:53Z <p>In order to get to those click events, you can also use the jQuery live events: (Note that the Google Map popups are in a div either with the id 'iw' or the id 'iw_kml')</p> <pre><code>$('#iw a').live('click', function () { $(this)... (Gives you the clicked a-object) }); </code></pre> <p><a href="http://docs.jquery.com/Events/live" rel="nofollow">Live events</a> will attach to all future matching elements. </p> http://stackoverflow.com/questions/1699231/input-is-url-how-to-protect-it-from-xss/1699362#1699362 1 Answer by christian studer for input is URL, how to protect it from xss christian studer 2009-11-09T06:16:48Z 2009-11-09T06:16:48Z <p>Don't roll your own XSS-protection, there are too many ways something might slip trough (I can't find the link to a certain XSS-demopage anymore, but the amount of possibilities is staggering: Broken IMG-tags, weird attributes etc.).</p> <p>Use an existing library like <a href="http://code.google.com/p/sseq-lib/" rel="nofollow">sseq-lib</a> or extract one from an established framework.</p> <p><em>Update:</em> Here's <a href="http://ha.ckers.org/xss.html" rel="nofollow">the XSS-demopage</a>.</p> http://stackoverflow.com/questions/974564/can-i-change-set-the-google-maps-api-key-dynamically-from-javascript 0 Can I change/set the Google Maps API Key dynamically from JavaScript? christian studer 2009-06-10T09:29:41Z 2009-10-30T01:33:56Z <p>I'm faced with a problem with a small web application I'm developping: My HTML-source will be integrated into the HTML source on another site. I'm using a Google Map in my code, so I have to pass a API-Key for loading the Google Maps-script on the current domain.</p> <p>The problem: My code will be integrated on two different domains, requiring two different API-Keys. I have those two keys and can identify the valid one by JavaScript (With the help of document.location.host), but how can I manage to dynamically load the script with the correct key?</p> <p>For reference: The key is passed as parameter in the script loading url:</p> <pre><code>&lt;script src="http://maps.google.com/maps?file=api&amp;v=2&amp;key=abcdefg" type="text/javascript"&gt; &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/1613190/codeigniter-global-variable-for-beta-project-path-and-access-from-everywhere/1613287#1613287 -1 Answer by christian studer for codeigniter, global variable for beta project path, and access from everywhere. christian studer 2009-10-23T13:04:41Z 2009-10-23T13:04:41Z <p>There are two answers to your question:</p> <ol> <li><p>Set your variables as array fields of $config in application/config/config.php and access them with $this->config->item('name');</p></li> <li><p>Use the URL-helper (Or $this->config->item('base_url')) to get the current base path whenever you have to type in a path.</p></li> </ol> <p>The second answer will give you full flexibility, you'll only have to modify the base URL in config.php if the project moves.</p> http://stackoverflow.com/questions/1605902/convert-rfc-1123-date-to-timestamp-in-php 0 Convert RFC 1123 date to timestamp in PHP christian studer 2009-10-22T08:58:19Z 2009-10-22T09:37:26Z <p>What is the easiest or most elegant way to convert a RFC 1123 date (From an HTTP-Expiration-header) to a UNIX timestamp?</p> <blockquote> <p>Example: Sun, 14 Aug 2005 16:13:03 GMT</p> </blockquote> <p>Do I really have to 'substr' everything?</p> http://stackoverflow.com/questions/1605902/convert-rfc-1123-date-to-timestamp-in-php/1606081#1606081 0 Answer by christian studer for Convert RFC 1123 date to timestamp in PHP christian studer 2009-10-22T09:36:47Z 2009-10-22T09:36:47Z <p>The boring method:</p> <pre><code> $datestring = 'Sun, 14 Aug 2005 16:13:03 GMT'; $months = array('Jan' =&gt; 1, 'Feb' =&gt; 2, 'Mar' =&gt; 3, 'Apr' =&gt; 4, 'May' =&gt; 5, 'Jun' =&gt; 6, 'Jul' =&gt; 7, 'Aug' =&gt; 8, 'Sep' =&gt; 9, 'Oct' =&gt; 10, 'Nov' =&gt; 11, 'Dec' =&gt; 12, ); $date = explode(' ', $datestring); // Validity check if(count($date) != 6) { return; } $time = explode(':', $date[4]); // Validity check if(count($time) != 3) { return; } if(! isset($months[$date[2]])) { return; } // Convert to time $timestamp= gmmktime($time[0], $time[1], $time[2], $months[$date[2]], $date[1], $date[3]); </code></pre> http://stackoverflow.com/questions/1592845/storing-multiple-dynamic-values-within-one-field-in-mysql/1592867#1592867 1 Answer by christian studer for Storing multiple dynamic values within one field in mysql. christian studer 2009-10-20T06:51:09Z 2009-10-20T06:51:09Z <p>You can put all the values into an array and then serialize it:</p> <pre><code>$string = serialize(array(1, 2, 'foo', 'tree', 'monkey'); </code></pre> <p>This will give you a string which you store in your database. Later, you can recover your array with de-serializing it:</p> <pre><code>$array = unserialize($string); </code></pre> http://stackoverflow.com/questions/1564634/is-there-a-php-calculation-which-could-result-in-a-0 0 Is there a PHP calculation which could result in a -0 ? christian studer 2009-10-14T06:48:38Z 2009-10-14T12:53:53Z <p>I am having trouble with a complex script which sometimes (About 2 or 3 times while calulating about 90'000 values), generates a '-0' and writes it into the database. I suspect it's a string (The values which are calulated can result in integers, floats or strings.)*</p> <p>Is there any PHP calculation which might result in a '-0'?</p> <p>* = Oh, how I miss strong typing sometimes...</p> http://stackoverflow.com/questions/1510697/how-do-you-handle-library-dependencies-during-deployment-using-php/1510736#1510736 1 Answer by christian studer for How do you handle library dependencies during deployment using PHP? christian studer 2009-10-02T17:00:06Z 2009-10-02T17:00:06Z <p>There's a build system called <a href="http://www.phing.info/trac/" rel="nofollow">Phing</a> which is written in PHP and based on Apache Ant.</p> <p>I personally can very well live with externals.</p> http://stackoverflow.com/questions/1476023/what-ist-a-restful-resource-in-the-context-of-large-data-sets-i-e-weather-data 4 What ist a RESTful-resource in the context of large data sets, i.E. weather data? christian studer 2009-09-25T08:07:51Z 2009-09-28T09:05:48Z <p>So I am working on a webservice to access our weather forecast data (10000 locations, 40 parameters each, hourly values for the next 14 days = about 130 million values).</p> <p>So I read all about RESTful services and its ideology.</p> <p>So I understand that an URL is adressing a ressource.</p> <p>But what <em>is</em> a ressource in my case?</p> <p>The common use case is that you want to get the data for a couple of parameters over a timespan at one or more location. So clearly giving every value its own URL is not pratical and would result in hundreds of requests. I have the feeling that my specific problem doesn't excactly fit into the RESTful pattern.</p> <p><strong>Update:</strong> To clarify: There are two usage patterns of the service. 1. Raw data; rows and rows of data for several locations and parameters.</p> <ol> <li>Interpreted data; the raw data calculated into symbols (Suns &amp; clouds, for example) and other parameters.</li> </ol> <p>There is not one 'forecast'. Different clients have different needs for data.</p> <p>The reason I think this doesn't fit into the REST-pattern is, that while I can actually have a 'forecast' ressource, I still have to submit a lot of request parameters. So a simple GET-request on a ressource doesn't work, I end up POSTing data all over the place.</p> http://stackoverflow.com/questions/1470910/invoke-external-shell-script-from-php-and-get-its-process-id 1 Invoke external shell script from PHP and get its process ID christian studer 2009-09-24T10:47:28Z 2009-09-24T12:17:29Z <p>How can I invoke an external shell script (Or alternatively an external PHP script) from PHP itself and get its process ID within the same script?</p> http://stackoverflow.com/questions/1431737/how-to-implement-isempty-in-php/1431848#1431848 1 Answer by christian studer for How to implement is_empty() in PHP? christian studer 2009-09-16T09:09:47Z 2009-09-16T09:09:47Z <p>Check out the <a href="http://us.php.net/manual/en/types.comparisons.php" rel="nofollow">type comparison table</a> in the PHP manual for the exact behaviour of empty(), isset(), is_null() etc. You'll probably find what you're looking for there.</p> http://stackoverflow.com/questions/1420138/how-to-integrate-the-simple-openid-with-my-sites-existing-logging-system/1420196#1420196 0 Answer by christian studer for How to integrate the simple openid with my site's existing logging system? christian studer 2009-09-14T07:51:00Z 2009-09-14T07:51:00Z <p>No, there is no simple guide. There are too many login systems and different implementations to make this simple and straightforward.</p> <p>For particular scripts, try googling it. For any other scripts, you will have to integrate OpenID into your application. If you use MVC, you're in luck: Have a look at the user model and plug OpenID into it.</p> http://stackoverflow.com/questions/1367591/is-there-a-code-style-enforcer/1367881#1367881 1 Answer by christian studer for Is there a code style enforcer? christian studer 2009-09-02T14:00:15Z 2009-09-02T14:00:15Z <p><a href="http://www.eclipse.org/pdt/" rel="nofollow">Eclipse PDT</a> also can format your code. Not sure how configurable it is. Just hit CTRL-Shift-F.</p> http://stackoverflow.com/questions/1304886/how-do-i-maintain-high-level-documentation-along-with-phpdoc-generated-documentat 2 How do I maintain high-level documentation along with phpdoc generated documentation? christian studer 2009-08-20T08:51:30Z 2009-08-26T09:42:25Z <p>For my first open source project (<a href="http://mtchart.googlecode.com" rel="nofollow">shameless plug: mtChart</a>) I currently have two different types of documentations:</p> <ul> <li>HTML files generated by Doxygen from the phpdoc-comments within the code</li> <li>The wiki pages on Google Code (Or simply put: Additional text files)</li> </ul> <p>The Doxygen files are really great, but I miss the possiblity to add 'high-level' documentation: Tutorials, examples, overview over the system, roadmaps etc.</p> <p>How do I combine these two in an automated manner so I can keep the code documentation updated with somehow automatically including the rest of the texts?</p> <p>(I'm willing to move away from Doxygen if necessary.)</p> http://stackoverflow.com/questions/1311259/test-iphone-app-on-physical-iphone-rather-than-simulator/1311354#1311354 0 Answer by christian studer for Test iPhone App on physical iPhone rather than simulator. christian studer 2009-08-21T11:10:00Z 2009-08-21T11:10:00Z <p>No. Transfering it to any iPhone for beta testing requires access to the online iPhone Developers Portal. You'll only get in there and get to generate the certificates with a developers licence.</p> http://stackoverflow.com/questions/1286919/how-do-i-append-an-array-to-another-array-in-php 0 How do I append an array to another array in PHP? christian studer 2009-08-17T09:09:28Z 2009-08-17T09:11:09Z <p>I have two sequential (non-associative) arrays whose values I want to combine into a new array, ignoring the index but preserving the order. Is there a better solution (i.e. an existing operator or function) other than do the following:</p> <pre><code>$a = array('one', 'two'); $b = array('three', 'four', 'five'); foreach($b as $value) { $a[] = $value; } </code></pre> <p>Remark: The '+' operator doesn't work here ('three' with index 0 overwrites 'one' with index zero). <strike>The function array_merge has the same problem</strike>.</p> http://stackoverflow.com/questions/1132256/references-on-creating-charts-graphs-in-php/1132605#1132605 2 Answer by christian studer for References on creating Charts/Graphs in PHP ? christian studer 2009-07-15T16:56:07Z 2009-07-15T16:56:07Z <p><a href="http://code.google.com/p/mtchart/" rel="nofollow">http://code.google.com/p/mtchart/</a></p> <p>Open Source PHP charting library (Fork of pChart, more OO-Code), looks way nicer than the current market leader jpGraph.</p> <p>(Disclamer/Plug-notification: I'm the developer of mtChart.)</p> http://stackoverflow.com/questions/1056844/how-to-make-a-website-run-faster/1057156#1057156 1 Answer by christian studer for How to make a website run faster? christian studer 2009-06-29T08:20:27Z 2009-06-29T08:20:27Z <p>Google is currently collecting all sorts of performance tips on their new 'Let's make the web faster'-page here: <a href="http://code.google.com/intl/de-CH/speed/articles/" rel="nofollow">http://code.google.com/intl/de-CH/speed/articles/</a></p> <p>FYI: Not all information on these pages are valid, particularily the PHP tips are way off.</p> http://stackoverflow.com/questions/634291/codeigniter-multiple-databases/945505#945505 2 Answer by christian studer for Codeigniter Multiple Databases christian studer 2009-06-03T15:47:23Z 2009-06-03T15:47:23Z <p>Instead of applying the hack as mentioned by Camacho you can also set the 'pconnect'-flag in the database.php file to FALSE for all connections.</p> <p>See <a href="http://codeigniter.com/bug_tracker/bug/2703/" rel="nofollow">http://codeigniter.com/bug_tracker/bug/2703/</a> for the issue.</p> http://stackoverflow.com/questions/62226/how-do-i-access-class-variables-of-a-parent-object-in-php 1 How do I access class variables of a parent object in PHP? christian studer 2008-09-15T11:45:06Z 2009-05-19T16:51:35Z <p>An instance of class A instanciates a couple of other objects, say for example from class B:</p> <pre><code>$foo = new B(); </code></pre> <p>I would like to access A's public class variables from methods within B.</p> <p>Unless I'm missing something, the only way to do this is to pass the current object to the instances of B:</p> <pre><code>$foo = new B($this); </code></pre> <p>Is this best practice or is there another way to do this?</p> http://stackoverflow.com/questions/858782/dynamic-urls-in-css-js/863192#863192 0 Answer by christian studer for Dynamic URLs in CSS/JS christian studer 2009-05-14T13:00:17Z 2009-05-14T13:00:17Z <p>Depending on your server configuration, you can also append the .php-extension to your filenames and have them treated as PHP scripts too:</p> <pre><code>I.E.: style.css.php would contain: .cool-button { background-image url(&lt;?php echo $bgImgUrl;?&gt;); } </code></pre> <p>This also works for JavaScript-files.</p> http://stackoverflow.com/questions/61401/hidden-features-of-php/665540#665540 11 Answer by christian studer for Hidden Features of PHP? christian studer 2009-03-20T09:56:37Z 2009-03-20T09:56:37Z <p>Date functions. I have to handle a lot of time information and date strings all day long, so functions like <a href="http://www.php.net/strftime" rel="nofollow">strftime()</a> and <a href="http://www.php.net/strtotime" rel="nofollow">strtotime()</a> are just awesome.</p> http://stackoverflow.com/questions/662558/use-jquery-instead-of-long-listed-select-box/662574#662574 0 Answer by christian studer for use jQuery instead of long listed < SELECT > box? christian studer 2009-03-19T15:14:23Z 2009-03-19T15:14:23Z <p>Have you checked out the <a href="http://jqueryui.com/demos/" rel="nofollow">jQuery UI Demos</a> yet? The interaction 'Selectable' and maybe the widget 'Tabs' might be of interest for you.</p> http://stackoverflow.com/questions/653038/what-is-the-best-open-source-wiki-system/653053#653053 1 Answer by christian studer for What is the best open source wiki system ? christian studer 2009-03-17T04:52:59Z 2009-03-17T04:52:59Z <p>We use Dokuwiki at work and I like it for it's simplicity and the many useful plugins.</p> <p>It's equipped with the Dokubook-skin so it looks like a MediaWiki. It just feels lighter and simpler to install.</p> http://stackoverflow.com/questions/651346/what-is-the-limit-n-of-maximum-methods-you-allow-in-your-classes 3 What is the limit N of maximum methods you allow in your classes? christian studer 2009-03-16T17:22:24Z 2009-03-16T20:30:00Z <p>While filling in <a href="http://www.sefolklore.com/welcome.html" rel="nofollow">The Object Oriented Concepts Survey</a> (To provide some academic researchers with real-life data on software design), I came upon this question:</p> <p>What is the limit N of maximum methods you allow in your classes?</p> <p>The survey then goes on asking if you refactor your classes once you reach this limit N.</p> <p>I've honestly never thought about such a limit while designing my applications and wonder what the reasoning behind this is. Why would I want to self-impose myself an arbitrary number which probably is very dependent on the classes functionality?</p> http://stackoverflow.com/questions/581485/changing-the-username-for-a-subversion-commit-over-svnssh 2 Changing the username for a Subversion commit over svn+ssh christian studer 2009-02-24T11:52:18Z 2009-02-24T14:04:36Z <p>I've run into an issue with our Subversion configuration here: I've checked out a project over svn+ssh on the local Linux system. So svn info reports something along the lines of:</p> <pre><code>URL: svn+ssh://MYUSERNAME@server/svn/project/trunk/ </code></pre> <p>Now my co-worker is unable to update the checked out working copy (It's on a live server) because the command line parameter --username doesn't work with svn+ssh.</p> <p>How can I temporarily change or remove the username from the repository URL?</p> http://stackoverflow.com/questions/576775/as-a-programmer-how-would-you-explain-imaginary-numbers/576818#576818 0 Answer by christian studer for As a programmer how would you explain imaginary numbers? christian studer 2009-02-23T07:42:01Z 2009-02-23T07:42:01Z <p>A short answer: Real numbers are one-dimensional, imaginary numbers add a second dimension to the equation and some weird stuff happens if you multiply...</p> http://stackoverflow.com/questions/568708/mac-os-x-where-should-i-store-common-application-data/568742#568742 1 Answer by christian studer for Mac OS X: Where should I store common application data? christian studer 2009-02-20T08:38:12Z 2009-02-20T08:38:12Z <p>Some applications put files into the /Users/Shared-directory. I know it's the standard way to share files between users, but I'm not 100% sure it's thought for application data storage.</p> <p>The there's the /Library*-folder which is thought for systemwide common data, similiar to the /Users/Usernames/Library.</p> <p>But you certainly shouldn't write data to the Application.app-directory. Users without admin rights won't even have the right to write to these directories.</p> <pre><code>* = Or /System/Library. Need to verify. </code></pre> http://stackoverflow.com/questions/1858470/technology-choice-for-redesigning-an-old-visualbasic-application Comment by christian studer on Technology choice for redesigning an old VisualBasic-Application christian studer 2009-12-08T09:38:42Z 2009-12-08T09:38:42Z Thanks everyone for their valuable input. http://stackoverflow.com/questions/1858470/technology-choice-for-redesigning-an-old-visualbasic-application/1858521#1858521 Comment by christian studer on Technology choice for redesigning an old VisualBasic-Application christian studer 2009-12-08T09:15:16Z 2009-12-08T09:15:16Z That's why I'm considering switching to C# at all: It looks better on a CV. http://stackoverflow.com/questions/1858470/technology-choice-for-redesigning-an-old-visualbasic-application Comment by christian studer on Technology choice for redesigning an old VisualBasic-Application christian studer 2009-12-08T09:06:58Z 2009-12-08T09:06:58Z No Delphi left, it appears to be VB.Net currently, but a lot of procedural code is left in simply object wrappers. @ssg: Nope. ;-) http://stackoverflow.com/questions/143792/where-to-find-beautiful-php-code-to-read/144027#144027 Comment by christian studer on Where to find beautiful PHP code to read? christian studer 2009-11-11T07:49:00Z 2009-11-11T07:49:00Z The one ugly thing about CodeIgniter is its PHP4-compatibility. It would probably look nicer without it. http://stackoverflow.com/questions/1605902/convert-rfc-1123-date-to-timestamp-in-php/1606085#1606085 Comment by christian studer on Convert RFC 1123 date to timestamp in PHP christian studer 2009-10-22T09:44:01Z 2009-10-22T09:44:01Z Thanks. Umm, can't believe I didn't try that one first, strtotime is almost magical... http://stackoverflow.com/questions/1564634/is-there-a-php-calculation-which-could-result-in-a-0/1565882#1565882 Comment by christian studer on Is there a PHP calculation which could result in a -0 ? christian studer 2009-10-15T08:14:39Z 2009-10-15T08:14:39Z Thanks, I think the culprit was the round()-method which is being applied to some of my values. http://stackoverflow.com/questions/1564634/is-there-a-php-calculation-which-could-result-in-a-0 Comment by christian studer on Is there a PHP calculation which could result in a -0 ? christian studer 2009-10-15T07:35:57Z 2009-10-15T07:35:57Z Like I said: The values can be either strings (Actual letters), integers or floats. This prevents me from rounding or strong typing in the database (Where I store the values in varchars, yes). http://stackoverflow.com/questions/1476023/what-ist-a-restful-resource-in-the-context-of-large-data-sets-i-e-weather-data/1481307#1481307 Comment by christian studer on What ist a RESTful-resource in the context of large data sets, i.E. weather data? christian studer 2009-09-30T12:58:16Z 2009-09-30T12:58:16Z Hmm, thanks for that, I can see a little more clearly now... http://stackoverflow.com/questions/1476023/what-ist-a-restful-resource-in-the-context-of-large-data-sets-i-e-weather-data/1481307#1481307 Comment by christian studer on What ist a RESTful-resource in the context of large data sets, i.E. weather data? christian studer 2009-09-28T09:06:25Z 2009-09-28T09:06:25Z Thanks for your input, I tried to clarify a little in my post. http://stackoverflow.com/questions/1476023/what-ist-a-restful-resource-in-the-context-of-large-data-sets-i-e-weather-data/1480624#1480624 Comment by christian studer on What ist a RESTful-resource in the context of large data sets, i.E. weather data? christian studer 2009-09-26T10:47:26Z 2009-09-26T10:47:26Z I know about these conventions, I just can't see how to apply them in my case. http://stackoverflow.com/questions/1470910/invoke-external-shell-script-from-php-and-get-its-process-id/1471320#1471320 Comment by christian studer on Invoke external shell script from PHP and get its process ID christian studer 2009-09-25T07:59:30Z 2009-09-25T07:59:30Z Hehehe, that's actually creative, thank you. http://stackoverflow.com/questions/1431655/best-place-to-get-php-generic-code-examples/1431688#1431688 Comment by christian studer on Best place to get PHP generic code examples christian studer 2009-09-16T09:04:50Z 2009-09-16T09:04:50Z If only that website wouldn't cause headaches everytime I have to look at it... http://stackoverflow.com/questions/1426023/is-there-any-reason-to-prefer-prototype-to-jquery Comment by christian studer on Is there any reason to prefer Prototype to JQuery? christian studer 2009-09-15T09:04:30Z 2009-09-15T09:04:30Z You probably might want to tag this 'subjectiv'. (And that might be the answer to your question, really.) http://stackoverflow.com/questions/1403726/how-to-judge-whether-input-typecheckbox-is-checked-on-with-php Comment by christian studer on How to judge whether <input type="checkbox" /> is checked on with PHP? christian studer 2009-09-10T08:11:56Z 2009-09-10T08:11:56Z For future reference: var_dump($_POST); :-) http://stackoverflow.com/questions/428835/how-do-i-make-an-iphone-web-app-mimic-a-non-web-app Comment by christian studer on How do I make an iPhone web app mimic a non-web app? christian studer 2009-08-31T08:21:08Z 2009-08-31T08:21:08Z For the record (And to everyone who stumbles here via Google): The iUI-project is now at version 0.30 (August 6, 2009).