Here's the skeleton file I use when placing files outside the qooxdoo
directory.  I'm using the v0.5 release download.

Here's my directory structure:

/WWW
  |
  +--qooxdoo
  |     |
  |     +-- *
  |
  +--index.php

Here's the basics from 'index.php':

=== INDEX.PHP ===

<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd";>
<html xmlns="http://www.w3.org/1999/xhtml""; xml:lang="de">
<head>
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" />
 <title>Escalation Management Suite :: Proof Of Concept</title>

 <script type="text/javascript">
    var QxSettings =
    {
       imageCorePath : "qooxdoo/images",
       imageIconPath : "qooxdoo/themes/icons",
       imageWidgetPath : "qooxdoo/themes/widgets"
    };
 </script>

 <script type="text/javascript" src="qooxdoo/script/qooxdoo.js"></script>

</head>
<body>

 <script type="text/javascript">

   window.application.pre = function()
   {

   };

   window.application.main = function()
   {
     var d = this.getClientWindow().getClientDocument();
     <<<...your code goes here...>>>

   };
 </script>
</body>
</html>

=== END INDEX.PHP ===

You can edit the QxSettings paths & path to qooxdoo.js to suit your
directory structure, or if you're on a UNIX system I find creating a
sym-link to the Qooxdoo directory easier and saves editing code.

Hope it helps.
--
View this message in context: 
http://www.nabble.com/Help-me-get-started-t1474071.html#a4023447
Sent from the qooxdoo-devel forum at Nabble.com.



-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Qooxdoo-devel mailing list
Qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to