Subversion Repositories Applications.papyrus

Compare Revisions

Ignore whitespace Rev 223 → Rev 224

/trunk/api/text/wiki_papyrus/Papyrus.class.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: Papyrus.class.php,v 1.2 2004-11-26 12:13:03 jpm Exp $
// CVS : $Id: Papyrus.class.php,v 1.3 2004-12-07 12:17:37 jpm Exp $
/**
* Classe configurant le formatage pour Papyrus.
*
36,7 → 36,7
//Autres auteurs :
*@author Aucun
*@copyright Tela-Botanica 2000-2004
*@version $Revision: 1.2 $ $Date: 2004-11-26 12:13:03 $
*@version $Revision: 1.3 $ $Date: 2004-12-07 12:17:37 $
// +------------------------------------------------------------------------------------------------------+
*/
 
144,7 → 144,7
$this->loadFormatObj($format);
// pre-rendering activity
if (is_object($this->formatObj[$format])) {
if (isset($this->formatObj[$format]) && is_object($this->formatObj[$format])) {
$output .= $this->formatObj[$format]->pre();
}
198,7 → 198,7
}
// post-rendering activity
if (is_object($this->formatObj[$format])) {
if (isset($this->formatObj[$format]) && is_object($this->formatObj[$format])) {
$output .= $this->formatObj[$format]->post();
}
268,6 → 268,9
/* +--Fin du code ----------------------------------------------------------------------------------------+
*
* $Log: not supported by cvs2svn $
* Revision 1.2 2004/11/26 12:13:03 jpm
* Correction de résidu...
*
* Revision 1.1 2004/11/26 12:11:49 jpm
* Ajout des action Papyrus à Text_Wiki.
*
/trunk/api/text/wiki_wikini/Wikini.class.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: Wikini.class.php,v 1.3 2004-11-25 15:53:24 jpm Exp $
// CVS : $Id: Wikini.class.php,v 1.4 2004-12-07 12:17:41 jpm Exp $
/**
* Classe configurant le formatage pour Wikini.
*
36,7 → 36,7
//Autres auteurs :
*@author Aucun
*@copyright Tela-Botanica 2000-2004
*@version $Revision: 1.3 $ $Date: 2004-11-25 15:53:24 $
*@version $Revision: 1.4 $ $Date: 2004-12-07 12:17:41 $
// +------------------------------------------------------------------------------------------------------+
*/
 
86,7 → 86,7
'Revise', // Suppression de texte. Modifié par rapport à l'original de Text_Wiki
'Tt', // Texte à espacement fixe
'Url', // Inclusion d'url dont les url d'images
'Strong',// Gras
'Strong'// Gras
);
/**
*
146,7 → 146,7
$this->loadFormatObj($format);
// pre-rendering activity
if (is_object($this->formatObj[$format])) {
if (isset($this->formatObj[$format]) && is_object($this->formatObj[$format])) {
$output .= $this->formatObj[$format]->pre();
}
200,7 → 200,7
}
// post-rendering activity
if (is_object($this->formatObj[$format])) {
if (isset($this->formatObj[$format]) && is_object($this->formatObj[$format])) {
$output .= $this->formatObj[$format]->post();
}
270,6 → 270,9
/* +--Fin du code ----------------------------------------------------------------------------------------+
*
* $Log: not supported by cvs2svn $
* Revision 1.3 2004/11/25 15:53:24 jpm
* Suppression action inclure, migrer dans Papyrus.
*
* Revision 1.2 2004/11/25 15:36:41 jpm
* Suppression régle Delimiter car problème avec les délimitations de fin de ligne.
*