Subversion Repositories Sites.tela-botanica.org

Rev

Rev 1101 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
<!--
body {
        font-family: Arial,Helvetica,Verdana,sans-serif;
        font-size: 14px;
}
h1 {
        font-size:15px;
        color:#fd8c13;
        margin:10px 0px 0px 0px;
        text-transform:uppercase;
}

h1 > a {
  color:#fd8c13;
}
 
h3 {
        font-size:14px;
        color:#454341 !important;
        margin:0px;
}

h3 > a {
  color:#454341;
}

h4 {
        font-size:11px;
        font-weight:normal;
        color:#AAAAAA;
        margin:2px 2px 2px 0;
}

h4 > a {
        color:#AAAAAA;
}

h1 a, h3 a, h4 a {
        color: inherit;
        border-bottom: dotted 1px;
}
h3 a {
        border-color:#CCCCCC;
}
a {
        color:#598000;
        text-decoration:none;
        border-bottom:1px dotted #95ae5d;
}
a:hover {
        color:#FD8C13;
        border-bottom:1px dotted #95ae5d;
}
.lire-suite {
        padding-left:10px;
        background:url(http://www.tela-botanica.org/sites/commun/generique/images/graphisme/petit_carre.png) no-repeat 0px 4px;
}
-->
</style>
<title></title>
</head>
<body bgcolor="#ffffff" text="#000000" link="#0227e1" vlink="#0227e1">
        <img src="#URL_SITE_SPIP/IMG/logo_tela.png" border="0" alt="Les actualités de la botanique" />
        <br /><br />
        Bonjour, voici la lettre d'information sur l'actualité de la botanique francophone. Cette lettre présente les articles publi&eacute;s sur le site Tela Botanica <a href="#URL_SITE_SPIP">#URL_SITE_SPIP</a> depuis une semaine.<br /><br />
      <b>À savoir :</b> Publiez vos actualités et événements grâce à l'<a href="http://www.tela-botanica.org/actu/article220.html">espace rédacteur</a>.<br /><br />
          Consultez <b>les événements</b> de votre région sur <a href="http://www.tela-botanica.org/page:evenements">www.tela-botanica.org/page:evenements</a><br/><br/>
      <BOUCLE_rubriques(RUBRIQUES) {par num titre} {racine}{id_rubrique!=66}>
   <B_last_articles>
    <h1>[(#TITRE|supprimer_numero)]</h1><br />
      <BOUCLE_last_articles(ARTICLES){id_rubrique}{age<=6}{par date}{inverse}>
      <h3><a href="#URL_SITE_SPIP/#URL_ARTICLE">#TITRE</a></h3> 
      <h4>
                Mise en ligne du [(#DATE|affdate)] 
            <B_auteurs><:par_auteur:> <BOUCLE_auteurs(AUTEURS) {id_article} {", "}>
            #NOM
            </BOUCLE_auteurs>
            </B_auteurs>
      </h4>
      [(#INTRODUCTION|couper{300})] <span class="lire-suite"><a href="#URL_SITE_SPIP/#URL_ARTICLE">Lire la suite</a></span><br />
      <br />
        </BOUCLE_last_articles>


        </BOUCLE_rubriques>
<?php

function formate_date($date) {
  return date('d', strtotime($date)).
                 ' '.$GLOBALS['mois'][date('n',  strtotime ($date))].' '.date('Y',strtotime ($date));
}

include_once 'authentification.php';
$url_evenement = new Net_URL('http://www.tela-botanica.org/page:evenements?action=8');

// Note : tant que Papyrus ne permet pas d'appeler une fonction permettant de récupérer les info de Auth, on est obligé
// de les rentrer à la main ci-dessous....
//echo '<script type="text/javascript">';

/** Requete dans les tables du bazar pour présenter une liste des évènements
 * à venir
 * L'applette syndication de papyrus ne convenant pas pour ce type d'affichage
 */

// on récupère tous les types de natures et leurs identifiants
$requete = 'SELECT bn_id_nature, bn_label_nature FROM bazar_nature ' ;
$resultat = $GLOBALS['db']->query ($requete);
if (DB::isError($resultat)) {
  //echo $resultat->getMessage().'<br />'.$resultat->getDebugInfo().'<br />'.$requete;
}

$liste_nat = array() ;

while($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
        $liste_nat[$ligne['bn_id_nature']] = $ligne['bn_label_nature'] ; 
}

$nat_en_cours = '' ; 

$requete = 'SELECT * from bazar_fiche WHERE bf_statut_fiche=1 '.
                        'AND bf_date_debut_validite_fiche >= SUBDATE(NOW(), INTERVAL 156 HOUR) '.
                        'ORDER BY bf_ce_nature ASC , bf_date_debut_evenement ASC ';
                        //'group by bf_titre '.  // à rajouter si on doit éviter d'afficher les fiches qui ont le même titre

$resultat = $GLOBALS['db']->query ($requete);

if (DB::isError($resultat)) {
  echo $resultat->getMessage().'<br />'.$resultat->getDebugInfo().'<br />'.$requete;
}

$GLOBALS['jours'] = array (1 => 'lundi', 2 => 'mardi', 3 => 'mercredi', 4 => 'jeudi', 5 => 'vendredi', 
                                                        6 => 'samedi', 0 => 'dimanche') ;
$GLOBALS['mois'] = array (1 => 'janvier', 2 => 'février', 3 => 'mars', 4 => 'avril', 5 => 'mai', 6 => 'juin',
                                                        7 => 'juillet', 8 => 'août', 9 => 'septembre', 10 => 'octobre', 11 =>'novembre', 
                                                        12 => 'décembre') ;


while ($ligne = $resultat->fetchRow(DB_FETCHMODE_OBJECT)) { 

        if($ligne->bf_ce_nature != $nat_en_cours) {

                if($nat_en_cours != '') {
                        echo '</div>';
                }
                echo '<h1>'.$liste_nat[$ligne->bf_ce_nature].'</h1><br />'."\n";
                echo '<div class="rss">';
                $nat_en_cours = $ligne->bf_ce_nature ;
        }

?>
 <h3><?php   $url_evenement->addQueryString ('id_fiche', $ligne->bf_id_fiche); ?><a href="<?php echo $url_evenement->getURL(); ?>"><?php echo htmlentities($ligne->bf_titre) ?></a></h3>
 <h4><font size="-2">
 Aura lieu
  <?php
  if ($ligne->bf_date_debut_evenement != $ligne->bf_date_fin_evenement) {
  
        echo 'du '.formate_date($ligne->bf_date_debut_evenement).' au '.formate_date($ligne->bf_date_fin_evenement);
        
  } else {
  
        echo " le ".formate_date($ligne->bf_date_debut_evenement);
  }
  ?>
 </font></h4>
 <?php echo couper(htmlentities($ligne->bf_description), 400); ?>
 <span class="lire-suite"><a href="<?php echo $url_evenement->getURL(); ?>">Lire la suite</a></span>
 <br /><br />

<?php } 

echo '</div>';

$url_evenement->removeQueryString('id_fiche');
$url_evenement->removeQueryString('action');
?>
<hr />
<font size="-1"> 
Ne répondez pas à ce courriel qui est généré automatiquement, pour toute question écrivez plutôt à <a href="mailto:accueil@tela-botanica.org">accueil@tela-botanica.org</a> <br />
Lettre d'information de Tela Botanica  <a href="#URL_SITE_SPIP/">http://www.tela-botanica.org/actu/</a><br />
Se désabonner : <a href="http://www.tela-botanica.org/page:inscription?m=annuaire_fiche_gestion_consultation&id_annuaire=1">www.tela-botanica.org/page:inscription?m=annuaire_fiche_gestion_consultation&amp;id_annuaire=1</a>
</font>
</body>

</html>