/** * Compress HTML * * This is a heavy regex-based removal of whitespace, unnecessary comments and * tokens. IE conditional comments are preserved. There are also options to have * STYLE and SCRIPT blocks compressed by callback functions. * * A test suite is available. * * @package Minify * @author Stephen Clay */ namespace LiteSpeed\Lib ; defined( 'WPINC' ) || exit ; class HTML_MIN { /** * @var string */ protected $_html = ''; /** * @var boolean */ protected $_jsCleanComments = true; protected $_skipComments = array(); /** * "Minify" an HTML page * * @param string $html * * @param array $options * * 'cssMinifier' : (optional) callback function to process content of STYLE * elements. * * 'jsMinifier' : (optional) callback function to process content of SCRIPT * elements. Note: the type attribute is ignored. * * 'xhtml' : (optional boolean) should content be treated as XHTML1.0? If * unset, minify will sniff for an XHTML doctype. * * @return string */ public static function minify($html, $options = array()) { $min = new self($html, $options); return $min->process(); } /** * Create a minifier object * * @param string $html * * @param array $options * * 'cssMinifier' : (optional) callback function to process content of STYLE * elements. * * 'jsMinifier' : (optional) callback function to process content of SCRIPT * elements. Note: the type attribute is ignored. * * 'jsCleanComments' : (optional) whether to remove HTML comments beginning and end of script block * * 'xhtml' : (optional boolean) should content be treated as XHTML1.0? If * unset, minify will sniff for an XHTML doctype. */ public function __construct($html, $options = array()) { $this->_html = str_replace("\r\n", "\n", trim($html)); if (isset($options['xhtml'])) { $this->_isXhtml = (bool)$options['xhtml']; } if (isset($options['cssMinifier'])) { $this->_cssMinifier = $options['cssMinifier']; } if (isset($options['jsMinifier'])) { $this->_jsMinifier = $options['jsMinifier']; } if (isset($options['jsCleanComments'])) { $this->_jsCleanComments = (bool)$options['jsCleanComments']; } if (isset($options['skipComments'])) { $this->_skipComments = $options['skipComments']; } } /** * Minify the markeup given in the constructor * * @return string */ public function process() { if ($this->_isXhtml === null) { $this->_isXhtml = (false !== strpos($this->_html, '_replacementHash = 'MINIFYHTML' . md5($_SERVER['REQUEST_TIME']); $this->_placeholders = array(); // replace SCRIPTs (and minify) with placeholders $this->_html = preg_replace_callback( '/(\\s*)]*?>)([\\s\\S]*?)<\\/script>(\\s*)/i' ,array($this, '_removeScriptCB') ,$this->_html); // replace STYLEs (and minify) with placeholders $this->_html = preg_replace_callback( '/\\s*]*>)([\\s\\S]*?)<\\/style>\\s*/i' ,array($this, '_removeStyleCB') ,$this->_html); // remove HTML comments (not containing IE conditional comments). $this->_html = preg_replace_callback( '//' ,array($this, '_commentCB') ,$this->_html); // replace PREs with placeholders $this->_html = preg_replace_callback('/\\s*]*?>[\\s\\S]*?<\\/pre>)\\s*/i' ,array($this, '_removePreCB') ,$this->_html); // replace TEXTAREAs with placeholders $this->_html = preg_replace_callback( '/\\s*]*?>[\\s\\S]*?<\\/textarea>)\\s*/i' ,array($this, '_removeTextareaCB') ,$this->_html); // trim each line. // @todo take into account attribute values that span multiple lines. $this->_html = preg_replace('/^\\s+|\\s+$/m', '', $this->_html); // remove ws around block/undisplayed elements $this->_html = preg_replace('/\\s+(<\\/?(?:area|article|aside|base(?:font)?|blockquote|body' .'|canvas|caption|center|col(?:group)?|dd|dir|div|dl|dt|fieldset|figcaption|figure|footer|form' .'|frame(?:set)?|h[1-6]|head|header|hgroup|hr|html|legend|li|link|main|map|menu|meta|nav' .'|ol|opt(?:group|ion)|output|p|param|section|t(?:able|body|head|d|h||r|foot|itle)' .'|ul|video)\\b[^>]*>)/i', '$1', $this->_html); // remove ws outside of all elements $this->_html = preg_replace( '/>(\\s(?:\\s*))?([^<]+)(\\s(?:\s*))?$1$2$3<' ,$this->_html); // use newlines before 1st attribute in open tags (to limit line lengths) // $this->_html = preg_replace('/(<[a-z\\-]+)\\s+([^>]+>)/i', "$1\n$2", $this->_html); // fill placeholders $this->_html = str_replace( array_keys($this->_placeholders) ,array_values($this->_placeholders) ,$this->_html ); // issue 229: multi-pass to catch scripts that didn't get replaced in textareas $this->_html = str_replace( array_keys($this->_placeholders) ,array_values($this->_placeholders) ,$this->_html ); return $this->_html; } /** * From LSCWP 6.2: Changed the function to test for special comments that will be skipped. See: https://github.com/litespeedtech/lscache_wp/pull/622 */ protected function _commentCB($m) { // If is IE conditional comment return it. if(0 === strpos($m[1], '[') || false !== strpos($m[1], ' HTML Settings -> HTML Keep comments if(count($this->_skipComments) > 0){ foreach ($this->_skipComments as $comment) { if ($comment && strpos($m[1], $comment) !== false) { return $m[0]; } } } // Comment can be removed. return ''; } protected function _reservePlace($content) { $placeholder = '%' . $this->_replacementHash . count($this->_placeholders) . '%'; $this->_placeholders[$placeholder] = $content; return $placeholder; } protected $_isXhtml = null; protected $_replacementHash = null; protected $_placeholders = array(); protected $_cssMinifier = null; protected $_jsMinifier = null; protected function _removePreCB($m) { return $this->_reservePlace("_reservePlace("\\s*$)/', '', $css); // remove CDATA section markers $css = $this->_removeCdata($css); // minify $minifier = $this->_cssMinifier ? $this->_cssMinifier : 'trim'; $css = call_user_func($minifier, $css); return $this->_reservePlace($this->_needsCdata($css) ? "{$openStyle}/**/" : "{$openStyle}{$css}" ); } protected function _removeScriptCB($m) { $openScript = "_jsCleanComments) { $js = preg_replace('/(?:^\\s*\\s*$)/', '', $js); } // remove CDATA section markers $js = $this->_removeCdata($js); // minify /** * Added 2nd param by LiteSpeed * * @since 2.2.3 */ if ( $this->_jsMinifier ) { $js = call_user_func( $this->_jsMinifier, $js, trim( $m[ 2 ] ) ) ; } else { $js = trim( $js ) ; } return $this->_reservePlace($this->_needsCdata($js) ? "{$ws1}{$openScript}/**/{$ws2}" : "{$ws1}{$openScript}{$js}{$ws2}" ); } protected function _removeCdata($str) { return (false !== strpos($str, ''), '', $str) : $str; } protected function _needsCdata($str) { return ($this->_isXhtml && preg_match('/(?:[<&]|\\-\\-|\\]\\]>)/', $str)); } } GLOBAL GORKHA TIMES - Page 3 of 270 - सबै खबर एकै ठाँउमा
Breaking News

कञ्चनपुरका पुनर्वास र लालझाडीमा पूर्वानुमानमा आधारित पूर्वकार्य परियोजना (SAAN) सञ्चालनमा

कञ्चनपुरः सुदूरपश्चिम प्रदेशका बाढी प्रभावित क्षेत्रमा विपद् जोखिम न्यूनीकरण साथै समयमै पूर्वतयारी सुनिश्चित गर्न ‘पूर्वानुमानमा आधारित पूर्वकार्यको सुदृढीकरण (SAAN)’ परियोजना औपचारिक रूपमा सञ्चालनमा ल्याइएको छ। कञ्चनपुरका पुनर्वास नगरपालिका र लालझाडी गाउँपालिकामा परियोजना शुभारम्भ भएसँगै समुदायस्तरमै पूर्वसूचना प्रणाली, विपद् पूर्वतयारी तथा डिजिटल वित्तीय साक्षरतामा आधारित गतिविधिहरू अघि बढाइने भएको हो। पुनर्वास …

Read More »

पुनर्वासमा पूर्वानुमानमा आधारित पूर्वकार्यको सुदृढीकरण (SAAN) परियोजना  शुभारम्भ

कञ्चनपुरः पुनर्वास नगरपालिका एक यस्तो पालिका हो, जहाँ प्रत्येक मनसुनमा बाढीका कारण बारम्बार क्षति हुँदै आएको छ। यसले जनधनको क्षति मात्र होइन, दीर्घकालीन सामाजिक र आर्थिक असर पनि निम्त्याइरहेको छ। यस्ता संकटहरूको प्रभाव न्यूनीकरण गर्न र क्षतिको पूर्वानुमानको आधारमा प्रभावकारी तयारी गर्न पूर्वानुमानमा आधारित सूचना (Early Warning) र जोखिम मूल्यांकनको …

Read More »

कैलालीको भजनीमा ‘SAAN’ परियोजना शुभारम्भ: विपद् व्यवस्थापनका लागि पूर्वानुमान, पूर्वकार्य र प्रतिकार्यमा जोड

कैलालीः कैलालीको भजनी नगरपालिकामा नेपालमा पूर्वानुमानमा आधारित पूर्वकार्यको सुदृढीकरण (SAAN) परियोजनाको शुभारम्भ गरिएको छ। मर्सिकोर नेपालको प्राविधिक सहयोग तथा कोकाकोला फाउण्डेशनको आर्थिक सहयोगमा नेपाल राष्ट्रिय समाज कल्याण संघ (NNSWA) द्वारा यो परियोजना सुरू गरिएको हो। भजनी नगपालिकाको सभा हलमा प्रमुख प्रशासकीय अधिकृत नीलमकुमार न्यौपानेको अध्यक्षतामा सम्पन्न भएको परियोजनाको औपचारिक शुभारम्भ …

Read More »

शिक्षामा प्रविधिको समावेशीकरणका लागि महेन्द्रनगरमा ऐतिहासिक छलफल

कञ्चनपुरः कञ्चनपुरको महेन्द्रनगरमा ‘एड-टेक राउन्ड टेबल’ कार्यक्रम सफलतापूर्वक सम्पन्न भएको छ। नेपालको शिक्षा प्रणालीमा प्रविधि समावेशीकरण गर्ने उद्देश्यसहित नोट स्विफ्ट प्रालिको आयोजनामा ‘एड-टेक राउन्ड टेबल’ कार्यक्रममा सम्पन्न गरिएको हो। “फर दि फ्युचर अफ एजुकेसन इन नेपाल” भन्ने मूल नाराका साथ आयोजित सो कार्यक्रममा शिक्षा क्षेत्रका विशिष्ट व्यक्तित्वहरूको सक्रिय सहभागिता रहेको …

Read More »

पूर्वानुमानमा आधारित पूर्वकार्य सुदृढीकरणका लागि ‘सान’ परियोजना सञ्चालनमा

कैलालीः कैलालीको चुरे गाउँपालिकामा नेपालमा पूर्वानुमानमा आधारित पूर्वकार्यको सुदृढीकरण (सान) परियोजनाको शुभारम्भ गरिएको छ। चुरे गाउँपालिकाको सभा हलमा आयोजित एक कार्यक्रमका बीच परियोजनाको औपचारिक शुभारम्भ गरिएको हो। मर्सिकोर नेपालको प्राविधिक सहयोग तथा कोकाकोला फाउण्डेशनको आर्थिक सहयोगमा नेपाल राष्ट्रिय समाज कल्याण संघ (एनएनएसडब्ल्यूए) द्वारा यो परियोजना सुरू गरिएको हो। सान परियोजनाका …

Read More »

दोधारा–चाँदनी क्षेत्रका विद्यार्थीका लागि सार्क एजुकेसन फाउन्डेसनको नयाँ बस सेवा सुरु

कञ्चनपुरः कञ्चनपुरको प्रतिष्ठित शैक्षिक संस्था सार्क एजुकेसन फाउन्डेसनले यस शैक्षिक सत्र २०८२ देखि दोधारा–चाँदनी क्षेत्रका लागि नयाँ सुविधा सहितको विद्यालय बस सेवा सञ्चालनमा ल्याएको छ। सार्क एजुकेसन फाउन्डेसनले जनाए अनुसार, दोधारा चाँदनी क्षेत्रका विद्यार्थी र अभिभावकहरूको विशेष अनुरोध तथा विद्यालयको गुणस्तरीय शैक्षिक सेवाको पहुँच विस्तार गर्ने उद्देश्यले यो बस सेवा …

Read More »

कृष्णपुरमा स्थानीय योजना तर्जुमा प्रक्रियामा सीडीएमसीको भुमिका तथा जिम्मेवारीसम्बन्धी अभिमुखिकरण

कञ्चनपुरः कञ्चनपुरको कृष्णपुर नगरपालिका वडा नम्बर २ मा स्थानीय योजना तर्जुमा प्रक्रियामा सीडीएमसीको भुमिका तथा जिम्मेवारीसम्बन्धी अभिमुखिकरण कार्यक्रम सम्पन्न भएको छ। नेपाल राष्ट्रिय समाज कल्याण संघ (एनएनएसडब्ल्यूए) र मर्सिकोर नेपालद्वारा सञ्चालित जलवायु उत्थानशिल समुदाय (सीआरसी) परियोजनाको आयोजना तथा कृष्णपुर नगरपालिका वडा नम्बर २ को समन्वयमा बन्द नदि सामुदायिक विपद् व्यवस्थापन …

Read More »

महाकाली नदी चार लेन पुलमा कलर कोडसहितको गेज मिटर स्थापना

कञ्चनपुरः महाकाली नदीमा कलर कोडसहितको गेज मिटर स्थापनाको प्रक्रिया सुरू गरिएको छ। नेपाल राष्ट्रिय समाज कल्याण संघ (एनएनएसडब्ल्यूए) र डीसीए तथा स्थानीय पालिकासँगको सहकार्यमा जल तथा मौसम विज्ञान विभाग, महाकाली बेसिन फिल्ड कार्यालय अत्तरियाले महाकाली नदीको चार लेन पुलमा नेपालमै पहिलो पटक कलर कोडसहितको गेज मिटर स्थापनाको प्रक्रिया सुरु गरेको …

Read More »