| 1 |
<?xml version="1.0" encoding="UTF-8"?> |
| 2 |
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.4.0//EN" "http://google-web-toolkit.googlecode.com/svn/tags/2.4.0/distro-source/core/src/gwt-module.dtd"> |
| 3 |
<module rename-to='OnlineGlom'> |
| 4 |
|
| 5 |
<!-- Inherit the core Web Toolkit stuff. --> |
| 6 |
<inherits name='com.google.gwt.user.User' /> |
| 7 |
|
| 8 |
<!-- Inherit the resources from the default GWT style sheet. We're not inheriting |
| 9 |
the whole style sheet so that the OnlineGlom style sheet can override the |
| 10 |
built-in standard.css. See: https://groups.google.com/group/Google-Web-Toolkit/msg/3e630a3059303b19 --> |
| 11 |
<inherits name='com.google.gwt.user.theme.standard.StandardResources' /> |
| 12 |
|
| 13 |
<!-- Other module inherits --> |
| 14 |
<inherits name="com.google.gwt.activity.Activity" /> |
| 15 |
<inherits name="com.google.gwt.place.Place" /> |
| 16 |
|
| 17 |
<!-- Specify the app entry point class. --> |
| 18 |
<entry-point class='org.glom.web.client.OnlineGlom' /> |
| 19 |
|
| 20 |
<!-- Specify the paths for translatable code --> |
| 21 |
<!-- The excludes are necessary to make the Eclipse Google -> GWT Compile feature work, |
| 22 |
which could be useful for debugging. These excludes are not necessary for the maven build. --> |
| 23 |
<source path='client' excludes='**/*Test.java,**/GwtTest*.java'/> |
| 24 |
<source path='shared' excludes='**/*Test.java,**/GwtTest*.java'/>/> |
| 25 |
|
| 26 |
<source path='client' |
| 27 |
|
| 28 |
<!-- Use ClientFactoryImpl by default --> |
| 29 |
<replace-with class="org.glom.web.client.ClientFactoryImpl"> |
| 30 |
<when-type-is class="org.glom.web.client.ClientFactory" /> |
| 31 |
</replace-with> |
| 32 |
|
| 33 |
<!-- Use the GWT internationalization framework --> |
| 34 |
<inherits name="com.google.gwt.i18n.I18N"/> |
| 35 |
<extend-property name="locale" values="cs"/> |
| 36 |
<extend-property name="locale" values="en"/> |
| 37 |
<extend-property name="locale" values="eo"/> |
| 38 |
<extend-property name="locale" values="de"/> |
| 39 |
<extend-property name="locale" values="es"/> |
| 40 |
<extend-property name="locale" values="fr"/> |
| 41 |
<extend-property name="locale" values="sl"/> |
| 42 |
<extend-property name="locale" values="zh_CN"/> |
| 43 |
|
| 44 |
<!-- This is necessary to avoid 404 errors when testing the service from |
| 45 |
GWTTestCase unit test. See also our web.xml file." --> |
| 46 |
<servlet path="/libGlom" class="org.glom.web.server.OnlineGlomServiceImpl" /> |
| 47 |
|
| 48 |
</module> |