Software: Apache/2.2.22 (Debian). PHP/5.6.36 uname -a: Linux h05.hvosting.ua 4.9.110-amd64 #3 SMP Sun Nov 4 16:27:09 UTC 2018 x86_64 uid=1389(h33678) gid=1099(h33678) groups=1099(h33678),502(mgrsecure) Safe-mode: OFF (not secure) /home/h33678/data/www/old.zt-rada.gov.ua/modules-alien/~ckeditor/_source/core/htmlparser/ drwxrwxrwx |
Viewing file: Select action/file-type: /* Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ /** * A lightweight representation of an HTML comment. * @constructor * @example */ CKEDITOR.htmlParser.comment = function( value ) { /** * The comment text. * @type String * @example */ this.value = value; /** @private */ this._ = { isBlockLike : false }; }; CKEDITOR.htmlParser.comment.prototype = { /** * The node type. This is a constant value set to {@link CKEDITOR.NODE_COMMENT}. * @type Number * @example */ type : CKEDITOR.NODE_COMMENT, /** * Writes the HTML representation of this comment to a CKEDITOR.htmlWriter. * @param {CKEDITOR.htmlWriter} writer The writer to which write the HTML. * @example */ writeHtml : function( writer, filter ) { var comment = this.value; if ( filter ) { if ( !( comment = filter.onComment( comment, this ) ) ) return; if ( typeof comment != 'string' ) { comment.parent = this.parent; comment.writeHtml( writer, filter ); return; } } writer.comment( comment ); } }; |
:: Command execute :: | |
--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by PinoyWH1Z | C99Shell Github | Generation time: 0.0405 ]-- |