Sha256: 3cc7b59d8685383a935b0def614128a289e94e3f0464e41b2eda99473f4ed04f

Contents?: true

Size: 913 Bytes

Versions: 88

Compression:

Stored size: 913 Bytes

Contents

/*
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/

(function()
{

	/**
	 * A lightweight representation of HTML text.
	 * @constructor
	 * @example
	 */
	CKEDITOR.htmlParser.cdata = function( value )
	{
		/**
		 * The CDATA value.
		 * @type String
		 * @example
		 */
		this.value = value;
	};

	CKEDITOR.htmlParser.cdata.prototype =
	{
		/**
		 * CDATA has the same type as {@link CKEDITOR.htmlParser.text} This is
		 * a constant value set to {@link CKEDITOR.NODE_TEXT}.
		 * @type Number
		 * @example
		 */
		type : CKEDITOR.NODE_TEXT,

		/**
		 * Writes write the CDATA with no special manipulations.
		 * @param {CKEDITOR.htmlWriter} writer The writer to which write the HTML.
		 */
		writeHtml : function( writer )
		{
			writer.write( this.value );
		}
	};
})();

Version data entries

88 entries across 85 versions & 9 rubygems

Version Path
classiccms-0.3.6 lib/classiccms/public/js/ckeditor/_source/core/htmlparser/cdata.js
classiccms-0.3.5 lib/classiccms/public/js/ckeditor/_source/core/htmlparser/cdata.js
classiccms-0.3.4 lib/classiccms/public/js/ckeditor/_source/core/htmlparser/cdata.js
classiccms-0.3.3 lib/classiccms/public/js/ckeditor/_source/core/htmlparser/cdata.js
classiccms-0.3.2 lib/classiccms/public/js/ckeditor/_source/core/htmlparser/cdata.js
classiccms-0.3.1 lib/classiccms/public/js/ckeditor/_source/core/htmlparser/cdata.js
classiccms-0.3.0 lib/classiccms/public/js/ckeditor/_source/core/htmlparser/cdata.js
classiccms-0.2.4.pre lib/classiccms/public/js/ckeditor/_source/core/htmlparser/cdata.js
padrino-cms-0.1.1 lib/padrino-cms/public/admin/javascripts/ckeditor/_source/core/htmlparser/cdata.js
padrino-cms-0.1.1 lib/padrino-cms/generators/templates/public/admin/javascripts/ckeditor/_source/core/htmlparser/cdata.js
refinerycms-ckeditor-0.1.4 app/assets/javascripts/ckeditor/_source/core/htmlparser/cdata.js
refinerycms-ckeditor-0.1.3 app/assets/javascripts/ckeditor/_source/core/htmlparser/cdata.js
refinerycms-ckeditor-0.1.2 app/assets/javascripts/ckeditor/_source/core/htmlparser/cdata.js
refinerycms-ckeditor-0.1.1 app/assets/javascripts/ckeditor/_source/core/htmlparser/cdata.js
refinerycms-ckeditor-0.1.0 app/assets/javascripts/ckeditor/_source/core/htmlparser/cdata.js
rich-1.0.3 vendor/assets/ckeditor/ckeditor/_source/core/htmlparser/cdata.js
rich-1.0.2 vendor/assets/ckeditor/ckeditor/_source/core/htmlparser/cdata.js
rich-1.0.1 vendor/assets/ckeditor/ckeditor/_source/core/htmlparser/cdata.js
rich-1.0.0 vendor/assets/ckeditor/ckeditor/_source/core/htmlparser/cdata.js
quic_cms-0.1.4 app/assets/javascripts/quic_cms/ckeditor/_source/core/htmlparser/cdata.js