Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

...

  1. Edit build.xml
    • Copy and paste <target name="editor_hosted" ...>...</target>
    • Rename
      • editor_hosted -> img_hosted
      • org.waveprotocol.wave.client.editor.harness.EditorTest -> org.waveprotocol.wave.client.editor.harness.tutorial.TestModule
    • The result looks like:
      Code Block
      xml
      xml
       <target name="img_hosted" depends="compile,compile_proto_gwt" description="Runs the editor harness through the GWT hosted mode server, for debugging in a JVM.">
          <java failonerror="true" fork="true" classname="com.google.gwt.dev.DevMode">
            <classpath>
              <pathelement location="proto_gwt_src"/>
              <pathelement location="src"/>
              <path refid="libpath"/>
            </classpath>
            <jvmarg value="-Xmx512M"/>
            <jvmarg value="-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=8001"/>
            <arg line="${gwt.args}"/>
            <arg line="-war war"/>
            <arg line="-startupUrl org.waveprotocol.wave.client.editor.tutorial.TestModule/EditorTest.html"/>
            <arg value="org.waveprotocol.wave.client.editor.tutorial.TestModule"/>
          </java>
       </target>
      
  2. Start oophm

Get Going

Let's see what happens when we try to create one of our doodads before doing anything.

...