Subversion Repositories Applications.papyrus

Rev

Rev 5 | Rev 67 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
5 jpm 1
<?php
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */
3
// +------------------------------------------------------------------------------------------------------+
4
// | PHP version 4.1                                                                                      |
5
// +------------------------------------------------------------------------------------------------------+
6
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org)                                         |
7
// +------------------------------------------------------------------------------------------------------+
8
// | This library is free software; you can redistribute it and/or                                        |
9
// | modify it under the terms of the GNU Lesser General Public                                           |
10
// | License as published by the Free Software Foundation; either                                         |
11
// | version 2.1 of the License, or (at your option) any later version.                                   |
12
// |                                                                                                      |
13
// | This library is distributed in the hope that it will be useful,                                      |
14
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
15
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU                                    |
16
// | Lesser General Public License for more details.                                                      |
17
// |                                                                                                      |
18
// | You should have received a copy of the GNU Lesser General Public                                     |
19
// | License along with this library; if not, write to the Free Software                                  |
20
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
21
// +------------------------------------------------------------------------------------------------------+
10 jpm 22
// CVS : $Id: pap_envoi.inc.php,v 1.2 2004-06-16 15:07:56 jpm Exp $
5 jpm 23
/**
24
* Gestion de l'envoie des pages à afficher.
25
*
26
* Ce fichier envoi les données en les compressant si possible.
27
*
28
*@package Papyrus
29
//Auteur original :
30
*@author        Laurent COUDOUNEAU <lc@gsite.org>
31
//Autres auteurs :
32
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
33
*@copyright     Tela-Botanica 2000-2004
10 jpm 34
*@version       $Revision: 1.2 $ $Date: 2004-06-16 15:07:56 $
5 jpm 35
// +------------------------------------------------------------------------------------------------------+
36
*/
37
 
38
// +------------------------------------------------------------------------------------------------------+
39
// |                                            ENTÊTE du PROGRAMME                                       |
40
// +------------------------------------------------------------------------------------------------------+
41
 
42
/** <BR> Inclusion de la bibliothèque de fonctions de compression des données à envoyer.*/
10 jpm 43
include_once GEN_CHEMIN_BIBLIO.'pap_compression.fonct.php';
5 jpm 44
 
45
// +------------------------------------------------------------------------------------------------------+
46
// |                                            CORPS du PROGRAMME                                        |
47
// +------------------------------------------------------------------------------------------------------+
48
$page_gzippe = GEN_compresserDonneesZLIB($_GEN_commun['sortie']);
49
// Nous mettons à jour le cache
50
if ($_GEN_commun['info_application']->cache) {
51
    // Mise en cache de la page demandée
52
    if ( ($page_gzippe != false) ) {
53
        $contenu_en_cache = (empty($page_gzippe)) ? $_GEN_commun['sortie'] : $page_gzippe;
54
        $requete =  'INSERT INTO gen_page_cache '.
55
                    'SET    gpc_id_md5_url = "'.GEN_donnerMD5UriPostSession().'", '.
56
                    '       gpc_ce_site = '.$_GEN_commun['site_info']->gsi_id_site.', '.
57
                    '       gpc_ce_i18n = "'.$_GEN_commun['site_info']->gsi_id_i18n.'", '.
58
                    '       gpc_corps = "'.mysql_escape_string($contenu_en_cache).'", '.
59
                    '       gpc_date_heure = NOW(), '.
60
                    '       gpc_taille = '.strlen($_GEN_commun['sortie']).', '.
61
                    '       gpc_gz_taille = '.strlen($contenu_en_cache);
62
 
63
        $resultat = $db->query($requete);
64
        (DB::isError($resultat))
65
            ? die(BOG_afficherErreurSql(__FILE__, __LINE__, $resultat->getMessage(), $requete))
66
            : '';
67
    }
68
}
69
// Si les données sont compréssées, nous essayons de réaliser un envoi au client.
70
if (!empty($page_gzippe)) {
71
    if (GEN_envoyerDonneesCompressees($page_gzippe)) {
72
        exit();
73
    }
74
}
75
// La compression ne fonctionne pas ou les données ne sont pas compressées,
76
// nous envoyons directement la page.
77
echo($_GEN_commun['sortie']);
78
 
79
/* +--Fin du code ----------------------------------------------------------------------------------------+
80
*
81
* $Log: not supported by cvs2svn $
10 jpm 82
* Revision 1.1  2004/06/16 08:11:37  jpm
83
* Changement de nom de Génésia en Papyrus.
84
* Changement de l'arborescence.
85
*
5 jpm 86
* Revision 1.3  2004/04/28 12:04:31  jpm
87
* Changement du modèle de la base de données.
88
*
89
* Revision 1.2  2004/04/22 08:31:43  jpm
90
* Transformation de $GS_GLOBAL en $_GEN_commun.
91
*
92
* Revision 1.1  2004/04/09 16:19:23  jpm
93
* Ajout du fichier indépendant d'envoi avec gestion des tables i18n.
94
*
95
*
96
* +-- Fin du code ----------------------------------------------------------------------------------------+
97
*/
98
?>