Mini Shell

Direktori : /home/admin/web/mcpv.demarco.ddnsfree.com/public_html/wp-admin/js/
Upload File :
Current File : /home/admin/web/mcpv.demarco.ddnsfree.com/public_html/wp-admin/js/word-count.js

/**
 * Word or character counting functionality. Count words or characters in a
 * provided text string.
 *
 * @namespace wp.utils
 *
 * @since 2.6.0
 * @output wp-admin/js/word-count.js
 */

( function() {
	/**
	 * Word counting utility
	 *
	 * @namespace wp.utils.wordcounter
	 * @memberof  wp.utils
	 *
	 * @class
	 *
	 * @param {Object} settings                                   Optional. Key-value object containing overrides for
	 *                                                            settings.
	 * @param {RegExp} settings.HTMLRegExp                        Optional. Regular expression to find HTML elements.
	 * @param {RegExp} settings.HTMLcommentRegExp                 Optional. Regular expression to find HTML comments.
	 * @param {RegExp} settings.spaceRegExp                       Optional. Regular expression to find irregular space
	 *                                                            characters.
	 * @param {RegExp} settings.HTMLEntityRegExp                  Optional. Regular expression to find HTML entities.
	 * @param {RegExp} settings.connectorRegExp                   Optional. Regular expression to find connectors that
	 *                                                            split words.
	 * @param {RegExp} settings.removeRegExp                      Optional. Regular expression to find remove unwanted
	 *                                                            characters to reduce false-positives.
	 * @param {RegExp} settings.astralRegExp                      Optional. Regular expression to find unwanted
	 *                                                            characters when searching for non-words.
	 * @param {RegExp} settings.wordsRegExp                       Optional. Regular expression to find words by spaces.
	 * @param {RegExp} settings.characters_excluding_spacesRegExp Optional. Regular expression to find characters which
	 *                                                            are non-spaces.
	 * @param {RegExp} settings.characters_including_spacesRegExp Optional. Regular expression to find characters
	 *                                                            including spaces.
	 * @param {RegExp} settings.shortcodesRegExp                  Optional. Regular expression to find shortcodes.
	 * @param {Object} settings.l10n                              Optional. Localization object containing specific
	 *                                                            configuration for the current localization.
	 * @param {string} settings.l10n.type                         Optional. Method of finding words to count.
	 * @param {Array}  settings.l10n.shortcodes                   Optional. Array of shortcodes that should be removed
	 *                                                            from the text.
	 *
	 * @return {void}
	 */
	function WordCounter( settings ) {
		var key,
			shortcodes;

		// Apply provided settings to object settings.
		if ( settings ) {
			for ( key in settings ) {

				// Only apply valid settings.
				if ( settings.hasOwnProperty( key ) ) {
					this.settings[ key ] = settings[ key ];
				}
			}
		}

		shortcodes = this.settings.l10n.shortcodes;

		// If there are any localization shortcodes, add this as type in the settings.
		if ( shortcodes && shortcodes.length ) {
			this.settings.shortcodesRegExp = new RegExp( '\\[\\/?(?:' + shortcodes.join( '|' ) + ')[^\\]]*?\\]', 'g' );
		}
	}

	// Default settings.
	WordCounter.prototype.settings = {
		HTMLRegExp: /<\/?[a-z][^>]*?>/gi,
		HTMLcommentRegExp: /<!--[\s\S]*?-->/g,
		spaceRegExp: /&nbsp;|&#160;/gi,
		HTMLEntityRegExp: /&\S+?;/g,

		// \u2014 = em-dash.
		connectorRegExp: /--|\u2014/g,

		// Characters to be removed from input text.
		removeRegExp: new RegExp( [
			'[',

				// Basic Latin (extract).
				'\u0021-\u0040\u005B-\u0060\u007B-\u007E',

				// Latin-1 Supplement (extract).
				'\u0080-\u00BF\u00D7\u00F7',

				/*
				 * The following range consists of:
				 * General Punctuation
				 * Superscripts and Subscripts
				 * Currency Symbols
				 * Combining Diacritical Marks for Symbols
				 * Letterlike Symbols
				 * Number Forms
				 * Arrows
				 * Mathematical Operators
				 * Miscellaneous Technical
				 * Control Pictures
				 * Optical Character Recognition
				 * Enclosed Alphanumerics
				 * Box Drawing
				 * Block Elements
				 * Geometric Shapes
				 * Miscellaneous Symbols
				 * Dingbats
				 * Miscellaneous Mathematical Symbols-A
				 * Supplemental Arrows-A
				 * Braille Patterns
				 * Supplemental Arrows-B
				 * Miscellaneous Mathematical Symbols-B
				 * Supplemental Mathematical Operators
				 * Miscellaneous Symbols and Arrows
				 */
				'\u2000-\u2BFF',

				// Supplemental Punctuation.
				'\u2E00-\u2E7F',
			']'
		].join( '' ), 'g' ),

		// Remove UTF-16 surrogate points, see https://en.wikipedia.org/wiki/UTF-16#U.2BD800_to_U.2BDFFF
		astralRegExp: /[\uD800-\uDBFF][\uDC00-\uDFFF]/g,
		wordsRegExp: /\S\s+/g,
		characters_excluding_spacesRegExp: /\S/g,

		/*
		 * Match anything that is not a formatting character, excluding:
		 * \f = form feed
		 * \n = new line
		 * \r = carriage return
		 * \t = tab
		 * \v = vertical tab
		 * \u00AD = soft hyphen
		 * \u2028 = line separator
		 * \u2029 = paragraph separator
		 */
		characters_including_spacesRegExp: /[^\f\n\r\t\v\u00AD\u2028\u2029]/g,
		l10n: window.wordCountL10n || {}
	};

	/**
	 * Counts the number of words (or other specified type) in the specified text.
	 *
	 * @since 2.6.0
	 *
	 * @memberof wp.utils.wordcounter
	 *
	 * @param {string}  text Text to count elements in.
	 * @param {string}  type Optional. Specify type to use.
	 *
	 * @return {number} The number of items counted.
	 */
	WordCounter.prototype.count = function( text, type ) {
		var count = 0;

		// Use default type if none was provided.
		type = type || this.settings.l10n.type;

		// Sanitize type to one of three possibilities: 'words', 'characters_excluding_spaces' or 'characters_including_spaces'.
		if ( type !== 'characters_excluding_spaces' && type !== 'characters_including_spaces' ) {
			type = 'words';
		}

		// If we have any text at all.
		if ( text ) {
			text = text + '\n';

			// Replace all HTML with a new-line.
			text = text.replace( this.settings.HTMLRegExp, '\n' );

			// Remove all HTML comments.
			text = text.replace( this.settings.HTMLcommentRegExp, '' );

			// If a shortcode regular expression has been provided use it to remove shortcodes.
			if ( this.settings.shortcodesRegExp ) {
				text = text.replace( this.settings.shortcodesRegExp, '\n' );
			}

			// Normalize non-breaking space to a normal space.
			text = text.replace( this.settings.spaceRegExp, ' ' );

			if ( type === 'words' ) {

				// Remove HTML Entities.
				text = text.replace( this.settings.HTMLEntityRegExp, '' );

				// Convert connectors to spaces to count attached text as words.
				text = text.replace( this.settings.connectorRegExp, ' ' );

				// Remove unwanted characters.
				text = text.replace( this.settings.removeRegExp, '' );
			} else {

				// Convert HTML Entities to "a".
				text = text.replace( this.settings.HTMLEntityRegExp, 'a' );

				// Remove surrogate points.
				text = text.replace( this.settings.astralRegExp, 'a' );
			}

			// Match with the selected type regular expression to count the items.
			text = text.match( this.settings[ type + 'RegExp' ] );

			// If we have any matches, set the count to the number of items found.
			if ( text ) {
				count = text.length;
			}
		}

		return count;
	};

	// Add the WordCounter to the WP Utils.
	window.wp = window.wp || {};
	window.wp.utils = window.wp.utils || {};
	window.wp.utils.WordCounter = WordCounter;
} )();
6-inch laptop computer inside – Base de données MCPV "Prestataires"

