Subversion Repositories eFlore/Applications.cel

Compare Revisions

Ignore whitespace Rev 317 → Rev 318

/trunk/src/org/tela_botanica/client/modeles/Configuration.java
27,6 → 27,12
private static String cleGoogleMaps ;
 
private static String lienEfloreBaseUrl;
private static String refTax;
private static String refTaxVersion;
 
/**
* Constructeur sans argument
*/
51,15 → 57,30
"referentielGeo");
cleGoogleMaps = Dictionary.getDictionary("configuration").get(
"referentielGeo");
"cleGoogleMaps");
lienEfloreBaseUrl = Dictionary.getDictionary("configuration").get(
"lienEfloreBaseUrl");
refTax = Dictionary.getDictionary("configuration").get(
"refTax");
refTaxVersion = Dictionary.getDictionary("configuration").get(
"refTaxVersion");
}
else
{
serviceBaseUrl = "http://localhost/jrest";
suiviBugUrl = "http://www.tela-botanica.org/suivi/index.php?do=newtask&project=2";
serviceBaseUrl = "http://162.38.234.9/jrest";
suiviBugUrl = "http://www.tela-botanica.net/suivi/index.php?do=newtask&project=2";
aideBaseUrl = "http://www.tela-botanica.org/wikini/eflore/wakka.php?wiki=AideCEL";
imageBaseUrl = "http://localhost/Documents/images_serveur/";
imageBaseUrl = "http://162.38.234.9/Documents/images_serveur/";
referentielGeo = "WGS84";
cleGoogleMaps = "ABQIAAAADBUAHF9l14gI02QVAbUYJBQYIbFcBI1ENnSUwK1SMsxOkt3ljBTFFxjHcCePFsiX1MX5_m2r1MnSOw";
refTax = "BDNFF";
refTaxVersion = "4.02";
lienEfloreBaseUrl = "www.tela-botanica.org/eflore";
}
}
 
117,4 → 138,19
return cleGoogleMaps ;
}
 
public static String getLienEfloreBaseUrl() {
return lienEfloreBaseUrl;
}
public static String getRefTax() {
return refTax;
}
public static String getRefTaxVersion() {
return refTaxVersion;
}
 
}