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
	<source path='client' />
22
	<source path='shared' />
23
24
	<!-- Use ClientFactoryImpl by default -->
25
	<replace-with class="org.glom.web.client.ClientFactoryImpl">
26
		<when-type-is class="org.glom.web.client.ClientFactory" />
27
	</replace-with>
28
29
	<!-- Use the GWT internationalization framework -->
30
	<inherits name="com.google.gwt.i18n.I18N"/>
31
	<extend-property name="locale" values="cs"/>
32
	<extend-property name="locale" values="en"/>
33
	<extend-property name="locale" values="de"/>
34
	<extend-property name="locale" values="es"/>
35
	<extend-property name="locale" values="sl"/>
36
	<extend-property name="locale" values="zh_CN"/>
37
38
</module>