Make WordPress Core


Ignore:
Timestamp:
12/07/2005 11:53:02 PM (21 years ago)
Author:
ryan
Message:

gzdeflate unnecessary. fixes #2038

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/js/tinymce/tiny_mce_gzip.php

    r3265 r3278  
    4141                // This function was custom-made for TinyMCE 2.0, not expected to work with any other JS.
    4242
    43                 echo "\n//" . strlen(gzdeflate($text)) . " bytes gzdeflated\n";
    44                 echo "//" . microtime() . " " . strlen($text) . " Micro Time Length\n";
    45 
    4643                // Strip comments
    4744                $text = preg_replace("!(^|\s+)//.*$!m", '', $text);
    48                 echo "//" . microtime() . " " . strlen($text) . " Stripped // comments\n";
    4945                $text = preg_replace("!/\*.*?\*/!s", '', $text);
    50                 echo "//" . microtime() . " " . strlen($text) . " Stripped /* */ comments\n";
    5146
    5247                // Strip leading tabs, carriage returns and unnecessary line breaks.
    5348                $text = preg_replace("!^\t+!m", '', $text);
    54                 echo "//" . microtime() . " " . strlen($text) . " Stripped leading tabs\n";
    5549                $text = str_replace("\r", '', $text);
    56                 echo "//" . microtime() . " " . strlen($text) . " Stripped returns\n";
    5750                $text = preg_replace("!(^|{|}|;|:|\))\n!m", '\\1', $text);
    58                 echo "//" . microtime() . " " . strlen($text) . " Stripped safe linebreaks\n";
    5951
    60                 // Strip spaces. This one is not generally economical.
    61                 //$text = preg_replace("!\s*(\=|\=\=|\!\=|\<\=|\>\=|\+=|\+|\s|:|,)\s*!", '\\1', $text);
    62                 //echo "//" . microtime() . " " . strlen($text) . " Stripped safe spaces\n";
    63 
    64                 echo "//" . strlen(gzdeflate($text)) . " bytes gzdeflated\n";
    6552                return $text;
    6653        }
Note: See TracChangeset for help on using the changeset viewer.