6-inch laptop computer inside

Best Replica Handbags Outlet Usa, Pretend Designer Bags Shops

These luggage are normally produced from low cost materials and poor craftsmanship. They often characteristic designs and logos that are recognizably flawed (‘Lewis Vuitton’ anyone?). Choose respected sellers, and examine buyer reviews/recommendations to search out high-quality replicas. We Professional Replicas Bags and Shoes Online Shop only promote top quality and brand new Replica Bags and Shoes porducts for both males and women!

However, most of those superfakes are made in factories and places with no type of labor restrictions. The rise of superfakes factors a spotlight at labor malpractice and even cases of child abuse that might be behind these superfake purses. While they might be cheaper replica bags, they arrive at an expense on the human level. She echoed numerous ladies I spoke with who suppose authentic clients are the ones getting played. “These days replica bags online, the reps simply are typically better made,” a Hamptons-based chief technique officer tells me. “They last longer.

Conversely replica bags, counterfeits typically come from exploitative, unregulated production environments with zero regard for ethics or the environment. Stay forward of the style game and be part of my weblog subscription to unlock exclusive bag critiques, fashion trends, and more. If my bag will get scratched or the liner gets stained with ink, no biggie. I put on nice sunglasses to the seaside and don’t stress about it…everything is just easier and extra carefree! That means I truly use the gadgets a hundred instances more and truly focus on what I’m doing quite than babying stuff.

