/** * 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 259 of 270 - सबै खबर एकै ठाँउमा
Breaking News

अर्थमन्त्री पौडेलको आह्वानः नेपाल लगानीका दृष्टिकोणले सुरक्षित छ, लगानी बढाउनुस्

काठमाण्डौ, 22 नोभेम्बर, 2024 उपप्रधानमन्त्री एवं अर्थमन्त्री विष्णुप्रसाद पौडेलले नेपाल लगानीका दृष्टिकोणले सुरक्षित मुलुकका रुपमा प्रमाणित भएको बताउनुभएको छ । शुक्रवार मन्त्रालयमा आयोजित पत्रकार सम्मेलनमा उहाँले यस्तो दाबी गर्नुभएको हो । उहाँले सार्वभौम क्रेडिट रेटिङको नतिजासँगै नेपाल लगानीका लागि सुरक्षित रहेको प्रमाणित हुने जिकिर गर्नुभयो । उहाँले क्रेडिट रेटिङको काम …

Read More »

दोधारा चाँदनीमा ‘मंसिरे पूर्णिमा जात्रा’ सम्पन्न

कञ्चनपुरः कञ्चनपुरको दोधारा चाँदनी नगरपालिकामा ‘मंसिरे पूर्णिमा जात्रा‘ सम्पन्न भएको छ। नयाँ खाद्यान्न आफूले उपभोग गर्नुभन्दा पहिले देवता र पितृलाई अर्पण गर्ने परम्पराअनुसार दोधारा चाँदनी नगरपालिका क्षेत्रमा मंसिर शुक्ल पक्ष अर्थात मंसिरे पूर्णिमा मनाईने गरिन्छ। दोधारा चाँदनी नगरपालिकाको वडा नं. ७ बाबाथान बजार क्षेत्रमा परम्परागत रूपमा सञ्चालन हुँदै आएको मंसिरे …

Read More »

सुदूरपश्चिम प्रदेशको टोलीद्वारा बाग्मती प्रदेशका शारीरिक पुनर्स्थापना केन्द्रहरूको अवलोकन

14 नोभेम्बर 2024, कञ्चनपुर सुदूरपश्चिम प्रदेशको टोलीले बाग्मती प्रदेशका शारीरिक पुनर्स्थापना केन्द्रहरूको अवलोकन गरेको छ। नेपाल राष्ट्रिय समाज कल्याण संघ (एनएनएसडब्ल्यूए) शारीरिक पुनर्स्थापना केन्द्र र ह्याण्डीक्याप इन्टरनेशलन/यूएसएआईडी फिजिकल रिहाबिलिटेशन एक्टिभिटी परियोजनाको संयुक्त आयोजनामा सुदूरपश्चिम प्रदेशको टोलीले बाग्मती प्रदेशका शारीरिक पुनर्स्थापना केन्द्रहरूको अवलोकन भ्रमण गरेको हो। नेपाल राष्ट्रिय समाज कल्याण संघ …

Read More »

उदयदेव बहुउद्देश्यीय सहकारीको २६ औँ इकाइगत वार्षीक साधारण सभा सम्पन्न

कञ्चनपुरः उदयदेव बहुउद्देश्यीय सहकारी संस्था लिमिटेड दोधारा चाँदनी शाखाले २६ औँ इकाइगत वार्षीक साधारण सभा सम्पन्न गरेको छ। कञ्चनपुरको दोधारा चाँदनी नगरपालिकामा मंगलबार संस्थाका सञ्चालक समिति उपाध्यक्ष निरञ्जन प्रसाद भट्टको सभापतित्व तथा दोधारा चाँदनी नगरपालिकाका नगर प्रमुख किशोर कुमार लिम्बुको प्रमुख आतिथ्यमा उदयदेव बहुउद्देश्यीय सहकारी संस्था लिमिटेडको इकाइगत वार्षीक साधारण …

Read More »

बलम्बुमा महालक्ष्मी जात्रा शुरु (फोटोफिचर)

12 नोभेम्बर 2024, काठमाण्डौ चन्द्रागिरि नगरपालिकाको बलम्बुमा महालक्ष्मी जात्रा शुरु भएको छ । बलम्बु महालक्ष्मी जात्रा काठमाडौं उपत्यकाको प्राचिन र महत्वपूर्ण जात्रा हो । यो जात्रासँग यस क्षेत्रका नेवार समुदाय मात्र नभएर अन्य जातिका रैथानेहरू पनि अभिन्न रूपमा गाँसिएका छन् । बलम्बुको जात्रालाई ‘लाः तिइ मह्’ जात्रा भनिन्छ । यो …

Read More »

दोधारामा सञ्चालनमा रहेको शहरी विकासका योजनाको मेयर लिम्बुद्वारा अनुगमन

कञ्चनपुरः कञ्चनपुरको दोधारा चाँदनी नगरपालिकामा शहरी विकास मन्त्रालयअन्तर्गत ३ वटा निर्माण योजना सुरू गरिएको छ। दोधारा चाँदनी नगरपालिकाको वडा नं. २ मा आय आर्जन भवन सँगै प्याराफिट निर्माण, विभिन्न वडाहरूमा पक्की सडक निर्माण र वडा नं. ७ मा आय आर्जन भवन निर्माण कार्य सुरू गरिएको छ। दोधारा चाँदनी नगरपालिकाका नगर …

Read More »

दोधारामा शैक्षिक गुणस्तर सुधारका लागि मेयर लिम्बुको छड्के

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

Read More »

पूर्वमन्त्री लिलावल्लभ अधिकारीलाई काठमाडौं ल्याइयो

10 नोभेम्बर 2024, काठमाण्डौ पूर्वमन्त्री एवं नेकपा एमालेका कोशी प्रदेश सांसद लिलावल्लभ अधिकारीलाई अनुसन्धानका लागि काठमाडौं ल्याइएको छ ।आईतवार विराटनगरमा निजी निवासबाट पक्राउ गरी थप अनुसन्धानका लागि उहाँलाई काठमाडौं ल्याइएको हो । मानव तस्करी प्रकरणमा मुछिएको आरोपमा उहाँलाई प्रहरीले बरगाछीस्थित निवासबाट पक्राउ गरेको थियो । जापान भ्रमण मन्त्रीपरिषद्बाट स्वीकृत नगराइ …

Read More »

वैदेशिक रोजगारीको ‘क्रेज’ बढिरहेका बेला आफ्नै माटोमा पौरख, व्यावसायीक तरकारी खेतीबाट मनग्य आम्दानी

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

Read More »

लेबनानमा इजरायली हवाई आक्रमणमा १२ जनाको मृत्यु

10 नोभेम्बर 2024 आइतबार पूर्वी र दक्षिणी लेबनानमा इजरायली हवाई आक्रमणमा १२ जनाको मृत्यु भएको छ । लेबनानी स्रोतकाअनुसार आक्रमणमा अन्य १० जना घाइते भएका छन् । इजरायली युद्धक विमानहरूले दक्षिणी लेबनानमा १५ र पूर्वमा चार थप आक्रमणहरू गरेका छन् । जहेर इब्राहिम अताया नामक प्यारामेडिक दक्षिणी लेबनानको पश्चिममा इस्लामिक …

Read More »