Lines Matching refs:FCKXHtml

24 var FCKXHtml = new Object() ;  class
26 FCKXHtml.CurrentJobNum = 0 ;
28 FCKXHtml.GetXHTML = function( node, includeNode, format )
42 FCKXHtml.SpecialBlocks = new Array() ;
50 FCKXHtml.CurrentJobNum++ ;
83 for ( var i = 0 ; i < FCKXHtml.SpecialBlocks.length ; i++ )
86 sXHTML = sXHTML.replace( oRegex, FCKXHtml.SpecialBlocks[i] ) ;
100 FCKXHtml._AppendAttribute = function( xmlNode, attributeName, attributeValue )
126 FCKXHtml._AppendChildNodes = function( xmlNode, htmlNode, isBlockElement )
174 FCKXHtml._AppendNode = function( xmlNode, htmlNode )
192 return FCKXHtml._AppendNode( xmlNode, this.XML.createTextNode( val ) ) ;
198 return FCKXHtml._AppendNode( xmlNode, FCK.GetRealElement( htmlNode ) ) ;
233 if ( htmlNode._fckxhtmljob && htmlNode._fckxhtmljob == FCKXHtml.CurrentJobNum )
239 FCKXHtml._AppendAttributes( xmlNode, htmlNode, oNode, sNodeName ) ;
241 htmlNode._fckxhtmljob = FCKXHtml.CurrentJobNum ;
244 var oTagProcessor = FCKXHtml.TagProcessors[ sNodeName ] ;
284 FCKXHtml._AppendSpecialItem = function( item )
286 return '___FCKsi___' + FCKXHtml.SpecialBlocks.AddItem( item ) ;
289 FCKXHtml._AppendEntity = function( xmlNode, entity )
294 FCKXHtml._AppendTextNode = function( targetNode, textValue )
313 FCKXHtml.TagProcessors =
319 FCKXHtml._AppendAttribute( node, 'alt', '' ) ;
323 FCKXHtml._AppendAttribute( node, 'src', sSavedUrl ) ;
336 FCKXHtml._AppendAttribute( node, 'href', sSavedUrl ) ;
344 FCKXHtml._AppendAttribute( node, 'name', htmlNode.name ) ;
347 node = FCKXHtml._AppendChildNodes( node, htmlNode, false ) ;
356 FCKXHtml._AppendAttribute( node, 'type', 'text/javascript' ) ;
358 node.appendChild( FCKXHtml.XML.createTextNode( FCKXHtml._AppendSpecialItem( htmlNode.text ) ) ) ;
367 FCKXHtml._AppendAttribute( node, 'type', 'text/css' ) ;
373 node.appendChild( FCKXHtml.XML.createTextNode( FCKXHtml._AppendSpecialItem( cssText ) ) ) ;
385 node.appendChild( FCKXHtml.XML.createTextNode( FCKXHtml._AppendSpecialItem( '\r\n' + val ) ) ) ;
387 FCKXHtml._AppendNode( node, item ) ;
394 node.appendChild( FCKXHtml.XML.createTextNode( FCK.EditorDocument.title ) ) ;
413 FCKXHtml._AppendNode( ePSibling, htmlNode ) ;
417 node = FCKXHtml._AppendChildNodes( node, htmlNode ) ;
428 node = FCKXHtml._AppendChildNodes( node, htmlNode, false ) ;
446 node.appendChild( FCKXHtml.XML.createTextNode( FCKXHtml._AppendSpecialItem( sHtml ) ) ) ;
453 node = FCKXHtml._AppendChildNodes( node, htmlNode, false ) ;
460 FCKXHtml.TagProcessors.ul = FCKXHtml.TagProcessors.ol ;