Show
Ignore:
Timestamp:
06/13/07 04:34:57 (19 months ago)
Author:
BradNeuberg
Message:

Updating docs

Location:
dojox/trunk/off/demos/editor/server
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • dojox/trunk/off/demos/editor/server/org/dojo/moxie/Main.java

    r9091 r9094  
    3737                 
    3838                        System.out.println("Moxie ready to try on port 8000."); 
    39                         System.out.println("Go to http://localhost:8000/moxie/* to test"); 
     39                        System.out.println("Open a web browser and go to:"); 
     40                        System.out.println("http://localhost:8000/dojox/off/demos/editor/editor.html"); 
    4041                }catch(Exception e){ 
    4142                        e.printStackTrace(); 
  • dojox/trunk/off/demos/editor/server/README

    r9090 r9094  
    1 This directory contains a server-side implementation of Moxie to illustrate how to create a full client/server application with Dojo Offline. It is built in Java, with a Java servlet. It comes bundled with an open-source, embedded web-server named Jetty and an embedded open-source database named Derby so that you can quickly run the server-side with one command. Further, you can use this scaffolding to easily and quickly begin creating the server-side of your own Dojo Offline-based applications. 
     1This directory contains a server-side implementation of Moxie to  
     2illustrate how to create a full client/server application with Dojo Offline.  
     3It is built in Java, with a Java servlet. It comes bundled with an open-source,  
     4embedded web-server named Jetty and an embedded open-source database named  
     5Derby so that you can quickly run the server-side with one command. Further,  
     6you can use this scaffolding to easily and quickly begin creating the server-side  
     7of your own Dojo Offline-based applications. 
    28 
    39Dependencies 
     
    1016------------------ 
    1117 
    12 A build.sh file is provided in this directory to build the server-side; it will only currently run on Unix-based machines (Mac OS X, Linux, etc.). However, the code has already been built, is bundled in this directory, and can be used immediately; only run the build.sh script if you want to tinker with the source code yourself. 
     18A build.sh file is provided in this directory to build the server-side; it  
     19will only currently run on Unix-based machines (Mac OS X, Linux, etc.).  
     20However, the code has already been built, is bundled in this directory,  
     21and can be used immediately; only run the build.sh script if you want to  
     22tinker with the source code yourself. 
    1323 
    1424Running 
     
    1929java -jar moxie.jar 
    2030 
    21 from this directory, and the Moxie server-side will start running, with an embedded web-server (Jetty) and database (Derby) already setup for you. In a web-browser, go to the following URL: 
     31from this directory, and the Moxie server-side will start running, with an  
     32embedded web-server (Jetty) and database (Derby) already setup for you.  
     33In a web-browser, go to the following URL: 
    2234 
    2335http://localhost:8000/dojox/off/demos/editor/editor.html