[qooxdoo-devel] Antw: Re: qx.io.PartLoader

2010-12-12 Thread Robert Nimax
Hi, no...I´m afraid not. :) I´ve just unzipped the .zip-File of the 1.3 Release to be sure there is no problem with the source control system. In qx.io.PartLoader there is a method called getPart: - getPart : function(name) { return this._loader.getPart(name); } -

Re: [qooxdoo-devel] Google Indexable Qooxdoo Apps

2010-12-12 Thread Tobias Oetiker
Hi Aditya, Yesterday aditya siram wrote: > Hi all, > Since standalone Qooxdoo apps deploy with a minimal index.html file I > was wondering if there were any best-practices for writing search > engine indexable apps (a blog app for example). first you have to provide direct article access via ht

[qooxdoo-devel] Google Indexable Qooxdoo Apps

2010-12-12 Thread aditya siram
Hi all, Since standalone Qooxdoo apps deploy with a minimal index.html file I was wondering if there were any best-practices for writing search engine indexable apps (a blog app for example). -deech -- Oracle to DB2 Conve

Re: [qooxdoo-devel] Displaying PDF

2010-12-12 Thread Ian Horst
Hi Andrea, Use window.location.href= in your qx application to open PDF document in Adobe reader outside your qx app . And you'll need the following http headers in PHP. header('Content-type: application/x-pdf'); header('Content-Disposition: attachment; filename=' . $fileName . '.pdf'); // IE6 f