Sha256: 63004b92692805a6332f17eda41d30508b38266f18984f9fcd2dce62da5ade66

Contents?: true

Size: 915 Bytes

Versions: 22

Compression:

Stored size: 915 Bytes

Contents

/*
Copyright (c) 2003-2009, 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

22 entries across 22 versions & 6 rubygems

Version Path
browsercms-3.3.4 public/bcms/ckeditor/core/htmlparser/cdata.js
browsercms-3.4.0.rc2 vendor/assets/javascripts/bcms/ckeditor/core/htmlparser/cdata.js
browsercms-3.4.0.rc1 vendor/assets/javascripts/bcms/ckeditor/core/htmlparser/cdata.js
browsercms-3.3.3 public/bcms/ckeditor/core/htmlparser/cdata.js
browsercms-3.1.5 public/bcms/ckeditor/core/htmlparser/cdata.js
browsercms-3.1.4 public/bcms/ckeditor/core/htmlparser/cdata.js
browsercms-3.3.2 public/bcms/ckeditor/core/htmlparser/cdata.js
browsercms-3.3.1 public/bcms/ckeditor/core/htmlparser/cdata.js
browsercms-3.3.0 public/bcms/ckeditor/core/htmlparser/cdata.js
browsercms-3.1.3 public/bcms/ckeditor/core/htmlparser/cdata.js
browsercms-3.3.0.beta public/bcms/ckeditor/core/htmlparser/cdata.js
bcms_content_syncing-1.0.0 public/bcms/ckeditor/core/htmlparser/cdata.js
drujensen-browsercms-3.2.0 public/bcms/ckeditor/core/htmlparser/cdata.js
browsercmsi-3.1.2 public/bcms/ckeditor/core/htmlparser/cdata.js
browsercms-3.1.2 public/bcms/ckeditor/core/htmlparser/cdata.js
browsercms-3.1.1 public/bcms/ckeditor/core/htmlparser/cdata.js
browsercmsi-3.1.1 public/bcms/ckeditor/core/htmlparser/cdata.js
browsercmsi-3.1.0 public/bcms/ckeditor/core/htmlparser/cdata.js
browsercms-3.1.0 public/bcms/ckeditor/core/htmlparser/cdata.js
bcms_fckeditor-1.0.1 public/bcms/ckeditor/core/htmlparser/cdata.js