Subversion Repositories eFlore/Applications.del

Compare Revisions

No changes between revisions

Ignore whitespace Rev 1646 → Rev 1647

/trunk/war/commun.php
4,6 → 4,12
*
*/
 
$cheminConfig = 'config/config.php';
$configOk = file_exists($cheminConfig);
if ($configOk) {
require $cheminConfig;
}
 
function getUrlPageCourante() {
$cheminUrl = $_SERVER['REQUEST_URI'];
$positionIntero = strpos($_SERVER['REQUEST_URI'], '?');
/trunk/war/config/config.defaut.php
New file
0,0 → 1,4
<?php
// Configuration de l'URL du Widget de remarques, qui remplace le lien mailto pour les remarques
define('URL_WIDGET_REMARQUES', 'http://www.tela-botanica.org/widget:reseau:remarques');
?>
/trunk/war/config
Property changes:
Modified: svn:ignore
apropos.js
config.js
+config.php
/trunk/war/identiplante.php
20,6 → 20,11
</head>
<!-- Le corps peut contenir du HTML ou peut rester vide si vous voulez créer une UI complêtement dynamique -->
<body>
<?php if (! $configOk): ?>
<div class="erreurConfig">
Veuillez configurer l'application à l'aide du fichier <?= $cheminConfig ?>
</div>
<?php endif; ?>
<noscript>
<p style="width: 22em; position: absolute; left: 50%; margin-left: -11em; color: red; background-color: white; border: 1px solid red; padding: 4px; font-family: sans-serif">
<span class="attention">ATTENTION : </span>
61,8 → 66,11
<iframe src="javascript:''" id="__gwt_historyFrame" tabIndex='-1' style="position:absolute;width:0;height:0;border:0"></iframe>
<div id="zoneFooter"><br /><hr />
<span class="pictoplante-contact">
Vous avez remarqué un bug ou voulez nous suggérer des améliorations? Contactez-nous à
<a href="mailto:identiplante_remarques@tela-botanica.org">identiplante_remarques@tela-botanica.org</a>
Vous avez remarqué un problème ou souhaitez nous suggérer des améliorations?
<a href="<?= URL_WIDGET_REMARQUES ?>?email=identiplante_remarques@tela-botanica.org&pageSource=<?php echo urlencode('http://'.$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF'].'?'.$_SERVER['QUERY_STRING']); ?>"
target="_blank"
onclick="javascript:window.open(this.getAttribute('href'), 'Tela Botanica - Remarques', config='height=700, width=640, scrollbars=yes, resizable=yes'); return false;">
Contactez-nous</a>
</span><br/><br/>
Projet financ&eacute; par : <br /><br />
<a class="logo_ue" href="http://europa.eu/index_fr.htm" target="_blank"></a>
/trunk/war/pictoflora.php
20,6 → 20,11
</head>
<!-- Le corps peut contenir du HTML ou peut rester vide si vous voulez créer une UI complêtement dynamique -->
<body>
<?php if (! $configOk): ?>
<div class="erreurConfig">
Veuillez configurer l'application à l'aide du fichier <?= $cheminConfig ?>
</div>
<?php endif; ?>
<noscript>
<p style="width: 22em; position: absolute; left: 50%; margin-left: -11em; color: red; background-color: white; border: 1px solid red; padding: 4px; font-family: sans-serif">
<span class="attention">ATTENTION : </span>
58,8 → 63,11
<div id="zoneFooter">
<br /><hr />
<span class="pictoplante-contact">
Vous avez remarqué un bug ou voulez nous suggérer des améliorations? Contactez-nous à
<a href="mailto:pictoflora_remarques@tela-botanica.org">pictoflora_remarques@tela-botanica.org</a>
Vous avez remarqué un problème ou souhaitez nous suggérer des améliorations?
<a href="<?= URL_WIDGET_REMARQUES ?>?email=pictoflora_remarques@tela-botanica.org&pageSource=<?php echo urlencode('http://'.$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF'].'?'.$_SERVER['QUERY_STRING']); ?>"
target="_blank"
onclick="javascript:window.open(this.getAttribute('href'), 'Tela Botanica - Remarques', config='height=700, width=640, scrollbars=yes, resizable=yes'); return false;">
Contactez-nous</a>
</span><br/><br/>
Projet financ&eacute; par : <br /><br />
<a class="logo_ue" href="http://europa.eu/index_fr.htm" target="_blank"></a>
/trunk/war/del.css
678,8 → 678,14
.pictoplante-contact a {
color: green;
text-decoration : none;
font-weight: bold;
}
 
.pictoplante-contact a:visited {
color: #06BD1E;
text-decoration : none;
}
 
.pictoplante-contact a:hover {
color: #FD8C13;
text-decoration : none;
836,3 → 842,11
.logo_nd:hover {
background:url('./img/logos/nd_hover.jpg');
}
 
.erreurConfig {
width: 400px;
margin: 20px auto auto;
font-size: 16px;
color: #cc0000;
font-weight: bold;
}