Subversion Repositories Applications.papyrus

Compare Revisions

Ignore whitespace Rev 1160 → Rev 1158

/trunk/api/text/wiki_papyrus/Parse/Redirection.php
New file
0,0 → 1,46
<?php
// $Id: Redirection.php,v 1.1 2005-09-23 13:58:07 ddelon Exp $
 
 
/**
*
* This class implements a Text_Wiki_Parse to find source text marked as
* an Interwiki link. See the regex for a detailed explanation of the
* text matching procedure; e.g., "InterWikiName:PageName".
*
* @author Paul M. Jones <pmjones@ciaweb.net>
*
* @package Text_Wiki
*
*/
class Text_Wiki_Parse_Redirection extends Text_Wiki_Parse {
var $regex = '/\{\{Redirection url="(.+?)"\}\}/';
/**
*
* Remplace l'action par une liste des pages contenant les mots clés choisis
* Les options sont:
*
* 'mots' => les mots clés séparés par des virgules
*
* @access public
*
* @param array &$matches The array of matches from parse().
*
* @return A delimited token to be used as a placeholder in
* the source text, plus any text priot to the match.
*
*/
function process(&$matches)
{
$options = array(
'url' => $matches[1]
);
return $this->wiki->addToken($this->rule, $options);
}
}
?>
/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.14 2006-12-13 10:53:09 jp_milcent Exp $
// CVS : $Id: Papyrus.class.php,v 1.13 2006-12-13 09:43:13 jp_milcent Exp $
/**
* Classe configurant le formatage pour Papyrus.
*
36,7 → 36,7
//Autres auteurs :
*@author Aucun
*@copyright Tela-Botanica 2000-2004
*@version $Revision: 1.14 $ $Date: 2006-12-13 10:53:09 $
*@version $Revision: 1.13 $ $Date: 2006-12-13 09:43:13 $
// +------------------------------------------------------------------------------------------------------+
*/
 
72,7 → 72,9
*
*/
var $rules = array(
'Syndication' // Action Syndication
'Syndication', // Action Syndication
'Redirection' // Action Redirection
);
/**
278,9 → 280,6
/* +--Fin du code ----------------------------------------------------------------------------------------+
*
* $Log: not supported by cvs2svn $
* Revision 1.13 2006/12/13 09:43:13 jp_milcent
* Suppression de l'action Plan transformée en Applette.
*
* Revision 1.12 2006/12/12 17:16:52 jp_milcent
* Suppression de l'action Nouveaute transformée en Applette.
*
/trunk/api/text/wiki_papyrus/Render/Xhtml/Redirection.php
New file
0,0 → 1,27
<?php
class Text_Wiki_Render_Xhtml_Redirection extends Text_Wiki_Render {
/**
*
* Renders a token into text matching the requested format.
*
* @access public
*
* @param array $options The "options" portion of the token (second
* element).
*
* @return string The text rendered from the token options.
*
*/
function token($options)
{
// Initialisation des variables
$sortie = '';
$url = $options['url'];
$url=ereg_replace('&amp;','&',$url);
header("Location: $url");
exit;
}
}
?>