]> git.mxchange.org Git - friendica.git/commitdiff
Better integration with the existing code
authorDomovoy <domovoy@errlock.org>
Fri, 14 Sep 2012 03:50:35 +0000 (05:50 +0200)
committerDomovoy <domovoy@errlock.org>
Fri, 14 Sep 2012 03:50:35 +0000 (05:50 +0200)
library/HTML5/TreeBuilder.php

index 26cd410bf32c29d209073f15688eaf2f99667f02..257e73c3e06a04b79b3c67ada8c4d663f5add15e 100644 (file)
@@ -127,6 +127,7 @@ class HTML5_TreeBuilder {
     const NS_XLINK  = 'http://www.w3.org/1999/xlink';
     const NS_XML    = 'http://www.w3.org/XML/1998/namespace';
     const NS_XMLNS  = 'http://www.w3.org/2000/xmlns/';
+    const NS_GOOGLE = 'http://base.google.com/ns/1.0';
 
     public function __construct() {
         $this->mode = self::INITIAL;
@@ -1430,6 +1431,14 @@ class HTML5_TreeBuilder {
                     // parse error
                 break;
 
+                /* Google */
+                case 'g:plusone':
+                                       /* Reconstruct the active formatting elements, if any. */
+                    $this->reconstructActiveFormattingElements();
+
+                    $this->insertForeignElement($token, self::NS_GOOGLE);
+                break;
+
                 /* A start tag token not covered by the previous entries */
                 default:
                     /* Reconstruct the active formatting elements, if any. */
@@ -3037,21 +3046,7 @@ class HTML5_TreeBuilder {
         }
 
     private function insertElement($token, $append = true) {
-               $sep_pos = strpos($token['name'],':');
-               $ns_uri = self::NS_HTML;
-               if($sep_pos !== FALSE) {
-                       // This tag has a namespace
-                       $ns = substr($token['name'], 0, $sep_pos);
-                       switch($ns) {
-                               case 'g':
-                                       $ns_uri = 'http://base.google.com/ns/1.0';
-                                       break;
-                               default:
-                                       logger("HTML5/TreeBuilder.php: Unknown namespace '". $ns ."', tag = ". $token['name'], LOGGER_DEBUG);
-                                       break;
-                       }
-               }
-        $el = $this->dom->createElementNS($ns_uri, $token['name']);
+        $el = $this->dom->createElementNS(self::NS_HTML, $token['name']);
                
         if (!empty($token['attr'])) {
             foreach($token['attr'] as $attr) {