Subversion Repositories eFlore/Applications.del

Rev

Rev 2095 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 aurelien 1
<?xml version="1.0" encoding="UTF-8"?>
2
<module rename-to="del">
7 benjamin 3
	<!-- Inherit the core Web Toolkit stuff. -->
2168 killian 4
	<inherits name="com.google.gwt.user.User" />
5
	<inherits name="org.cobogw.gwt.user.User" />
1 aurelien 6
 
1182 gduche 7
 
8
	<!--Defines all possible locales we'll use-->
9
    <extend-property name="locale" values="fr,en"/>
10
    <!--Defines default locale-->
11
    <set-property-fallback name="locale" value="fr"/>
12
 
13
 
7 benjamin 14
	<!-- Inherit the default GWT style sheet. You can change -->
15
	<!-- the theme of your GWT application by uncommenting -->
16
	<!-- any one of the following lines. -->
2168 killian 17
	<inherits name="com.google.gwt.user.theme.standard.Standard" />
7 benjamin 18
	<!-- <inherits name='com.google.gwt.user.theme.chrome.Chrome'/> -->
19
	<!-- <inherits name='com.google.gwt.user.theme.dark.Dark'/> -->
1 aurelien 20
 
7 benjamin 21
	<!-- Other module inherits -->
22
	<inherits name="com.google.gwt.activity.Activity" />
23
	<inherits name="com.google.gwt.place.Place" />
2080 aurelien 24
 
25
	<!-- Permet d'accélérer le temps de compilation en compilant que pour Firefox > à 1.5 -->
26
	<!-- Bien mettre gecko1_8 (et pas gecko) sinon ne marche pas dans Firefox > à 1.5 -->
27
	<!-- <set-property name="user.agent" value="gecko1_8"/> -->
1 aurelien 28
 
7 benjamin 29
	<!-- Specify the app entry point class. -->
30
	<entry-point class='org.tela_botanica.del.client.Del' />
1 aurelien 31
 
24 gduche 32
	<!-- UIBinder allows to design GWT UI's declarative via XML.  -->
2168 killian 33
  	<inherits name="com.google.gwt.uibinder.UiBinder" />
24 gduche 34
 
7 benjamin 35
	<!-- Specify the paths for translatable code -->
36
	<source path='client' />
37
	<source path='shared' />
1 aurelien 38
 
2168 killian 39
</module>