Changes between Version 9 and Version 10 of Devel/Setup


Ignore:
Timestamp:
07/03/07 10:57:45 (18 years ago)
Author:
leo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Devel/Setup

    v9 v10  
    53531. Install GWT (Google Web Toolkit. version 1.4.10 or higher)
    54542. In Window->Preference->Java->Classpath Variables, add a new variable as follows:
    55 {{
     55{{{
    5656GWT_HOME=(your GWT installation folder)
    57 }}
     57}}}
    58583. (debug) launch Debug -> GenomeBrowser_gwtshell, which displays GWT debug shell and
    5959genome browser interface.
     
    6666and comment out appropriate 'gwt.dev' lines to select GWT develeopement library on your OS.
    6767 - e.g.  (in Windows)
    68 {{
     68{{{
    6969gwt.home=C:/(somewhere in your PC)/gwt-windows-1.4.10
    7070gwt.dev=gwt-dev-windows.jar
    7171#gwt.dev=gwt-dev-mac.jar
    7272#gwt.dev=gwt-dev-linux.jar
    73 }}
     73}}}
    74744. > ant compileJs
    75755. Open www/org.utgenome.gwt.utgb.UTGB/UTGB.html in your web browser (IE, Firefox, etc.)
     
    79791. Install Tomcat 5.0 (or higher) Java web server.
    80802. Edit your build.properties file, and modify the following variables:
    81 {{
     81{{{
    8282TOMCAT_HOME=(Tomcat Installation folder)
    8383tomcat.base.url=http://localhost:8080
    8484tomcat.manager.username=(tomcat manager username)
    8585tomcat.manager.password=(tomcat manager password)
    86 }}
     86}}}
    8787
    88883. Set up GWT as described above (the section on build from command line)
     
    9393
    9494* Q: GWT Shell invokes a following error:
    95 {{
     95{{{
    9696[ERROR] Errors in 'jar:file(...)UTGB%20Common/lib/gwt-dragdrop-1.0RC.jar!/com/allen_sauer/gwt/dragdrop/client/DeferredMoveCommand.java'
    97 }}
     97}}}
    9898  * A: Your GWT version must be higher than 1.4.10 in order to use drag & drop facility.
    9999 
     
    101101* Q: out of memory error when running Ant.
    102102  * A: create a $HOME/.ant/ant.conf file, then write the following line:
    103 {{
     103{{{
    104104ANT_OPTS="-Xmx512M"
    105 }}
     105}}}