Changeset 5171
- Timestamp:
- 02/21/10 02:35:01 (3 years ago)
- Location:
- CKEditor/branches/versions/3.2.x
- Files:
-
- 18 edited
-
. (modified) (1 prop)
-
CHANGES.html (modified) (2 diffs)
-
_dev/releaser/ckreleaser.release (modified) (1 prop)
-
_dev/releaser/release.bat (modified) (1 prop)
-
_samples/ajax.html (modified) (1 diff)
-
_source/core/config.js (modified) (1 diff)
-
_source/core/editor.js (modified) (3 diffs)
-
_source/lang/_translationstatus.txt (modified) (1 diff)
-
_source/lang/es.js (modified) (7 diffs)
-
_source/plugins/basicstyles/plugin.js (modified) (1 diff)
-
_source/plugins/div/dialogs/div.js (modified) (1 prop)
-
_source/plugins/div/plugin.js (modified) (1 prop)
-
_source/plugins/indent/plugin.js (modified) (1 diff)
-
_source/plugins/link/dialogs/link.js (modified) (2 diffs)
-
_source/plugins/selection/plugin.js (modified) (1 diff)
-
_source/plugins/showborders/plugin.js (modified) (1 prop)
-
_source/plugins/templates/dialogs/templates.js (modified) (1 diff)
-
_source/skins/v2/richcombo.css (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/branches/versions/3.2.x
- Property svn:mergeinfo changed
/CKEditor/trunk merged: 5155-5157,5162-5166,5169
- Property svn:mergeinfo changed
-
CKEditor/branches/versions/3.2.x/CHANGES.html
r5168 r5171 87 87 <li><a href="http://dev.fckeditor.net/ticket/4951">#4951</a> : Replacing patterns into empty string throws errors.</li> 88 88 <li><a href="http://dev.fckeditor.net/ticket/4963">#4963</a> : Link dialog doesn't open properly for e-mail type links.</li> 89 <li><a href="http://dev.fckeditor.net/ticket/4999">#4999</a> : Adding undo snapshot for editor::setData.</li>90 89 <li><a href="http://dev.fckeditor.net/ticket/5043">#5043</a> : Removed the possibility of having an unwanted script tag being outputted with the editor contents.</li> 91 90 <li><a href="http://dev.fckeditor.net/ticket/3678">#3678</a> : There were issues when editing links inside floating divs with IE.</li> 92 91 <li><a href="http://dev.fckeditor.net/ticket/4763">#4763</a> : Press Enter key with text selected will not delete the text.</li> 93 <li><a href="http://dev.fckeditor.net/ticket/4716">#4716</a> : [IE] Cursor remain blinking in editor when focus is moved to any button that following.</li>94 92 <li><a href="http://dev.fckeditor.net/ticket/5096">#5096</a> : Simple ampersand attribute value doesn't work for more than once occurance.</li> 95 93 <li><a href="http://dev.fckeditor.net/ticket/3494">#3494</a> : Context menu is too narrow in some translations.</li> … … 112 110 <li><a href="http://dev.fckeditor.net/ticket/5163">#5163</a> : The undo system was not working on some specific cases.</li> 113 111 <li><a href="http://dev.fckeditor.net/ticket/5162">#5162</a> : The ajax sample was throwing errors when loading data.</li> 112 <li><a href="http://dev.fckeditor.net/ticket/4999">#4999</a> : The Template dialog was not generating an undo snapshot.</li> 114 113 <li><a href="http://dev.fckeditor.net/ticket/5213">#5213</a> : Reorganization of some entries in the language files to make it more consistent.</li> 115 114 <li><a href="http://dev.fckeditor.net/ticket/5199">#5199</a> : In IE, single row toolbars didn't have the bottom padding.</li> -
CKEditor/branches/versions/3.2.x/_dev/releaser/ckreleaser.release
- Property svn:mergeinfo changed (with no actual effect on merging)
-
CKEditor/branches/versions/3.2.x/_dev/releaser/release.bat
- Property svn:mergeinfo changed (with no actual effect on merging)
-
CKEditor/branches/versions/3.2.x/_samples/ajax.html
r5147 r5171 29 29 // Create a new editor inside the <div id="editor"> 30 30 editor = CKEDITOR.appendTo( 'editor' ); 31 editor.setData( html , null, true);31 editor.setData( html ); 32 32 33 33 // This sample may break here if the ckeditor_basic.js is used. In such case, the following code should be used instead: 34 34 /* 35 35 if ( editor.setData ) 36 editor.setData( html , null, true);36 editor.setData( html ); 37 37 else 38 38 { 39 39 CKEDITOR.on( 'loaded', function() 40 40 { 41 editor.setData( html , null, true);41 editor.setData( html ); 42 42 }); 43 43 } -
CKEditor/branches/versions/3.2.x/_source/core/config.js
r5092 r5171 90 90 * automatically localize the editor to the user language, if supported, 91 91 * otherwise the {@link CKEDITOR.config.defaultLanguage} language is used. 92 * @default true93 * @type Boolean92 * @default '' (empty) 93 * @type String 94 94 * @example 95 95 * // Load the German interface. -
CKEditor/branches/versions/3.2.x/_source/core/editor.js
r5151 r5171 586 586 * @param {Function} callback Function to be called after the setData 587 587 * is completed. 588 * @param {Boolean} noUndo Indicates that the function call must not589 * create and undo snapshot.590 588 * @example 591 589 * CKEDITOR.instances.editor1.<b>setData</b>( '<p>This is the editor data.</p>' ); … … 596 594 * }); 597 595 */ 598 setData : function( data , callback , noUndo)599 { 600 noUndo !== false && this.fire( 'saveSnapshot' );601 602 this.on( 'dataReady', function( evt )596 setData : function( data , callback ) 597 { 598 if( callback ) 599 { 600 this.on( 'dataReady', function( evt ) 603 601 { 604 602 evt.removeListener(); 605 callback && callback.call( evt.editor );606 noUndo !== false && this.fire( 'saveSnapshot');607 });603 callback.call( evt.editor ); 604 } ); 605 } 608 606 609 607 // Fire "setData" so data manipulation may happen. … … 694 692 * @name CKEDITOR.config.htmlEncodeOutput 695 693 * @since 3.1 696 * @type {Boolean}694 * @type Boolean 697 695 * @default false 698 696 * @example -
CKEditor/branches/versions/3.2.x/_source/lang/_translationstatus.txt
r5158 r5171 17 17 en-gb.js Found: 369 Missing: 120 18 18 eo.js Found: 259 Missing: 230 19 es.js Found: 46 0 Missing: 2919 es.js Found: 466 Missing: 23 20 20 et.js Found: 300 Missing: 189 21 21 eu.js Found: 403 Missing: 86 -
CKEditor/branches/versions/3.2.x/_source/lang/es.js
r5158 r5171 98 98 advancedTab : 'Avanzado', 99 99 validateNumberFailed : 'El valor no es un número.', 100 confirmNewPage : 'Cualquier cambio que no se haya guardado se perderá. ¿Está seguro de querer crear una nueva página?',101 confirmCancel : 'Algunas de las opciones se han cambiado. ¿Está seguro de querer cerrar el diálogo?',100 confirmNewPage : 'Cualquier cambio que no se haya guardado se perderá.\r\n¿Está seguro de querer crear una nueva página?', 101 confirmCancel : 'Algunas de las opciones se han cambiado.\r\n¿Está seguro de querer cerrar el diálogo?', 102 102 options : 'Options', // MISSING 103 103 target : 'Target', // MISSING … … 471 471 oneChange : 'Control finalizado: se ha cambiado una palabra', 472 472 manyChanges : 'Control finalizado: se ha cambiado %1 palabras', 473 ieSpellDownload : 'Módulo de Control de Ortografía no instalado. ¿Desea descargarlo ahora?'473 ieSpellDownload : 'Módulo de Control de Ortografía no instalado.\r\n¿Desea descargarlo ahora?' 474 474 }, 475 475 … … 504 504 { 505 505 title : 'Pegar', 506 cutError : 'La configuración de seguridad de este navegador no permite la ejecución automática de operaciones de cortado. Por favor use el teclado (Ctrl+X).',507 copyError : 'La configuración de seguridad de este navegador no permite la ejecución automática de operaciones de copiado. Por favor use el teclado (Ctrl+C).',508 pasteMsg : 'Por favor pegue dentro del cuadro utilizando el teclado (<STRONG>Ctrl+V</STRONG>); luego presione <STRONG>Aceptar</STRONG>.',509 securityMsg : 'Debido a la configuración de seguridad de su navegador, el editor no tiene acceso al portapapeles. Es necesario que lo pegue de nuevo en esta ventana.',506 cutError : 'La configuración de seguridad de este navegador no permite la ejecución automática de operaciones de cortado.\r\nPor favor use el teclado (Ctrl+X).', 507 copyError : 'La configuración de seguridad de este navegador no permite la ejecución automática de operaciones de copiado.\r\nPor favor use el teclado (Ctrl+C).', 508 pasteMsg : 'Por favor pegue dentro del cuadro utilizando el teclado (<STRONG>Ctrl+V</STRONG>);\r\nluego presione <STRONG>Aceptar</STRONG>.', 509 securityMsg : 'Debido a la configuración de seguridad de su navegador, el editor no tiene acceso al portapapeles.\r\nEs necesario que lo pegue de nuevo en esta ventana.', 510 510 pasteArea : 'Paste Area' // MISSING 511 511 }, … … 513 513 pastefromword : 514 514 { 515 confirmCleanup : 'El texto que desea parece provenir de Word. Desea depurarlo antes de pegarlo?',515 confirmCleanup : 'El texto que desea parece provenir de Word.\r\n¿Desea depurarlo antes de pegarlo?', 516 516 toolbar : 'Pegar desde Word', 517 517 title : 'Pegar desde Word', … … 605 605 { 606 606 '000' : 'Negro', 607 '800000' : ' Granate',608 '8B4513' : ' Saddle Brown', // MISSING607 '800000' : 'Marrón oscuro', 608 '8B4513' : 'Marrón tierra', 609 609 '2F4F4F' : 'Pizarra Oscuro', 610 610 '008080' : 'Azul verdoso', 611 611 '000080' : 'Azul marino', 612 612 '4B0082' : 'Añil', 613 '696969' : 'Gris medio',614 'B22222' : ' Fire Brick', // MISSING613 '696969' : 'Gris oscuro', 614 'B22222' : 'Ladrillo', 615 615 'A52A2A' : 'Marrón', 616 'DAA520' : ' Golden Rod', // MISSING616 'DAA520' : 'Oro oscuro', 617 617 '006400' : 'Verde oscuro', 618 618 '40E0D0' : 'Turquesa', 619 '0000CD' : ' Medium Blue', // MISSING619 '0000CD' : 'Azul medio-oscuro', 620 620 '800080' : 'Púrpura', 621 621 '808080' : 'Gris', … … 627 627 '00F' : 'Azul', 628 628 'EE82EE' : 'Violeta', 629 'A9A9A9' : 'Gris oscuro',629 'A9A9A9' : 'Gris medio', 630 630 'FFA07A' : 'Salmón claro', 631 631 'FFA500' : 'Naranja', … … 634 634 'AFEEEE' : 'Turquesa claro', 635 635 'ADD8E6' : 'Azul claro', 636 'DDA0DD' : ' Ciruela',636 'DDA0DD' : 'Violeta claro', 637 637 'D3D3D3' : 'Gris claro', 638 'FFF0F5' : 'Lav ender Blush', // MISSING638 'FFF0F5' : 'Lavanda rojizo', 639 639 'FAEBD7' : 'Blanco antiguo', 640 640 'FFFFE0' : 'Amarillo claro', 641 641 'F0FFF0' : 'Miel', 642 642 'F0FFFF' : 'Azul celeste', 643 'F0F8FF' : 'A lice Blue', // MISSING644 'E6E6FA' : 'L Avanda',643 'F0F8FF' : 'Azul pálido', 644 'E6E6FA' : 'Lavanda', 645 645 'FFF' : 'Blanco' 646 646 }, -
CKEditor/branches/versions/3.2.x/_source/plugins/basicstyles/plugin.js
r4858 r5171 43 43 44 44 // Basic Inline Styles. 45 /** 46 * The style definition to be used to apply the bold style in the text. 47 * @type Object 48 * @example 49 * config.coreStyles_bold = { element : 'b', overrides : 'strong' }; 50 * @example 51 * config.coreStyles_bold = { element : 'span', attributes : {'class': 'Bold'} }; 52 */ 45 53 CKEDITOR.config.coreStyles_bold = { element : 'strong', overrides : 'b' }; 54 /** 55 * The style definition to be used to apply the italic style in the text. 56 * @type Object 57 * @default { element : 'em', overrides : 'i' } 58 * @example 59 * CKEDITOR.config.coreStyles_italic = { element : 'span', attributes : {'class': 'Italic'} }; 60 */ 46 61 CKEDITOR.config.coreStyles_italic = { element : 'em', overrides : 'i' }; 62 /** 63 * The style definition to be used to apply the underline style in the text. 64 * @type Object 65 * @default { element : 'u' } 66 * @example 67 * CKEDITOR.config.coreStyles_underline = { element : 'span', attributes : {'class': 'Underline'}}; 68 */ 47 69 CKEDITOR.config.coreStyles_underline = { element : 'u' }; 70 /** 71 * The style definition to be used to apply the strike style in the text. 72 * @type Object 73 * @default { element : 'strike' } 74 * @example 75 * CKEDITOR.config.coreStyles_strike = { element : 'span', attributes : {'class': 'StrikeThrough'}, overrides : 'strike' }; 76 */ 48 77 CKEDITOR.config.coreStyles_strike = { element : 'strike' }; 78 /** 79 * The style definition to be used to apply the subscript style in the text. 80 * @type Object 81 * @default { element : 'sub' } 82 * @example 83 * CKEDITOR.config.coreStyles_subscript = { element : 'span', attributes : {'class': 'Subscript'}, overrides : 'sub' }; 84 */ 49 85 CKEDITOR.config.coreStyles_subscript = { element : 'sub' }; 86 /** 87 * The style definition to be used to apply the superscript style in the text. 88 * @type Object 89 * @default { element : 'sup' } 90 * @example 91 * CKEDITOR.config.coreStyles_superscript = { element : 'span', attributes : {'class': 'Superscript'}, overrides : 'sup' }; 92 */ 50 93 CKEDITOR.config.coreStyles_superscript = { element : 'sup' }; -
CKEditor/branches/versions/3.2.x/_source/plugins/div/dialogs/div.js
- Property svn:mergeinfo changed (with no actual effect on merging)
-
CKEditor/branches/versions/3.2.x/_source/plugins/div/plugin.js
- Property svn:mergeinfo changed (with no actual effect on merging)
-
CKEditor/branches/versions/3.2.x/_source/plugins/indent/plugin.js
r5151 r5171 322 322 indentClasses : null 323 323 }); 324 325 /** 326 * Size of each indentation step 327 * @type Number 328 * @default 40 329 * @example 330 * config.indentOffset = 4; 331 */ 332 333 /** 334 * Unit for the indentation style 335 * @type String 336 * @default 'px' 337 * @example 338 * config.indentUnit = 'em'; 339 */ 340 341 /** 342 * List of classes to use for indenting the contents. If it's null, no classes will be used 343 * and instead the {@link #indentUnit} and {@link #indentOffset} properties will be used. 344 * @type Array 345 * default null 346 * @example 347 * // Use the classes 'Indent1', 'Indent2', 'Indent3' 348 * config.indentClasses = ['Indent1', 'Indent2', 'Indent3']; 349 */ -
CKEditor/branches/versions/3.2.x/_source/plugins/link/dialogs/link.js
r5158 r5171 1396 1396 1397 1397 /** 1398 * <p>The e-mail address anti-spam protection option. The protection will be1399 * applied when creating or modifying e-mail links through the editor interface.< /p>1400 * <p>Two methods of protection can be choosed:</p>1398 * The e-mail address anti-spam protection option. The protection will be 1399 * applied when creating or modifying e-mail links through the editor interface.<br> 1400 * Two methods of protection can be choosed: 1401 1401 * <ol> <li>The e-mail parts (name, domain and any other query string) are 1402 1402 * assembled into a function call pattern. Such function must be … … 1405 1405 * has no meaning for humans or spam bots, but which is properly 1406 1406 * rendered and accepted by the browser.</li></ol> 1407 * <p>Both approaches require JavaScript to be enabled.</p>1407 * Both approaches require JavaScript to be enabled. 1408 1408 * @name CKEDITOR.config.emailProtection 1409 1409 * @since 3.1 1410 * @type {String}1410 * @type String 1411 1411 * @default '' (empty string = disabled) 1412 1412 * @example -
CKEditor/branches/versions/3.2.x/_source/plugins/selection/plugin.js
r5151 r5171 139 139 // Disable selections from being saved. 140 140 saveEnabled = false; 141 142 // IE before version 8 will leave cursor blinking inside the document after143 // editor blurred unless we clean up the selection. (#4716)144 if ( CKEDITOR.env.ie && CKEDITOR.env.version < 8 )145 {146 // IE stack overflows when we're doing so inside table. (#5114)147 var parent =148 savedRange149 && savedRange.parentElement150 && savedRange.parentElement();151 152 if ( !( parent && parent.tagName.toLowerCase() in CKEDITOR.dtd.$tableContent ) )153 editor.document.$.selection.empty();154 }155 141 }); 156 142 -
CKEditor/branches/versions/3.2.x/_source/plugins/showborders/plugin.js
- Property svn:mergeinfo changed (with no actual effect on merging)
-
CKEditor/branches/versions/3.2.x/_source/plugins/templates/dialogs/templates.js
r5092 r5171 82 82 range.moveToElementEditStart( editor.document.getBody() ); 83 83 range.select( true ); 84 setTimeout( function () 85 { 86 editor.fire( 'saveSnapshot' ); 87 }, 0 ); 84 88 } ); 89 90 editor.fire( 'saveSnapshot' ); 85 91 editor.setData( html ); 86 92 } -
CKEditor/branches/versions/3.2.x/_source/skins/v2/richcombo.css
r5121 r5171 145 145 width: 14px; 146 146 height: 20px; 147 _height: 22px;148 147 } 149 148 … … 284 283 float: none; 285 284 } 285 286 .cke_skin_v2 .cke_browser_iequirks .cke_rcombo .cke_openbutton 287 { 288 height: 22px; 289 }
Note: See TracChangeset
for help on using the changeset viewer.
