Changes between Version 9 and Version 10 of Devel/Setup
- Timestamp:
- 07/03/07 10:57:45 (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Devel/Setup
v9 v10 53 53 1. Install GWT (Google Web Toolkit. version 1.4.10 or higher) 54 54 2. In Window->Preference->Java->Classpath Variables, add a new variable as follows: 55 {{ 55 {{{ 56 56 GWT_HOME=(your GWT installation folder) 57 }} 57 }}} 58 58 3. (debug) launch Debug -> GenomeBrowser_gwtshell, which displays GWT debug shell and 59 59 genome browser interface. … … 66 66 and comment out appropriate 'gwt.dev' lines to select GWT develeopement library on your OS. 67 67 - e.g. (in Windows) 68 {{ 68 {{{ 69 69 gwt.home=C:/(somewhere in your PC)/gwt-windows-1.4.10 70 70 gwt.dev=gwt-dev-windows.jar 71 71 #gwt.dev=gwt-dev-mac.jar 72 72 #gwt.dev=gwt-dev-linux.jar 73 }} 73 }}} 74 74 4. > ant compileJs 75 75 5. Open www/org.utgenome.gwt.utgb.UTGB/UTGB.html in your web browser (IE, Firefox, etc.) … … 79 79 1. Install Tomcat 5.0 (or higher) Java web server. 80 80 2. Edit your build.properties file, and modify the following variables: 81 {{ 81 {{{ 82 82 TOMCAT_HOME=(Tomcat Installation folder) 83 83 tomcat.base.url=http://localhost:8080 84 84 tomcat.manager.username=(tomcat manager username) 85 85 tomcat.manager.password=(tomcat manager password) 86 }} 86 }}} 87 87 88 88 3. Set up GWT as described above (the section on build from command line) … … 93 93 94 94 * Q: GWT Shell invokes a following error: 95 {{ 95 {{{ 96 96 [ERROR] Errors in 'jar:file(...)UTGB%20Common/lib/gwt-dragdrop-1.0RC.jar!/com/allen_sauer/gwt/dragdrop/client/DeferredMoveCommand.java' 97 }} 97 }}} 98 98 * A: Your GWT version must be higher than 1.4.10 in order to use drag & drop facility. 99 99 … … 101 101 * Q: out of memory error when running Ant. 102 102 * A: create a $HOME/.ant/ant.conf file, then write the following line: 103 {{ 103 {{{ 104 104 ANT_OPTS="-Xmx512M" 105 }} 105 }}}