[SPIP][PLUGINS] v3.0-->v3.2
[lhc/web/www.git] / www / ecrire / xml / interfaces.php
index 28998a5..c59baa5 100644 (file)
@@ -3,17 +3,19 @@
 /***************************************************************************\
  *  SPIP, Systeme de publication pour l'internet                           *
  *                                                                         *
- *  Copyright (c) 2001-2016                                                *
+ *  Copyright (c) 2001-2017                                                *
  *  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;
+if (!defined('_ECRIRE_INC_VERSION')) {
+       return;
+}
 
 define('_REGEXP_DOCTYPE',
-       '/^((?:<\001?[?][^>]*>\s*)*(?:<!--.*?-->\s*)*)*<!DOCTYPE\s+(\w+)\s+(\w+)\s*([^>]*)>\s*/s');
+'/^((?:<\001?[?][^>]*>\s*)*(?:<!--.*?-->\s*)*)*<!DOCTYPE\s+(\w+)\s+(\w+)\s*([^>]*)>\s*/s');
 
 define('_REGEXP_XML', '/^(\s*(?:<[?][^x>][^>]*>\s*)?(?:<[?]xml[^>]*>)?\s*(?:<!--.*?-->\s*)*)<(\w+)/s');
 
@@ -21,38 +23,38 @@ define('_MESSAGE_DOCTYPE', '<!-- SPIP CORRIGE -->');
 
 define('_SUB_REGEXP_SYMBOL', '[\w_:.-]');
 
-define('_REGEXP_NMTOKEN', '/^'  . _SUB_REGEXP_SYMBOL . '+$/');
+define('_REGEXP_NMTOKEN', '/^' . _SUB_REGEXP_SYMBOL . '+$/');
 
-define('_REGEXP_NMTOKENS', '/^('  . _SUB_REGEXP_SYMBOL . '+\s*)*$/');
+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_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');
+       _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
-
+/**
+ * Document Type Compilation
+ **/
 class DTC {
-       var     $macros = array();
-       var     $elements = array();
-       var     $peres = array();
-       var     $attributs = array();
-       var     $entites = array();
-       var     $regles = array();
-       var     $pcdata = array();
+       public $macros = array();
+       public $elements = array();
+       public $peres = array();
+       public $attributs = array();
+       public $entites = array();
+       public $regles = array();
+       public $pcdata = array();
 }
-?>