Subversion Repositories eFlore/Applications.cel

Rev

Rev 157 | Rev 260 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 157 Rev 252
Line 21... Line 21...
21
	
21
	
Line 22... Line 22...
22
	private static String suiviBugUrl ;
22
	private static String suiviBugUrl ;
Line -... Line 23...
-
 
23
	
-
 
24
	private static String aideBaseUrl ;
-
 
25
	
-
 
26
	private static String referentielGeo ;
23
	
27
	
24
	private static String aideBaseUrl ;
28
	private static String systemeProj ;
25
 
29
 
26
	/**
30
	/**
27
	 * Constructeur sans argument
31
	 * Constructeur sans argument
28
	 */
32
	 */
Line 29... Line 33...
29
	public Configuration() {
33
	public Configuration() {
30
		// on utilise le dictionnaire d'internationalisation pour lire les
34
		// on utilise le dictionnaire d'internationalisation pour lire les
31
		// variables du fichier javascript
35
		// variables du fichier javascript
-
 
36
		
32
		
37
		if(GWT.isScript()) {
33
		if(GWT.isScript()) {
38
			serviceBaseUrl = Dictionary.getDictionary("configuration").get(
-
 
39
					"serviceBaseUrl");
34
			serviceBaseUrl = Dictionary.getDictionary("configuration").get(
40
			
35
					"serviceBaseUrl");
41
			suiviBugUrl = Dictionary.getDictionary("configuration").get(
-
 
42
			"suiviBugUrl");
36
			suiviBugUrl = Dictionary.getDictionary("configuration").get(
43
			
37
			"suiviBugUrl");
44
			imageBaseUrl = Dictionary.getDictionary("configuration").get(
-
 
45
			"imageBaseUrl");
-
 
46
			
-
 
47
			aideBaseUrl = Dictionary.getDictionary("configuration").get(
-
 
48
			"aideBaseUrl");
-
 
49
			
-
 
50
			referentielGeo = Dictionary.getDictionary("configuration").get(
38
			imageBaseUrl = Dictionary.getDictionary("configuration").get(
51
			"referentielGeo");
39
			"imageBaseUrl");
52
			
40
			aideBaseUrl = Dictionary.getDictionary("configuration").get(
53
			systemeProj = Dictionary.getDictionary("configuration").get(
41
			"aideBaseUrl");
54
			"systemeProj");
42
		}
55
		}
Line 83... Line 96...
83
	 */
96
	 */
84
	public static String getAideBaseUrl() {
97
	public static String getAideBaseUrl() {
85
		return aideBaseUrl ;
98
		return aideBaseUrl ;
86
	}
99
	}
Line -... Line 100...
-
 
100
	
-
 
101
	/**
-
 
102
	 * Accesseur pour l'url de base de l'aide
-
 
103
	 * 
-
 
104
	 * @return une url pointant vers la racine de l'aide
-
 
105
	 */
-
 
106
	public static String getReferentielGeo() {
-
 
107
		return referentielGeo ;
-
 
108
	}
-
 
109
	
-
 
110
	/**
-
 
111
	 * Accesseur pour l'url de base de l'aide
-
 
112
	 * 
-
 
113
	 * @return une url pointant vers la racine de l'aide
-
 
114
	 */
-
 
115
	public static String getSystemeProj() {
-
 
116
		return systemeProj ;
-
 
117
	}
Line 87... Line 118...
87
	
118