Subversion Repositories Applications.papyrus

Rev

Rev 179 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 179 Rev 224
Line 19... Line 19...
19
// |                                                                                                      |
19
// |                                                                                                      |
20
// | You should have received a copy of the GNU General Public License                                    |
20
// | You should have received a copy of the GNU General Public License                                    |
21
// | along with Foobar; if not, write to the Free Software                                                |
21
// | along with Foobar; if not, write to the Free Software                                                |
22
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
22
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
23
// +------------------------------------------------------------------------------------------------------+
23
// +------------------------------------------------------------------------------------------------------+
24
// CVS : $Id: Papyrus.class.php,v 1.2 2004-11-26 12:13:03 jpm Exp $
24
// CVS : $Id: Papyrus.class.php,v 1.3 2004-12-07 12:17:37 jpm Exp $
25
/**
25
/**
26
* Classe configurant le formatage pour Papyrus.
26
* Classe configurant le formatage pour Papyrus.
27
*
27
*
28
* Ce fichier contient une classe configurant les règles de formatage de Papyrus.
28
* Ce fichier contient une classe configurant les règles de formatage de Papyrus.
29
* Nécessite que l'application appelant ce fichier est précédement inclu le fichier de Pear:
29
* Nécessite que l'application appelant ce fichier est précédement inclu le fichier de Pear:
Line 34... Line 34...
34
//Auteur original :
34
//Auteur original :
35
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
35
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
36
//Autres auteurs :
36
//Autres auteurs :
37
*@author        Aucun
37
*@author        Aucun
38
*@copyright     Tela-Botanica 2000-2004
38
*@copyright     Tela-Botanica 2000-2004
39
*@version       $Revision: 1.2 $ $Date: 2004-11-26 12:13:03 $
39
*@version       $Revision: 1.3 $ $Date: 2004-12-07 12:17:37 $
40
// +------------------------------------------------------------------------------------------------------+
40
// +------------------------------------------------------------------------------------------------------+
41
*/
41
*/
Line 42... Line 42...
42
 
42
 
43
// +------------------------------------------------------------------------------------------------------+
43
// +------------------------------------------------------------------------------------------------------+
Line 142... Line 142...
142
        
142
        
143
        // load the format object
143
        // load the format object
Line 144... Line 144...
144
        $this->loadFormatObj($format);
144
        $this->loadFormatObj($format);
145
        
145
        
146
        // pre-rendering activity
146
        // pre-rendering activity
147
        if (is_object($this->formatObj[$format])) {
147
        if (isset($this->formatObj[$format]) && is_object($this->formatObj[$format])) {
Line 148... Line 148...
148
            $output .= $this->formatObj[$format]->pre();
148
            $output .= $this->formatObj[$format]->pre();
149
        }
149
        }
Line 196... Line 196...
196
                }
196
                }
197
            }
197
            }
198
        }
198
        }
Line 199... Line 199...
199
        
199
        
200
        // post-rendering activity
200
        // post-rendering activity
201
        if (is_object($this->formatObj[$format])) {
201
        if (isset($this->formatObj[$format]) && is_object($this->formatObj[$format])) {
202
            $output .= $this->formatObj[$format]->post();
202
            $output .= $this->formatObj[$format]->post();
Line 203... Line 203...
203
        }
203
        }
204
        
204
        
Line 266... Line 266...
266
 
266
 
267
 
267
 
268
/* +--Fin du code ----------------------------------------------------------------------------------------+
268
/* +--Fin du code ----------------------------------------------------------------------------------------+
-
 
269
*
-
 
270
* $Log: not supported by cvs2svn $
-
 
271
* Revision 1.2  2004/11/26 12:13:03  jpm
269
*
272
* Correction de résidu...
270
* $Log: not supported by cvs2svn $
273
*
271
* Revision 1.1  2004/11/26 12:11:49  jpm
274
* Revision 1.1  2004/11/26 12:11:49  jpm
272
* Ajout des action Papyrus à Text_Wiki.
275
* Ajout des action Papyrus à Text_Wiki.
273
*
276
*