Subversion Repositories Applications.papyrus

Compare Revisions

Ignore whitespace Rev 564 → Rev 565

/trunk/client/integrateur_wikini/bibliotheque/iw_integrateur.fonct.php
21,7 → 21,7
// | along with Foobar; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
// +------------------------------------------------------------------------------------------------------+
// CVS : $Id: iw_integrateur.fonct.php,v 1.2 2005-10-20 10:28:25 ddelon Exp $
// CVS : $Id: iw_integrateur.fonct.php,v 1.3 2005-10-21 22:22:16 ddelon Exp $
/**
* Fonctions de l'integrateur de page Wikini
*
33,7 → 33,7
//Autres auteurs :
*@author Aucun
*@copyright Tela-Botanica 2000-2004
*@version $Revision: 1.2 $ $Date: 2005-10-20 10:28:25 $
*@version $Revision: 1.3 $ $Date: 2005-10-21 22:22:16 $
*
// +------------------------------------------------------------------------------------------------------+
// | ENTETE du PROGRAMME |
250,10 → 250,7
$GLOBALS['_PAPYRUS_']['erreur']->setActive(0);
 
// TODO
// Changement du niveau d'erreur pour éviter les Notices PHP dues à Wikini
// error_reporting(E_PARSE);
// Autre possibilite : la page speciale MENU
global $wiki;
274,9 → 271,7
 
$server=$_SERVER['PHP_SELF'];
$_SERVER['PHP_SELF']="wakka.php";
// Sinon Affichage Page Menu (configurable TODO ?)
$contenu=$wiki->LoadPage("PageMenu");
$sortie.=$wiki->Format("----");
/trunk/client/projet/actions/wikini.php
19,7 → 19,7
// | License along with this library; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
// +------------------------------------------------------------------------------------------------------+
// CVS : $Id: wikini.php,v 1.5 2005-10-21 16:24:23 ddelon Exp $
// CVS : $Id: wikini.php,v 1.6 2005-10-21 22:22:16 ddelon Exp $
/**
* Application projet
*
31,7 → 31,7
//Autres auteurs :
*@author Aucun
*@copyright Tela-Botanica 2000-2005
*@version $Revision: 1.5 $
*@version $Revision: 1.6 $
// +------------------------------------------------------------------------------------------------------+
*/
 
63,7 → 63,8
} else {
$wiki_res .= '<div>'.PROJET_WIKINI_PAS.'</div>'."\n" ;
}
 
// hack de hack !
$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_MENU'] =afficherPageMenuWikini();
$retour .= $wiki_res ;
 
 
/trunk/papyrus/pap_rendu.inc.php
32,7 → 32,7
// pris connaissance de la licence CeCILL, et que vous en avez accepté les
// termes.
// ----
// CVS : $Id: pap_rendu.inc.php,v 1.23 2005-10-20 13:12:18 ddelon Exp $
// CVS : $Id: pap_rendu.inc.php,v 1.24 2005-10-21 22:22:16 ddelon Exp $
/**
* Rendu : programme traitant l'url demandée et retournant la page compressé au navigateur.
*
48,7 → 48,7
*@author Alexandre GRANIER <alexandre@tela-botanica.org>
*@author Laurent COUDOUNEAU <laurent.coudouneau@ema.fr>
*@copyright Tela-Botanica 2000-2004
*@version $Revision: 1.23 $ $Date: 2005-10-20 13:12:18 $
*@version $Revision: 1.24 $ $Date: 2005-10-21 22:22:16 $
// +------------------------------------------------------------------------------------------------------+
*/
 
395,7 → 395,12
}
 
// Appel de la fonction afficherContenuMenu() si elle existe.
$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_MENU'] = (function_exists('afficherContenuMenu') ? afficherContenuMenu() : '<!-- '.'Aucun menu pour cette application'.' -->');
if (isset($GLOBALS['_PAPYRUS_']['rendu']['CONTENU_MENU'])) {
$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_MENU'] .= (function_exists('afficherContenuMenu') ? afficherContenuMenu() : '<!-- '.'Aucun menu pour cette application'.' -->');
}
else {
$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_MENU'] = (function_exists('afficherContenuMenu') ? afficherContenuMenu() : '<!-- '.'Aucun menu pour cette application'.' -->');
}
 
// Contenu pied
// Appel de la fonction afficherContenuPied() si elle existe.
530,6 → 535,9
/* +--Fin du code ---------------------------------------------------------------------------------------+
*
* $Log: not supported by cvs2svn $
* Revision 1.23 2005/10/20 13:12:18 ddelon
* Gestion protection menu
*
* Revision 1.22 2005/10/20 10:28:25 ddelon
* Wikini complet dans l'intégrateur Wikini
*