Line 17... |
Line 17... |
17 |
// | |
|
17 |
// | |
|
18 |
// | You should have received a copy of the GNU Lesser General Public |
|
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 |
|
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 |
|
20 |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
21 |
// +------------------------------------------------------------------------------------------------------+
|
21 |
// +------------------------------------------------------------------------------------------------------+
|
22 |
// CVS : $Id: pap_envoi.inc.php,v 1.5 2005-11-25 14:33:08 ddelon Exp $
|
22 |
// CVS : $Id: pap_envoi.inc.php,v 1.6 2005-12-09 16:01:53 ddelon Exp $
|
23 |
/**
|
23 |
/**
|
24 |
* Gestion de l'envoie des pages à afficher.
|
24 |
* Gestion de l'envoie des pages à afficher.
|
25 |
*
|
25 |
*
|
26 |
* Ce fichier envoi les données en les compressant si possible.
|
26 |
* Ce fichier envoi les données en les compressant si possible.
|
27 |
*
|
27 |
*
|
Line 29... |
Line 29... |
29 |
//Auteur original :
|
29 |
//Auteur original :
|
30 |
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
30 |
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
31 |
//Autres auteurs :
|
31 |
//Autres auteurs :
|
32 |
*@author Laurent COUDOUNEAU <lc@gsite.org>
|
32 |
*@author Laurent COUDOUNEAU <lc@gsite.org>
|
33 |
*@copyright Tela-Botanica 2000-2004
|
33 |
*@copyright Tela-Botanica 2000-2004
|
34 |
*@version $Revision: 1.5 $ $Date: 2005-11-25 14:33:08 $
|
34 |
*@version $Revision: 1.6 $ $Date: 2005-12-09 16:01:53 $
|
35 |
// +------------------------------------------------------------------------------------------------------+
|
35 |
// +------------------------------------------------------------------------------------------------------+
|
36 |
*/
|
36 |
*/
|
Line 37... |
Line 37... |
37 |
|
37 |
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
Line 43... |
Line 43... |
43 |
include_once GEN_CHEMIN_BIBLIO.'pap_compression.fonct.php';
|
43 |
include_once GEN_CHEMIN_BIBLIO.'pap_compression.fonct.php';
|
Line 44... |
Line 44... |
44 |
|
44 |
|
45 |
// +------------------------------------------------------------------------------------------------------+
|
45 |
// +------------------------------------------------------------------------------------------------------+
|
46 |
// | CORPS du PROGRAMME |
|
46 |
// | CORPS du PROGRAMME |
|
47 |
// +------------------------------------------------------------------------------------------------------+
|
47 |
// +------------------------------------------------------------------------------------------------------+
|
48 |
/*
|
48 |
|
49 |
$page_gzippe = GEN_compresserDonneesZLIB($_GEN_commun['sortie']);
|
49 |
$page_gzippe = GEN_compresserDonneesZLIB($_GEN_commun['sortie']);
|
50 |
// Nous mettons à jour le cache
|
50 |
// Nous mettons à jour le cache
|
51 |
if (!empty($_GEN_commun['info_application']) && $_GEN_commun['info_application']->cache) {
|
51 |
if (!empty($_GEN_commun['info_application']) && $_GEN_commun['info_application']->cache) {
|
52 |
// Mise en cache de la page demandée
|
52 |
// Mise en cache de la page demandée
|
Line 71... |
Line 71... |
71 |
if (!empty($page_gzippe)) {
|
71 |
if (!empty($page_gzippe)) {
|
72 |
if (GEN_envoyerDonneesCompressees($page_gzippe)) {
|
72 |
if (GEN_envoyerDonneesCompressees($page_gzippe)) {
|
73 |
exit();
|
73 |
exit();
|
74 |
}
|
74 |
}
|
75 |
}
|
75 |
}
|
76 |
*/
|
76 |
|
77 |
// La compression ne fonctionne pas ou les données ne sont pas compressées,
|
77 |
// La compression ne fonctionne pas ou les données ne sont pas compressées,
|
78 |
// nous envoyons directement la page.
|
78 |
// nous envoyons directement la page.
|
79 |
echo($_GEN_commun['sortie']);
|
79 |
echo($_GEN_commun['sortie']);
|
Line 80... |
Line 80... |
80 |
|
80 |
|
81 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
81 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
82 |
*
|
82 |
*
|
- |
|
83 |
* $Log: not supported by cvs2svn $
|
- |
|
84 |
* Revision 1.5 2005/11/25 14:33:08 ddelon
|
- |
|
85 |
* desactivation compression
|
83 |
* $Log: not supported by cvs2svn $
|
86 |
*
|
84 |
* Revision 1.4 2005/02/28 11:20:42 jpm
|
87 |
* Revision 1.4 2005/02/28 11:20:42 jpm
|
85 |
* Modification des auteurs.
|
88 |
* Modification des auteurs.
|
86 |
*
|
89 |
*
|
87 |
* Revision 1.3 2004/10/15 18:29:19 jpm
|
90 |
* Revision 1.3 2004/10/15 18:29:19 jpm
|