Mimimum syndical pour en faire un produit zope / cmf.
[ckeditor.git] / _source / plugins / list / plugin.js
1 /*
2 Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3 For licensing, see LICENSE.html or http://ckeditor.com/license
4 */
5
6 /**
7 * @file Insert and remove numbered and bulleted lists.
8 */
9
10 (function()
11 {
12 var listNodeNames = { ol : 1, ul : 1 },
13 emptyTextRegex = /^[\n\r\t ]*$/;
14
15 var whitespaces = CKEDITOR.dom.walker.whitespaces(),
16 bookmarks = CKEDITOR.dom.walker.bookmark(),
17 nonEmpty = function( node ){ return !( whitespaces( node ) || bookmarks( node ) ); };
18
19 CKEDITOR.plugins.list = {
20 /*
21 * Convert a DOM list tree into a data structure that is easier to
22 * manipulate. This operation should be non-intrusive in the sense that it
23 * does not change the DOM tree, with the exception that it may add some
24 * markers to the list item nodes when database is specified.
25 */
26 listToArray : function( listNode, database, baseArray, baseIndentLevel, grandparentNode )
27 {
28 if ( !listNodeNames[ listNode.getName() ] )
29 return [];
30
31 if ( !baseIndentLevel )
32 baseIndentLevel = 0;
33 if ( !baseArray )
34 baseArray = [];
35
36 // Iterate over all list items to and look for inner lists.
37 for ( var i = 0, count = listNode.getChildCount() ; i < count ; i++ )
38 {
39 var listItem = listNode.getChild( i );
40
41 // Fixing malformed nested lists by moving it into a previous list item. (#6236)
42 if( listItem.type == CKEDITOR.NODE_ELEMENT && listItem.getName() in CKEDITOR.dtd.$list )
43 CKEDITOR.plugins.list.listToArray( listItem, database, baseArray, baseIndentLevel + 1 );
44
45 // It may be a text node or some funny stuff.
46 if ( listItem.$.nodeName.toLowerCase() != 'li' )
47 continue;
48
49 var itemObj = { 'parent' : listNode, indent : baseIndentLevel, element : listItem, contents : [] };
50 if ( !grandparentNode )
51 {
52 itemObj.grandparent = listNode.getParent();
53 if ( itemObj.grandparent && itemObj.grandparent.$.nodeName.toLowerCase() == 'li' )
54 itemObj.grandparent = itemObj.grandparent.getParent();
55 }
56 else
57 itemObj.grandparent = grandparentNode;
58
59 if ( database )
60 CKEDITOR.dom.element.setMarker( database, listItem, 'listarray_index', baseArray.length );
61 baseArray.push( itemObj );
62
63 for ( var j = 0, itemChildCount = listItem.getChildCount(), child; j < itemChildCount ; j++ )
64 {
65 child = listItem.getChild( j );
66 if ( child.type == CKEDITOR.NODE_ELEMENT && listNodeNames[ child.getName() ] )
67 // Note the recursion here, it pushes inner list items with
68 // +1 indentation in the correct order.
69 CKEDITOR.plugins.list.listToArray( child, database, baseArray, baseIndentLevel + 1, itemObj.grandparent );
70 else
71 itemObj.contents.push( child );
72 }
73 }
74 return baseArray;
75 },
76
77 // Convert our internal representation of a list back to a DOM forest.
78 arrayToList : function( listArray, database, baseIndex, paragraphMode, dir )
79 {
80 if ( !baseIndex )
81 baseIndex = 0;
82 if ( !listArray || listArray.length < baseIndex + 1 )
83 return null;
84 var doc = listArray[ baseIndex ].parent.getDocument(),
85 retval = new CKEDITOR.dom.documentFragment( doc ),
86 rootNode = null,
87 currentIndex = baseIndex,
88 indentLevel = Math.max( listArray[ baseIndex ].indent, 0 ),
89 currentListItem = null,
90 orgDir,
91 paragraphName = ( paragraphMode == CKEDITOR.ENTER_P ? 'p' : 'div' );
92 while ( 1 )
93 {
94 var item = listArray[ currentIndex ];
95
96 orgDir = item.element.getDirection( 1 );
97
98 if ( item.indent == indentLevel )
99 {
100 if ( !rootNode || listArray[ currentIndex ].parent.getName() != rootNode.getName() )
101 {
102 rootNode = listArray[ currentIndex ].parent.clone( false, 1 );
103 dir && rootNode.setAttribute( 'dir', dir );
104 retval.append( rootNode );
105 }
106 currentListItem = rootNode.append( item.element.clone( 0, 1 ) );
107
108 if ( orgDir != rootNode.getDirection( 1 ) )
109 currentListItem.setAttribute( 'dir', orgDir );
110 else
111 currentListItem.removeAttribute( 'dir' );
112
113 for ( var i = 0 ; i < item.contents.length ; i++ )
114 currentListItem.append( item.contents[i].clone( 1, 1 ) );
115 currentIndex++;
116 }
117 else if ( item.indent == Math.max( indentLevel, 0 ) + 1 )
118 {
119 // Maintain original direction (#6861).
120 var currDir = listArray[ currentIndex - 1 ].element.getDirection( 1 ),
121 listData = CKEDITOR.plugins.list.arrayToList( listArray, null, currentIndex, paragraphMode,
122 currDir != orgDir ? orgDir: null );
123
124 // If the next block is an <li> with another list tree as the first
125 // child, we'll need to append a filler (<br>/NBSP) or the list item
126 // wouldn't be editable. (#6724)
127 if ( !currentListItem.getChildCount() && CKEDITOR.env.ie && !( doc.$.documentMode > 7 ))
128 currentListItem.append( doc.createText( '\xa0' ) );
129 currentListItem.append( listData.listNode );
130 currentIndex = listData.nextIndex;
131 }
132 else if ( item.indent == -1 && !baseIndex && item.grandparent )
133 {
134 if ( listNodeNames[ item.grandparent.getName() ] )
135 currentListItem = item.element.clone( false, true );
136 else
137 {
138 // Create completely new blocks here.
139 if ( dir || item.element.hasAttributes() || paragraphMode != CKEDITOR.ENTER_BR )
140 {
141 currentListItem = doc.createElement( paragraphName );
142 item.element.copyAttributes( currentListItem, { type:1, value:1 } );
143
144 // There might be a case where there are no attributes in the element after all
145 // (i.e. when "type" or "value" are the only attributes set). In this case, if enterMode = BR,
146 // the current item should be a fragment.
147 if ( !dir && paragraphMode == CKEDITOR.ENTER_BR && !currentListItem.hasAttributes() )
148 currentListItem = new CKEDITOR.dom.documentFragment( doc );
149 }
150 else
151 currentListItem = new CKEDITOR.dom.documentFragment( doc );
152 }
153
154 if ( currentListItem.type == CKEDITOR.NODE_ELEMENT )
155 {
156 if ( item.grandparent.getDirection( 1 ) != orgDir )
157 currentListItem.setAttribute( 'dir', orgDir );
158 else
159 currentListItem.removeAttribute( 'dir' );
160 }
161
162 for ( i = 0 ; i < item.contents.length ; i++ )
163 currentListItem.append( item.contents[i].clone( 1, 1 ) );
164
165 if ( currentListItem.type == CKEDITOR.NODE_DOCUMENT_FRAGMENT
166 && currentIndex != listArray.length - 1 )
167 {
168 var last = currentListItem.getLast();
169 if ( last && last.type == CKEDITOR.NODE_ELEMENT
170 && last.getAttribute( 'type' ) == '_moz' )
171 {
172 last.remove();
173 }
174
175 if ( !( last = currentListItem.getLast( nonEmpty )
176 && last.type == CKEDITOR.NODE_ELEMENT
177 && last.getName() in CKEDITOR.dtd.$block ) )
178 {
179 currentListItem.append( doc.createElement( 'br' ) );
180 }
181 }
182
183 if ( currentListItem.type == CKEDITOR.NODE_ELEMENT &&
184 currentListItem.getName() == paragraphName &&
185 currentListItem.$.firstChild )
186 {
187 currentListItem.trim();
188 var firstChild = currentListItem.getFirst();
189 if ( firstChild.type == CKEDITOR.NODE_ELEMENT && firstChild.isBlockBoundary() )
190 {
191 var tmp = new CKEDITOR.dom.documentFragment( doc );
192 currentListItem.moveChildren( tmp );
193 currentListItem = tmp;
194 }
195 }
196
197 var currentListItemName = currentListItem.$.nodeName.toLowerCase();
198 if ( !CKEDITOR.env.ie && ( currentListItemName == 'div' || currentListItemName == 'p' ) )
199 currentListItem.appendBogus();
200 retval.append( currentListItem );
201 rootNode = null;
202 currentIndex++;
203 }
204 else
205 return null;
206
207 if ( listArray.length <= currentIndex || Math.max( listArray[ currentIndex ].indent, 0 ) < indentLevel )
208 break;
209 }
210
211 // Clear marker attributes for the new list tree made of cloned nodes, if any.
212 if ( database )
213 {
214 var currentNode = retval.getFirst();
215 while ( currentNode )
216 {
217 if ( currentNode.type == CKEDITOR.NODE_ELEMENT )
218 CKEDITOR.dom.element.clearMarkers( database, currentNode );
219 currentNode = currentNode.getNextSourceNode();
220 }
221 }
222
223 return { listNode : retval, nextIndex : currentIndex };
224 }
225 };
226
227 function onSelectionChange( evt )
228 {
229 if ( evt.editor.readOnly )
230 return null;
231
232 var path = evt.data.path,
233 blockLimit = path.blockLimit,
234 elements = path.elements,
235 element,
236 i;
237
238 // Grouping should only happen under blockLimit.(#3940).
239 for ( i = 0 ; i < elements.length && ( element = elements[ i ] )
240 && !element.equals( blockLimit ); i++ )
241 {
242 if ( listNodeNames[ elements[ i ].getName() ] )
243 return this.setState( this.type == elements[ i ].getName() ? CKEDITOR.TRISTATE_ON : CKEDITOR.TRISTATE_OFF );
244 }
245
246 return this.setState( CKEDITOR.TRISTATE_OFF );
247 }
248
249 function changeListType( editor, groupObj, database, listsCreated )
250 {
251 // This case is easy...
252 // 1. Convert the whole list into a one-dimensional array.
253 // 2. Change the list type by modifying the array.
254 // 3. Recreate the whole list by converting the array to a list.
255 // 4. Replace the original list with the recreated list.
256 var listArray = CKEDITOR.plugins.list.listToArray( groupObj.root, database ),
257 selectedListItems = [];
258
259 for ( var i = 0 ; i < groupObj.contents.length ; i++ )
260 {
261 var itemNode = groupObj.contents[i];
262 itemNode = itemNode.getAscendant( 'li', true );
263 if ( !itemNode || itemNode.getCustomData( 'list_item_processed' ) )
264 continue;
265 selectedListItems.push( itemNode );
266 CKEDITOR.dom.element.setMarker( database, itemNode, 'list_item_processed', true );
267 }
268
269 var root = groupObj.root,
270 fakeParent = root.getDocument().createElement( this.type );
271 // Copy all attributes, except from 'start' and 'type'.
272 root.copyAttributes( fakeParent, { start : 1, type : 1 } );
273 // The list-style-type property should be ignored.
274 fakeParent.removeStyle( 'list-style-type' );
275
276 for ( i = 0 ; i < selectedListItems.length ; i++ )
277 {
278 var listIndex = selectedListItems[i].getCustomData( 'listarray_index' );
279 listArray[listIndex].parent = fakeParent;
280 }
281 var newList = CKEDITOR.plugins.list.arrayToList( listArray, database, null, editor.config.enterMode );
282 var child, length = newList.listNode.getChildCount();
283 for ( i = 0 ; i < length && ( child = newList.listNode.getChild( i ) ) ; i++ )
284 {
285 if ( child.getName() == this.type )
286 listsCreated.push( child );
287 }
288 newList.listNode.replace( groupObj.root );
289 }
290
291 var headerTagRegex = /^h[1-6]$/;
292
293 function createList( editor, groupObj, listsCreated )
294 {
295 var contents = groupObj.contents,
296 doc = groupObj.root.getDocument(),
297 listContents = [];
298
299 // It is possible to have the contents returned by DomRangeIterator to be the same as the root.
300 // e.g. when we're running into table cells.
301 // In such a case, enclose the childNodes of contents[0] into a <div>.
302 if ( contents.length == 1 && contents[0].equals( groupObj.root ) )
303 {
304 var divBlock = doc.createElement( 'div' );
305 contents[0].moveChildren && contents[0].moveChildren( divBlock );
306 contents[0].append( divBlock );
307 contents[0] = divBlock;
308 }
309
310 // Calculate the common parent node of all content blocks.
311 var commonParent = groupObj.contents[0].getParent();
312 for ( var i = 0 ; i < contents.length ; i++ )
313 commonParent = commonParent.getCommonAncestor( contents[i].getParent() );
314
315 var useComputedState = editor.config.useComputedState,
316 listDir, explicitDirection;
317
318 useComputedState = useComputedState === undefined || useComputedState;
319
320 // We want to insert things that are in the same tree level only, so calculate the contents again
321 // by expanding the selected blocks to the same tree level.
322 for ( i = 0 ; i < contents.length ; i++ )
323 {
324 var contentNode = contents[i],
325 parentNode;
326 while ( ( parentNode = contentNode.getParent() ) )
327 {
328 if ( parentNode.equals( commonParent ) )
329 {
330 listContents.push( contentNode );
331
332 // Determine the lists's direction.
333 if ( !explicitDirection && contentNode.getDirection() )
334 explicitDirection = 1;
335
336 var itemDir = contentNode.getDirection( useComputedState );
337
338 if ( listDir !== null )
339 {
340 // If at least one LI have a different direction than current listDir, we can't have listDir.
341 if ( listDir && listDir != itemDir )
342 listDir = null;
343 else
344 listDir = itemDir;
345 }
346
347 break;
348 }
349 contentNode = parentNode;
350 }
351 }
352
353 if ( listContents.length < 1 )
354 return;
355
356 // Insert the list to the DOM tree.
357 var insertAnchor = listContents[ listContents.length - 1 ].getNext(),
358 listNode = doc.createElement( this.type );
359
360 listsCreated.push( listNode );
361
362 var contentBlock, listItem;
363
364 while ( listContents.length )
365 {
366 contentBlock = listContents.shift();
367 listItem = doc.createElement( 'li' );
368
369 // Preserve preformat block and heading structure when converting to list item. (#5335) (#5271)
370 if ( contentBlock.is( 'pre' ) || headerTagRegex.test( contentBlock.getName() ) )
371 contentBlock.appendTo( listItem );
372 else
373 {
374 contentBlock.copyAttributes( listItem );
375 // Remove direction attribute after it was merged into list root. (#7657)
376 if ( listDir && contentBlock.getDirection() )
377 {
378 listItem.removeStyle( 'direction' );
379 listItem.removeAttribute( 'dir' );
380 }
381 contentBlock.moveChildren( listItem );
382 contentBlock.remove();
383 }
384
385 listItem.appendTo( listNode );
386 }
387
388 // Apply list root dir only if it has been explicitly declared.
389 if ( listDir && explicitDirection )
390 listNode.setAttribute( 'dir', listDir );
391
392 if ( insertAnchor )
393 listNode.insertBefore( insertAnchor );
394 else
395 listNode.appendTo( commonParent );
396 }
397
398 function removeList( editor, groupObj, database )
399 {
400 // This is very much like the change list type operation.
401 // Except that we're changing the selected items' indent to -1 in the list array.
402 var listArray = CKEDITOR.plugins.list.listToArray( groupObj.root, database ),
403 selectedListItems = [];
404
405 for ( var i = 0 ; i < groupObj.contents.length ; i++ )
406 {
407 var itemNode = groupObj.contents[i];
408 itemNode = itemNode.getAscendant( 'li', true );
409 if ( !itemNode || itemNode.getCustomData( 'list_item_processed' ) )
410 continue;
411 selectedListItems.push( itemNode );
412 CKEDITOR.dom.element.setMarker( database, itemNode, 'list_item_processed', true );
413 }
414
415 var lastListIndex = null;
416 for ( i = 0 ; i < selectedListItems.length ; i++ )
417 {
418 var listIndex = selectedListItems[i].getCustomData( 'listarray_index' );
419 listArray[listIndex].indent = -1;
420 lastListIndex = listIndex;
421 }
422
423 // After cutting parts of the list out with indent=-1, we still have to maintain the array list
424 // model's nextItem.indent <= currentItem.indent + 1 invariant. Otherwise the array model of the
425 // list cannot be converted back to a real DOM list.
426 for ( i = lastListIndex + 1 ; i < listArray.length ; i++ )
427 {
428 if ( listArray[i].indent > listArray[i-1].indent + 1 )
429 {
430 var indentOffset = listArray[i-1].indent + 1 - listArray[i].indent;
431 var oldIndent = listArray[i].indent;
432 while ( listArray[i] && listArray[i].indent >= oldIndent )
433 {
434 listArray[i].indent += indentOffset;
435 i++;
436 }
437 i--;
438 }
439 }
440
441 var newList = CKEDITOR.plugins.list.arrayToList( listArray, database, null, editor.config.enterMode,
442 groupObj.root.getAttribute( 'dir' ) );
443
444 // Compensate <br> before/after the list node if the surrounds are non-blocks.(#3836)
445 var docFragment = newList.listNode, boundaryNode, siblingNode;
446 function compensateBrs( isStart )
447 {
448 if ( ( boundaryNode = docFragment[ isStart ? 'getFirst' : 'getLast' ]() )
449 && !( boundaryNode.is && boundaryNode.isBlockBoundary() )
450 && ( siblingNode = groupObj.root[ isStart ? 'getPrevious' : 'getNext' ]
451 ( CKEDITOR.dom.walker.whitespaces( true ) ) )
452 && !( siblingNode.is && siblingNode.isBlockBoundary( { br : 1 } ) ) )
453 editor.document.createElement( 'br' )[ isStart ? 'insertBefore' : 'insertAfter' ]( boundaryNode );
454 }
455 compensateBrs( true );
456 compensateBrs();
457
458 docFragment.replace( groupObj.root );
459 }
460
461 function listCommand( name, type )
462 {
463 this.name = name;
464 this.type = type;
465 }
466
467 listCommand.prototype = {
468 exec : function( editor )
469 {
470 var doc = editor.document,
471 config = editor.config,
472 selection = editor.getSelection(),
473 ranges = selection && selection.getRanges( true );
474
475 // There should be at least one selected range.
476 if ( !ranges || ranges.length < 1 )
477 return;
478
479 // Midas lists rule #1 says we can create a list even in an empty document.
480 // But DOM iterator wouldn't run if the document is really empty.
481 // So create a paragraph if the document is empty and we're going to create a list.
482 if ( this.state == CKEDITOR.TRISTATE_OFF )
483 {
484 var body = doc.getBody();
485 if ( !body.getFirst( nonEmpty ) )
486 {
487 config.enterMode == CKEDITOR.ENTER_BR ?
488 body.appendBogus() :
489 ranges[ 0 ].fixBlock( 1, config.enterMode == CKEDITOR.ENTER_P ? 'p' : 'div' );
490
491 selection.selectRanges( ranges );
492 }
493 // Maybe a single range there enclosing the whole list,
494 // turn on the list state manually(#4129).
495 else
496 {
497 var range = ranges.length == 1 && ranges[ 0 ],
498 enclosedNode = range && range.getEnclosedNode();
499 if ( enclosedNode && enclosedNode.is
500 && this.type == enclosedNode.getName() )
501 this.setState( CKEDITOR.TRISTATE_ON );
502 }
503 }
504
505 var bookmarks = selection.createBookmarks( true );
506
507 // Group the blocks up because there are many cases where multiple lists have to be created,
508 // or multiple lists have to be cancelled.
509 var listGroups = [],
510 database = {},
511 rangeIterator = ranges.createIterator(),
512 index = 0;
513
514 while ( ( range = rangeIterator.getNextRange() ) && ++index )
515 {
516 var boundaryNodes = range.getBoundaryNodes(),
517 startNode = boundaryNodes.startNode,
518 endNode = boundaryNodes.endNode;
519
520 if ( startNode.type == CKEDITOR.NODE_ELEMENT && startNode.getName() == 'td' )
521 range.setStartAt( boundaryNodes.startNode, CKEDITOR.POSITION_AFTER_START );
522
523 if ( endNode.type == CKEDITOR.NODE_ELEMENT && endNode.getName() == 'td' )
524 range.setEndAt( boundaryNodes.endNode, CKEDITOR.POSITION_BEFORE_END );
525
526 var iterator = range.createIterator(),
527 block;
528
529 iterator.forceBrBreak = ( this.state == CKEDITOR.TRISTATE_OFF );
530
531 while ( ( block = iterator.getNextParagraph() ) )
532 {
533 // Avoid duplicate blocks get processed across ranges.
534 if( block.getCustomData( 'list_block' ) )
535 continue;
536 else
537 CKEDITOR.dom.element.setMarker( database, block, 'list_block', 1 );
538
539 var path = new CKEDITOR.dom.elementPath( block ),
540 pathElements = path.elements,
541 pathElementsCount = pathElements.length,
542 listNode = null,
543 processedFlag = 0,
544 blockLimit = path.blockLimit,
545 element;
546
547 // First, try to group by a list ancestor.
548 for ( var i = pathElementsCount - 1; i >= 0 && ( element = pathElements[ i ] ); i-- )
549 {
550 if ( listNodeNames[ element.getName() ]
551 && blockLimit.contains( element ) ) // Don't leak outside block limit (#3940).
552 {
553 // If we've encountered a list inside a block limit
554 // The last group object of the block limit element should
555 // no longer be valid. Since paragraphs after the list
556 // should belong to a different group of paragraphs before
557 // the list. (Bug #1309)
558 blockLimit.removeCustomData( 'list_group_object_' + index );
559
560 var groupObj = element.getCustomData( 'list_group_object' );
561 if ( groupObj )
562 groupObj.contents.push( block );
563 else
564 {
565 groupObj = { root : element, contents : [ block ] };
566 listGroups.push( groupObj );
567 CKEDITOR.dom.element.setMarker( database, element, 'list_group_object', groupObj );
568 }
569 processedFlag = 1;
570 break;
571 }
572 }
573
574 if ( processedFlag )
575 continue;
576
577 // No list ancestor? Group by block limit, but don't mix contents from different ranges.
578 var root = blockLimit;
579 if ( root.getCustomData( 'list_group_object_' + index ) )
580 root.getCustomData( 'list_group_object_' + index ).contents.push( block );
581 else
582 {
583 groupObj = { root : root, contents : [ block ] };
584 CKEDITOR.dom.element.setMarker( database, root, 'list_group_object_' + index, groupObj );
585 listGroups.push( groupObj );
586 }
587 }
588 }
589
590 // Now we have two kinds of list groups, groups rooted at a list, and groups rooted at a block limit element.
591 // We either have to build lists or remove lists, for removing a list does not makes sense when we are looking
592 // at the group that's not rooted at lists. So we have three cases to handle.
593 var listsCreated = [];
594 while ( listGroups.length > 0 )
595 {
596 groupObj = listGroups.shift();
597 if ( this.state == CKEDITOR.TRISTATE_OFF )
598 {
599 if ( listNodeNames[ groupObj.root.getName() ] )
600 changeListType.call( this, editor, groupObj, database, listsCreated );
601 else
602 createList.call( this, editor, groupObj, listsCreated );
603 }
604 else if ( this.state == CKEDITOR.TRISTATE_ON && listNodeNames[ groupObj.root.getName() ] )
605 removeList.call( this, editor, groupObj, database );
606 }
607
608 // For all new lists created, merge adjacent, same type lists.
609 for ( i = 0 ; i < listsCreated.length ; i++ )
610 {
611 listNode = listsCreated[i];
612 var mergeSibling, listCommand = this;
613 ( mergeSibling = function( rtl ){
614
615 var sibling = listNode[ rtl ?
616 'getPrevious' : 'getNext' ]( CKEDITOR.dom.walker.whitespaces( true ) );
617 if ( sibling && sibling.getName &&
618 sibling.getName() == listCommand.type )
619 {
620 sibling.remove();
621 // Move children order by merge direction.(#3820)
622 sibling.moveChildren( listNode, rtl );
623 }
624 } )();
625 mergeSibling( 1 );
626 }
627
628 // Clean up, restore selection and update toolbar button states.
629 CKEDITOR.dom.element.clearAllMarkers( database );
630 selection.selectBookmarks( bookmarks );
631 editor.focus();
632 }
633 };
634
635 var dtd = CKEDITOR.dtd;
636 var tailNbspRegex = /[\t\r\n ]*(?:&nbsp;|\xa0)$/;
637
638 function indexOfFirstChildElement( element, tagNameList )
639 {
640 var child,
641 children = element.children,
642 length = children.length;
643
644 for ( var i = 0 ; i < length ; i++ )
645 {
646 child = children[ i ];
647 if ( child.name && ( child.name in tagNameList ) )
648 return i;
649 }
650
651 return length;
652 }
653
654 function getExtendNestedListFilter( isHtmlFilter )
655 {
656 // An element filter function that corrects nested list start in an empty
657 // list item for better displaying/outputting. (#3165)
658 return function( listItem )
659 {
660 var children = listItem.children,
661 firstNestedListIndex = indexOfFirstChildElement( listItem, dtd.$list ),
662 firstNestedList = children[ firstNestedListIndex ],
663 nodeBefore = firstNestedList && firstNestedList.previous,
664 tailNbspmatch;
665
666 if ( nodeBefore
667 && ( nodeBefore.name && nodeBefore.name == 'br'
668 || nodeBefore.value && ( tailNbspmatch = nodeBefore.value.match( tailNbspRegex ) ) ) )
669 {
670 var fillerNode = nodeBefore;
671
672 // Always use 'nbsp' as filler node if we found a nested list appear
673 // in front of a list item.
674 if ( !( tailNbspmatch && tailNbspmatch.index ) && fillerNode == children[ 0 ] )
675 children[ 0 ] = ( isHtmlFilter || CKEDITOR.env.ie ) ?
676 new CKEDITOR.htmlParser.text( '\xa0' ) :
677 new CKEDITOR.htmlParser.element( 'br', {} );
678
679 // Otherwise the filler is not needed anymore.
680 else if ( fillerNode.name == 'br' )
681 children.splice( firstNestedListIndex - 1, 1 );
682 else
683 fillerNode.value = fillerNode.value.replace( tailNbspRegex, '' );
684 }
685
686 };
687 }
688
689 var defaultListDataFilterRules = { elements : {} };
690 for ( var i in dtd.$listItem )
691 defaultListDataFilterRules.elements[ i ] = getExtendNestedListFilter();
692
693 var defaultListHtmlFilterRules = { elements : {} };
694 for ( i in dtd.$listItem )
695 defaultListHtmlFilterRules.elements[ i ] = getExtendNestedListFilter( true );
696
697 CKEDITOR.plugins.add( 'list',
698 {
699 init : function( editor )
700 {
701 // Register commands.
702 var numberedListCommand = editor.addCommand( 'numberedlist', new listCommand( 'numberedlist', 'ol' ) ),
703 bulletedListCommand = editor.addCommand( 'bulletedlist', new listCommand( 'bulletedlist', 'ul' ) );
704
705 // Register the toolbar button.
706 editor.ui.addButton( 'NumberedList',
707 {
708 label : editor.lang.numberedlist,
709 command : 'numberedlist'
710 } );
711 editor.ui.addButton( 'BulletedList',
712 {
713 label : editor.lang.bulletedlist,
714 command : 'bulletedlist'
715 } );
716
717 // Register the state changing handlers.
718 editor.on( 'selectionChange', CKEDITOR.tools.bind( onSelectionChange, numberedListCommand ) );
719 editor.on( 'selectionChange', CKEDITOR.tools.bind( onSelectionChange, bulletedListCommand ) );
720 },
721
722 afterInit : function ( editor )
723 {
724 var dataProcessor = editor.dataProcessor;
725 if ( dataProcessor )
726 {
727 dataProcessor.dataFilter.addRules( defaultListDataFilterRules );
728 dataProcessor.htmlFilter.addRules( defaultListHtmlFilterRules );
729 }
730 },
731
732 requires : [ 'domiterator' ]
733 } );
734 })();