You’ve just about obtained to know someone who’s already purchased one to get the contact information for a seller. No specific identified brand, just one that was available in a extensively known native buying heart that supposedly was of nice high quality. If we really get all the way down to brass tacks, the value proposition of buying auth isn’t holding up for almost all of those luxury purchases. A larger number of affluent individuals are jumping on the faux handbag bandwagon. So, don’t put too much belief in these anti-counterfeit features.

It has a main inside pocket and sufficient room for a 15.6-inch laptop computer inside, along with a separate doc pocket replica bags, 2 pen pockets, and 2 interior open item pockets. It additionally comes in 5 other colour choices if you’re not a fan of this one. In terms of decoration, this bag also features gold-tone hardware. This Michael Kors Emilia Pebbled Leather satchel is a inexpensive alternative to the bag above and an excellent everyday bag to carry all your essentials.

I seldom use my genuine for journey particularly my Chanel or any genuine bags that are shiny color. They’re an enormous manufacturing unit, providing not only bags of varied brands but also clothing, footwear, earrings, bracelets Replica Handbags, and necklaces. Buying a high-quality replica Hermes bag may be tough, but with the proper suggestions, yow will discover one that closely matches the real deal. The reproduction is hand-stitched as properly and I suppose the stitching looks fairly good compared to the authentic. Since real Birkin luggage are super dear and hard to get, a lot of trend followers go for high-quality knock-offs as an alternative. The Birkin bag is a classic handbag from the posh French brand Hermès, launched in 1986.

They are a one-stop for elevated essentials that mimics luxe fashion. But don’t count on the best finish fabrics and supplies for such an accessible worth. Shein is an ultra-fast fashion e-tailer that churns out nearly scary low cost designer knockoffs. Our company at Replica Bags crafts our YSL replicas with essentially the most durable supplies.

Given that our accessories, especially handbags, are really a personal statement of favor fake bags, our selection undoubtedly should not be taken frivolously. Gucci is among the hottest manufacturers, and for those who cannot afford the real thing, there are some excellent, high-quality Gucci duplicate handbags to select from. Experience top-brand Louis Vuitton fakes that look authentic!

Inspired-by replicas have a slightly different graphic, pattern, or design than the unique. Colors and accent details can also differ from the inspiring design. On a designer-inspired purse, the emblem might be altered from that of the designer so as to not violate copyright regulation. If it’s a ‘faux replica bags,’ the brand will not be noticeably altered and can attempt to be as close to potential to the real logo to fool consumers. Owning a replica bag as an alternative of an genuine designer item may cut back the chance of theft, as it is much less useful. Additionally, shedding a duplicate bag could be less financially devastating than losing an costly genuine bag.

Best Replica Handbags Outlet Usa, Pretend Designer Bags Shops These luggage are normally produced from low cost materials and poor craftsmanship. They often characteristic designs and logos that are recognizably flawed (‘Lewis Vuitton’ anyone?). Choose respected sellers, and examine buyer reviews/recommendations to search out high-quality replicas. We Professional Replicas Bags and Shoes Online Shop only…

Leave a Reply

Your email address will not be published. Required fields are marked *