60 lines
2.1 KiB
PHP
60 lines
2.1 KiB
PHP
<?php
|
|
|
|
/***************************************************************************\
|
|
* SPIP, Systeme de publication pour l'internet *
|
|
* *
|
|
* Copyright (c) 2001-2019 *
|
|
* Arnaud Martin, Antoine Pitrou, Philippe Riviere, Emmanuel Saint-James *
|
|
* *
|
|
* Ce programme est un logiciel libre distribue sous licence GNU/GPL. *
|
|
* Pour plus de details voir le fichier COPYING.txt ou l'aide en ligne. *
|
|
\***************************************************************************/
|
|
|
|
if (!defined('_ECRIRE_INC_VERSION')) {
|
|
return;
|
|
}
|
|
|
|
define('_REGEXP_DOCTYPE',
|
|
'/^((?:<\001?[?][^>]*>\s*)*(?:<!--.*?-->\s*)*)*<!DOCTYPE\s+(\w+)\s+(\w+)\s*([^>]*)>\s*/s');
|
|
|
|
define('_REGEXP_XML', '/^(\s*(?:<[?][^x>][^>]*>\s*)?(?:<[?]xml[^>]*>)?\s*(?:<!--.*?-->\s*)*)<(\w+)/s');
|
|
|
|
define('_MESSAGE_DOCTYPE', '<!-- SPIP CORRIGE -->');
|
|
|
|
define('_SUB_REGEXP_SYMBOL', '[\w_:.-]');
|
|
|
|
define('_REGEXP_NMTOKEN', '/^' . _SUB_REGEXP_SYMBOL . '+$/');
|
|
|
|
define('_REGEXP_NMTOKENS', '/^(' . _SUB_REGEXP_SYMBOL . '+\s*)*$/');
|
|
|
|
define('_REGEXP_ID', '/^[A-Za-z_:]' . _SUB_REGEXP_SYMBOL . '*$/');
|
|
|
|
define('_REGEXP_ENTITY_USE', '/%(' . _SUB_REGEXP_SYMBOL . '+);/');
|
|
define('_REGEXP_ENTITY_DEF', '/^%(' . _SUB_REGEXP_SYMBOL . '+);/');
|
|
define('_REGEXP_TYPE_XML', 'PUBLIC|SYSTEM|INCLUDE|IGNORE|CDATA');
|
|
define('_REGEXP_ENTITY_DECL', '/^<!ENTITY\s+(%?)\s*(' .
|
|
_SUB_REGEXP_SYMBOL .
|
|
'+;?)\s+(' .
|
|
_REGEXP_TYPE_XML .
|
|
')?\s*(' .
|
|
"('([^']*)')" .
|
|
'|("([^"]*)")' .
|
|
'|\s*(%' . _SUB_REGEXP_SYMBOL . '+;)\s*' .
|
|
')\s*(--.*?--)?("([^"]*)")?\s*>\s*(.*)$/s');
|
|
|
|
define('_REGEXP_INCLUDE_USE', '/^<!\[\s*%\s*([^;]*);\s*\[\s*(.*)$/s');
|
|
|
|
define('_DOCTYPE_RSS', 'http://www.rssboard.org/rss-0.91.dtd');
|
|
|
|
/**
|
|
* Document Type Compilation
|
|
**/
|
|
class DTC {
|
|
public $macros = array();
|
|
public $elements = array();
|
|
public $peres = array();
|
|
public $attributs = array();
|
|
public $entites = array();
|
|
public $regles = array();
|
|
public $pcdata = array();
|
|
}
|