To speed up development I've tried to cut down the number of
permutations that are compiled by fixing the language and user agent.
I'm curious as to why I can't get the number of permutations down to
1, even when fixing the user agent to "gecko" and the language to
"en".  I've tried to increase the compiler output from INFO to TRACE,
but the sheer volume of output makes it hard to pick out the important
bits.

This is the .gwt.xml for the module, if this helps shed any light:

<module rename-to="viewer">

        <!-- Other modules that we depend on. -->
        <inherits name='com.google.gwt.user.User'/> <!-- Core GWT -->
    <inherits name="com.google.gwt.i18n.I18N"/> <!--
Internationalization -->
    <inherits name='com.gwtext.GwtExt'/> <!-- GWT-Ext -->
    <inherits name="com.gwtextux.GwtExtUxNoScript"/> <!-- GWT-Ext Ux --
>

    <inherits name="com.allen_sauer.gwt.log.gwt-log" /> <!-- GWT
logging -->

        <entry-point class='com.example.MyGWTApplication'/>

    <source path="client"/>
    <source path="shared"/>
    <source path="formatting"/>
    <source path="rpc"/>
    <source path="serialization"/>
    <source path="servlets"/>
    <source path="utils"/>

    <extend-property name="locale" values="en"/>

    <extend-property name="log_level" values="OFF" />

     <!-- For dev only: only support FireFox. This speeds up
compilation -->
    <set-property name="user.agent" value="gecko" />

</module>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to