Subversion Repositories eFlore/Applications.cel

Rev

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

Rev Author Line No. Line
1194 jpm 1
;<?/*
422 aurelien 2
[settings]
3
; URL de base relative du CEL
4
baseURL = "/jrest/"
539 jpm 5
; URL de base relative alternative du CEL (pour les raccourcis par exemple)
6
baseAlternativeURL = "/service:cel:"
422 aurelien 7
; URL de base aboslu du CEL
8
baseURLAbsolu = "http://localhost/jrest/"
9
; URL de base aboslu du CEL construit dynamiquement dans le fichier Cel.php
10
baseURLAbsoluDyn = ""
11
; Url d'eFlore affichant la carte du CEL
1619 aurelien 12
efloreUrlTpl = "http://www.tela-botanica.org/%s-nn-%s"
791 delphine 13
; URL des services web du CEL sous forme de template à utiliser avec sprintf
14
baseURLServicesAnnuaireTpl = "http://www.tela-botanica.org/service:annuaire:%s"
912 jpm 15
; URL des services web du CEL sous forme de template à utiliser avec sprintf
16
baseURLServicesCelTpl = "http://www.tela-botanica.org/service:cel:%s"
522 jpm 17
; Squelette d'Url permettant d'afficher une image du CEL (remplace %s par l'id de l'image sans underscore)
3561 killian 18
celImgUrlTpl = "http://api.tela-botanica.org/img:%s"
422 aurelien 19
; Url de PhpMyEdit permettant de faire les corrections du CEL pour les Super Admin
20
phpEditUrlTpl = "http://www.tela-botanica.org/eflore/cel2/jrest/util/cel_inventory.php?PME_sys_fl=0&PME_sys_fm=0&PME_sys_sfn[0]=0&PME_sys_operation=PME_op_Change&PME_sys_rec=%s"
2446 jpm 21
; Url de l'appli du CEL
22
celAppliUrl = "http://www.tela-botanica.org/appli:cel"
422 aurelien 23
; Indication du nom de l'éditeur pour les flux de syndication
24
editeur = "Tela Botanica"
914 jpm 25
; Format du Guid des observations du CEL pour les flux de syndication principalement
26
guidObsTpl = "urn:lsid:tela-botanica.org:cel:obs%s"
27
; Format du Guid des images du CEL pour les flux de syndication principalement
28
guidImgTpl = "urn:lsid:tela-botanica.org:cel:img%s"
422 aurelien 29
; Indication de la locale (setLocale(LC_ALL, ?)) pour les classes héritant de Cel
30
locale = "fr_FR.UTF-8"
31
; Indication du fuseau horraire par défaut date_default_timezone_set(?)pour les classes héritant de Cel
32
fuseauHoraire = "Europe/Paris"
2143 jpm 33
; template de chemin pour les marqueur google maps pour le widget carto
1033 aurelien 34
cheminCelMarkerObsTpl = "/home/telabotap/www/commun/icones/carto/groupe/g%s.png"
422 aurelien 35
 
1190 aurelien 36
[eflore]
422 aurelien 37
phptype  = mysqli
2143 jpm 38
username =
39
password =
40
hostspec =
1190 aurelien 41
database = tela_prod_eflore_v1_1_principale
422 aurelien 42
 
1849 raphael 43
api_host = "http://localhost/service:eflore:0.1"
44
url_service_nom = "http://localhost/service:eflore:0.1/{referentiel}/noms"
1473 aurelien 45
url_service_taxon = "http://localhost/service:eflore:0.1/bdtfx/taxons"
46
url_service_chorologie_obs = "http://localhost/service:eflore:0.1/chorodep/observations"
2696 aurelien 47
url_service_chorologie_presence = "http://localhost/service:eflore:0.1/chorodep/infos-espece/nn:{num_nom}/presence-departement"
1588 aurelien 48
url_service_chorologie_carte = "http://localhost/service:eflore:0.1/{referentiel_choro}/cartes"
1473 aurelien 49
url_service_photoflora = "http://photoflora.free.fr/eflore-photoflora/services/index.php/0.1/projets/photoflora/images"
1643 raphael 50
url_service_nom_attribution = "http://localhost/service:eflore:0.1/{referentiel}/noms-vernaculaires/attributions?masque.nt={valeur}&masque.lg={langue}"
1473 aurelien 51
 
2152 jpm 52
[referentiels]
53
; Nom des tables des référentiels avec leur version actuellement utilisé pour récupérer les infos des noms
54
; ATTENTION : Bien préciser le nom de la base devant le nom de la table !
3951 delphine 55
bdtfx = "tb_eflore.bdtfx_v9_00"
2152 jpm 56
bdtxa = "tb_eflore.bdtxa_v1_01"
57
isfan = "tb_eflore.isfan_v2013"
3951 delphine 58
apd = "tb_eflore.apd_v3_4_0"
2555 aurelien 59
lbf = "tb_eflore.lbf_v1_00"
2990 delphine 60
florical = "tb_eflore.florical_v2016_04_22"
61
aublet = "tb_eflore.aublet_v2016_09"
3951 delphine 62
bdtre = "tb_eflore.bdtre_v1_00"
63
taxref = "tb_eflore.taxref_v2021"
64
vascan = "tb_eflore.vascan_2022"
1473 aurelien 65
 
1190 aurelien 66
[cel]
67
chemin_images = /opt/lampp/htdocs/Documents/images_serveur
68
chemin_export = /opt/lampp/htdocs/Documents/export_images
1192 jpm 69
chemin_stockage_temp = /home/tmp
1892 mathias 70
images_temp_url = "http://localhost/tmp/images/%s"
1192 jpm 71
 
1190 aurelien 72
url_images = http://localhost/Documents/images_serveur
73
url_export = http://localhost/Documents/export_images
1263 jpm 74
url_service_geo_local = http://www.tela-botanica.org/service:eflore:0.1/osm/nom-commune
1192 jpm 75
url_service_geo_geonames = http://ws.geonames.org/
76
nom_service_geocoding_geonames = postalCodeSearchJSON
77
nom_service_reverse_geocoding_geonames = findNearbyJSON
78
 
422 aurelien 79
taille_max = 2097152
1190 aurelien 80
taille_max_archive = 8500000
422 aurelien 81
 
2836 mathias 82
format_CRX2S = 63_63
775 aurelien 83
format_XS = 150_100
2836 mathias 84
format_CXS = 100_100
85
format_CRXS = 100_100
775 aurelien 86
format_S = 400_300
2836 mathias 87
format_CS = 300_300
775 aurelien 88
format_CRS = 300_300
89
format_M = 600_450
90
format_L = 800_600
2836 mathias 91
format_CRL = 600_600
775 aurelien 92
format_XL = 1024_768
2836 mathias 93
format_X2L = 1280_960
2143 jpm 94
format_X3L = 1600_1200
775 aurelien 95
 
2538 aurelien 96
url_service_geo_local = http://api.tela-botanica.org/service:eflore:0.1/osm/nom-commune
97
url_service_geo_mondial = http://api.tela-botanica.org/service:eflore:0.1/osm/zone-admin
98
 
2120 aurelien 99
commande_script_images = "/usr/local/php/5.5/bin/php /home/apitela/www/scripts/cel/cli.php generationimages -a genererMinaturesPourId -id %s &";
100
 
2555 aurelien 101
referentiel_defaut = bdtfx
102
 
2747 aurelien 103
 
104
url_service_rue = "http://overpass-api.de/api/interpreter?data=%5Bout:json%5D;"
105
 
1190 aurelien 106
[database_cel]
107
phptype  = mysqli
2143 jpm 108
username =
109
password =
1190 aurelien 110
hostspec = localhost
111
database = tb_cel
112
database_migration = tb_cel_migration
113
 
3843 idir 114
[ign]
115
url_service_altitude = "https://wxs.ign.fr/%s/alti/rest/elevation.json?%s"
116
cle_api =
117
username =
118
password =
119
 
120
[mapquest]
121
url_service_altitude = "https://open.mapquestapi.com/elevation/v1/profile?key=%s&shapeFormat=raw&%s"
122
cle_api =
123
 
1190 aurelien 124
; Identification
2807 aurelien 125
[identification]
126
sso_url = "https://localhost/annuaire/jrest/Auth"
1190 aurelien 127
 
422 aurelien 128
[log]
1190 aurelien 129
cheminlog = "/home/Logs/"
422 aurelien 130
timezone = "Europe/Paris"
131
taillemax = 100000
132
 
133
[jrest_admin]
134
admin = aurelien@tela-botanica.org,david.delon@clapas.net,jpm@tela-botanica.org,marie@tela-botanica.org
2143 jpm 135
ip_autorisees = "127.0.0.1,193.54.123.216,193.54.123.169"
2152 jpm 136
;*/?>