fckdomtools.js
上传用户:ah_jiwei
上传日期:2022-07-24
资源大小:54044k
文件大小:26k
源码类别:

数据库编程

开发平台:

Visual C++

  1. /*
  2.  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
  3.  * Copyright (C) 2003-2007 Frederico Caldeira Knabben
  4.  *
  5.  * == BEGIN LICENSE ==
  6.  *
  7.  * Licensed under the terms of any of the following licenses at your
  8.  * choice:
  9.  *
  10.  *  - GNU General Public License Version 2 or later (the "GPL")
  11.  *    http://www.gnu.org/licenses/gpl.html
  12.  *
  13.  *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
  14.  *    http://www.gnu.org/licenses/lgpl.html
  15.  *
  16.  *  - Mozilla Public License Version 1.1 or later (the "MPL")
  17.  *    http://www.mozilla.org/MPL/MPL-1.1.html
  18.  *
  19.  * == END LICENSE ==
  20.  *
  21.  * Utility functions to work with the DOM.
  22.  */
  23. var FCKDomTools =
  24. {
  25. MoveChildren : function( source, target, toTargetStart )
  26. {
  27. if ( source == target )
  28. return ;
  29. var eChild ;
  30. if ( toTargetStart )
  31. {
  32. while ( (eChild = source.lastChild) )
  33. target.insertBefore( source.removeChild( eChild ), target.firstChild ) ;
  34. }
  35. else
  36. {
  37. while ( (eChild = source.firstChild) )
  38. target.appendChild( source.removeChild( eChild ) ) ;
  39. }
  40. },
  41. MoveNode : function( source, target, toTargetStart )
  42. {
  43. if ( toTargetStart )
  44. target.insertBefore( FCKDomTools.RemoveNode( source ), target.firstChild ) ;
  45. else
  46. target.appendChild( FCKDomTools.RemoveNode( source ) ) ;
  47. },
  48. // Remove blank spaces from the beginning and the end of the contents of a node.
  49. TrimNode : function( node )
  50. {
  51. this.LTrimNode( node ) ;
  52. this.RTrimNode( node ) ;
  53. },
  54. LTrimNode : function( node )
  55. {
  56. var eChildNode ;
  57. while ( (eChildNode = node.firstChild) )
  58. {
  59. if ( eChildNode.nodeType == 3 )
  60. {
  61. var sTrimmed = eChildNode.nodeValue.LTrim() ;
  62. var iOriginalLength = eChildNode.nodeValue.length ;
  63. if ( sTrimmed.length == 0 )
  64. {
  65. node.removeChild( eChildNode ) ;
  66. continue ;
  67. }
  68. else if ( sTrimmed.length < iOriginalLength )
  69. {
  70. eChildNode.splitText( iOriginalLength - sTrimmed.length ) ;
  71. node.removeChild( node.firstChild ) ;
  72. }
  73. }
  74. break ;
  75. }
  76. },
  77. RTrimNode : function( node )
  78. {
  79. var eChildNode ;
  80. while ( (eChildNode = node.lastChild) )
  81. {
  82. if ( eChildNode.nodeType == 3 )
  83. {
  84. var sTrimmed = eChildNode.nodeValue.RTrim() ;
  85. var iOriginalLength = eChildNode.nodeValue.length ;
  86. if ( sTrimmed.length == 0 )
  87. {
  88. // If the trimmed text node is empty, just remove it.
  89. // Use "eChildNode.parentNode" instead of "node" to avoid IE bug (#81).
  90. eChildNode.parentNode.removeChild( eChildNode ) ;
  91. continue ;
  92. }
  93. else if ( sTrimmed.length < iOriginalLength )
  94. {
  95. // If the trimmed text length is less than the original
  96. // length, strip all spaces from the end by splitting
  97. // the text and removing the resulting useless node.
  98. eChildNode.splitText( sTrimmed.length ) ;
  99. // Use "node.lastChild.parentNode" instead of "node" to avoid IE bug (#81).
  100. node.lastChild.parentNode.removeChild( node.lastChild ) ;
  101. }
  102. }
  103. break ;
  104. }
  105. if ( !FCKBrowserInfo.IsIE )
  106. {
  107. eChildNode = node.lastChild ;
  108. if ( eChildNode && eChildNode.nodeType == 1 && eChildNode.nodeName.toLowerCase() == 'br' )
  109. {
  110. // Use "eChildNode.parentNode" instead of "node" to avoid IE bug (#324).
  111. eChildNode.parentNode.removeChild( eChildNode ) ;
  112. }
  113. }
  114. },
  115. RemoveNode : function( node, excludeChildren )
  116. {
  117. if ( excludeChildren )
  118. {
  119. // Move all children before the node.
  120. var eChild ;
  121. while ( (eChild = node.firstChild) )
  122. node.parentNode.insertBefore( node.removeChild( eChild ), node ) ;
  123. }
  124. return node.parentNode.removeChild( node ) ;
  125. },
  126. GetFirstChild : function( node, childNames )
  127. {
  128. // If childNames is a string, transform it in a Array.
  129. if ( typeof ( childNames ) == 'string' )
  130. childNames = [ childNames ] ;
  131. var eChild = node.firstChild ;
  132. while( eChild )
  133. {
  134. if ( eChild.nodeType == 1 && eChild.tagName.Equals.apply( eChild.tagName, childNames ) )
  135. return eChild ;
  136. eChild = eChild.nextSibling ;
  137. }
  138. return null ;
  139. },
  140. GetLastChild : function( node, childNames )
  141. {
  142. // If childNames is a string, transform it in a Array.
  143. if ( typeof ( childNames ) == 'string' )
  144. childNames = [ childNames ] ;
  145. var eChild = node.lastChild ;
  146. while( eChild )
  147. {
  148. if ( eChild.nodeType == 1 && ( !childNames || eChild.tagName.Equals( childNames ) ) )
  149. return eChild ;
  150. eChild = eChild.previousSibling ;
  151. }
  152. return null ;
  153. },
  154. /*
  155.  * Gets the previous element (nodeType=1) in the source order. Returns
  156.  * "null" If no element is found.
  157.  * @param {Object} currentNode The node to start searching from.
  158.  * @param {Boolean} ignoreSpaceTextOnly Sets how text nodes will be
  159.  * handled. If set to "true", only white spaces text nodes
  160.  * will be ignored, while non white space text nodes will stop
  161.  * the search, returning null. If "false" or omitted, all
  162.  * text nodes are ignored.
  163.  * @param {string[]} stopSearchElements An array of element names that
  164.  * will cause the search to stop when found, returning null.
  165.  * May be omitted (or null).
  166.  * @param {string[]} ignoreElements An array of element names that
  167.  * must be ignored during the search.
  168.  */
  169. GetPreviousSourceElement : function( currentNode, ignoreSpaceTextOnly, stopSearchElements, ignoreElements )
  170. {
  171. if ( !currentNode )
  172. return null ;
  173. if ( stopSearchElements && currentNode.nodeType == 1 && currentNode.nodeName.IEquals( stopSearchElements ) )
  174. return null ;
  175. if ( currentNode.previousSibling )
  176. currentNode = currentNode.previousSibling ;
  177. else
  178. return this.GetPreviousSourceElement( currentNode.parentNode, ignoreSpaceTextOnly, stopSearchElements, ignoreElements ) ;
  179. while ( currentNode )
  180. {
  181. if ( currentNode.nodeType == 1 )
  182. {
  183. if ( stopSearchElements && currentNode.nodeName.IEquals( stopSearchElements ) )
  184. break ;
  185. if ( !ignoreElements || !currentNode.nodeName.IEquals( ignoreElements ) )
  186. return currentNode ;
  187. }
  188. else if ( ignoreSpaceTextOnly && currentNode.nodeType == 3 && currentNode.nodeValue.RTrim().length > 0 )
  189. break ;
  190. if ( currentNode.lastChild )
  191. currentNode = currentNode.lastChild ;
  192. else
  193. return this.GetPreviousSourceElement( currentNode, ignoreSpaceTextOnly, stopSearchElements, ignoreElements ) ;
  194. }
  195. return null ;
  196. },
  197. /*
  198.  * Gets the next element (nodeType=1) in the source order. Returns
  199.  * "null" If no element is found.
  200.  * @param {Object} currentNode The node to start searching from.
  201.  * @param {Boolean} ignoreSpaceTextOnly Sets how text nodes will be
  202.  * handled. If set to "true", only white spaces text nodes
  203.  * will be ignored, while non white space text nodes will stop
  204.  * the search, returning null. If "false" or omitted, all
  205.  * text nodes are ignored.
  206.  * @param {string[]} stopSearchElements An array of element names that
  207.  * will cause the search to stop when found, returning null.
  208.  * May be omitted (or null).
  209.  * @param {string[]} ignoreElements An array of element names that
  210.  * must be ignored during the search.
  211.  */
  212. GetNextSourceElement : function( currentNode, ignoreSpaceTextOnly, stopSearchElements, ignoreElements )
  213. {
  214. while( ( currentNode = this.GetNextSourceNode( currentNode, true ) ) ) // Only one "=".
  215. {
  216. if ( currentNode.nodeType == 1 )
  217. {
  218. if ( stopSearchElements && currentNode.nodeName.IEquals( stopSearchElements ) )
  219. break ;
  220. if ( !ignoreElements || !currentNode.nodeName.IEquals( ignoreElements ) )
  221. return currentNode ;
  222. }
  223. else if ( ignoreSpaceTextOnly && currentNode.nodeType == 3 && currentNode.nodeValue.RTrim().length > 0 )
  224. break ;
  225. }
  226. return null ;
  227. },
  228. /*
  229.  * Get the next DOM node available in source order.
  230.  */
  231. GetNextSourceNode : function( currentNode, startFromSibling, nodeType, stopSearchElement )
  232. {
  233. if ( !currentNode )
  234. return null ;
  235. var node ;
  236. if ( !startFromSibling && currentNode.firstChild )
  237. node = currentNode.firstChild ;
  238. else
  239. {
  240. node = currentNode.nextSibling ;
  241. if ( !node && ( !stopSearchElement || stopSearchElement != currentNode.parentNode ) )
  242. return this.GetNextSourceNode( currentNode.parentNode, true, nodeType, stopSearchElement ) ;
  243. }
  244. if ( nodeType && node && node.nodeType != nodeType )
  245. return this.GetNextSourceNode( node, false, nodeType, stopSearchElement ) ;
  246. return node ;
  247. },
  248. /*
  249.  * Get the next DOM node available in source order.
  250.  */
  251. GetPreviousSourceNode : function( currentNode, startFromSibling, nodeType )
  252. {
  253. if ( !currentNode )
  254. return null ;
  255. var node ;
  256. if ( !startFromSibling && currentNode.lastChild )
  257. node = currentNode.lastChild ;
  258. else
  259. node = ( currentNode.previousSibling || this.GetPreviousSourceNode( currentNode.parentNode, true, nodeType ) ) ;
  260. if ( nodeType && node && node.nodeType != nodeType )
  261. return this.GetPreviousSourceNode( node, false, nodeType ) ;
  262. return node ;
  263. },
  264. // Inserts a element after a existing one.
  265. InsertAfterNode : function( existingNode, newNode )
  266. {
  267. return existingNode.parentNode.insertBefore( newNode, existingNode.nextSibling ) ;
  268. },
  269. GetParents : function( node )
  270. {
  271. var parents = new Array() ;
  272. while ( node )
  273. {
  274. parents.unshift( node ) ;
  275. node = node.parentNode ;
  276. }
  277. return parents ;
  278. },
  279. GetCommonParents : function( node1, node2 )
  280. {
  281. var p1 = this.GetParents( node1 ) ;
  282. var p2 = this.GetParents( node2 ) ;
  283. var retval = [] ;
  284. for ( var i = 0 ; i < p1.length ; i++ )
  285. {
  286. if ( p1[i] == p2[i] )
  287. retval.push( p1[i] ) ;
  288. }
  289. return retval ;
  290. },
  291. GetCommonParentNode : function( node1, node2, tagList )
  292. {
  293. var tagMap = {} ;
  294. if ( ! tagList.pop )
  295. tagList = [ tagList ] ;
  296. while ( tagList.length > 0 )
  297. tagMap[tagList.pop().toLowerCase()] = 1 ;
  298. var commonParents = this.GetCommonParents( node1, node2 ) ;
  299. var currentParent = null ;
  300. while ( ( currentParent = commonParents.pop() ) )
  301. {
  302. if ( tagMap[currentParent.nodeName.toLowerCase()] )
  303. return currentParent ;
  304. }
  305. return null ;
  306. },
  307. GetIndexOf : function( node )
  308. {
  309. var currentNode = node.parentNode ? node.parentNode.firstChild : null ;
  310. var currentIndex = -1 ;
  311. while ( currentNode )
  312. {
  313. currentIndex++ ;
  314. if ( currentNode == node )
  315. return currentIndex ;
  316. currentNode = currentNode.nextSibling ;
  317. }
  318. return -1 ;
  319. },
  320. PaddingNode : null,
  321. EnforcePaddingNode : function( doc, tagName )
  322. {
  323. this.CheckAndRemovePaddingNode( doc, tagName, true ) ;
  324. if ( doc.body.lastChild && ( doc.body.lastChild.nodeType != 1
  325. || doc.body.lastChild.tagName.toLowerCase() == tagName.toLowerCase() ) )
  326. return ;
  327. var node = doc.createElement( tagName ) ;
  328. if ( FCKBrowserInfo.IsGecko && FCKListsLib.NonEmptyBlockElements[ tagName ] )
  329. FCKTools.AppendBogusBr( node ) ;
  330. this.PaddingNode = node ;
  331. if ( doc.body.childNodes.length == 1
  332. && doc.body.firstChild.nodeType == 1
  333. && doc.body.firstChild.tagName.toLowerCase() == 'br'
  334. && ( doc.body.firstChild.getAttribute( '_moz_dirty' ) != null
  335. || doc.body.firstChild.getAttribute( 'type' ) == '_moz' ) )
  336. doc.body.replaceChild( node, doc.body.firstChild ) ;
  337. else
  338. doc.body.appendChild( node ) ;
  339. },
  340. CheckAndRemovePaddingNode : function( doc, tagName, dontRemove )
  341. {
  342. var paddingNode = this.PaddingNode ;
  343. if ( ! paddingNode )
  344. return ;
  345. // If the padding node is changed, remove its status as a padding node.
  346. if ( paddingNode.parentNode != doc.body
  347. || paddingNode.tagName.toLowerCase() != tagName
  348. || ( paddingNode.childNodes.length > 1 )
  349. || ( paddingNode.firstChild && paddingNode.firstChild.nodeValue != 'xa0'
  350. && String(paddingNode.firstChild.tagName).toLowerCase() != 'br' ) )
  351. {
  352. this.PaddingNode = null ;
  353. return ;
  354. }
  355. // Now we're sure the padding node exists, and it is unchanged, and it
  356. // isn't the only node in doc.body, remove it.
  357. if ( !dontRemove )
  358. {
  359. if ( paddingNode.parentNode.childNodes.length > 1 )
  360. paddingNode.parentNode.removeChild( paddingNode ) ;
  361. this.PaddingNode = null ;
  362. }
  363. },
  364. HasAttribute : function( element, attributeName )
  365. {
  366. if ( element.hasAttribute )
  367. return element.hasAttribute( attributeName ) ;
  368. else
  369. {
  370. var att = element.attributes[ attributeName ] ;
  371. return ( att != undefined && att.specified ) ;
  372. }
  373. },
  374. /**
  375.  * Checks if an element has "specified" attributes.
  376.  */
  377. HasAttributes : function( element )
  378. {
  379. var attributes = element.attributes ;
  380. for ( var i = 0 ; i < attributes.length ; i++ )
  381. {
  382. if ( FCKBrowserInfo.IsIE && attributes[i].nodeName == 'class' )
  383. {
  384. // IE has a strange bug. If calling removeAttribute('className'), 
  385. // the attributes collection will still contain the "class"
  386. // attribute, which will be marked as "specified", even if the
  387. // outerHTML of the element is not displaying the class attribute.
  388. // Note : I was not able to reproduce it outside the editor,
  389. // but I've faced it while working on the TC of #1391.
  390. if ( element.className.length > 0 )
  391. return true ;
  392. }
  393. else if ( attributes[i].specified )
  394. return true ;
  395. }
  396. return false ;
  397. },
  398. /**
  399.  * Remove an attribute from an element.
  400.  */
  401. RemoveAttribute : function( element, attributeName )
  402. {
  403. if ( FCKBrowserInfo.IsIE && attributeName.toLowerCase() == 'class' )
  404. attributeName = 'className' ;
  405. return element.removeAttribute( attributeName, 0 ) ;
  406. },
  407. GetAttributeValue : function( element, att )
  408. {
  409. var attName = att ;
  410. if ( typeof att == 'string' )
  411. att = element.attributes[ att ] ;
  412. else
  413. attName = att.nodeName ;
  414. if ( att && att.specified )
  415. {
  416. // IE returns "null" for the nodeValue of a "style" attribute.
  417. if ( attName == 'style' )
  418. return element.style.cssText ;
  419. // There are two cases when the nodeValue must be used:
  420. // - for the "class" attribute (all browsers).
  421. // - for events attributes (IE only).
  422. else if ( attName == 'class' || attName.indexOf('on') == 0 )
  423. return att.nodeValue ;
  424. else
  425. {
  426. // Use getAttribute to get its value  exactly as it is
  427. // defined.
  428. return element.getAttribute( attName, 2 ) ;
  429. }
  430. }
  431. return null ;
  432. },
  433. /**
  434.  * Checks whether one element contains the other.
  435.  */
  436. Contains : function( mainElement, otherElement )
  437. {
  438. // IE supports contains, but only for element nodes.
  439. if ( mainElement.contains && otherElement.nodeType == 1 )
  440. return mainElement.contains( otherElement ) ;
  441. while ( ( otherElement = otherElement.parentNode ) ) // Only one "="
  442. {
  443. if ( otherElement == mainElement )
  444. return true ;
  445. }
  446. return false ;
  447. },
  448. /**
  449.  * Breaks a parent element in the position of one of its contained elements.
  450.  * For example, in the following case:
  451.  * <b>This <i>is some<span /> sample</i> test text</b>
  452.  * If element = <span />, we have these results:
  453.  * <b>This <i>is some</i><span /><i> sample</i> test text</b> (If parent = <i>)
  454.  * <b>This <i>is some</i></b><span /><b<i> sample</i> test text</b> (If parent = <b>)
  455.  */
  456. BreakParent : function( element, parent, reusableRange )
  457. {
  458. var range = reusableRange || new FCKDomRange( FCKTools.GetElementWindow( element ) ) ;
  459. // We'll be extracting part of this element, so let's use our
  460. // range to get the correct piece.
  461. range.SetStart( element, 4 ) ;
  462. range.SetEnd( parent, 4 ) ;
  463. // Extract it.
  464. var docFrag = range.ExtractContents() ;
  465. // Move the element outside the broken element.
  466. range.InsertNode( element.parentNode.removeChild( element ) ) ;
  467. // Re-insert the extracted piece after the element.
  468. docFrag.InsertAfterNode( element ) ;
  469. range.Release( !!reusableRange ) ;
  470. },
  471. /**
  472.  * Retrieves a uniquely identifiable tree address of a DOM tree node.
  473.  * The tree address returns is an array of integers, with each integer
  474.  * indicating a child index from a DOM tree node, starting from
  475.  * document.documentElement.
  476.  *
  477.  * For example, assuming <body> is the second child from <html> (<head>
  478.  * being the first), and we'd like to address the third child under the
  479.  * fourth child of body, the tree address returned would be:
  480.  * [1, 3, 2]
  481.  *
  482.  * The tree address cannot be used for finding back the DOM tree node once
  483.  * the DOM tree structure has been modified.
  484.  */
  485. GetNodeAddress : function( node, normalized )
  486. {
  487. var retval = [] ;
  488. while ( node && node != node.ownerDocument.documentElement )
  489. {
  490. var parentNode = node.parentNode ;
  491. var currentIndex = -1 ;
  492. for( var i = 0 ; i < parentNode.childNodes.length ; i++ )
  493. {
  494. var candidate = parentNode.childNodes[i] ;
  495. if ( normalized === true && 
  496. candidate.nodeType == 3 && 
  497. candidate.previousSibling && 
  498. candidate.previousSibling.nodeType == 3 )
  499. continue;
  500. currentIndex++ ;
  501. if ( parentNode.childNodes[i] == node )
  502. break ;
  503. }
  504. retval.unshift( currentIndex ) ;
  505. node = node.parentNode ;
  506. }
  507. return retval ;
  508. },
  509. /**
  510.  * The reverse transformation of FCKDomTools.GetNodeAddress(). This
  511.  * function returns the DOM node pointed to by its index address.
  512.  */
  513. GetNodeFromAddress : function( doc, addr, normalized )
  514. {
  515. var cursor = doc.documentElement ;
  516. for ( var i = 0 ; i < addr.length ; i++ )
  517. {
  518. var target = addr[i] ;
  519. if ( ! normalized )
  520. {
  521. cursor = cursor.childNodes[target] ;
  522. continue ;
  523. }
  524. var currentIndex = -1 ;
  525. for (var j = 0 ; j < cursor.childNodes.length ; j++ )
  526. {
  527. var candidate = cursor.childNodes[j] ;
  528. if ( normalized === true &&
  529. candidate.nodeType == 3 &&
  530. candidate.previousSibling &&
  531. candidate.previousSibling.nodeType == 3 )
  532. continue ;
  533. currentIndex++ ;
  534. if ( currentIndex == target )
  535. {
  536. cursor = candidate ;
  537. break ;
  538. }
  539. }
  540. }
  541. return cursor ;
  542. },
  543. CloneElement : function( element )
  544. {
  545. element = element.cloneNode( false ) ;
  546. // The "id" attribute should never be cloned to avoid duplication.
  547. element.removeAttribute( 'id', false ) ;
  548. return element ;
  549. },
  550. ClearElementJSProperty : function( element, attrName )
  551. {
  552. if ( FCKBrowserInfo.IsIE )
  553. element.removeAttribute( attrName ) ;
  554. else
  555. delete element[attrName] ;
  556. },
  557. SetElementMarker : function ( markerObj, element, attrName, value)
  558. {
  559. var id = String( parseInt( Math.random() * 0xfffffff, 10 ) ) ;
  560. element._FCKMarkerId = id ;
  561. element[attrName] = value ;
  562. if ( ! markerObj[id] )
  563. markerObj[id] = { 'element' : element, 'markers' : {} } ;
  564. markerObj[id]['markers'][attrName] = value ;
  565. },
  566. ClearElementMarkers : function( markerObj, element, clearMarkerObj )
  567. {
  568. var id = element._FCKMarkerId ;
  569. if ( ! id )
  570. return ;
  571. this.ClearElementJSProperty( element, '_FCKMarkerId' ) ;
  572. for ( var j in markerObj[id]['markers'] )
  573. this.ClearElementJSProperty( element, j ) ;
  574. if ( clearMarkerObj )
  575. delete markerObj[id] ;
  576. },
  577. ClearAllMarkers : function( markerObj )
  578. {
  579. for ( var i in markerObj )
  580. this.ClearElementMarkers( markerObj, markerObj[i]['element'], true ) ;
  581. },
  582. /**
  583.  * Convert a DOM list tree into a data structure that is easier to
  584.  * manipulate. This operation should be non-intrusive in the sense that it
  585.  * does not change the DOM tree, with the exception that it may add some
  586.  * markers to the list item nodes when markerObj is specified.
  587.  */
  588. ListToArray : function( listNode, markerObj, baseArray, baseIndentLevel, grandparentNode )
  589. {
  590. if ( ! listNode.nodeName.IEquals( ['ul', 'ol'] ) )
  591. return [] ;
  592. if ( ! baseIndentLevel )
  593. baseIndentLevel = 0 ;
  594. if ( ! baseArray )
  595. baseArray = [] ;
  596. // Iterate over all list items to get their contents and look for inner lists.
  597. for ( var i = 0 ; i < listNode.childNodes.length ; i++ )
  598. {
  599. var listItem = listNode.childNodes[i] ;
  600. if ( ! listItem.nodeName.IEquals( 'li' ) )
  601. continue ;
  602. var itemObj = { 'parent' : listNode, 'indent' : baseIndentLevel, 'contents' : [] } ;
  603. if ( ! grandparentNode )
  604. {
  605. itemObj.grandparent = listNode.parentNode ;
  606. if ( itemObj.grandparent && itemObj.grandparent.nodeName.IEquals( 'li' ) )
  607. itemObj.grandparent = itemObj.grandparent.parentNode ;
  608. }
  609. else
  610. itemObj.grandparent = grandparentNode ;
  611. if ( markerObj )
  612. this.SetElementMarker( markerObj, listItem, '_FCK_ListArray_Index', baseArray.length ) ;
  613. baseArray.push( itemObj ) ;
  614. for ( var j = 0 ; j < listItem.childNodes.length ; j++ )
  615. {
  616. var child = listItem.childNodes[j] ;
  617. if ( child.nodeName.IEquals( ['ul', 'ol'] ) )
  618. // Note the recursion here, it pushes inner list items with
  619. // +1 indentation in the correct order.
  620. this.ListToArray( child, markerObj, baseArray, baseIndentLevel + 1, itemObj.grandparent ) ;
  621. else
  622. itemObj.contents.push( child ) ;
  623. }
  624. }
  625. return baseArray ;
  626. },
  627. // Convert our internal representation of a list back to a DOM forest.
  628. ArrayToList : function( listArray, markerObj, baseIndex )
  629. {
  630. if ( baseIndex == undefined )
  631. baseIndex = 0 ;
  632. if ( ! listArray || listArray.length < baseIndex + 1 )
  633. return null ;
  634. var doc = listArray[baseIndex].parent.ownerDocument ;
  635. var retval = doc.createDocumentFragment() ;
  636. var rootNode = null ;
  637. var currentIndex = baseIndex ;
  638. var indentLevel = Math.max( listArray[baseIndex].indent, 0 ) ;
  639. var currentListItem = null ;
  640. while ( true )
  641. {
  642. var item = listArray[currentIndex] ;
  643. if ( item.indent == indentLevel )
  644. {
  645. if ( ! rootNode || listArray[currentIndex].parent.nodeName != rootNode.nodeName )
  646. {
  647. rootNode = listArray[currentIndex].parent.cloneNode( false ) ;
  648. retval.appendChild( rootNode ) ;
  649. }
  650. currentListItem = doc.createElement( 'li' ) ;
  651. rootNode.appendChild( currentListItem ) ;
  652. for ( var i = 0 ; i < item.contents.length ; i++ )
  653. currentListItem.appendChild( item.contents[i].cloneNode( true ) ) ;
  654. currentIndex++ ;
  655. }
  656. else if ( item.indent == Math.max( indentLevel, 0 ) + 1 )
  657. {
  658. var listData = this.ArrayToList( listArray, null, currentIndex ) ;
  659. currentListItem.appendChild( listData.listNode ) ;
  660. currentIndex = listData.nextIndex ;
  661. }
  662. else if ( item.indent == -1 && baseIndex == 0 && item.grandparent )
  663. {
  664. var currentListItem ;
  665. if ( item.grandparent.nodeName.IEquals( ['ul', 'ol'] ) )
  666. currentListItem = doc.createElement( 'li' ) ;
  667. else
  668. {
  669. if ( FCKConfig.EnterMode.IEquals( ['div', 'p'] ) && ! item.grandparent.nodeName.IEquals( 'td' ) )
  670. currentListItem = doc.createElement( FCKConfig.EnterMode ) ;
  671. else
  672. currentListItem = doc.createDocumentFragment() ;
  673. }
  674. for ( var i = 0 ; i < item.contents.length ; i++ )
  675. currentListItem.appendChild( item.contents[i].cloneNode( true ) ) ;
  676. if ( currentListItem.nodeType == 11 )
  677. {
  678. if ( currentListItem.lastChild && 
  679. currentListItem.lastChild.getAttribute &&
  680. currentListItem.lastChild.getAttribute( 'type' ) == '_moz' )
  681. currentListItem.removeChild( currentListItem.lastChild );
  682. currentListItem.appendChild( doc.createElement( 'br' ) ) ;
  683. }
  684. if ( currentListItem.nodeName.IEquals( FCKConfig.EnterMode ) && currentListItem.firstChild )
  685. {
  686. this.TrimNode( currentListItem ) ;
  687. if ( FCKListsLib.BlockBoundaries[currentListItem.firstChild.nodeName.toLowerCase()] )
  688. {
  689. var tmp = doc.createDocumentFragment() ;
  690. while ( currentListItem.firstChild )
  691. tmp.appendChild( currentListItem.removeChild( currentListItem.firstChild ) ) ;
  692. currentListItem = tmp ;
  693. }
  694. }
  695. if ( FCKBrowserInfo.IsGeckoLike && currentListItem.nodeName.IEquals( ['div', 'p'] ) )
  696. FCKTools.AppendBogusBr( currentListItem ) ;
  697. retval.appendChild( currentListItem ) ;
  698. rootNode = null ;
  699. currentIndex++ ;
  700. }
  701. else
  702. return null ;
  703. if ( listArray.length <= currentIndex || Math.max( listArray[currentIndex].indent, 0 ) < indentLevel )
  704. {
  705. break ;
  706. }
  707. }
  708. // Clear marker attributes for the new list tree made of cloned nodes, if any.
  709. if ( markerObj )
  710. {
  711. var currentNode = retval.firstChild ;
  712. while ( currentNode )
  713. {
  714. if ( currentNode.nodeType == 1 )
  715. this.ClearElementMarkers( markerObj, currentNode ) ;
  716. currentNode = this.GetNextSourceNode( currentNode ) ;
  717. }
  718. }
  719. return { 'listNode' : retval, 'nextIndex' : currentIndex } ;
  720. },
  721. /**
  722.  * Get the next sibling node for a node. If "includeEmpties" is false,
  723.  * only element or non empty text nodes are returned.
  724.  */
  725. GetNextSibling : function( node, includeEmpties )
  726. {
  727. node = node.nextSibling ;
  728. while ( node && !includeEmpties && node.nodeType != 1 && ( node.nodeType != 3 || node.nodeValue.length == 0 ) )
  729. node = node.nextSibling ;
  730. return node ;
  731. },
  732. /**
  733.  * Get the previous sibling node for a node. If "includeEmpties" is false,
  734.  * only element or non empty text nodes are returned.
  735.  */
  736. GetPreviousSibling : function( node, includeEmpties )
  737. {
  738. node = node.previousSibling ;
  739. while ( node && !includeEmpties && node.nodeType != 1 && ( node.nodeType != 3 || node.nodeValue.length == 0 ) )
  740. node = node.previousSibling ;
  741. return node ;
  742. },
  743. /**
  744.  * Checks if an element has no "useful" content inside of it
  745.  * node tree. No "useful" content means empty text node or a signle empty
  746.  * inline node.
  747.  * elementCheckCallback may point to a function that returns a boolean
  748.  * indicating that a child element must be considered in the element check.
  749.  */
  750. CheckIsEmptyElement : function( element, elementCheckCallback )
  751. {
  752. var child = element.firstChild ;
  753. var elementChild ;
  754. while ( child )
  755. {
  756. if ( child.nodeType == 1 )
  757. {
  758. if ( elementChild || !FCKListsLib.InlineNonEmptyElements[ child.nodeName.toLowerCase() ] )
  759. return false ;
  760. if ( !elementCheckCallback || elementCheckCallback( child ) === true )
  761. elementChild = child ;
  762. }
  763. else if ( child.nodeType == 3 && child.nodeValue.length > 0 )
  764. return false ;
  765. child = child.nextSibling ;
  766. }
  767. return elementChild ? this.CheckIsEmptyElement( elementChild, elementCheckCallback ) : true ;
  768. },
  769. SetElementStyles : function( element, styleDict )
  770. {
  771. var style = element.style ;
  772. for ( var styleName in styleDict )
  773. style[ styleName ] = styleDict[ styleName ] ;
  774. }
  775. } ;